com.plaid.client.request.common.BasePublicRequest 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.request.common;
/**
* Abstract base class for requests that require public_key.
*
* These fields are later injected by the json serializer, and thus are public.
*/
public abstract class BasePublicRequest {
public String publicKey;
}