com.plaid.client.response.ItemPublicTokenCreateResponse 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;
import java.util.Date;
/**
* Response from /item/public_token/create endpoint.
*/
public final class ItemPublicTokenCreateResponse extends BaseResponse {
private Date expiration;
private String publicToken;
public Date getExpiration() {
return expiration;
}
public String getPublicToken() {
return publicToken;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy