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

com.plaid.client.response.UnknownResponse Maven / Gradle / Ivy

There is a newer version: 29.0.0
Show newest version
package com.plaid.client.response;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public class UnknownResponse {
    private Integer code;
    private String message;
    private String resolve;

    public Integer getCode() {
        return code;
    }

    public void setCode(Integer code) {
        this.code = code;
    }

    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }

    public String getResolve() {
        return resolve;
    }

    public void setResolve(String resolve) {
        this.resolve = resolve;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy