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

org.vfdtech.models.CoreBankingResponse 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;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;

import java.util.LinkedHashMap;

@Data
@SuperBuilder
@AllArgsConstructor
@NoArgsConstructor
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonDeserialize(as = CoreBankingResponse.class)
public class CoreBankingResponse extends Jsonable {
    private String response;
    private String message;
    private Object errorData;
    private String accountBalance;
    private String officeId;
    private Long clientId;
    private String savingsId;
    private String resourceId;
    private Integer holdId;
    private Double holdAmount;
    private boolean success;
    private LinkedHashMap changes;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy