com.plaid.client.response.ItemPublicTokenExchangeResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plaid-java Show documentation
Show all versions of plaid-java Show documentation
Bindings for the Plaid (plaid.com) API.
package com.plaid.client.response;
public final class ItemPublicTokenExchangeResponse extends BaseResponse {
private String accessToken;
private String itemId;
public String getAccessToken() {
return accessToken;
}
public String getItemId() {
return itemId;
}
}