org.vfdtech.models.cba.mifos.lookup.LevelLimitInfo 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.lookup;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.ToString;
@Data
@NoArgsConstructor
@ToString
@EqualsAndHashCode
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"level",
"singleTransactionLimit",
"dailyWithdrawalLimit"
})
public class LevelLimitInfo {
@JsonProperty("level")
private String level;
@JsonProperty("singleTransactionLimit")
private String singleTransactionLimit;
@JsonProperty("dailyWithdrawalLimit")
private String dailyWithdrawalLimit;
}