![JAR search and dependency download from the Maven repository](/logo.png)
org.vfdtech.models.cba.mifos.MifosCreditRequest Maven / Gradle / Ivy
package org.vfdtech.models.cba.mifos;
import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.Builder;
import lombok.Data;
@Data
@JsonInclude(JsonInclude.Include.NON_NULL)
public class MifosCreditRequest extends CoreMifosParams implements IPaymentRequest {
private String remarks;
private String transactionBrandName;
private String category = "1";
private String receiptNumber;
private String routingCode;
private boolean dupCheck = true;
private String transferDescription;
private String fromAccountType;
private String toAccountType;
private String fromAccountId;
private String toAccountId;
private String fromClientId;
private String toClientId;
@Builder.Default
private String fromOfficeId="1";
@Builder.Default
private String toOfficeId="1";
@Override
public String getReference() {
return null;
}
@Override
public String toJsonString() {
return null;
}
@Override
public String getAccountId() {
return toAccountId;
}
public MifosCreditRequest () {
super();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy