poc completed

This commit is contained in:
2025-07-11 12:25:46 +02:00
parent 6ad1f55d4b
commit 1ba7a8cda4
28 changed files with 807 additions and 88 deletions

View File

@@ -5,6 +5,7 @@ import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import zw.qantra.tm.domain.enums.AuthType;
import zw.qantra.tm.domain.enums.CurrencyType;
import zw.qantra.tm.domain.enums.RequestType;
@@ -17,6 +18,7 @@ import java.math.BigDecimal;
@JsonIgnoreProperties(ignoreUnknown = true)
public class BillPaymentDto {
private RequestType type;
private AuthType authType;
private String billClientId;
private String debitRef;
private CurrencyType debitCurrency;
@@ -28,4 +30,5 @@ public class BillPaymentDto {
private CurrencyType creditCurrency;
private String creditPhone;
private String billName;
private String trace;
}