All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.vfdtech.models.cba.mifos.AccountLookup Maven / Gradle / Ivy

Go to download

A utilities service with generic tools implementation. Can be plugged into your java project

There is a newer version: 0.3.5
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy