com.plaid.client.response.ItemAccessTokenInvalidateResponse 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;
/**
* Response object for /item/access_token/invalidate endpoint.
*/
public final class ItemAccessTokenInvalidateResponse extends BaseResponse {
private String newAccessToken;
public String getNewAccessToken() {
return newAccessToken;
}
}