progress on integration to sbz
This commit is contained in:
31
src/main/java/zw/qantra/tm/domain/dtos/BillPaymentDto.java
Normal file
31
src/main/java/zw/qantra/tm/domain/dtos/BillPaymentDto.java
Normal file
@@ -0,0 +1,31 @@
|
||||
package zw.qantra.tm.domain.dtos;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import zw.qantra.tm.domain.enums.CurrencyType;
|
||||
import zw.qantra.tm.domain.enums.RequestType;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
||||
public class BillPaymentDto {
|
||||
private RequestType type;
|
||||
private String billClientId;
|
||||
private String debitRef;
|
||||
private CurrencyType debitCurrency;
|
||||
private BigDecimal amount;
|
||||
private String aggregatorId;
|
||||
private String debitPhone;
|
||||
private String debitAccount;
|
||||
private String creditAccount;
|
||||
private CurrencyType creditCurrency;
|
||||
private String creditPhone;
|
||||
private String billName;
|
||||
}
|
||||
Reference in New Issue
Block a user