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

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

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

import java.util.List;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown=true)
public class AccountsResponse extends PlaidUserResponse {

    protected List accounts;
    
    public List getAccounts() {
        return accounts;
    }
    
    public void setAccounts(List accounts) {
        this.accounts = accounts;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy