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

org.vfdtech.models.cba.mifos.lookup.ClientTierInformationResponse 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.lookup;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import lombok.*;

import java.util.List;


@Data
@NoArgsConstructor
@AllArgsConstructor
@ToString
@EqualsAndHashCode
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
        "bvn",
        "identities",
        "address",
        "nextStepMessage",
        "video",
        "employmentDetails"
})
public class ClientTierInformationResponse {
    @JsonProperty("bvn")
    private TierStatus bvn;
    @JsonProperty("identities")
    private List identities;
    @JsonProperty("address")
    private TierStatus address;
    @JsonProperty("nextStepMessage")
    private String nextStepMessage;
    @JsonProperty("video")
    private TierStatus video;
    @JsonProperty("employmentDetails")
    private TierStatus employmentDetails;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy