org.vfdtech.models.cba.mifos.MifosDebitRequest 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. This is designed for Java 1.8
package org.vfdtech.models.cba.mifos;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class MifosDebitRequest implements IPaymentRequest {
@Builder.Default
private String locale="en";
@Builder.Default
private String dateFormat="dd MMMM yyyy";
private String transferDate;
private String transferAmount;
private String paymentTypeId;
private String remarks;
private String transferDescription;
private String transactionBrandName;
private String fromAccountType;
private String toAccountType;
private String fromAccountId;
private String toAccountId;
private String fromClientId;
private String toClientId;
@Builder.Default
public String fromOfficeId="1";
@Builder.Default
public String toOfficeId="1";
@Override
public String getReference() {
return null;
}
@Override
public String toJsonString() {
return null;
}
@Override
public String getAccountId() {
return null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy