com.plaid.client.response.ItemCredentialsEncryptResponse 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;
public final class ItemCredentialsEncryptResponse extends BaseResponse {
private String credentialsToken;
private Date expiration;
public String getCredentialsToken() {
return credentialsToken;
}
public Date getExpiration() {
return expiration;
}
}