![JAR search and dependency download from the Maven repository](/logo.png)
org.vfdtech.models.cba.mifos.lookup.LookupRes Maven / Gradle / Ivy
package org.vfdtech.models.cba.mifos.lookup;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
import lombok.Setter;
import java.util.List;
@Getter
@Setter
@JsonIgnoreProperties(ignoreUnknown = true)
public class LookupRes {
@JsonProperty("bvn")
private String bvn;
@JsonProperty("accountNo")
private String accountNo;
@JsonProperty("clientId")
private Long clientId;
@JsonProperty("savingId")
private String savingId;
@JsonProperty("accountName")
private String accountName;
@JsonProperty("currency")
private String currency;
@JsonProperty("status")
private String status;
@JsonProperty("exist")
private Boolean exist;
@JsonProperty("dateOfBirth")
private String dateOfBirth;
@JsonProperty("accountType")
private String accountType;
@JsonProperty("address")
private String address;
@JsonProperty("email")
private String email;
@JsonProperty("mobileNo")
private String mobileNo;
@JsonProperty("kycLevel")
private String kycLevel;
@JsonProperty("dailyWithdrawalLimit")
private String dailyWithdrawalLimit;
@JsonProperty("transactionLimit")
private String transactionLimit;
@JsonProperty("tierInfo")
private ClientTierInformationResponse tierInfo;
@JsonProperty("levelLimitInfo")
private List levelLimitInfo;
@JsonProperty("availableBalance")
private Double availableBalance;
@JsonProperty("ledgerBalance")
private Double ledgerBalance;
@JsonProperty("subStatus")
private Integer subStatus;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy