org.vfdtech.models.cba.mifos.AccountLookup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utilities-and-generic-tools Show documentation
Show all versions of utilities-and-generic-tools Show documentation
A utilities service with generic tools implementation. Can be
plugged into your java project
package org.vfdtech.models.cba.mifos;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
public class AccountLookup {
public String accountNo;
public String bvn;
public String accountName;
public String savingId;
public int clientId;
private String currency;
private String status;
private boolean exist;
private String accountType;
private String address;
private String email;
private String mobileNo;
private String kycLevel;
private double availableBalance;
private double ledgerBalance;
private int subStatus;
}