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

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

There is a newer version: 27.0.0
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy