org.vfdtech.models.cba.mifos.MifosResponse 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;
import java.util.HashMap;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class MifosResponse {
boolean success;
String accountId;
String clientId;
String accountBalance;
String availableBalance;
HashMap summary;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy