repo
stringclasses
1k values
file_url
stringlengths
96
373
file_path
stringlengths
11
294
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
6 values
commit_sha
stringclasses
1k values
retrieved_at
stringdate
2026-01-04 14:45:56
2026-01-04 18:30:23
truncated
bool
2 classes
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SenderBACSNullable.java
src/main/java/com/plaid/client/model/SenderBACSNullable.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.RecipientBACS; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object containing a BACS account number and sort code. If an IBAN is not provided or if this recipient needs to accept domestic GBP-denominated payments, BACS data is required. */ @ApiModel(description = "An object containing a BACS account number and sort code. If an IBAN is not provided or if this recipient needs to accept domestic GBP-denominated payments, BACS data is required.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SenderBACSNullable { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) private String account; public static final String SERIALIZED_NAME_SORT_CODE = "sort_code"; @SerializedName(SERIALIZED_NAME_SORT_CODE) private String sortCode; public SenderBACSNullable account(String account) { this.account = account; return this; } /** * The account number of the account. Maximum of 10 characters. * @return account **/ @javax.annotation.Nullable @ApiModelProperty(value = "The account number of the account. Maximum of 10 characters.") public String getAccount() { return account; } public void setAccount(String account) { this.account = account; } public SenderBACSNullable sortCode(String sortCode) { this.sortCode = sortCode; return this; } /** * The 6-character sort code of the account. * @return sortCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The 6-character sort code of the account.") public String getSortCode() { return sortCode; } public void setSortCode(String sortCode) { this.sortCode = sortCode; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SenderBACSNullable senderBACSNullable = (SenderBACSNullable) o; return Objects.equals(this.account, senderBACSNullable.account) && Objects.equals(this.sortCode, senderBACSNullable.sortCode); } @Override public int hashCode() { return Objects.hash(account, sortCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SenderBACSNullable {\n"); sb.append(" account: ").append(toIndentedString(account)).append("\n"); sb.append(" sortCode: ").append(toIndentedString(sortCode)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IdentityVerificationRetriedWebhook.java
src/main/java/com/plaid/client/model/IdentityVerificationRetriedWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Fired when identity verification has been retried, which can be triggered via the dashboard or the API. */ @ApiModel(description = "Fired when identity verification has been retried, which can be triggered via the dashboard or the API.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityVerificationRetriedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_IDENTITY_VERIFICATION_ID = "identity_verification_id"; @SerializedName(SERIALIZED_NAME_IDENTITY_VERIFICATION_ID) private String identityVerificationId; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public IdentityVerificationRetriedWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * `IDENTITY_VERIFICATION` * @return webhookType **/ @ApiModelProperty(required = true, value = "`IDENTITY_VERIFICATION`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public IdentityVerificationRetriedWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * `RETRIED` * @return webhookCode **/ @ApiModelProperty(required = true, value = "`RETRIED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public IdentityVerificationRetriedWebhook identityVerificationId(String identityVerificationId) { this.identityVerificationId = identityVerificationId; return this; } /** * The ID of the associated Identity Verification attempt. * @return identityVerificationId **/ @ApiModelProperty(required = true, value = "The ID of the associated Identity Verification attempt.") public String getIdentityVerificationId() { return identityVerificationId; } public void setIdentityVerificationId(String identityVerificationId) { this.identityVerificationId = identityVerificationId; } public IdentityVerificationRetriedWebhook environment(WebhookEnvironmentValues environment) { this.environment = environment; return this; } /** * Get environment * @return environment **/ @ApiModelProperty(required = true, value = "") public WebhookEnvironmentValues getEnvironment() { return environment; } public void setEnvironment(WebhookEnvironmentValues environment) { this.environment = environment; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IdentityVerificationRetriedWebhook identityVerificationRetriedWebhook = (IdentityVerificationRetriedWebhook) o; return Objects.equals(this.webhookType, identityVerificationRetriedWebhook.webhookType) && Objects.equals(this.webhookCode, identityVerificationRetriedWebhook.webhookCode) && Objects.equals(this.identityVerificationId, identityVerificationRetriedWebhook.identityVerificationId) && Objects.equals(this.environment, identityVerificationRetriedWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, identityVerificationId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityVerificationRetriedWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" identityVerificationId: ").append(toIndentedString(identityVerificationId)).append("\n"); sb.append(" environment: ").append(toIndentedString(environment)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkTokenCreateResponse.java
src/main/java/com/plaid/client/model/LinkTokenCreateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * LinkTokenCreateResponse defines the response schema for `/link/token/create` */ @ApiModel(description = "LinkTokenCreateResponse defines the response schema for `/link/token/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenCreateResponse { public static final String SERIALIZED_NAME_LINK_TOKEN = "link_token"; @SerializedName(SERIALIZED_NAME_LINK_TOKEN) private String linkToken; public static final String SERIALIZED_NAME_EXPIRATION = "expiration"; @SerializedName(SERIALIZED_NAME_EXPIRATION) private OffsetDateTime expiration; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public static final String SERIALIZED_NAME_HOSTED_LINK_URL = "hosted_link_url"; @SerializedName(SERIALIZED_NAME_HOSTED_LINK_URL) private String hostedLinkUrl; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public LinkTokenCreateResponse linkToken(String linkToken) { this.linkToken = linkToken; return this; } /** * A `link_token`, which can be supplied to Link in order to initialize it and receive a `public_token`, which can be exchanged for an `access_token`. * @return linkToken **/ @ApiModelProperty(required = true, value = "A `link_token`, which can be supplied to Link in order to initialize it and receive a `public_token`, which can be exchanged for an `access_token`.") public String getLinkToken() { return linkToken; } public void setLinkToken(String linkToken) { this.linkToken = linkToken; } public LinkTokenCreateResponse expiration(OffsetDateTime expiration) { this.expiration = expiration; return this; } /** * The expiration date and time for the `link_token`, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. By default, a `link_token` created to generate a `public_token` that will be exchanged for a new `access_token` expires after 4 hours, and a `link_token` created for an existing Item (such as when updating an existing `access_token` by launching Link in update mode) expires after 30 minutes. If using [Hosted Link](https://plaid.com/docs/link/hosted-link/), the `link_token` will expire at the same time as the Hosted Link URL, and you can customize the duration using the `hosted_link.url_lifetime_seconds` option in the request. If using Link Delivery (beta), the `link_token` will expire by default after 24 hours if sent via SMS and after 7 days if sent via email. If using Identity Verification, Link token expiration will not be enforced; an Identity Verification Link session can be created with an expired Link token. * @return expiration **/ @ApiModelProperty(required = true, value = "The expiration date and time for the `link_token`, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. By default, a `link_token` created to generate a `public_token` that will be exchanged for a new `access_token` expires after 4 hours, and a `link_token` created for an existing Item (such as when updating an existing `access_token` by launching Link in update mode) expires after 30 minutes. If using [Hosted Link](https://plaid.com/docs/link/hosted-link/), the `link_token` will expire at the same time as the Hosted Link URL, and you can customize the duration using the `hosted_link.url_lifetime_seconds` option in the request. If using Link Delivery (beta), the `link_token` will expire by default after 24 hours if sent via SMS and after 7 days if sent via email. If using Identity Verification, Link token expiration will not be enforced; an Identity Verification Link session can be created with an expired Link token.") public OffsetDateTime getExpiration() { return expiration; } public void setExpiration(OffsetDateTime expiration) { this.expiration = expiration; } public LinkTokenCreateResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public LinkTokenCreateResponse hostedLinkUrl(String hostedLinkUrl) { this.hostedLinkUrl = hostedLinkUrl; return this; } /** * A URL of a Plaid-hosted Link flow that will use the Link token returned by this request. Only present if the session is enabled for Hosted Link. To enable the session for Hosted Link, send a `hosted_link` object in the request. * @return hostedLinkUrl **/ @javax.annotation.Nullable @ApiModelProperty(value = "A URL of a Plaid-hosted Link flow that will use the Link token returned by this request. Only present if the session is enabled for Hosted Link. To enable the session for Hosted Link, send a `hosted_link` object in the request.") public String getHostedLinkUrl() { return hostedLinkUrl; } public void setHostedLinkUrl(String hostedLinkUrl) { this.hostedLinkUrl = hostedLinkUrl; } public LinkTokenCreateResponse userId(String userId) { this.userId = userId; return this; } /** * A unique user identifier, created by `/user/create`. Integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis). * @return userId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique user identifier, created by `/user/create`. Integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkTokenCreateResponse linkTokenCreateResponse = (LinkTokenCreateResponse) o; return Objects.equals(this.linkToken, linkTokenCreateResponse.linkToken) && Objects.equals(this.expiration, linkTokenCreateResponse.expiration) && Objects.equals(this.requestId, linkTokenCreateResponse.requestId) && Objects.equals(this.hostedLinkUrl, linkTokenCreateResponse.hostedLinkUrl) && Objects.equals(this.userId, linkTokenCreateResponse.userId); } @Override public int hashCode() { return Objects.hash(linkToken, expiration, requestId, hostedLinkUrl, userId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenCreateResponse {\n"); sb.append(" linkToken: ").append(toIndentedString(linkToken)).append("\n"); sb.append(" expiration: ").append(toIndentedString(expiration)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append(" hostedLinkUrl: ").append(toIndentedString(hostedLinkUrl)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BankTransferEventSyncResponse.java
src/main/java/com/plaid/client/model/BankTransferEventSyncResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.BankTransferEvent; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Defines the response schema for &#x60;/bank_transfer/event/sync&#x60; */ @ApiModel(description = "Defines the response schema for `/bank_transfer/event/sync`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankTransferEventSyncResponse { public static final String SERIALIZED_NAME_BANK_TRANSFER_EVENTS = "bank_transfer_events"; @SerializedName(SERIALIZED_NAME_BANK_TRANSFER_EVENTS) private List<BankTransferEvent> bankTransferEvents = new ArrayList<>(); public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public BankTransferEventSyncResponse bankTransferEvents(List<BankTransferEvent> bankTransferEvents) { this.bankTransferEvents = bankTransferEvents; return this; } public BankTransferEventSyncResponse addBankTransferEventsItem(BankTransferEvent bankTransferEventsItem) { this.bankTransferEvents.add(bankTransferEventsItem); return this; } /** * Get bankTransferEvents * @return bankTransferEvents **/ @ApiModelProperty(required = true, value = "") public List<BankTransferEvent> getBankTransferEvents() { return bankTransferEvents; } public void setBankTransferEvents(List<BankTransferEvent> bankTransferEvents) { this.bankTransferEvents = bankTransferEvents; } public BankTransferEventSyncResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BankTransferEventSyncResponse bankTransferEventSyncResponse = (BankTransferEventSyncResponse) o; return Objects.equals(this.bankTransferEvents, bankTransferEventSyncResponse.bankTransferEvents) && Objects.equals(this.requestId, bankTransferEventSyncResponse.requestId); } @Override public int hashCode() { return Objects.hash(bankTransferEvents, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankTransferEventSyncResponse {\n"); sb.append(" bankTransferEvents: ").append(toIndentedString(bankTransferEvents)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditEmploymentGetRequest.java
src/main/java/com/plaid/client/model/CreditEmploymentGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * CreditEmploymentGetRequest defines the request schema for &#x60;/credit/employment/get&#x60;. */ @ApiModel(description = "CreditEmploymentGetRequest defines the request schema for `/credit/employment/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditEmploymentGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) private String userToken; public CreditEmploymentGetRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public CreditEmploymentGetRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public CreditEmploymentGetRequest userToken(String userToken) { this.userToken = userToken; return this; } /** * The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the &#x60;user_token&#x60; field. All other customers should use the &#x60;user_id&#x60; instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis). * @return userToken **/ @ApiModelProperty(required = true, value = "The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the `user_token` field. All other customers should use the `user_id` instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserToken() { return userToken; } public void setUserToken(String userToken) { this.userToken = userToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditEmploymentGetRequest creditEmploymentGetRequest = (CreditEmploymentGetRequest) o; return Objects.equals(this.clientId, creditEmploymentGetRequest.clientId) && Objects.equals(this.secret, creditEmploymentGetRequest.secret) && Objects.equals(this.userToken, creditEmploymentGetRequest.userToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, userToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditEmploymentGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" userToken: ").append(toIndentedString(userToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraLoanType.java
src/main/java/com/plaid/client/model/CraLoanType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The type of loan the user applied for. */ @JsonAdapter(CraLoanType.Adapter.class) public enum CraLoanType { PERSONAL("PERSONAL"), CREDIT_CARD("CREDIT_CARD"), BUSINESS("BUSINESS"), MORTGAGE("MORTGAGE"), AUTO("AUTO"), PAYDAY("PAYDAY"), STUDENT("STUDENT"), HOME_EQUITY("HOME_EQUITY"), OTHER("OTHER"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; CraLoanType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static CraLoanType fromValue(String value) { for (CraLoanType b : CraLoanType.values()) { if (b.value.equals(value)) { return b; } } return CraLoanType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<CraLoanType> { @Override public void write(final JsonWriter jsonWriter, final CraLoanType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public CraLoanType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return CraLoanType.fromValue(value); } } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/MortgageLiability.java
src/main/java/com/plaid/client/model/MortgageLiability.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.MortgageInterestRate; import com.plaid.client.model.MortgagePropertyAddress; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * Contains details about a mortgage account. */ @ApiModel(description = "Contains details about a mortgage account.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class MortgageLiability { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_ACCOUNT_NUMBER = "account_number"; @SerializedName(SERIALIZED_NAME_ACCOUNT_NUMBER) private String accountNumber; public static final String SERIALIZED_NAME_CURRENT_LATE_FEE = "current_late_fee"; @SerializedName(SERIALIZED_NAME_CURRENT_LATE_FEE) private Double currentLateFee; public static final String SERIALIZED_NAME_ESCROW_BALANCE = "escrow_balance"; @SerializedName(SERIALIZED_NAME_ESCROW_BALANCE) private Double escrowBalance; public static final String SERIALIZED_NAME_HAS_PMI = "has_pmi"; @SerializedName(SERIALIZED_NAME_HAS_PMI) private Boolean hasPmi; public static final String SERIALIZED_NAME_HAS_PREPAYMENT_PENALTY = "has_prepayment_penalty"; @SerializedName(SERIALIZED_NAME_HAS_PREPAYMENT_PENALTY) private Boolean hasPrepaymentPenalty; public static final String SERIALIZED_NAME_INTEREST_RATE = "interest_rate"; @SerializedName(SERIALIZED_NAME_INTEREST_RATE) private MortgageInterestRate interestRate; public static final String SERIALIZED_NAME_LAST_PAYMENT_AMOUNT = "last_payment_amount"; @SerializedName(SERIALIZED_NAME_LAST_PAYMENT_AMOUNT) private Double lastPaymentAmount; public static final String SERIALIZED_NAME_LAST_PAYMENT_DATE = "last_payment_date"; @SerializedName(SERIALIZED_NAME_LAST_PAYMENT_DATE) private LocalDate lastPaymentDate; public static final String SERIALIZED_NAME_LOAN_TYPE_DESCRIPTION = "loan_type_description"; @SerializedName(SERIALIZED_NAME_LOAN_TYPE_DESCRIPTION) private String loanTypeDescription; public static final String SERIALIZED_NAME_LOAN_TERM = "loan_term"; @SerializedName(SERIALIZED_NAME_LOAN_TERM) private String loanTerm; public static final String SERIALIZED_NAME_MATURITY_DATE = "maturity_date"; @SerializedName(SERIALIZED_NAME_MATURITY_DATE) private LocalDate maturityDate; public static final String SERIALIZED_NAME_NEXT_MONTHLY_PAYMENT = "next_monthly_payment"; @SerializedName(SERIALIZED_NAME_NEXT_MONTHLY_PAYMENT) private Double nextMonthlyPayment; public static final String SERIALIZED_NAME_NEXT_PAYMENT_DUE_DATE = "next_payment_due_date"; @SerializedName(SERIALIZED_NAME_NEXT_PAYMENT_DUE_DATE) private LocalDate nextPaymentDueDate; public static final String SERIALIZED_NAME_ORIGINATION_DATE = "origination_date"; @SerializedName(SERIALIZED_NAME_ORIGINATION_DATE) private LocalDate originationDate; public static final String SERIALIZED_NAME_ORIGINATION_PRINCIPAL_AMOUNT = "origination_principal_amount"; @SerializedName(SERIALIZED_NAME_ORIGINATION_PRINCIPAL_AMOUNT) private Double originationPrincipalAmount; public static final String SERIALIZED_NAME_PAST_DUE_AMOUNT = "past_due_amount"; @SerializedName(SERIALIZED_NAME_PAST_DUE_AMOUNT) private Double pastDueAmount; public static final String SERIALIZED_NAME_PROPERTY_ADDRESS = "property_address"; @SerializedName(SERIALIZED_NAME_PROPERTY_ADDRESS) private MortgagePropertyAddress propertyAddress; public static final String SERIALIZED_NAME_YTD_INTEREST_PAID = "ytd_interest_paid"; @SerializedName(SERIALIZED_NAME_YTD_INTEREST_PAID) private Double ytdInterestPaid; public static final String SERIALIZED_NAME_YTD_PRINCIPAL_PAID = "ytd_principal_paid"; @SerializedName(SERIALIZED_NAME_YTD_PRINCIPAL_PAID) private Double ytdPrincipalPaid; public MortgageLiability accountId(String accountId) { this.accountId = accountId; return this; } /** * The ID of the account that this liability belongs to. * @return accountId **/ @ApiModelProperty(required = true, value = "The ID of the account that this liability belongs to.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public MortgageLiability accountNumber(String accountNumber) { this.accountNumber = accountNumber; return this; } /** * The account number of the loan. * @return accountNumber **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The account number of the loan.") public String getAccountNumber() { return accountNumber; } public void setAccountNumber(String accountNumber) { this.accountNumber = accountNumber; } public MortgageLiability currentLateFee(Double currentLateFee) { this.currentLateFee = currentLateFee; return this; } /** * The current outstanding amount charged for late payment. * @return currentLateFee **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The current outstanding amount charged for late payment.") public Double getCurrentLateFee() { return currentLateFee; } public void setCurrentLateFee(Double currentLateFee) { this.currentLateFee = currentLateFee; } public MortgageLiability escrowBalance(Double escrowBalance) { this.escrowBalance = escrowBalance; return this; } /** * Total amount held in escrow to pay taxes and insurance on behalf of the borrower. * @return escrowBalance **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Total amount held in escrow to pay taxes and insurance on behalf of the borrower.") public Double getEscrowBalance() { return escrowBalance; } public void setEscrowBalance(Double escrowBalance) { this.escrowBalance = escrowBalance; } public MortgageLiability hasPmi(Boolean hasPmi) { this.hasPmi = hasPmi; return this; } /** * Indicates whether the borrower has private mortgage insurance in effect. * @return hasPmi **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Indicates whether the borrower has private mortgage insurance in effect.") public Boolean getHasPmi() { return hasPmi; } public void setHasPmi(Boolean hasPmi) { this.hasPmi = hasPmi; } public MortgageLiability hasPrepaymentPenalty(Boolean hasPrepaymentPenalty) { this.hasPrepaymentPenalty = hasPrepaymentPenalty; return this; } /** * Indicates whether the borrower will pay a penalty for early payoff of mortgage. * @return hasPrepaymentPenalty **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Indicates whether the borrower will pay a penalty for early payoff of mortgage.") public Boolean getHasPrepaymentPenalty() { return hasPrepaymentPenalty; } public void setHasPrepaymentPenalty(Boolean hasPrepaymentPenalty) { this.hasPrepaymentPenalty = hasPrepaymentPenalty; } public MortgageLiability interestRate(MortgageInterestRate interestRate) { this.interestRate = interestRate; return this; } /** * Get interestRate * @return interestRate **/ @ApiModelProperty(required = true, value = "") public MortgageInterestRate getInterestRate() { return interestRate; } public void setInterestRate(MortgageInterestRate interestRate) { this.interestRate = interestRate; } public MortgageLiability lastPaymentAmount(Double lastPaymentAmount) { this.lastPaymentAmount = lastPaymentAmount; return this; } /** * The amount of the last payment. * @return lastPaymentAmount **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The amount of the last payment.") public Double getLastPaymentAmount() { return lastPaymentAmount; } public void setLastPaymentAmount(Double lastPaymentAmount) { this.lastPaymentAmount = lastPaymentAmount; } public MortgageLiability lastPaymentDate(LocalDate lastPaymentDate) { this.lastPaymentDate = lastPaymentDate; return this; } /** * The date of the last payment. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). * @return lastPaymentDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The date of the last payment. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD).") public LocalDate getLastPaymentDate() { return lastPaymentDate; } public void setLastPaymentDate(LocalDate lastPaymentDate) { this.lastPaymentDate = lastPaymentDate; } public MortgageLiability loanTypeDescription(String loanTypeDescription) { this.loanTypeDescription = loanTypeDescription; return this; } /** * Description of the type of loan, for example &#x60;conventional&#x60;, &#x60;fixed&#x60;, or &#x60;variable&#x60;. This field is provided directly from the loan servicer and does not have an enumerated set of possible values. * @return loanTypeDescription **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Description of the type of loan, for example `conventional`, `fixed`, or `variable`. This field is provided directly from the loan servicer and does not have an enumerated set of possible values.") public String getLoanTypeDescription() { return loanTypeDescription; } public void setLoanTypeDescription(String loanTypeDescription) { this.loanTypeDescription = loanTypeDescription; } public MortgageLiability loanTerm(String loanTerm) { this.loanTerm = loanTerm; return this; } /** * Full duration of mortgage as at origination (e.g. &#x60;10 year&#x60;). * @return loanTerm **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Full duration of mortgage as at origination (e.g. `10 year`).") public String getLoanTerm() { return loanTerm; } public void setLoanTerm(String loanTerm) { this.loanTerm = loanTerm; } public MortgageLiability maturityDate(LocalDate maturityDate) { this.maturityDate = maturityDate; return this; } /** * Original date on which mortgage is due in full. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). * @return maturityDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Original date on which mortgage is due in full. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD).") public LocalDate getMaturityDate() { return maturityDate; } public void setMaturityDate(LocalDate maturityDate) { this.maturityDate = maturityDate; } public MortgageLiability nextMonthlyPayment(Double nextMonthlyPayment) { this.nextMonthlyPayment = nextMonthlyPayment; return this; } /** * The amount of the next payment. * @return nextMonthlyPayment **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The amount of the next payment.") public Double getNextMonthlyPayment() { return nextMonthlyPayment; } public void setNextMonthlyPayment(Double nextMonthlyPayment) { this.nextMonthlyPayment = nextMonthlyPayment; } public MortgageLiability nextPaymentDueDate(LocalDate nextPaymentDueDate) { this.nextPaymentDueDate = nextPaymentDueDate; return this; } /** * The due date for the next payment. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). * @return nextPaymentDueDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The due date for the next payment. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD).") public LocalDate getNextPaymentDueDate() { return nextPaymentDueDate; } public void setNextPaymentDueDate(LocalDate nextPaymentDueDate) { this.nextPaymentDueDate = nextPaymentDueDate; } public MortgageLiability originationDate(LocalDate originationDate) { this.originationDate = originationDate; return this; } /** * The date on which the loan was initially lent. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). * @return originationDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The date on which the loan was initially lent. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD).") public LocalDate getOriginationDate() { return originationDate; } public void setOriginationDate(LocalDate originationDate) { this.originationDate = originationDate; } public MortgageLiability originationPrincipalAmount(Double originationPrincipalAmount) { this.originationPrincipalAmount = originationPrincipalAmount; return this; } /** * The original principal balance of the mortgage. * @return originationPrincipalAmount **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The original principal balance of the mortgage.") public Double getOriginationPrincipalAmount() { return originationPrincipalAmount; } public void setOriginationPrincipalAmount(Double originationPrincipalAmount) { this.originationPrincipalAmount = originationPrincipalAmount; } public MortgageLiability pastDueAmount(Double pastDueAmount) { this.pastDueAmount = pastDueAmount; return this; } /** * Amount of loan (principal + interest) past due for payment. * @return pastDueAmount **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Amount of loan (principal + interest) past due for payment.") public Double getPastDueAmount() { return pastDueAmount; } public void setPastDueAmount(Double pastDueAmount) { this.pastDueAmount = pastDueAmount; } public MortgageLiability propertyAddress(MortgagePropertyAddress propertyAddress) { this.propertyAddress = propertyAddress; return this; } /** * Get propertyAddress * @return propertyAddress **/ @ApiModelProperty(required = true, value = "") public MortgagePropertyAddress getPropertyAddress() { return propertyAddress; } public void setPropertyAddress(MortgagePropertyAddress propertyAddress) { this.propertyAddress = propertyAddress; } public MortgageLiability ytdInterestPaid(Double ytdInterestPaid) { this.ytdInterestPaid = ytdInterestPaid; return this; } /** * The year to date (YTD) interest paid. * @return ytdInterestPaid **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The year to date (YTD) interest paid.") public Double getYtdInterestPaid() { return ytdInterestPaid; } public void setYtdInterestPaid(Double ytdInterestPaid) { this.ytdInterestPaid = ytdInterestPaid; } public MortgageLiability ytdPrincipalPaid(Double ytdPrincipalPaid) { this.ytdPrincipalPaid = ytdPrincipalPaid; return this; } /** * The YTD principal paid. * @return ytdPrincipalPaid **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The YTD principal paid.") public Double getYtdPrincipalPaid() { return ytdPrincipalPaid; } public void setYtdPrincipalPaid(Double ytdPrincipalPaid) { this.ytdPrincipalPaid = ytdPrincipalPaid; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } MortgageLiability mortgageLiability = (MortgageLiability) o; return Objects.equals(this.accountId, mortgageLiability.accountId) && Objects.equals(this.accountNumber, mortgageLiability.accountNumber) && Objects.equals(this.currentLateFee, mortgageLiability.currentLateFee) && Objects.equals(this.escrowBalance, mortgageLiability.escrowBalance) && Objects.equals(this.hasPmi, mortgageLiability.hasPmi) && Objects.equals(this.hasPrepaymentPenalty, mortgageLiability.hasPrepaymentPenalty) && Objects.equals(this.interestRate, mortgageLiability.interestRate) && Objects.equals(this.lastPaymentAmount, mortgageLiability.lastPaymentAmount) && Objects.equals(this.lastPaymentDate, mortgageLiability.lastPaymentDate) && Objects.equals(this.loanTypeDescription, mortgageLiability.loanTypeDescription) && Objects.equals(this.loanTerm, mortgageLiability.loanTerm) && Objects.equals(this.maturityDate, mortgageLiability.maturityDate) && Objects.equals(this.nextMonthlyPayment, mortgageLiability.nextMonthlyPayment) && Objects.equals(this.nextPaymentDueDate, mortgageLiability.nextPaymentDueDate) && Objects.equals(this.originationDate, mortgageLiability.originationDate) && Objects.equals(this.originationPrincipalAmount, mortgageLiability.originationPrincipalAmount) && Objects.equals(this.pastDueAmount, mortgageLiability.pastDueAmount) && Objects.equals(this.propertyAddress, mortgageLiability.propertyAddress) && Objects.equals(this.ytdInterestPaid, mortgageLiability.ytdInterestPaid) && Objects.equals(this.ytdPrincipalPaid, mortgageLiability.ytdPrincipalPaid); } @Override public int hashCode() { return Objects.hash(accountId, accountNumber, currentLateFee, escrowBalance, hasPmi, hasPrepaymentPenalty, interestRate, lastPaymentAmount, lastPaymentDate, loanTypeDescription, loanTerm, maturityDate, nextMonthlyPayment, nextPaymentDueDate, originationDate, originationPrincipalAmount, pastDueAmount, propertyAddress, ytdInterestPaid, ytdPrincipalPaid); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class MortgageLiability {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" accountNumber: ").append(toIndentedString(accountNumber)).append("\n"); sb.append(" currentLateFee: ").append(toIndentedString(currentLateFee)).append("\n"); sb.append(" escrowBalance: ").append(toIndentedString(escrowBalance)).append("\n"); sb.append(" hasPmi: ").append(toIndentedString(hasPmi)).append("\n"); sb.append(" hasPrepaymentPenalty: ").append(toIndentedString(hasPrepaymentPenalty)).append("\n"); sb.append(" interestRate: ").append(toIndentedString(interestRate)).append("\n"); sb.append(" lastPaymentAmount: ").append(toIndentedString(lastPaymentAmount)).append("\n"); sb.append(" lastPaymentDate: ").append(toIndentedString(lastPaymentDate)).append("\n"); sb.append(" loanTypeDescription: ").append(toIndentedString(loanTypeDescription)).append("\n"); sb.append(" loanTerm: ").append(toIndentedString(loanTerm)).append("\n"); sb.append(" maturityDate: ").append(toIndentedString(maturityDate)).append("\n"); sb.append(" nextMonthlyPayment: ").append(toIndentedString(nextMonthlyPayment)).append("\n"); sb.append(" nextPaymentDueDate: ").append(toIndentedString(nextPaymentDueDate)).append("\n"); sb.append(" originationDate: ").append(toIndentedString(originationDate)).append("\n"); sb.append(" originationPrincipalAmount: ").append(toIndentedString(originationPrincipalAmount)).append("\n"); sb.append(" pastDueAmount: ").append(toIndentedString(pastDueAmount)).append("\n"); sb.append(" propertyAddress: ").append(toIndentedString(propertyAddress)).append("\n"); sb.append(" ytdInterestPaid: ").append(toIndentedString(ytdInterestPaid)).append("\n"); sb.append(" ytdPrincipalPaid: ").append(toIndentedString(ytdPrincipalPaid)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaymentAmountRefunded.java
src/main/java/com/plaid/client/model/PaymentAmountRefunded.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PaymentAmountCurrency; import com.plaid.client.model.PaymentAmountNullable; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The amount and currency of a payment */ @ApiModel(description = "The amount and currency of a payment") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentAmountRefunded { public static final String SERIALIZED_NAME_CURRENCY = "currency"; @SerializedName(SERIALIZED_NAME_CURRENCY) private PaymentAmountCurrency currency; public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) private Double value; public PaymentAmountRefunded currency(PaymentAmountCurrency currency) { this.currency = currency; return this; } /** * Get currency * @return currency **/ @ApiModelProperty(required = true, value = "") public PaymentAmountCurrency getCurrency() { return currency; } public void setCurrency(PaymentAmountCurrency currency) { this.currency = currency; } public PaymentAmountRefunded value(Double value) { this.value = value; return this; } /** * The amount of the payment. Must contain at most two digits of precision e.g. &#x60;1.23&#x60;. * minimum: 0.01 * @return value **/ @ApiModelProperty(required = true, value = "The amount of the payment. Must contain at most two digits of precision e.g. `1.23`.") public Double getValue() { return value; } public void setValue(Double value) { this.value = value; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaymentAmountRefunded paymentAmountRefunded = (PaymentAmountRefunded) o; return Objects.equals(this.currency, paymentAmountRefunded.currency) && Objects.equals(this.value, paymentAmountRefunded.value); } @Override public int hashCode() { return Objects.hash(currency, value); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentAmountRefunded {\n"); sb.append(" currency: ").append(toIndentedString(currency)).append("\n"); sb.append(" value: ").append(toIndentedString(value)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransactionCode.java
src/main/java/com/plaid/client/model/TransactionCode.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * An identifier classifying the transaction type. This field is only populated for European institutions. For institutions in the US and Canada, this field is set to &#x60;null&#x60;. &#x60;adjustment:&#x60; Bank adjustment &#x60;atm:&#x60; Cash deposit or withdrawal via an automated teller machine &#x60;bank charge:&#x60; Charge or fee levied by the institution &#x60;bill payment&#x60;: Payment of a bill &#x60;cash:&#x60; Cash deposit or withdrawal &#x60;cashback:&#x60; Cash withdrawal while making a debit card purchase &#x60;cheque:&#x60; Document ordering the payment of money to another person or organization &#x60;direct debit:&#x60; Automatic withdrawal of funds initiated by a third party at a regular interval &#x60;interest:&#x60; Interest earned or incurred &#x60;purchase:&#x60; Purchase made with a debit or credit card &#x60;standing order:&#x60; Payment instructed by the account holder to a third party at a regular interval &#x60;transfer:&#x60; Transfer of money between accounts */ @JsonAdapter(TransactionCode.Adapter.class) public enum TransactionCode { ADJUSTMENT("adjustment"), ATM("atm"), BANK_CHARGE("bank charge"), BILL_PAYMENT("bill payment"), CASH("cash"), CASHBACK("cashback"), CHEQUE("cheque"), DIRECT_DEBIT("direct debit"), INTEREST("interest"), PURCHASE("purchase"), STANDING_ORDER("standing order"), TRANSFER("transfer"), NULL("null"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; TransactionCode(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransactionCode fromValue(String value) { for (TransactionCode b : TransactionCode.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<TransactionCode> { @Override public void write(final JsonWriter jsonWriter, final TransactionCode enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransactionCode read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransactionCode.fromValue(value); } } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AuthGetRequest.java
src/main/java/com/plaid/client/model/AuthGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AuthGetRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * AuthGetRequest defines the request schema for &#x60;/auth/get&#x60; */ @ApiModel(description = "AuthGetRequest defines the request schema for `/auth/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AuthGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) private String accessToken; public static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private AuthGetRequestOptions options; public AuthGetRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public AuthGetRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public AuthGetRequest accessToken(String accessToken) { this.accessToken = accessToken; return this; } /** * The access token associated with the Item data is being requested for. * @return accessToken **/ @ApiModelProperty(required = true, value = "The access token associated with the Item data is being requested for.") public String getAccessToken() { return accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; } public AuthGetRequest options(AuthGetRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AuthGetRequestOptions getOptions() { return options; } public void setOptions(AuthGetRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AuthGetRequest authGetRequest = (AuthGetRequest) o; return Objects.equals(this.clientId, authGetRequest.clientId) && Objects.equals(this.secret, authGetRequest.secret) && Objects.equals(this.accessToken, authGetRequest.accessToken) && Objects.equals(this.options, authGetRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, accessToken, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AuthGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n"); sb.append(" options: ").append(toIndentedString(options)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AccountInsights.java
src/main/java/com/plaid/client/model/AccountInsights.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AffordabilityInsights; import com.plaid.client.model.RiskIndicators; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * This is a container object for all lending-related insights. This field will be returned only for European customers. */ @ApiModel(description = "This is a container object for all lending-related insights. This field will be returned only for European customers.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AccountInsights { public static final String SERIALIZED_NAME_RISK = "risk"; @SerializedName(SERIALIZED_NAME_RISK) private RiskIndicators risk; public static final String SERIALIZED_NAME_AFFORDABILITY = "affordability"; @SerializedName(SERIALIZED_NAME_AFFORDABILITY) private AffordabilityInsights affordability; public AccountInsights risk(RiskIndicators risk) { this.risk = risk; return this; } /** * Get risk * @return risk **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public RiskIndicators getRisk() { return risk; } public void setRisk(RiskIndicators risk) { this.risk = risk; } public AccountInsights affordability(AffordabilityInsights affordability) { this.affordability = affordability; return this; } /** * Get affordability * @return affordability **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AffordabilityInsights getAffordability() { return affordability; } public void setAffordability(AffordabilityInsights affordability) { this.affordability = affordability; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AccountInsights accountInsights = (AccountInsights) o; return Objects.equals(this.risk, accountInsights.risk) && Objects.equals(this.affordability, accountInsights.affordability); } @Override public int hashCode() { return Objects.hash(risk, affordability); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AccountInsights {\n"); sb.append(" risk: ").append(toIndentedString(risk)).append("\n"); sb.append(" affordability: ").append(toIndentedString(affordability)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AccountIdentityAllOf.java
src/main/java/com/plaid/client/model/AccountIdentityAllOf.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.Owner; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * AccountIdentityAllOf */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AccountIdentityAllOf { public static final String SERIALIZED_NAME_OWNERS = "owners"; @SerializedName(SERIALIZED_NAME_OWNERS) private List<Owner> owners = new ArrayList<>(); public AccountIdentityAllOf owners(List<Owner> owners) { this.owners = owners; return this; } public AccountIdentityAllOf addOwnersItem(Owner ownersItem) { this.owners.add(ownersItem); return this; } /** * Data returned by the financial institution about the account owner or owners. Only returned by Identity or Assets endpoints. For business accounts, the name reported may be either the name of the individual or the name of the business, depending on the institution; detecting whether the linked account is a business account is not currently supported. Multiple owners on a single account will be represented in the same &#x60;owner&#x60; object, not in multiple owner objects within the array. In API versions 2018-05-22 and earlier, the &#x60;owners&#x60; object is not returned, and instead identity information is returned in the top level &#x60;identity&#x60; object. For more details, see [Plaid API versioning](https://plaid.com/docs/api/versioning/#version-2019-05-29) * @return owners **/ @ApiModelProperty(required = true, value = "Data returned by the financial institution about the account owner or owners. Only returned by Identity or Assets endpoints. For business accounts, the name reported may be either the name of the individual or the name of the business, depending on the institution; detecting whether the linked account is a business account is not currently supported. Multiple owners on a single account will be represented in the same `owner` object, not in multiple owner objects within the array. In API versions 2018-05-22 and earlier, the `owners` object is not returned, and instead identity information is returned in the top level `identity` object. For more details, see [Plaid API versioning](https://plaid.com/docs/api/versioning/#version-2019-05-29)") public List<Owner> getOwners() { return owners; } public void setOwners(List<Owner> owners) { this.owners = owners; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AccountIdentityAllOf accountIdentityAllOf = (AccountIdentityAllOf) o; return Objects.equals(this.owners, accountIdentityAllOf.owners); } @Override public int hashCode() { return Objects.hash(owners); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AccountIdentityAllOf {\n"); sb.append(" owners: ").append(toIndentedString(owners)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/MortgageInterestRate.java
src/main/java/com/plaid/client/model/MortgageInterestRate.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Object containing metadata about the interest rate for the mortgage. */ @ApiModel(description = "Object containing metadata about the interest rate for the mortgage.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class MortgageInterestRate { public static final String SERIALIZED_NAME_PERCENTAGE = "percentage"; @SerializedName(SERIALIZED_NAME_PERCENTAGE) private Double percentage; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private String type; public MortgageInterestRate percentage(Double percentage) { this.percentage = percentage; return this; } /** * Percentage value (interest rate of current mortgage, not APR) of interest payable on a loan. * @return percentage **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Percentage value (interest rate of current mortgage, not APR) of interest payable on a loan.") public Double getPercentage() { return percentage; } public void setPercentage(Double percentage) { this.percentage = percentage; } public MortgageInterestRate type(String type) { this.type = type; return this; } /** * The type of interest charged (fixed or variable). * @return type **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The type of interest charged (fixed or variable).") public String getType() { return type; } public void setType(String type) { this.type = type; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } MortgageInterestRate mortgageInterestRate = (MortgageInterestRate) o; return Objects.equals(this.percentage, mortgageInterestRate.percentage) && Objects.equals(this.type, mortgageInterestRate.type); } @Override public int hashCode() { return Objects.hash(percentage, type); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class MortgageInterestRate {\n"); sb.append(" percentage: ").append(toIndentedString(percentage)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/InvestmentsAuthGetRequest.java
src/main/java/com/plaid/client/model/InvestmentsAuthGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.InvestmentsAuthGetRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * InvestmentsAuthGetRequest defines the request schema for &#x60;/investments/auth/get&#x60; */ @ApiModel(description = "InvestmentsAuthGetRequest defines the request schema for `/investments/auth/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InvestmentsAuthGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) private String accessToken; public static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private InvestmentsAuthGetRequestOptions options; public InvestmentsAuthGetRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public InvestmentsAuthGetRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public InvestmentsAuthGetRequest accessToken(String accessToken) { this.accessToken = accessToken; return this; } /** * The access token associated with the Item data is being requested for. * @return accessToken **/ @ApiModelProperty(required = true, value = "The access token associated with the Item data is being requested for.") public String getAccessToken() { return accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; } public InvestmentsAuthGetRequest options(InvestmentsAuthGetRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public InvestmentsAuthGetRequestOptions getOptions() { return options; } public void setOptions(InvestmentsAuthGetRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } InvestmentsAuthGetRequest investmentsAuthGetRequest = (InvestmentsAuthGetRequest) o; return Objects.equals(this.clientId, investmentsAuthGetRequest.clientId) && Objects.equals(this.secret, investmentsAuthGetRequest.secret) && Objects.equals(this.accessToken, investmentsAuthGetRequest.accessToken) && Objects.equals(this.options, investmentsAuthGetRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, accessToken, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InvestmentsAuthGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n"); sb.append(" options: ").append(toIndentedString(options)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/RiskProfile.java
src/main/java/com/plaid/client/model/RiskProfile.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * RiskProfile is deprecated, use &#x60;ruleset&#x60; instead. */ @ApiModel(description = "RiskProfile is deprecated, use `ruleset` instead.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class RiskProfile { public static final String SERIALIZED_NAME_KEY = "key"; @SerializedName(SERIALIZED_NAME_KEY) private String key; public static final String SERIALIZED_NAME_OUTCOME = "outcome"; @SerializedName(SERIALIZED_NAME_OUTCOME) private String outcome; public RiskProfile key(String key) { this.key = key; return this; } /** * The key of the risk profile used for this transaction. * @return key **/ @javax.annotation.Nullable @ApiModelProperty(value = "The key of the risk profile used for this transaction.") public String getKey() { return key; } public void setKey(String key) { this.key = key; } public RiskProfile outcome(String outcome) { this.outcome = outcome; return this; } /** * Legacy method of inspecting the result of the ruleset. New integrations should simply use the “result” property instead. This value will be omitted if you do not have a live existing integration with rules using this field. * @return outcome **/ @javax.annotation.Nullable @ApiModelProperty(value = "Legacy method of inspecting the result of the ruleset. New integrations should simply use the “result” property instead. This value will be omitted if you do not have a live existing integration with rules using this field.") public String getOutcome() { return outcome; } public void setOutcome(String outcome) { this.outcome = outcome; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } RiskProfile riskProfile = (RiskProfile) o; return Objects.equals(this.key, riskProfile.key) && Objects.equals(this.outcome, riskProfile.outcome); } @Override public int hashCode() { return Objects.hash(key, outcome); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class RiskProfile {\n"); sb.append(" key: ").append(toIndentedString(key)).append("\n"); sb.append(" outcome: ").append(toIndentedString(outcome)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/Email.java
src/main/java/com/plaid/client/model/Email.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object representing an email address */ @ApiModel(description = "An object representing an email address") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Email { public static final String SERIALIZED_NAME_DATA = "data"; @SerializedName(SERIALIZED_NAME_DATA) private String data; public static final String SERIALIZED_NAME_PRIMARY = "primary"; @SerializedName(SERIALIZED_NAME_PRIMARY) private Boolean primary; /** * The type of email account as described by the financial institution. */ @JsonAdapter(TypeEnum.Adapter.class) public enum TypeEnum { PRIMARY("primary"), SECONDARY("secondary"), OTHER("other"); private String value; TypeEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TypeEnum fromValue(String value) { for (TypeEnum b : TypeEnum.values()) { if (b.value.equals(value)) { return b; } } throw new IllegalArgumentException("Unexpected value '" + value + "'"); } public static class Adapter extends TypeAdapter<TypeEnum> { @Override public void write(final JsonWriter jsonWriter, final TypeEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TypeEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TypeEnum.fromValue(value); } } } public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private TypeEnum type; public Email data(String data) { this.data = data; return this; } /** * The email address. * @return data **/ @ApiModelProperty(required = true, value = "The email address.") public String getData() { return data; } public void setData(String data) { this.data = data; } public Email primary(Boolean primary) { this.primary = primary; return this; } /** * When &#x60;true&#x60;, identifies the email address as the primary email on an account. * @return primary **/ @ApiModelProperty(required = true, value = "When `true`, identifies the email address as the primary email on an account.") public Boolean getPrimary() { return primary; } public void setPrimary(Boolean primary) { this.primary = primary; } public Email type(TypeEnum type) { this.type = type; return this; } /** * The type of email account as described by the financial institution. * @return type **/ @ApiModelProperty(required = true, value = "The type of email account as described by the financial institution.") public TypeEnum getType() { return type; } public void setType(TypeEnum type) { this.type = type; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Email email = (Email) o; return Objects.equals(this.data, email.data) && Objects.equals(this.primary, email.primary) && Objects.equals(this.type, email.type); } @Override public int hashCode() { return Objects.hash(data, primary, type); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Email {\n"); sb.append(" data: ").append(toIndentedString(data)).append("\n"); sb.append(" primary: ").append(toIndentedString(primary)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ServiceProductFulfillment.java
src/main/java/com/plaid/client/model/ServiceProductFulfillment.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.ServiceProductFulfillmentDetail; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * A collection of details related to a fulfillment service or product in terms of request, process and result. */ @ApiModel(description = "A collection of details related to a fulfillment service or product in terms of request, process and result.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ServiceProductFulfillment { public static final String SERIALIZED_NAME_S_E_R_V_I_C_E_P_R_O_D_U_C_T_F_U_L_F_I_L_L_M_E_N_T_D_E_T_A_I_L = "SERVICE_PRODUCT_FULFILLMENT_DETAIL"; @SerializedName(SERIALIZED_NAME_S_E_R_V_I_C_E_P_R_O_D_U_C_T_F_U_L_F_I_L_L_M_E_N_T_D_E_T_A_I_L) private ServiceProductFulfillmentDetail SERVICE_PRODUCT_FULFILLMENT_DETAIL; public ServiceProductFulfillment SERVICE_PRODUCT_FULFILLMENT_DETAIL(ServiceProductFulfillmentDetail SERVICE_PRODUCT_FULFILLMENT_DETAIL) { this.SERVICE_PRODUCT_FULFILLMENT_DETAIL = SERVICE_PRODUCT_FULFILLMENT_DETAIL; return this; } /** * Get SERVICE_PRODUCT_FULFILLMENT_DETAIL * @return SERVICE_PRODUCT_FULFILLMENT_DETAIL **/ @ApiModelProperty(required = true, value = "") public ServiceProductFulfillmentDetail getSERVICEPRODUCTFULFILLMENTDETAIL() { return SERVICE_PRODUCT_FULFILLMENT_DETAIL; } public void setSERVICEPRODUCTFULFILLMENTDETAIL(ServiceProductFulfillmentDetail SERVICE_PRODUCT_FULFILLMENT_DETAIL) { this.SERVICE_PRODUCT_FULFILLMENT_DETAIL = SERVICE_PRODUCT_FULFILLMENT_DETAIL; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ServiceProductFulfillment serviceProductFulfillment = (ServiceProductFulfillment) o; return Objects.equals(this.SERVICE_PRODUCT_FULFILLMENT_DETAIL, serviceProductFulfillment.SERVICE_PRODUCT_FULFILLMENT_DETAIL); } @Override public int hashCode() { return Objects.hash(SERVICE_PRODUCT_FULFILLMENT_DETAIL); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ServiceProductFulfillment {\n"); sb.append(" SERVICE_PRODUCT_FULFILLMENT_DETAIL: ").append(toIndentedString(SERVICE_PRODUCT_FULFILLMENT_DETAIL)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BankTransferMigrateAccountRequest.java
src/main/java/com/plaid/client/model/BankTransferMigrateAccountRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the request schema for &#x60;/bank_transfer/migrate_account&#x60; */ @ApiModel(description = "Defines the request schema for `/bank_transfer/migrate_account`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankTransferMigrateAccountRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_ACCOUNT_NUMBER = "account_number"; @SerializedName(SERIALIZED_NAME_ACCOUNT_NUMBER) private String accountNumber; public static final String SERIALIZED_NAME_ROUTING_NUMBER = "routing_number"; @SerializedName(SERIALIZED_NAME_ROUTING_NUMBER) private String routingNumber; public static final String SERIALIZED_NAME_WIRE_ROUTING_NUMBER = "wire_routing_number"; @SerializedName(SERIALIZED_NAME_WIRE_ROUTING_NUMBER) private String wireRoutingNumber; public static final String SERIALIZED_NAME_ACCOUNT_TYPE = "account_type"; @SerializedName(SERIALIZED_NAME_ACCOUNT_TYPE) private String accountType; public BankTransferMigrateAccountRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public BankTransferMigrateAccountRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public BankTransferMigrateAccountRequest accountNumber(String accountNumber) { this.accountNumber = accountNumber; return this; } /** * The user&#39;s account number. * @return accountNumber **/ @ApiModelProperty(required = true, value = "The user's account number.") public String getAccountNumber() { return accountNumber; } public void setAccountNumber(String accountNumber) { this.accountNumber = accountNumber; } public BankTransferMigrateAccountRequest routingNumber(String routingNumber) { this.routingNumber = routingNumber; return this; } /** * The user&#39;s routing number. * @return routingNumber **/ @ApiModelProperty(required = true, value = "The user's routing number.") public String getRoutingNumber() { return routingNumber; } public void setRoutingNumber(String routingNumber) { this.routingNumber = routingNumber; } public BankTransferMigrateAccountRequest wireRoutingNumber(String wireRoutingNumber) { this.wireRoutingNumber = wireRoutingNumber; return this; } /** * The user&#39;s wire transfer routing number. This is the ABA number; for some institutions, this may differ from the ACH number used in &#x60;routing_number&#x60;. * @return wireRoutingNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's wire transfer routing number. This is the ABA number; for some institutions, this may differ from the ACH number used in `routing_number`.") public String getWireRoutingNumber() { return wireRoutingNumber; } public void setWireRoutingNumber(String wireRoutingNumber) { this.wireRoutingNumber = wireRoutingNumber; } public BankTransferMigrateAccountRequest accountType(String accountType) { this.accountType = accountType; return this; } /** * The type of the bank account (&#x60;checking&#x60; or &#x60;savings&#x60;). * @return accountType **/ @ApiModelProperty(required = true, value = "The type of the bank account (`checking` or `savings`).") public String getAccountType() { return accountType; } public void setAccountType(String accountType) { this.accountType = accountType; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BankTransferMigrateAccountRequest bankTransferMigrateAccountRequest = (BankTransferMigrateAccountRequest) o; return Objects.equals(this.clientId, bankTransferMigrateAccountRequest.clientId) && Objects.equals(this.secret, bankTransferMigrateAccountRequest.secret) && Objects.equals(this.accountNumber, bankTransferMigrateAccountRequest.accountNumber) && Objects.equals(this.routingNumber, bankTransferMigrateAccountRequest.routingNumber) && Objects.equals(this.wireRoutingNumber, bankTransferMigrateAccountRequest.wireRoutingNumber) && Objects.equals(this.accountType, bankTransferMigrateAccountRequest.accountType); } @Override public int hashCode() { return Objects.hash(clientId, secret, accountNumber, routingNumber, wireRoutingNumber, accountType); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankTransferMigrateAccountRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" accountNumber: ").append(toIndentedString(accountNumber)).append("\n"); sb.append(" routingNumber: ").append(toIndentedString(routingNumber)).append("\n"); sb.append(" wireRoutingNumber: ").append(toIndentedString(wireRoutingNumber)).append("\n"); sb.append(" accountType: ").append(toIndentedString(accountType)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AccountIdentityDocumentUploadAllOf.java
src/main/java/com/plaid/client/model/AccountIdentityDocumentUploadAllOf.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.IdentityDocumentUpload; import com.plaid.client.model.Owner; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * AccountIdentityDocumentUploadAllOf */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AccountIdentityDocumentUploadAllOf { public static final String SERIALIZED_NAME_OWNERS = "owners"; @SerializedName(SERIALIZED_NAME_OWNERS) private List<Owner> owners = new ArrayList<>(); public static final String SERIALIZED_NAME_DOCUMENTS = "documents"; @SerializedName(SERIALIZED_NAME_DOCUMENTS) private List<IdentityDocumentUpload> documents = null; public AccountIdentityDocumentUploadAllOf owners(List<Owner> owners) { this.owners = owners; return this; } public AccountIdentityDocumentUploadAllOf addOwnersItem(Owner ownersItem) { this.owners.add(ownersItem); return this; } /** * Data returned by the financial institution about the account owner or owners. Only returned by Identity or Assets endpoints. For business accounts, the name reported may be either the name of the individual or the name of the business, depending on the institution; detecting whether the linked account is a business account is not currently supported. Multiple owners on a single account will be represented in the same &#x60;owner&#x60; object, not in multiple owner objects within the array. In API versions 2018-05-22 and earlier, the &#x60;owners&#x60; object is not returned, and instead identity information is returned in the top level &#x60;identity&#x60; object. For more details, see [Plaid API versioning](https://plaid.com/docs/api/versioning/#version-2019-05-29) * @return owners **/ @ApiModelProperty(required = true, value = "Data returned by the financial institution about the account owner or owners. Only returned by Identity or Assets endpoints. For business accounts, the name reported may be either the name of the individual or the name of the business, depending on the institution; detecting whether the linked account is a business account is not currently supported. Multiple owners on a single account will be represented in the same `owner` object, not in multiple owner objects within the array. In API versions 2018-05-22 and earlier, the `owners` object is not returned, and instead identity information is returned in the top level `identity` object. For more details, see [Plaid API versioning](https://plaid.com/docs/api/versioning/#version-2019-05-29)") public List<Owner> getOwners() { return owners; } public void setOwners(List<Owner> owners) { this.owners = owners; } public AccountIdentityDocumentUploadAllOf documents(List<IdentityDocumentUpload> documents) { this.documents = documents; return this; } public AccountIdentityDocumentUploadAllOf addDocumentsItem(IdentityDocumentUpload documentsItem) { if (this.documents == null) { this.documents = new ArrayList<>(); } this.documents.add(documentsItem); return this; } /** * Data about the documents that were uploaded as proof of account ownership. * @return documents **/ @javax.annotation.Nullable @ApiModelProperty(value = "Data about the documents that were uploaded as proof of account ownership.") public List<IdentityDocumentUpload> getDocuments() { return documents; } public void setDocuments(List<IdentityDocumentUpload> documents) { this.documents = documents; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AccountIdentityDocumentUploadAllOf accountIdentityDocumentUploadAllOf = (AccountIdentityDocumentUploadAllOf) o; return Objects.equals(this.owners, accountIdentityDocumentUploadAllOf.owners) && Objects.equals(this.documents, accountIdentityDocumentUploadAllOf.documents); } @Override public int hashCode() { return Objects.hash(owners, documents); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AccountIdentityDocumentUploadAllOf {\n"); sb.append(" owners: ").append(toIndentedString(owners)).append("\n"); sb.append(" documents: ").append(toIndentedString(documents)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkTokenCreateCreditFilter.java
src/main/java/com/plaid/client/model/LinkTokenCreateCreditFilter.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CreditAccountSubtype; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * A filter to apply to &#x60;credit&#x60;-type accounts */ @ApiModel(description = "A filter to apply to `credit`-type accounts") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenCreateCreditFilter { public static final String SERIALIZED_NAME_ACCOUNT_SUBTYPES = "account_subtypes"; @SerializedName(SERIALIZED_NAME_ACCOUNT_SUBTYPES) private List<CreditAccountSubtype> accountSubtypes = null; public LinkTokenCreateCreditFilter accountSubtypes(List<CreditAccountSubtype> accountSubtypes) { this.accountSubtypes = accountSubtypes; return this; } public LinkTokenCreateCreditFilter addAccountSubtypesItem(CreditAccountSubtype accountSubtypesItem) { if (this.accountSubtypes == null) { this.accountSubtypes = new ArrayList<>(); } this.accountSubtypes.add(accountSubtypesItem); return this; } /** * An array of account subtypes to display in Link. If not specified, all account subtypes will be shown. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema). * @return accountSubtypes **/ @javax.annotation.Nullable @ApiModelProperty(value = "An array of account subtypes to display in Link. If not specified, all account subtypes will be shown. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema). ") public List<CreditAccountSubtype> getAccountSubtypes() { return accountSubtypes; } public void setAccountSubtypes(List<CreditAccountSubtype> accountSubtypes) { this.accountSubtypes = accountSubtypes; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkTokenCreateCreditFilter linkTokenCreateCreditFilter = (LinkTokenCreateCreditFilter) o; return Objects.equals(this.accountSubtypes, linkTokenCreateCreditFilter.accountSubtypes); } @Override public int hashCode() { return Objects.hash(accountSubtypes); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenCreateCreditFilter {\n"); sb.append(" accountSubtypes: ").append(toIndentedString(accountSubtypes)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/YTDNetIncomeSummaryFieldNumber.java
src/main/java/com/plaid/client/model/YTDNetIncomeSummaryFieldNumber.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.IncomeSummaryFieldNumber; import com.plaid.client.model.VerificationStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Year-to-date earnings after any tax withholdings, benefit payments or deductions, as reported on the paystub. */ @ApiModel(description = "Year-to-date earnings after any tax withholdings, benefit payments or deductions, as reported on the paystub.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class YTDNetIncomeSummaryFieldNumber { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) private Double value; public static final String SERIALIZED_NAME_VERIFICATION_STATUS = "verification_status"; @SerializedName(SERIALIZED_NAME_VERIFICATION_STATUS) private VerificationStatus verificationStatus; public YTDNetIncomeSummaryFieldNumber value(Double value) { this.value = value; return this; } /** * The value of the field. * @return value **/ @ApiModelProperty(required = true, value = "The value of the field.") public Double getValue() { return value; } public void setValue(Double value) { this.value = value; } public YTDNetIncomeSummaryFieldNumber verificationStatus(VerificationStatus verificationStatus) { this.verificationStatus = verificationStatus; return this; } /** * Get verificationStatus * @return verificationStatus **/ @ApiModelProperty(required = true, value = "") public VerificationStatus getVerificationStatus() { return verificationStatus; } public void setVerificationStatus(VerificationStatus verificationStatus) { this.verificationStatus = verificationStatus; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } YTDNetIncomeSummaryFieldNumber ytDNetIncomeSummaryFieldNumber = (YTDNetIncomeSummaryFieldNumber) o; return Objects.equals(this.value, ytDNetIncomeSummaryFieldNumber.value) && Objects.equals(this.verificationStatus, ytDNetIncomeSummaryFieldNumber.verificationStatus); } @Override public int hashCode() { return Objects.hash(value, verificationStatus); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class YTDNetIncomeSummaryFieldNumber {\n"); sb.append(" value: ").append(toIndentedString(value)).append("\n"); sb.append(" verificationStatus: ").append(toIndentedString(verificationStatus)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ItemPublicTokenExchangeRequest.java
src/main/java/com/plaid/client/model/ItemPublicTokenExchangeRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * ItemPublicTokenExchangeRequest defines the request schema for &#x60;/item/public_token/exchange&#x60; */ @ApiModel(description = "ItemPublicTokenExchangeRequest defines the request schema for `/item/public_token/exchange`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ItemPublicTokenExchangeRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_PUBLIC_TOKEN = "public_token"; @SerializedName(SERIALIZED_NAME_PUBLIC_TOKEN) private String publicToken; public ItemPublicTokenExchangeRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public ItemPublicTokenExchangeRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public ItemPublicTokenExchangeRequest publicToken(String publicToken) { this.publicToken = publicToken; return this; } /** * Your &#x60;public_token&#x60;, obtained from the Link &#x60;onSuccess&#x60; callback or &#x60;/sandbox/item/public_token/create&#x60;. * @return publicToken **/ @ApiModelProperty(required = true, value = "Your `public_token`, obtained from the Link `onSuccess` callback or `/sandbox/item/public_token/create`.") public String getPublicToken() { return publicToken; } public void setPublicToken(String publicToken) { this.publicToken = publicToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ItemPublicTokenExchangeRequest itemPublicTokenExchangeRequest = (ItemPublicTokenExchangeRequest) o; return Objects.equals(this.clientId, itemPublicTokenExchangeRequest.clientId) && Objects.equals(this.secret, itemPublicTokenExchangeRequest.secret) && Objects.equals(this.publicToken, itemPublicTokenExchangeRequest.publicToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, publicToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ItemPublicTokenExchangeRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" publicToken: ").append(toIndentedString(publicToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/Item.java
src/main/java/com/plaid/client/model/Item.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.ItemAuthMethod; import com.plaid.client.model.PlaidError; import com.plaid.client.model.Products; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.List; /** * Metadata about the Item. */ @ApiModel(description = "Metadata about the Item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Item { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) private String institutionId; public static final String SERIALIZED_NAME_INSTITUTION_NAME = "institution_name"; @SerializedName(SERIALIZED_NAME_INSTITUTION_NAME) private String institutionName; public static final String SERIALIZED_NAME_WEBHOOK = "webhook"; @SerializedName(SERIALIZED_NAME_WEBHOOK) private String webhook; public static final String SERIALIZED_NAME_AUTH_METHOD = "auth_method"; @SerializedName(SERIALIZED_NAME_AUTH_METHOD) private ItemAuthMethod authMethod; public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; public static final String SERIALIZED_NAME_AVAILABLE_PRODUCTS = "available_products"; @SerializedName(SERIALIZED_NAME_AVAILABLE_PRODUCTS) private List<Products> availableProducts = new ArrayList<>(); public static final String SERIALIZED_NAME_BILLED_PRODUCTS = "billed_products"; @SerializedName(SERIALIZED_NAME_BILLED_PRODUCTS) private List<Products> billedProducts = new ArrayList<>(); public static final String SERIALIZED_NAME_PRODUCTS = "products"; @SerializedName(SERIALIZED_NAME_PRODUCTS) private List<Products> products = null; public static final String SERIALIZED_NAME_CONSENTED_PRODUCTS = "consented_products"; @SerializedName(SERIALIZED_NAME_CONSENTED_PRODUCTS) private List<Products> consentedProducts = null; public static final String SERIALIZED_NAME_CONSENT_EXPIRATION_TIME = "consent_expiration_time"; @SerializedName(SERIALIZED_NAME_CONSENT_EXPIRATION_TIME) private OffsetDateTime consentExpirationTime; /** * Indicates whether an Item requires user interaction to be updated, which can be the case for Items with some forms of two-factor authentication. &#x60;background&#x60; - Item can be updated in the background &#x60;user_present_required&#x60; - Item requires user interaction to be updated */ @JsonAdapter(UpdateTypeEnum.Adapter.class) public enum UpdateTypeEnum { BACKGROUND("background"), USER_PRESENT_REQUIRED("user_present_required"); private String value; UpdateTypeEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static UpdateTypeEnum fromValue(String value) { for (UpdateTypeEnum b : UpdateTypeEnum.values()) { if (b.value.equals(value)) { return b; } } throw new IllegalArgumentException("Unexpected value '" + value + "'"); } public static class Adapter extends TypeAdapter<UpdateTypeEnum> { @Override public void write(final JsonWriter jsonWriter, final UpdateTypeEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public UpdateTypeEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return UpdateTypeEnum.fromValue(value); } } } public static final String SERIALIZED_NAME_UPDATE_TYPE = "update_type"; @SerializedName(SERIALIZED_NAME_UPDATE_TYPE) private UpdateTypeEnum updateType; public Item itemId(String itemId) { this.itemId = itemId; return this; } /** * The Plaid Item ID. The &#x60;item_id&#x60; is always unique; linking the same account at the same institution twice will result in two Items with different &#x60;item_id&#x60; values. Like all Plaid identifiers, the &#x60;item_id&#x60; is case-sensitive. * @return itemId **/ @ApiModelProperty(required = true, value = "The Plaid Item ID. The `item_id` is always unique; linking the same account at the same institution twice will result in two Items with different `item_id` values. Like all Plaid identifiers, the `item_id` is case-sensitive.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public Item institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * The Plaid Institution ID associated with the Item. Field is &#x60;null&#x60; for Items created without an institution connection, such as Items created via Same Day Micro-deposits. * @return institutionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Plaid Institution ID associated with the Item. Field is `null` for Items created without an institution connection, such as Items created via Same Day Micro-deposits.") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } public Item institutionName(String institutionName) { this.institutionName = institutionName; return this; } /** * The name of the institution associated with the Item. Field is &#x60;null&#x60; for Items created without an institution connection, such as Items created via Same Day Micro-deposits. * @return institutionName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The name of the institution associated with the Item. Field is `null` for Items created without an institution connection, such as Items created via Same Day Micro-deposits.") public String getInstitutionName() { return institutionName; } public void setInstitutionName(String institutionName) { this.institutionName = institutionName; } public Item webhook(String webhook) { this.webhook = webhook; return this; } /** * The URL registered to receive webhooks for the Item. * @return webhook **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The URL registered to receive webhooks for the Item.") public String getWebhook() { return webhook; } public void setWebhook(String webhook) { this.webhook = webhook; } public Item authMethod(ItemAuthMethod authMethod) { this.authMethod = authMethod; return this; } /** * Get authMethod * @return authMethod **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ItemAuthMethod getAuthMethod() { return authMethod; } public void setAuthMethod(ItemAuthMethod authMethod) { this.authMethod = authMethod; } public Item error(PlaidError error) { this.error = error; return this; } /** * Get error * @return error **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public PlaidError getError() { return error; } public void setError(PlaidError error) { this.error = error; } public Item availableProducts(List<Products> availableProducts) { this.availableProducts = availableProducts; return this; } public Item addAvailableProductsItem(Products availableProductsItem) { this.availableProducts.add(availableProductsItem); return this; } /** * A list of products available for the Item that have not yet been accessed. The contents of this array will be mutually exclusive with &#x60;billed_products&#x60;. * @return availableProducts **/ @ApiModelProperty(required = true, value = "A list of products available for the Item that have not yet been accessed. The contents of this array will be mutually exclusive with `billed_products`.") public List<Products> getAvailableProducts() { return availableProducts; } public void setAvailableProducts(List<Products> availableProducts) { this.availableProducts = availableProducts; } public Item billedProducts(List<Products> billedProducts) { this.billedProducts = billedProducts; return this; } public Item addBilledProductsItem(Products billedProductsItem) { this.billedProducts.add(billedProductsItem); return this; } /** * A list of products that have been billed for the Item. The contents of this array will be mutually exclusive with &#x60;available_products&#x60;. Note - &#x60;billed_products&#x60; is populated in all environments but only requests in Production are billed. Also note that products that are billed on a pay-per-call basis rather than a pay-per-Item basis, such as &#x60;balance&#x60;, will not appear here. * @return billedProducts **/ @ApiModelProperty(required = true, value = "A list of products that have been billed for the Item. The contents of this array will be mutually exclusive with `available_products`. Note - `billed_products` is populated in all environments but only requests in Production are billed. Also note that products that are billed on a pay-per-call basis rather than a pay-per-Item basis, such as `balance`, will not appear here. ") public List<Products> getBilledProducts() { return billedProducts; } public void setBilledProducts(List<Products> billedProducts) { this.billedProducts = billedProducts; } public Item products(List<Products> products) { this.products = products; return this; } public Item addProductsItem(Products productsItem) { if (this.products == null) { this.products = new ArrayList<>(); } this.products.add(productsItem); return this; } /** * A list of products added to the Item. In almost all cases, this will be the same as the &#x60;billed_products&#x60; field. For some products, it is possible for the product to be added to an Item but not yet billed (e.g. Assets, before &#x60;/asset_report/create&#x60; has been called, or Auth or Identity when added as Optional Products but before their endpoints have been called), in which case the product may appear in &#x60;products&#x60; but not in &#x60;billed_products&#x60;. * @return products **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of products added to the Item. In almost all cases, this will be the same as the `billed_products` field. For some products, it is possible for the product to be added to an Item but not yet billed (e.g. Assets, before `/asset_report/create` has been called, or Auth or Identity when added as Optional Products but before their endpoints have been called), in which case the product may appear in `products` but not in `billed_products`. ") public List<Products> getProducts() { return products; } public void setProducts(List<Products> products) { this.products = products; } public Item consentedProducts(List<Products> consentedProducts) { this.consentedProducts = consentedProducts; return this; } public Item addConsentedProductsItem(Products consentedProductsItem) { if (this.consentedProducts == null) { this.consentedProducts = new ArrayList<>(); } this.consentedProducts.add(consentedProductsItem); return this; } /** * A list of products that the user has consented to for the Item via [Data Transparency Messaging](https://plaid.com/docs/link/data-transparency-messaging-migration-guide). This will consist of all products where both of the following are true: the user has consented to the required data scopes for that product and you have Production access for that product. * @return consentedProducts **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of products that the user has consented to for the Item via [Data Transparency Messaging](https://plaid.com/docs/link/data-transparency-messaging-migration-guide). This will consist of all products where both of the following are true: the user has consented to the required data scopes for that product and you have Production access for that product. ") public List<Products> getConsentedProducts() { return consentedProducts; } public void setConsentedProducts(List<Products> consentedProducts) { this.consentedProducts = consentedProducts; } public Item consentExpirationTime(OffsetDateTime consentExpirationTime) { this.consentExpirationTime = consentExpirationTime; return this; } /** * The date and time at which the Item&#39;s access consent will expire, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. If the Item does not have consent expiration scheduled, this field will be &#x60;null&#x60;. Currently, only institutions in Europe and a small number of institutions in the US have expiring consent. For a list of US institutions that currently expire consent, see the [OAuth Guide](https://plaid.com/docs/link/oauth/#refreshing-item-consent). * @return consentExpirationTime **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The date and time at which the Item's access consent will expire, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. If the Item does not have consent expiration scheduled, this field will be `null`. Currently, only institutions in Europe and a small number of institutions in the US have expiring consent. For a list of US institutions that currently expire consent, see the [OAuth Guide](https://plaid.com/docs/link/oauth/#refreshing-item-consent).") public OffsetDateTime getConsentExpirationTime() { return consentExpirationTime; } public void setConsentExpirationTime(OffsetDateTime consentExpirationTime) { this.consentExpirationTime = consentExpirationTime; } public Item updateType(UpdateTypeEnum updateType) { this.updateType = updateType; return this; } /** * Indicates whether an Item requires user interaction to be updated, which can be the case for Items with some forms of two-factor authentication. &#x60;background&#x60; - Item can be updated in the background &#x60;user_present_required&#x60; - Item requires user interaction to be updated * @return updateType **/ @ApiModelProperty(required = true, value = "Indicates whether an Item requires user interaction to be updated, which can be the case for Items with some forms of two-factor authentication. `background` - Item can be updated in the background `user_present_required` - Item requires user interaction to be updated") public UpdateTypeEnum getUpdateType() { return updateType; } public void setUpdateType(UpdateTypeEnum updateType) { this.updateType = updateType; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Item item = (Item) o; return Objects.equals(this.itemId, item.itemId) && Objects.equals(this.institutionId, item.institutionId) && Objects.equals(this.institutionName, item.institutionName) && Objects.equals(this.webhook, item.webhook) && Objects.equals(this.authMethod, item.authMethod) && Objects.equals(this.error, item.error) && Objects.equals(this.availableProducts, item.availableProducts) && Objects.equals(this.billedProducts, item.billedProducts) && Objects.equals(this.products, item.products) && Objects.equals(this.consentedProducts, item.consentedProducts) && Objects.equals(this.consentExpirationTime, item.consentExpirationTime) && Objects.equals(this.updateType, item.updateType); } @Override public int hashCode() { return Objects.hash(itemId, institutionId, institutionName, webhook, authMethod, error, availableProducts, billedProducts, products, consentedProducts, consentExpirationTime, updateType); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Item {\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n"); sb.append(" institutionName: ").append(toIndentedString(institutionName)).append("\n"); sb.append(" webhook: ").append(toIndentedString(webhook)).append("\n"); sb.append(" authMethod: ").append(toIndentedString(authMethod)).append("\n"); sb.append(" error: ").append(toIndentedString(error)).append("\n"); sb.append(" availableProducts: ").append(toIndentedString(availableProducts)).append("\n"); sb.append(" billedProducts: ").append(toIndentedString(billedProducts)).append("\n"); sb.append(" products: ").append(toIndentedString(products)).append("\n"); sb.append(" consentedProducts: ").append(toIndentedString(consentedProducts)).append("\n"); sb.append(" consentExpirationTime: ").append(toIndentedString(consentExpirationTime)).append("\n"); sb.append(" updateType: ").append(toIndentedString(updateType)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ItemGetResponse.java
src/main/java/com/plaid/client/model/ItemGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.ItemStatusNullable; import com.plaid.client.model.ItemWithConsentFields; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * ItemGetResponse defines the response schema for &#x60;/item/get&#x60; and &#x60;/item/webhook/update&#x60; */ @ApiModel(description = "ItemGetResponse defines the response schema for `/item/get` and `/item/webhook/update`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ItemGetResponse { public static final String SERIALIZED_NAME_ITEM = "item"; @SerializedName(SERIALIZED_NAME_ITEM) private ItemWithConsentFields item; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private ItemStatusNullable status; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ItemGetResponse item(ItemWithConsentFields item) { this.item = item; return this; } /** * Get item * @return item **/ @ApiModelProperty(required = true, value = "") public ItemWithConsentFields getItem() { return item; } public void setItem(ItemWithConsentFields item) { this.item = item; } public ItemGetResponse status(ItemStatusNullable status) { this.status = status; return this; } /** * Get status * @return status **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ItemStatusNullable getStatus() { return status; } public void setStatus(ItemStatusNullable status) { this.status = status; } public ItemGetResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ItemGetResponse itemGetResponse = (ItemGetResponse) o; return Objects.equals(this.item, itemGetResponse.item) && Objects.equals(this.status, itemGetResponse.status) && Objects.equals(this.requestId, itemGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(item, status, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ItemGetResponse {\n"); sb.append(" item: ").append(toIndentedString(item)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WalletTransactionGetRequest.java
src/main/java/com/plaid/client/model/WalletTransactionGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * WalletTransactionGetRequest defines the request schema for &#x60;/wallet/transaction/get&#x60; */ @ApiModel(description = "WalletTransactionGetRequest defines the request schema for `/wallet/transaction/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WalletTransactionGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id"; @SerializedName(SERIALIZED_NAME_TRANSACTION_ID) private String transactionId; public WalletTransactionGetRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public WalletTransactionGetRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public WalletTransactionGetRequest transactionId(String transactionId) { this.transactionId = transactionId; return this; } /** * The ID of the transaction to fetch * @return transactionId **/ @ApiModelProperty(required = true, value = "The ID of the transaction to fetch") public String getTransactionId() { return transactionId; } public void setTransactionId(String transactionId) { this.transactionId = transactionId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } WalletTransactionGetRequest walletTransactionGetRequest = (WalletTransactionGetRequest) o; return Objects.equals(this.clientId, walletTransactionGetRequest.clientId) && Objects.equals(this.secret, walletTransactionGetRequest.secret) && Objects.equals(this.transactionId, walletTransactionGetRequest.transactionId); } @Override public int hashCode() { return Objects.hash(clientId, secret, transactionId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WalletTransactionGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" transactionId: ").append(toIndentedString(transactionId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkDeliveryRecipient.java
src/main/java/com/plaid/client/model/LinkDeliveryRecipient.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.LinkDeliveryCommunicationMethod; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Metadata related to the recipient. If the information required to populate this field is not available, leave it blank. */ @ApiModel(description = "Metadata related to the recipient. If the information required to populate this field is not available, leave it blank.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkDeliveryRecipient { public static final String SERIALIZED_NAME_COMMUNICATION_METHODS = "communication_methods"; @SerializedName(SERIALIZED_NAME_COMMUNICATION_METHODS) private List<LinkDeliveryCommunicationMethod> communicationMethods = null; public static final String SERIALIZED_NAME_FIRST_NAME = "first_name"; @SerializedName(SERIALIZED_NAME_FIRST_NAME) private String firstName; public LinkDeliveryRecipient communicationMethods(List<LinkDeliveryCommunicationMethod> communicationMethods) { this.communicationMethods = communicationMethods; return this; } public LinkDeliveryRecipient addCommunicationMethodsItem(LinkDeliveryCommunicationMethod communicationMethodsItem) { if (this.communicationMethods == null) { this.communicationMethods = new ArrayList<>(); } this.communicationMethods.add(communicationMethodsItem); return this; } /** * The list of communication methods to send the Hosted Link session URL to. If delivery is not required, leave this field blank. * @return communicationMethods **/ @javax.annotation.Nullable @ApiModelProperty(value = "The list of communication methods to send the Hosted Link session URL to. If delivery is not required, leave this field blank.") public List<LinkDeliveryCommunicationMethod> getCommunicationMethods() { return communicationMethods; } public void setCommunicationMethods(List<LinkDeliveryCommunicationMethod> communicationMethods) { this.communicationMethods = communicationMethods; } public LinkDeliveryRecipient firstName(String firstName) { this.firstName = firstName; return this; } /** * First name of the recipient. Will be used in the body of the email / text (if configured). If this information is not available, leave this field blank. * @return firstName **/ @javax.annotation.Nullable @ApiModelProperty(value = "First name of the recipient. Will be used in the body of the email / text (if configured). If this information is not available, leave this field blank.") public String getFirstName() { return firstName; } public void setFirstName(String firstName) { this.firstName = firstName; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkDeliveryRecipient linkDeliveryRecipient = (LinkDeliveryRecipient) o; return Objects.equals(this.communicationMethods, linkDeliveryRecipient.communicationMethods) && Objects.equals(this.firstName, linkDeliveryRecipient.firstName); } @Override public int hashCode() { return Objects.hash(communicationMethods, firstName); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkDeliveryRecipient {\n"); sb.append(" communicationMethods: ").append(toIndentedString(communicationMethods)).append("\n"); sb.append(" firstName: ").append(toIndentedString(firstName)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/NetworkInsightsReportGetResponse.java
src/main/java/com/plaid/client/model/NetworkInsightsReportGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.NetworkInsightsReport; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * NetworkInsightsReportGetResponse defines the response schema for &#x60;/network_insights/report/get&#x60;. */ @ApiModel(description = "NetworkInsightsReportGetResponse defines the response schema for `/network_insights/report/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class NetworkInsightsReportGetResponse { public static final String SERIALIZED_NAME_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) private NetworkInsightsReport report; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public NetworkInsightsReportGetResponse report(NetworkInsightsReport report) { this.report = report; return this; } /** * Get report * @return report **/ @ApiModelProperty(required = true, value = "") public NetworkInsightsReport getReport() { return report; } public void setReport(NetworkInsightsReport report) { this.report = report; } public NetworkInsightsReportGetResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } NetworkInsightsReportGetResponse networkInsightsReportGetResponse = (NetworkInsightsReportGetResponse) o; return Objects.equals(this.report, networkInsightsReportGetResponse.report) && Objects.equals(this.requestId, networkInsightsReportGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(report, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class NetworkInsightsReportGetResponse {\n"); sb.append(" report: ").append(toIndentedString(report)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ExtendedRecipientMetadata.java
src/main/java/com/plaid/client/model/ExtendedRecipientMetadata.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.ExtendedRecipientMetadataAllOf; import com.plaid.client.model.FDXRecipientMetadata; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * Plaid and FDX-defined recipient metadata fields */ @ApiModel(description = "Plaid and FDX-defined recipient metadata fields") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ExtendedRecipientMetadata { public static final String SERIALIZED_NAME_RECIPIENT_ID = "recipient_id"; @SerializedName(SERIALIZED_NAME_RECIPIENT_ID) private String recipientId; public static final String SERIALIZED_NAME_CLIENT_NAME = "client_name"; @SerializedName(SERIALIZED_NAME_CLIENT_NAME) private String clientName; public static final String SERIALIZED_NAME_LOGO_URI = "logo_uri"; @SerializedName(SERIALIZED_NAME_LOGO_URI) private String logoUri; public static final String SERIALIZED_NAME_THIRD_PARTY_LEGAL_NAME = "third_party_legal_name"; @SerializedName(SERIALIZED_NAME_THIRD_PARTY_LEGAL_NAME) private String thirdPartyLegalName; public static final String SERIALIZED_NAME_CATEGORY = "category"; @SerializedName(SERIALIZED_NAME_CATEGORY) private String category; public static final String SERIALIZED_NAME_JOINED_DATE = "joined_date"; @SerializedName(SERIALIZED_NAME_JOINED_DATE) private LocalDate joinedDate; public static final String SERIALIZED_NAME_CONNECTION_COUNT = "connection_count"; @SerializedName(SERIALIZED_NAME_CONNECTION_COUNT) private Integer connectionCount; public ExtendedRecipientMetadata recipientId(String recipientId) { this.recipientId = recipientId; return this; } /** * The recipient identifier * @return recipientId **/ @ApiModelProperty(required = true, value = "The recipient identifier") public String getRecipientId() { return recipientId; } public void setRecipientId(String recipientId) { this.recipientId = recipientId; } public ExtendedRecipientMetadata clientName(String clientName) { this.clientName = clientName; return this; } /** * The recipient name displayed by the Data Provider during the consent flow * @return clientName **/ @ApiModelProperty(required = true, value = "The recipient name displayed by the Data Provider during the consent flow") public String getClientName() { return clientName; } public void setClientName(String clientName) { this.clientName = clientName; } public ExtendedRecipientMetadata logoUri(String logoUri) { this.logoUri = logoUri; return this; } /** * Data Recipient Logo URL location * @return logoUri **/ @javax.annotation.Nullable @ApiModelProperty(value = "Data Recipient Logo URL location") public String getLogoUri() { return logoUri; } public void setLogoUri(String logoUri) { this.logoUri = logoUri; } public ExtendedRecipientMetadata thirdPartyLegalName(String thirdPartyLegalName) { this.thirdPartyLegalName = thirdPartyLegalName; return this; } /** * The legal name of the recipient * @return thirdPartyLegalName **/ @ApiModelProperty(required = true, value = "The legal name of the recipient") public String getThirdPartyLegalName() { return thirdPartyLegalName; } public void setThirdPartyLegalName(String thirdPartyLegalName) { this.thirdPartyLegalName = thirdPartyLegalName; } public ExtendedRecipientMetadata category(String category) { this.category = category; return this; } /** * The category that the recipient falls under * @return category **/ @ApiModelProperty(required = true, value = "The category that the recipient falls under") public String getCategory() { return category; } public void setCategory(String category) { this.category = category; } public ExtendedRecipientMetadata joinedDate(LocalDate joinedDate) { this.joinedDate = joinedDate; return this; } /** * The date at which the recipient gained production access to Plaid * @return joinedDate **/ @ApiModelProperty(example = "Thu Jul 15 00:00:00 UTC 2021", required = true, value = "The date at which the recipient gained production access to Plaid") public LocalDate getJoinedDate() { return joinedDate; } public void setJoinedDate(LocalDate joinedDate) { this.joinedDate = joinedDate; } public ExtendedRecipientMetadata connectionCount(Integer connectionCount) { this.connectionCount = connectionCount; return this; } /** * The number of Data Partner consumers that are connected to the recipient for the specific Data Partner * @return connectionCount **/ @ApiModelProperty(required = true, value = "The number of Data Partner consumers that are connected to the recipient for the specific Data Partner") public Integer getConnectionCount() { return connectionCount; } public void setConnectionCount(Integer connectionCount) { this.connectionCount = connectionCount; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ExtendedRecipientMetadata extendedRecipientMetadata = (ExtendedRecipientMetadata) o; return Objects.equals(this.recipientId, extendedRecipientMetadata.recipientId) && Objects.equals(this.clientName, extendedRecipientMetadata.clientName) && Objects.equals(this.logoUri, extendedRecipientMetadata.logoUri) && Objects.equals(this.thirdPartyLegalName, extendedRecipientMetadata.thirdPartyLegalName) && Objects.equals(this.category, extendedRecipientMetadata.category) && Objects.equals(this.joinedDate, extendedRecipientMetadata.joinedDate) && Objects.equals(this.connectionCount, extendedRecipientMetadata.connectionCount); } @Override public int hashCode() { return Objects.hash(recipientId, clientName, logoUri, thirdPartyLegalName, category, joinedDate, connectionCount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ExtendedRecipientMetadata {\n"); sb.append(" recipientId: ").append(toIndentedString(recipientId)).append("\n"); sb.append(" clientName: ").append(toIndentedString(clientName)).append("\n"); sb.append(" logoUri: ").append(toIndentedString(logoUri)).append("\n"); sb.append(" thirdPartyLegalName: ").append(toIndentedString(thirdPartyLegalName)).append("\n"); sb.append(" category: ").append(toIndentedString(category)).append("\n"); sb.append(" joinedDate: ").append(toIndentedString(joinedDate)).append("\n"); sb.append(" connectionCount: ").append(toIndentedString(connectionCount)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/RecaptchaRequiredError.java
src/main/java/com/plaid/client/model/RecaptchaRequiredError.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The request was flagged by Plaid&#39;s fraud system, and requires additional verification to ensure they are not a bot. */ @ApiModel(description = "The request was flagged by Plaid's fraud system, and requires additional verification to ensure they are not a bot.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class RecaptchaRequiredError { public static final String SERIALIZED_NAME_ERROR_TYPE = "error_type"; @SerializedName(SERIALIZED_NAME_ERROR_TYPE) private String errorType; public static final String SERIALIZED_NAME_ERROR_CODE = "error_code"; @SerializedName(SERIALIZED_NAME_ERROR_CODE) private String errorCode; public static final String SERIALIZED_NAME_DISPLAY_MESSAGE = "display_message"; @SerializedName(SERIALIZED_NAME_DISPLAY_MESSAGE) private String displayMessage; public static final String SERIALIZED_NAME_HTTP_CODE = "http_code"; @SerializedName(SERIALIZED_NAME_HTTP_CODE) private String httpCode; public static final String SERIALIZED_NAME_LINK_USER_EXPERIENCE = "link_user_experience"; @SerializedName(SERIALIZED_NAME_LINK_USER_EXPERIENCE) private String linkUserExperience; public static final String SERIALIZED_NAME_COMMON_CAUSES = "common_causes"; @SerializedName(SERIALIZED_NAME_COMMON_CAUSES) private String commonCauses; public static final String SERIALIZED_NAME_TROUBLESHOOTING_STEPS = "troubleshooting_steps"; @SerializedName(SERIALIZED_NAME_TROUBLESHOOTING_STEPS) private String troubleshootingSteps; public RecaptchaRequiredError errorType(String errorType) { this.errorType = errorType; return this; } /** * &#x60;RECAPTCHA_ERROR&#x60; * @return errorType **/ @ApiModelProperty(required = true, value = "`RECAPTCHA_ERROR`") public String getErrorType() { return errorType; } public void setErrorType(String errorType) { this.errorType = errorType; } public RecaptchaRequiredError errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * &#x60;RECAPTCHA_REQUIRED&#x60; * @return errorCode **/ @ApiModelProperty(required = true, value = "`RECAPTCHA_REQUIRED`") public String getErrorCode() { return errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public RecaptchaRequiredError displayMessage(String displayMessage) { this.displayMessage = displayMessage; return this; } /** * Get displayMessage * @return displayMessage **/ @ApiModelProperty(required = true, value = "") public String getDisplayMessage() { return displayMessage; } public void setDisplayMessage(String displayMessage) { this.displayMessage = displayMessage; } public RecaptchaRequiredError httpCode(String httpCode) { this.httpCode = httpCode; return this; } /** * 400 * @return httpCode **/ @ApiModelProperty(required = true, value = "400") public String getHttpCode() { return httpCode; } public void setHttpCode(String httpCode) { this.httpCode = httpCode; } public RecaptchaRequiredError linkUserExperience(String linkUserExperience) { this.linkUserExperience = linkUserExperience; return this; } /** * Your user will be prompted to solve a Google reCAPTCHA challenge in the Link Recaptcha pane. If they solve the challenge successfully, the user&#39;s request is resubmitted and they are directed to the next Item creation step. * @return linkUserExperience **/ @ApiModelProperty(required = true, value = "Your user will be prompted to solve a Google reCAPTCHA challenge in the Link Recaptcha pane. If they solve the challenge successfully, the user's request is resubmitted and they are directed to the next Item creation step.") public String getLinkUserExperience() { return linkUserExperience; } public void setLinkUserExperience(String linkUserExperience) { this.linkUserExperience = linkUserExperience; } public RecaptchaRequiredError commonCauses(String commonCauses) { this.commonCauses = commonCauses; return this; } /** * Plaid&#39;s fraud system detects abusive traffic and considers a variety of parameters throughout Item creation requests. When a request is considered risky or possibly fraudulent, Link presents a reCAPTCHA for the user to solve. * @return commonCauses **/ @ApiModelProperty(required = true, value = "Plaid's fraud system detects abusive traffic and considers a variety of parameters throughout Item creation requests. When a request is considered risky or possibly fraudulent, Link presents a reCAPTCHA for the user to solve.") public String getCommonCauses() { return commonCauses; } public void setCommonCauses(String commonCauses) { this.commonCauses = commonCauses; } public RecaptchaRequiredError troubleshootingSteps(String troubleshootingSteps) { this.troubleshootingSteps = troubleshootingSteps; return this; } /** * Link will automatically guide your user through reCAPTCHA verification. As a general rule, we recommend instrumenting basic fraud monitoring to detect and protect your website from spam and abuse. If your user cannot verify their session, please submit a Support ticket with the following identifiers: &#x60;link_session_id&#x60; or &#x60;request_id&#x60; * @return troubleshootingSteps **/ @ApiModelProperty(required = true, value = "Link will automatically guide your user through reCAPTCHA verification. As a general rule, we recommend instrumenting basic fraud monitoring to detect and protect your website from spam and abuse. If your user cannot verify their session, please submit a Support ticket with the following identifiers: `link_session_id` or `request_id`") public String getTroubleshootingSteps() { return troubleshootingSteps; } public void setTroubleshootingSteps(String troubleshootingSteps) { this.troubleshootingSteps = troubleshootingSteps; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } RecaptchaRequiredError recaptchaRequiredError = (RecaptchaRequiredError) o; return Objects.equals(this.errorType, recaptchaRequiredError.errorType) && Objects.equals(this.errorCode, recaptchaRequiredError.errorCode) && Objects.equals(this.displayMessage, recaptchaRequiredError.displayMessage) && Objects.equals(this.httpCode, recaptchaRequiredError.httpCode) && Objects.equals(this.linkUserExperience, recaptchaRequiredError.linkUserExperience) && Objects.equals(this.commonCauses, recaptchaRequiredError.commonCauses) && Objects.equals(this.troubleshootingSteps, recaptchaRequiredError.troubleshootingSteps); } @Override public int hashCode() { return Objects.hash(errorType, errorCode, displayMessage, httpCode, linkUserExperience, commonCauses, troubleshootingSteps); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class RecaptchaRequiredError {\n"); sb.append(" errorType: ").append(toIndentedString(errorType)).append("\n"); sb.append(" errorCode: ").append(toIndentedString(errorCode)).append("\n"); sb.append(" displayMessage: ").append(toIndentedString(displayMessage)).append("\n"); sb.append(" httpCode: ").append(toIndentedString(httpCode)).append("\n"); sb.append(" linkUserExperience: ").append(toIndentedString(linkUserExperience)).append("\n"); sb.append(" commonCauses: ").append(toIndentedString(commonCauses)).append("\n"); sb.append(" troubleshootingSteps: ").append(toIndentedString(troubleshootingSteps)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransactionsGetRequestOptions.java
src/main/java/com/plaid/client/model/TransactionsGetRequestOptions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PersonalFinanceCategoryVersion; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An optional object to be used with the request. If specified, &#x60;options&#x60; must not be &#x60;null&#x60;. */ @ApiModel(description = "An optional object to be used with the request. If specified, `options` must not be `null`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionsGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) private List<String> accountIds = null; public static final String SERIALIZED_NAME_COUNT = "count"; @SerializedName(SERIALIZED_NAME_COUNT) private Integer count = 100; public static final String SERIALIZED_NAME_OFFSET = "offset"; @SerializedName(SERIALIZED_NAME_OFFSET) private Integer offset = 0; public static final String SERIALIZED_NAME_INCLUDE_ORIGINAL_DESCRIPTION = "include_original_description"; @SerializedName(SERIALIZED_NAME_INCLUDE_ORIGINAL_DESCRIPTION) private Boolean includeOriginalDescription = false; public static final String SERIALIZED_NAME_INCLUDE_PERSONAL_FINANCE_CATEGORY_BETA = "include_personal_finance_category_beta"; @SerializedName(SERIALIZED_NAME_INCLUDE_PERSONAL_FINANCE_CATEGORY_BETA) private Boolean includePersonalFinanceCategoryBeta = false; public static final String SERIALIZED_NAME_INCLUDE_PERSONAL_FINANCE_CATEGORY = "include_personal_finance_category"; @SerializedName(SERIALIZED_NAME_INCLUDE_PERSONAL_FINANCE_CATEGORY) private Boolean includePersonalFinanceCategory = false; public static final String SERIALIZED_NAME_INCLUDE_LOGO_AND_COUNTERPARTY_BETA = "include_logo_and_counterparty_beta"; @SerializedName(SERIALIZED_NAME_INCLUDE_LOGO_AND_COUNTERPARTY_BETA) private Boolean includeLogoAndCounterpartyBeta = false; public static final String SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY_VERSION = "personal_finance_category_version"; @SerializedName(SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY_VERSION) private PersonalFinanceCategoryVersion personalFinanceCategoryVersion; public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) private Integer daysRequested = 90; public TransactionsGetRequestOptions accountIds(List<String> accountIds) { this.accountIds = accountIds; return this; } public TransactionsGetRequestOptions addAccountIdsItem(String accountIdsItem) { if (this.accountIds == null) { this.accountIds = new ArrayList<>(); } this.accountIds.add(accountIdsItem); return this; } /** * A list of &#x60;account_ids&#x60; to retrieve for the Item Note: An error will be returned if a provided &#x60;account_id&#x60; is not associated with the Item. * @return accountIds **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of `account_ids` to retrieve for the Item Note: An error will be returned if a provided `account_id` is not associated with the Item.") public List<String> getAccountIds() { return accountIds; } public void setAccountIds(List<String> accountIds) { this.accountIds = accountIds; } public TransactionsGetRequestOptions count(Integer count) { this.count = count; return this; } /** * The number of transactions to fetch. * minimum: 1 * maximum: 500 * @return count **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of transactions to fetch.") public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } public TransactionsGetRequestOptions offset(Integer offset) { this.offset = offset; return this; } /** * The number of transactions to skip. The default value is 0. * minimum: 0 * @return offset **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of transactions to skip. The default value is 0.") public Integer getOffset() { return offset; } public void setOffset(Integer offset) { this.offset = offset; } public TransactionsGetRequestOptions includeOriginalDescription(Boolean includeOriginalDescription) { this.includeOriginalDescription = includeOriginalDescription; return this; } /** * Include the raw unparsed transaction description from the financial institution. * @return includeOriginalDescription **/ @javax.annotation.Nullable @ApiModelProperty(value = "Include the raw unparsed transaction description from the financial institution.") public Boolean getIncludeOriginalDescription() { return includeOriginalDescription; } public void setIncludeOriginalDescription(Boolean includeOriginalDescription) { this.includeOriginalDescription = includeOriginalDescription; } public TransactionsGetRequestOptions includePersonalFinanceCategoryBeta(Boolean includePersonalFinanceCategoryBeta) { this.includePersonalFinanceCategoryBeta = includePersonalFinanceCategoryBeta; return this; } /** * Personal finance categories are now returned by default. * @return includePersonalFinanceCategoryBeta **/ @javax.annotation.Nullable @ApiModelProperty(value = "Personal finance categories are now returned by default.") public Boolean getIncludePersonalFinanceCategoryBeta() { return includePersonalFinanceCategoryBeta; } public void setIncludePersonalFinanceCategoryBeta(Boolean includePersonalFinanceCategoryBeta) { this.includePersonalFinanceCategoryBeta = includePersonalFinanceCategoryBeta; } public TransactionsGetRequestOptions includePersonalFinanceCategory(Boolean includePersonalFinanceCategory) { this.includePersonalFinanceCategory = includePersonalFinanceCategory; return this; } /** * Personal finance categories are now returned by default. * @return includePersonalFinanceCategory **/ @javax.annotation.Nullable @ApiModelProperty(value = "Personal finance categories are now returned by default.") public Boolean getIncludePersonalFinanceCategory() { return includePersonalFinanceCategory; } public void setIncludePersonalFinanceCategory(Boolean includePersonalFinanceCategory) { this.includePersonalFinanceCategory = includePersonalFinanceCategory; } public TransactionsGetRequestOptions includeLogoAndCounterpartyBeta(Boolean includeLogoAndCounterpartyBeta) { this.includeLogoAndCounterpartyBeta = includeLogoAndCounterpartyBeta; return this; } /** * Counterparties and extra merchant fields are now returned by default. * @return includeLogoAndCounterpartyBeta **/ @javax.annotation.Nullable @ApiModelProperty(value = "Counterparties and extra merchant fields are now returned by default.") public Boolean getIncludeLogoAndCounterpartyBeta() { return includeLogoAndCounterpartyBeta; } public void setIncludeLogoAndCounterpartyBeta(Boolean includeLogoAndCounterpartyBeta) { this.includeLogoAndCounterpartyBeta = includeLogoAndCounterpartyBeta; } public TransactionsGetRequestOptions personalFinanceCategoryVersion(PersonalFinanceCategoryVersion personalFinanceCategoryVersion) { this.personalFinanceCategoryVersion = personalFinanceCategoryVersion; return this; } /** * Get personalFinanceCategoryVersion * @return personalFinanceCategoryVersion **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PersonalFinanceCategoryVersion getPersonalFinanceCategoryVersion() { return personalFinanceCategoryVersion; } public void setPersonalFinanceCategoryVersion(PersonalFinanceCategoryVersion personalFinanceCategoryVersion) { this.personalFinanceCategoryVersion = personalFinanceCategoryVersion; } public TransactionsGetRequestOptions daysRequested(Integer daysRequested) { this.daysRequested = daysRequested; return this; } /** * This field only applies to calls for Items where the Transactions product has not already been initialized (i.e. by specifying &#x60;transactions&#x60; in the &#x60;products&#x60;, &#x60;optional_products&#x60;, or &#x60;required_if_consented_products&#x60; array when calling &#x60;/link/token/create&#x60; or by making a previous call to &#x60;/transactions/sync&#x60; or &#x60;/transactions/get&#x60;). In those cases, the field controls the maximum number of days of transaction history that Plaid will request from the financial institution. The more transaction history is requested, the longer the historical update poll will take. If no value is specified, 90 days of history will be requested by default. If a value under 30 is provided, a minimum of 30 days of history will be requested. If you are initializing your Items with transactions during the &#x60;/link/token/create&#x60; call (e.g. by including &#x60;transactions&#x60; in the &#x60;/link/token/create&#x60; &#x60;products&#x60; array), you must use the [&#x60;transactions.days_requested&#x60;](https://plaid.com/docs/api/link/#link-token-create-request-transactions-days-requested) field in the &#x60;/link/token/create&#x60; request instead of in the &#x60;/transactions/get&#x60; request. If the Item has already been initialized with the Transactions product, this field will have no effect. The maximum amount of transaction history to request on an Item cannot be updated if Transactions has already been added to the Item. To request older transaction history on an Item where Transactions has already been added, you must delete the Item via &#x60;/item/remove&#x60; and send the user through Link to create a new Item. Customers using [Recurring Transactions](https://plaid.com/docs/api/products/transactions/#transactionsrecurringget) should request at least 180 days of history for optimal results. * minimum: 1 * maximum: 730 * @return daysRequested **/ @javax.annotation.Nullable @ApiModelProperty(value = "This field only applies to calls for Items where the Transactions product has not already been initialized (i.e. by specifying `transactions` in the `products`, `optional_products`, or `required_if_consented_products` array when calling `/link/token/create` or by making a previous call to `/transactions/sync` or `/transactions/get`). In those cases, the field controls the maximum number of days of transaction history that Plaid will request from the financial institution. The more transaction history is requested, the longer the historical update poll will take. If no value is specified, 90 days of history will be requested by default. If a value under 30 is provided, a minimum of 30 days of history will be requested. If you are initializing your Items with transactions during the `/link/token/create` call (e.g. by including `transactions` in the `/link/token/create` `products` array), you must use the [`transactions.days_requested`](https://plaid.com/docs/api/link/#link-token-create-request-transactions-days-requested) field in the `/link/token/create` request instead of in the `/transactions/get` request. If the Item has already been initialized with the Transactions product, this field will have no effect. The maximum amount of transaction history to request on an Item cannot be updated if Transactions has already been added to the Item. To request older transaction history on an Item where Transactions has already been added, you must delete the Item via `/item/remove` and send the user through Link to create a new Item. Customers using [Recurring Transactions](https://plaid.com/docs/api/products/transactions/#transactionsrecurringget) should request at least 180 days of history for optimal results.") public Integer getDaysRequested() { return daysRequested; } public void setDaysRequested(Integer daysRequested) { this.daysRequested = daysRequested; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransactionsGetRequestOptions transactionsGetRequestOptions = (TransactionsGetRequestOptions) o; return Objects.equals(this.accountIds, transactionsGetRequestOptions.accountIds) && Objects.equals(this.count, transactionsGetRequestOptions.count) && Objects.equals(this.offset, transactionsGetRequestOptions.offset) && Objects.equals(this.includeOriginalDescription, transactionsGetRequestOptions.includeOriginalDescription) && Objects.equals(this.includePersonalFinanceCategoryBeta, transactionsGetRequestOptions.includePersonalFinanceCategoryBeta) && Objects.equals(this.includePersonalFinanceCategory, transactionsGetRequestOptions.includePersonalFinanceCategory) && Objects.equals(this.includeLogoAndCounterpartyBeta, transactionsGetRequestOptions.includeLogoAndCounterpartyBeta) && Objects.equals(this.personalFinanceCategoryVersion, transactionsGetRequestOptions.personalFinanceCategoryVersion) && Objects.equals(this.daysRequested, transactionsGetRequestOptions.daysRequested); } @Override public int hashCode() { return Objects.hash(accountIds, count, offset, includeOriginalDescription, includePersonalFinanceCategoryBeta, includePersonalFinanceCategory, includeLogoAndCounterpartyBeta, personalFinanceCategoryVersion, daysRequested); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsGetRequestOptions {\n"); sb.append(" accountIds: ").append(toIndentedString(accountIds)).append("\n"); sb.append(" count: ").append(toIndentedString(count)).append("\n"); sb.append(" offset: ").append(toIndentedString(offset)).append("\n"); sb.append(" includeOriginalDescription: ").append(toIndentedString(includeOriginalDescription)).append("\n"); sb.append(" includePersonalFinanceCategoryBeta: ").append(toIndentedString(includePersonalFinanceCategoryBeta)).append("\n"); sb.append(" includePersonalFinanceCategory: ").append(toIndentedString(includePersonalFinanceCategory)).append("\n"); sb.append(" includeLogoAndCounterpartyBeta: ").append(toIndentedString(includeLogoAndCounterpartyBeta)).append("\n"); sb.append(" personalFinanceCategoryVersion: ").append(toIndentedString(personalFinanceCategoryVersion)).append("\n"); sb.append(" daysRequested: ").append(toIndentedString(daysRequested)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditAuditCopyTokenCreateResponse.java
src/main/java/com/plaid/client/model/CreditAuditCopyTokenCreateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * CreditAuditCopyTokenCreateResponse defines the response schema for &#x60;/credit/audit_copy_token/get&#x60; */ @ApiModel(description = "CreditAuditCopyTokenCreateResponse defines the response schema for `/credit/audit_copy_token/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditAuditCopyTokenCreateResponse { public static final String SERIALIZED_NAME_AUDIT_COPY_TOKEN = "audit_copy_token"; @SerializedName(SERIALIZED_NAME_AUDIT_COPY_TOKEN) private String auditCopyToken; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public CreditAuditCopyTokenCreateResponse auditCopyToken(String auditCopyToken) { this.auditCopyToken = auditCopyToken; return this; } /** * A token that can be shared with a third party auditor, which allows them to fetch the Asset Reports attached to the token. This token should be stored securely. * @return auditCopyToken **/ @ApiModelProperty(required = true, value = "A token that can be shared with a third party auditor, which allows them to fetch the Asset Reports attached to the token. This token should be stored securely.") public String getAuditCopyToken() { return auditCopyToken; } public void setAuditCopyToken(String auditCopyToken) { this.auditCopyToken = auditCopyToken; } public CreditAuditCopyTokenCreateResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditAuditCopyTokenCreateResponse creditAuditCopyTokenCreateResponse = (CreditAuditCopyTokenCreateResponse) o; return Objects.equals(this.auditCopyToken, creditAuditCopyTokenCreateResponse.auditCopyToken) && Objects.equals(this.requestId, creditAuditCopyTokenCreateResponse.requestId); } @Override public int hashCode() { return Objects.hash(auditCopyToken, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditAuditCopyTokenCreateResponse {\n"); sb.append(" auditCopyToken: ").append(toIndentedString(auditCopyToken)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AuthMetadata.java
src/main/java/com/plaid/client/model/AuthMetadata.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AuthSupportedMethods; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Metadata that captures information about the Auth features of an institution. */ @ApiModel(description = "Metadata that captures information about the Auth features of an institution.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AuthMetadata { public static final String SERIALIZED_NAME_SUPPORTED_METHODS = "supported_methods"; @SerializedName(SERIALIZED_NAME_SUPPORTED_METHODS) private AuthSupportedMethods supportedMethods; public AuthMetadata supportedMethods(AuthSupportedMethods supportedMethods) { this.supportedMethods = supportedMethods; return this; } /** * Get supportedMethods * @return supportedMethods **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public AuthSupportedMethods getSupportedMethods() { return supportedMethods; } public void setSupportedMethods(AuthSupportedMethods supportedMethods) { this.supportedMethods = supportedMethods; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AuthMetadata authMetadata = (AuthMetadata) o; return Objects.equals(this.supportedMethods, authMetadata.supportedMethods); } @Override public int hashCode() { return Objects.hash(supportedMethods); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AuthMetadata {\n"); sb.append(" supportedMethods: ").append(toIndentedString(supportedMethods)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PayrollIncomeObject.java
src/main/java/com/plaid/client/model/PayrollIncomeObject.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.Credit1099; import com.plaid.client.model.CreditPayStub; import com.plaid.client.model.CreditW2; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An object representing payroll data. */ @ApiModel(description = "An object representing payroll data.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PayrollIncomeObject { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_PAY_STUBS = "pay_stubs"; @SerializedName(SERIALIZED_NAME_PAY_STUBS) private List<CreditPayStub> payStubs = new ArrayList<>(); public static final String SERIALIZED_NAME_W2S = "w2s"; @SerializedName(SERIALIZED_NAME_W2S) private List<CreditW2> w2s = new ArrayList<>(); public static final String SERIALIZED_NAME_FORM1099S = "form1099s"; @SerializedName(SERIALIZED_NAME_FORM1099S) private List<Credit1099> form1099s = new ArrayList<>(); public PayrollIncomeObject accountId(String accountId) { this.accountId = accountId; return this; } /** * ID of the payroll provider account. * @return accountId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "ID of the payroll provider account.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public PayrollIncomeObject payStubs(List<CreditPayStub> payStubs) { this.payStubs = payStubs; return this; } public PayrollIncomeObject addPayStubsItem(CreditPayStub payStubsItem) { this.payStubs.add(payStubsItem); return this; } /** * Array of pay stubs for the user. * @return payStubs **/ @ApiModelProperty(required = true, value = "Array of pay stubs for the user.") public List<CreditPayStub> getPayStubs() { return payStubs; } public void setPayStubs(List<CreditPayStub> payStubs) { this.payStubs = payStubs; } public PayrollIncomeObject w2s(List<CreditW2> w2s) { this.w2s = w2s; return this; } public PayrollIncomeObject addW2sItem(CreditW2 w2sItem) { this.w2s.add(w2sItem); return this; } /** * Array of tax form W-2s. * @return w2s **/ @ApiModelProperty(required = true, value = "Array of tax form W-2s.") public List<CreditW2> getW2s() { return w2s; } public void setW2s(List<CreditW2> w2s) { this.w2s = w2s; } public PayrollIncomeObject form1099s(List<Credit1099> form1099s) { this.form1099s = form1099s; return this; } public PayrollIncomeObject addForm1099sItem(Credit1099 form1099sItem) { this.form1099s.add(form1099sItem); return this; } /** * Array of tax form 1099s. * @return form1099s **/ @ApiModelProperty(required = true, value = "Array of tax form 1099s.") public List<Credit1099> getForm1099s() { return form1099s; } public void setForm1099s(List<Credit1099> form1099s) { this.form1099s = form1099s; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PayrollIncomeObject payrollIncomeObject = (PayrollIncomeObject) o; return Objects.equals(this.accountId, payrollIncomeObject.accountId) && Objects.equals(this.payStubs, payrollIncomeObject.payStubs) && Objects.equals(this.w2s, payrollIncomeObject.w2s) && Objects.equals(this.form1099s, payrollIncomeObject.form1099s); } @Override public int hashCode() { return Objects.hash(accountId, payStubs, w2s, form1099s); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PayrollIncomeObject {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" payStubs: ").append(toIndentedString(payStubs)).append("\n"); sb.append(" w2s: ").append(toIndentedString(w2s)).append("\n"); sb.append(" form1099s: ").append(toIndentedString(form1099s)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/RecurringTransactions.java
src/main/java/com/plaid/client/model/RecurringTransactions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.RecurringInsightsStream; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Insights object for recurring transactions for &#x60;/beta/transactions/user_insights/v1/get&#x60; endpoint */ @ApiModel(description = "Insights object for recurring transactions for `/beta/transactions/user_insights/v1/get` endpoint") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class RecurringTransactions { public static final String SERIALIZED_NAME_INFLOW_STREAMS = "inflow_streams"; @SerializedName(SERIALIZED_NAME_INFLOW_STREAMS) private List<RecurringInsightsStream> inflowStreams = new ArrayList<>(); public static final String SERIALIZED_NAME_OUTFLOW_STREAMS = "outflow_streams"; @SerializedName(SERIALIZED_NAME_OUTFLOW_STREAMS) private List<RecurringInsightsStream> outflowStreams = new ArrayList<>(); public RecurringTransactions inflowStreams(List<RecurringInsightsStream> inflowStreams) { this.inflowStreams = inflowStreams; return this; } public RecurringTransactions addInflowStreamsItem(RecurringInsightsStream inflowStreamsItem) { this.inflowStreams.add(inflowStreamsItem); return this; } /** * An array of inflow transaction streams (e.g., income). * @return inflowStreams **/ @ApiModelProperty(required = true, value = "An array of inflow transaction streams (e.g., income).") public List<RecurringInsightsStream> getInflowStreams() { return inflowStreams; } public void setInflowStreams(List<RecurringInsightsStream> inflowStreams) { this.inflowStreams = inflowStreams; } public RecurringTransactions outflowStreams(List<RecurringInsightsStream> outflowStreams) { this.outflowStreams = outflowStreams; return this; } public RecurringTransactions addOutflowStreamsItem(RecurringInsightsStream outflowStreamsItem) { this.outflowStreams.add(outflowStreamsItem); return this; } /** * An array of outflow transaction streams (e.g., subscriptions, bills, loan payments). * @return outflowStreams **/ @ApiModelProperty(required = true, value = "An array of outflow transaction streams (e.g., subscriptions, bills, loan payments).") public List<RecurringInsightsStream> getOutflowStreams() { return outflowStreams; } public void setOutflowStreams(List<RecurringInsightsStream> outflowStreams) { this.outflowStreams = outflowStreams; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } RecurringTransactions recurringTransactions = (RecurringTransactions) o; return Objects.equals(this.inflowStreams, recurringTransactions.inflowStreams) && Objects.equals(this.outflowStreams, recurringTransactions.outflowStreams); } @Override public int hashCode() { return Objects.hash(inflowStreams, outflowStreams); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class RecurringTransactions {\n"); sb.append(" inflowStreams: ").append(toIndentedString(inflowStreams)).append("\n"); sb.append(" outflowStreams: ").append(toIndentedString(outflowStreams)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/RiskLevelWithNoData.java
src/main/java/com/plaid/client/model/RiskLevelWithNoData.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * Risk level for the given risk check type, when available. */ @JsonAdapter(RiskLevelWithNoData.Adapter.class) public enum RiskLevelWithNoData { LOW("low"), MEDIUM("medium"), HIGH("high"), NO_DATA("no_data"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; RiskLevelWithNoData(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static RiskLevelWithNoData fromValue(String value) { for (RiskLevelWithNoData b : RiskLevelWithNoData.values()) { if (b.value.equals(value)) { return b; } } return RiskLevelWithNoData.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<RiskLevelWithNoData> { @Override public void write(final JsonWriter jsonWriter, final RiskLevelWithNoData enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public RiskLevelWithNoData read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return RiskLevelWithNoData.fromValue(value); } } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BankTransferCancelRequest.java
src/main/java/com/plaid/client/model/BankTransferCancelRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the request schema for &#x60;/bank_transfer/cancel&#x60; */ @ApiModel(description = "Defines the request schema for `/bank_transfer/cancel`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankTransferCancelRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_BANK_TRANSFER_ID = "bank_transfer_id"; @SerializedName(SERIALIZED_NAME_BANK_TRANSFER_ID) private String bankTransferId; public BankTransferCancelRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public BankTransferCancelRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public BankTransferCancelRequest bankTransferId(String bankTransferId) { this.bankTransferId = bankTransferId; return this; } /** * Plaid’s unique identifier for a bank transfer. * @return bankTransferId **/ @ApiModelProperty(required = true, value = "Plaid’s unique identifier for a bank transfer.") public String getBankTransferId() { return bankTransferId; } public void setBankTransferId(String bankTransferId) { this.bankTransferId = bankTransferId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BankTransferCancelRequest bankTransferCancelRequest = (BankTransferCancelRequest) o; return Objects.equals(this.clientId, bankTransferCancelRequest.clientId) && Objects.equals(this.secret, bankTransferCancelRequest.secret) && Objects.equals(this.bankTransferId, bankTransferCancelRequest.bankTransferId); } @Override public int hashCode() { return Objects.hash(clientId, secret, bankTransferId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankTransferCancelRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" bankTransferId: ").append(toIndentedString(bankTransferId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SignalPrepareRequest.java
src/main/java/com/plaid/client/model/SignalPrepareRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * SignalPrepareRequest defines the request schema for &#x60;/signal/prepare&#x60; */ @ApiModel(description = "SignalPrepareRequest defines the request schema for `/signal/prepare`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SignalPrepareRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) private String accessToken; public SignalPrepareRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public SignalPrepareRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public SignalPrepareRequest accessToken(String accessToken) { this.accessToken = accessToken; return this; } /** * The access token associated with the Item data is being requested for. * @return accessToken **/ @ApiModelProperty(required = true, value = "The access token associated with the Item data is being requested for.") public String getAccessToken() { return accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SignalPrepareRequest signalPrepareRequest = (SignalPrepareRequest) o; return Objects.equals(this.clientId, signalPrepareRequest.clientId) && Objects.equals(this.secret, signalPrepareRequest.secret) && Objects.equals(this.accessToken, signalPrepareRequest.accessToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, accessToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SignalPrepareRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/Status.java
src/main/java/com/plaid/client/model/Status.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Documentation not found in the MISMO model viewer and not provided by Freddie Mac. */ @ApiModel(description = "Documentation not found in the MISMO model viewer and not provided by Freddie Mac.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Status { public static final String SERIALIZED_NAME_STATUS_CODE = "StatusCode"; @SerializedName(SERIALIZED_NAME_STATUS_CODE) private String statusCode; public static final String SERIALIZED_NAME_STATUS_DESCRIPTION = "StatusDescription"; @SerializedName(SERIALIZED_NAME_STATUS_DESCRIPTION) private String statusDescription; public Status statusCode(String statusCode) { this.statusCode = statusCode; return this; } /** * Satus Code. * @return statusCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Satus Code.") public String getStatusCode() { return statusCode; } public void setStatusCode(String statusCode) { this.statusCode = statusCode; } public Status statusDescription(String statusDescription) { this.statusDescription = statusDescription; return this; } /** * Status Description. * @return statusDescription **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Status Description.") public String getStatusDescription() { return statusDescription; } public void setStatusDescription(String statusDescription) { this.statusDescription = statusDescription; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Status status = (Status) o; return Objects.equals(this.statusCode, status.statusCode) && Objects.equals(this.statusDescription, status.statusDescription); } @Override public int hashCode() { return Objects.hash(statusCode, statusDescription); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Status {\n"); sb.append(" statusCode: ").append(toIndentedString(statusCode)).append("\n"); sb.append(" statusDescription: ").append(toIndentedString(statusDescription)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransactionsEnhanceGetResponse.java
src/main/java/com/plaid/client/model/TransactionsEnhanceGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.ClientProvidedEnhancedTransaction; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * TransactionsEnhanceGetResponse defines the response schema for &#x60;/beta/transactions/v1/enhance&#x60;. */ @ApiModel(description = "TransactionsEnhanceGetResponse defines the response schema for `/beta/transactions/v1/enhance`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionsEnhanceGetResponse { public static final String SERIALIZED_NAME_ENHANCED_TRANSACTIONS = "enhanced_transactions"; @SerializedName(SERIALIZED_NAME_ENHANCED_TRANSACTIONS) private List<ClientProvidedEnhancedTransaction> enhancedTransactions = new ArrayList<>(); public TransactionsEnhanceGetResponse enhancedTransactions(List<ClientProvidedEnhancedTransaction> enhancedTransactions) { this.enhancedTransactions = enhancedTransactions; return this; } public TransactionsEnhanceGetResponse addEnhancedTransactionsItem(ClientProvidedEnhancedTransaction enhancedTransactionsItem) { this.enhancedTransactions.add(enhancedTransactionsItem); return this; } /** * An array of enhanced transactions. * @return enhancedTransactions **/ @ApiModelProperty(required = true, value = "An array of enhanced transactions.") public List<ClientProvidedEnhancedTransaction> getEnhancedTransactions() { return enhancedTransactions; } public void setEnhancedTransactions(List<ClientProvidedEnhancedTransaction> enhancedTransactions) { this.enhancedTransactions = enhancedTransactions; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransactionsEnhanceGetResponse transactionsEnhanceGetResponse = (TransactionsEnhanceGetResponse) o; return Objects.equals(this.enhancedTransactions, transactionsEnhanceGetResponse.enhancedTransactions); } @Override public int hashCode() { return Objects.hash(enhancedTransactions); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsEnhanceGetResponse {\n"); sb.append(" enhancedTransactions: ").append(toIndentedString(enhancedTransactions)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraCheckReportPDFGetRequest.java
src/main/java/com/plaid/client/model/CraCheckReportPDFGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CraPDFAddOns; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * CraCheckReportPDFGetRequest defines the request schema for &#x60;/cra/check_report/pdf/get&#x60;. */ @ApiModel(description = "CraCheckReportPDFGetRequest defines the request schema for `/cra/check_report/pdf/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportPDFGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN = "third_party_user_token"; @SerializedName(SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN) private String thirdPartyUserToken; public static final String SERIALIZED_NAME_ADD_ONS = "add_ons"; @SerializedName(SERIALIZED_NAME_ADD_ONS) private List<CraPDFAddOns> addOns = null; public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) private String userToken; public CraCheckReportPDFGetRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public CraCheckReportPDFGetRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public CraCheckReportPDFGetRequest userId(String userId) { this.userId = userId; return this; } /** * A unique user identifier, created by &#x60;/user/create&#x60;. Integrations that began using &#x60;/user/create&#x60; after December 10, 2025 use this field to identify a user instead of the &#x60;user_token&#x60;. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis). * @return userId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique user identifier, created by `/user/create`. Integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public CraCheckReportPDFGetRequest thirdPartyUserToken(String thirdPartyUserToken) { this.thirdPartyUserToken = thirdPartyUserToken; return this; } /** * The third-party user token associated with the requested User data. * @return thirdPartyUserToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The third-party user token associated with the requested User data.") public String getThirdPartyUserToken() { return thirdPartyUserToken; } public void setThirdPartyUserToken(String thirdPartyUserToken) { this.thirdPartyUserToken = thirdPartyUserToken; } public CraCheckReportPDFGetRequest addOns(List<CraPDFAddOns> addOns) { this.addOns = addOns; return this; } public CraCheckReportPDFGetRequest addAddOnsItem(CraPDFAddOns addOnsItem) { if (this.addOns == null) { this.addOns = new ArrayList<>(); } this.addOns.add(addOnsItem); return this; } /** * Use this field to include other reports in the PDF. * @return addOns **/ @javax.annotation.Nullable @ApiModelProperty(value = "Use this field to include other reports in the PDF.") public List<CraPDFAddOns> getAddOns() { return addOns; } public void setAddOns(List<CraPDFAddOns> addOns) { this.addOns = addOns; } public CraCheckReportPDFGetRequest userToken(String userToken) { this.userToken = userToken; return this; } /** * The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the &#x60;user_token&#x60; field. All other customers should use the &#x60;user_id&#x60; instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis). * @return userToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the `user_token` field. All other customers should use the `user_id` instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserToken() { return userToken; } public void setUserToken(String userToken) { this.userToken = userToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraCheckReportPDFGetRequest craCheckReportPDFGetRequest = (CraCheckReportPDFGetRequest) o; return Objects.equals(this.clientId, craCheckReportPDFGetRequest.clientId) && Objects.equals(this.secret, craCheckReportPDFGetRequest.secret) && Objects.equals(this.userId, craCheckReportPDFGetRequest.userId) && Objects.equals(this.thirdPartyUserToken, craCheckReportPDFGetRequest.thirdPartyUserToken) && Objects.equals(this.addOns, craCheckReportPDFGetRequest.addOns) && Objects.equals(this.userToken, craCheckReportPDFGetRequest.userToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, userId, thirdPartyUserToken, addOns, userToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportPDFGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" thirdPartyUserToken: ").append(toIndentedString(thirdPartyUserToken)).append("\n"); sb.append(" addOns: ").append(toIndentedString(addOns)).append("\n"); sb.append(" userToken: ").append(toIndentedString(userToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PartnerEndCustomerTechnicalContact.java
src/main/java/com/plaid/client/model/PartnerEndCustomerTechnicalContact.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The technical contact for the end customer. Defaults to partner&#39;s technical contact if omitted. */ @ApiModel(description = "The technical contact for the end customer. Defaults to partner's technical contact if omitted.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PartnerEndCustomerTechnicalContact { public static final String SERIALIZED_NAME_GIVEN_NAME = "given_name"; @SerializedName(SERIALIZED_NAME_GIVEN_NAME) private String givenName; public static final String SERIALIZED_NAME_FAMILY_NAME = "family_name"; @SerializedName(SERIALIZED_NAME_FAMILY_NAME) private String familyName; public static final String SERIALIZED_NAME_EMAIL = "email"; @SerializedName(SERIALIZED_NAME_EMAIL) private String email; public PartnerEndCustomerTechnicalContact givenName(String givenName) { this.givenName = givenName; return this; } /** * Get givenName * @return givenName **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getGivenName() { return givenName; } public void setGivenName(String givenName) { this.givenName = givenName; } public PartnerEndCustomerTechnicalContact familyName(String familyName) { this.familyName = familyName; return this; } /** * Get familyName * @return familyName **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getFamilyName() { return familyName; } public void setFamilyName(String familyName) { this.familyName = familyName; } public PartnerEndCustomerTechnicalContact email(String email) { this.email = email; return this; } /** * Get email * @return email **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PartnerEndCustomerTechnicalContact partnerEndCustomerTechnicalContact = (PartnerEndCustomerTechnicalContact) o; return Objects.equals(this.givenName, partnerEndCustomerTechnicalContact.givenName) && Objects.equals(this.familyName, partnerEndCustomerTechnicalContact.familyName) && Objects.equals(this.email, partnerEndCustomerTechnicalContact.email); } @Override public int hashCode() { return Objects.hash(givenName, familyName, email); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PartnerEndCustomerTechnicalContact {\n"); sb.append(" givenName: ").append(toIndentedString(givenName)).append("\n"); sb.append(" familyName: ").append(toIndentedString(familyName)).append("\n"); sb.append(" email: ").append(toIndentedString(email)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferRepaymentReturn.java
src/main/java/com/plaid/client/model/TransferRepaymentReturn.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Represents a return on a Guaranteed ACH transfer that is included in the specified repayment. */ @ApiModel(description = "Represents a return on a Guaranteed ACH transfer that is included in the specified repayment.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferRepaymentReturn { public static final String SERIALIZED_NAME_TRANSFER_ID = "transfer_id"; @SerializedName(SERIALIZED_NAME_TRANSFER_ID) private String transferId; public static final String SERIALIZED_NAME_EVENT_ID = "event_id"; @SerializedName(SERIALIZED_NAME_EVENT_ID) private Integer eventId; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private String amount; public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code"; @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE) private String isoCurrencyCode; public TransferRepaymentReturn transferId(String transferId) { this.transferId = transferId; return this; } /** * The unique identifier of the guaranteed transfer that was returned. * @return transferId **/ @ApiModelProperty(required = true, value = "The unique identifier of the guaranteed transfer that was returned.") public String getTransferId() { return transferId; } public void setTransferId(String transferId) { this.transferId = transferId; } public TransferRepaymentReturn eventId(Integer eventId) { this.eventId = eventId; return this; } /** * The unique identifier of the corresponding &#x60;returned&#x60; transfer event. * minimum: 0 * @return eventId **/ @ApiModelProperty(required = true, value = "The unique identifier of the corresponding `returned` transfer event.") public Integer getEventId() { return eventId; } public void setEventId(Integer eventId) { this.eventId = eventId; } public TransferRepaymentReturn amount(String amount) { this.amount = amount; return this; } /** * The value of the returned transfer. * @return amount **/ @ApiModelProperty(required = true, value = "The value of the returned transfer.") public String getAmount() { return amount; } public void setAmount(String amount) { this.amount = amount; } public TransferRepaymentReturn isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The currency of the repayment, e.g. \&quot;USD\&quot;. * @return isoCurrencyCode **/ @ApiModelProperty(required = true, value = "The currency of the repayment, e.g. \"USD\".") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferRepaymentReturn transferRepaymentReturn = (TransferRepaymentReturn) o; return Objects.equals(this.transferId, transferRepaymentReturn.transferId) && Objects.equals(this.eventId, transferRepaymentReturn.eventId) && Objects.equals(this.amount, transferRepaymentReturn.amount) && Objects.equals(this.isoCurrencyCode, transferRepaymentReturn.isoCurrencyCode); } @Override public int hashCode() { return Objects.hash(transferId, eventId, amount, isoCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferRepaymentReturn {\n"); sb.append(" transferId: ").append(toIndentedString(transferId)).append("\n"); sb.append(" eventId: ").append(toIndentedString(eventId)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditFreddieMacVerificationOfAssetResponse.java
src/main/java/com/plaid/client/model/CreditFreddieMacVerificationOfAssetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CreditFreddieMacAssets; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Documentation not found in the MISMO model viewer and not provided by Freddie Mac. */ @ApiModel(description = "Documentation not found in the MISMO model viewer and not provided by Freddie Mac.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditFreddieMacVerificationOfAssetResponse { public static final String SERIALIZED_NAME_A_S_S_E_T_S = "ASSETS"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_S) private CreditFreddieMacAssets ASSETS; public CreditFreddieMacVerificationOfAssetResponse ASSETS(CreditFreddieMacAssets ASSETS) { this.ASSETS = ASSETS; return this; } /** * Get ASSETS * @return ASSETS **/ @ApiModelProperty(required = true, value = "") public CreditFreddieMacAssets getASSETS() { return ASSETS; } public void setASSETS(CreditFreddieMacAssets ASSETS) { this.ASSETS = ASSETS; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditFreddieMacVerificationOfAssetResponse creditFreddieMacVerificationOfAssetResponse = (CreditFreddieMacVerificationOfAssetResponse) o; return Objects.equals(this.ASSETS, creditFreddieMacVerificationOfAssetResponse.ASSETS); } @Override public int hashCode() { return Objects.hash(ASSETS); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditFreddieMacVerificationOfAssetResponse {\n"); sb.append(" ASSETS: ").append(toIndentedString(ASSETS)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CashFlowUpdatesLowBalanceWebhook.java
src/main/java/com/plaid/client/model/CashFlowUpdatesLowBalanceWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.MonitoringInsightsStatus; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * For each user&#39;s item enabled for Cash Flow Updates, this webhook will fire when an update detects a balance below $100. Upon receiving the webhook, call &#x60;/cra/monitoring_insights/get&#x60; to retrieve the updated insights. */ @ApiModel(description = "For each user's item enabled for Cash Flow Updates, this webhook will fire when an update detects a balance below $100. Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CashFlowUpdatesLowBalanceWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private MonitoringInsightsStatus status; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public CashFlowUpdatesLowBalanceWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;CASH_FLOW_UPDATES&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`CASH_FLOW_UPDATES`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public CashFlowUpdatesLowBalanceWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;LOW_BALANCE_DETECTED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`LOW_BALANCE_DETECTED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public CashFlowUpdatesLowBalanceWebhook status(MonitoringInsightsStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public MonitoringInsightsStatus getStatus() { return status; } public void setStatus(MonitoringInsightsStatus status) { this.status = status; } public CashFlowUpdatesLowBalanceWebhook userId(String userId) { this.userId = userId; return this; } /** * The &#x60;user_id&#x60; that the report is associated with * @return userId **/ @ApiModelProperty(required = true, value = "The `user_id` that the report is associated with") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public CashFlowUpdatesLowBalanceWebhook environment(WebhookEnvironmentValues environment) { this.environment = environment; return this; } /** * Get environment * @return environment **/ @ApiModelProperty(required = true, value = "") public WebhookEnvironmentValues getEnvironment() { return environment; } public void setEnvironment(WebhookEnvironmentValues environment) { this.environment = environment; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CashFlowUpdatesLowBalanceWebhook cashFlowUpdatesLowBalanceWebhook = (CashFlowUpdatesLowBalanceWebhook) o; return Objects.equals(this.webhookType, cashFlowUpdatesLowBalanceWebhook.webhookType) && Objects.equals(this.webhookCode, cashFlowUpdatesLowBalanceWebhook.webhookCode) && Objects.equals(this.status, cashFlowUpdatesLowBalanceWebhook.status) && Objects.equals(this.userId, cashFlowUpdatesLowBalanceWebhook.userId) && Objects.equals(this.environment, cashFlowUpdatesLowBalanceWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, status, userId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CashFlowUpdatesLowBalanceWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" environment: ").append(toIndentedString(environment)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SyntheticFraud.java
src/main/java/com/plaid/client/model/SyntheticFraud.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.RiskLevel; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Field containing the data used in determining the outcome of a synthetic fraud risk check. */ @ApiModel(description = "Field containing the data used in determining the outcome of a synthetic fraud risk check.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SyntheticFraud { public static final String SERIALIZED_NAME_RISK_LEVEL = "risk_level"; @SerializedName(SERIALIZED_NAME_RISK_LEVEL) private RiskLevel riskLevel; public SyntheticFraud riskLevel(RiskLevel riskLevel) { this.riskLevel = riskLevel; return this; } /** * Get riskLevel * @return riskLevel **/ @ApiModelProperty(required = true, value = "") public RiskLevel getRiskLevel() { return riskLevel; } public void setRiskLevel(RiskLevel riskLevel) { this.riskLevel = riskLevel; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SyntheticFraud syntheticFraud = (SyntheticFraud) o; return Objects.equals(this.riskLevel, syntheticFraud.riskLevel); } @Override public int hashCode() { return Objects.hash(riskLevel); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SyntheticFraud {\n"); sb.append(" riskLevel: ").append(toIndentedString(riskLevel)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditSessionBankIncomeResult.java
src/main/java/com/plaid/client/model/CreditSessionBankIncomeResult.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CreditSessionBankIncomeStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The details of a bank income verification in Link */ @ApiModel(description = "The details of a bank income verification in Link") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditSessionBankIncomeResult { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private CreditSessionBankIncomeStatus status; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) private String institutionId; public CreditSessionBankIncomeResult status(CreditSessionBankIncomeStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CreditSessionBankIncomeStatus getStatus() { return status; } public void setStatus(CreditSessionBankIncomeStatus status) { this.status = status; } public CreditSessionBankIncomeResult itemId(String itemId) { this.itemId = itemId; return this; } /** * The Plaid Item ID. The &#x60;item_id&#x60; is always unique; linking the same account at the same institution twice will result in two Items with different &#x60;item_id&#x60; values. Like all Plaid identifiers, the &#x60;item_id&#x60; is case-sensitive. * @return itemId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Plaid Item ID. The `item_id` is always unique; linking the same account at the same institution twice will result in two Items with different `item_id` values. Like all Plaid identifiers, the `item_id` is case-sensitive.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public CreditSessionBankIncomeResult institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * The Plaid Institution ID associated with the Item. * @return institutionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Plaid Institution ID associated with the Item.") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditSessionBankIncomeResult creditSessionBankIncomeResult = (CreditSessionBankIncomeResult) o; return Objects.equals(this.status, creditSessionBankIncomeResult.status) && Objects.equals(this.itemId, creditSessionBankIncomeResult.itemId) && Objects.equals(this.institutionId, creditSessionBankIncomeResult.institutionId); } @Override public int hashCode() { return Objects.hash(status, itemId, institutionId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditSessionBankIncomeResult {\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/UserProductsTerminateResponse.java
src/main/java/com/plaid/client/model/UserProductsTerminateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * UserProductsTerminateResponse defines the response schema for &#x60;/user/products/terminate&#x60; */ @ApiModel(description = "UserProductsTerminateResponse defines the response schema for `/user/products/terminate`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class UserProductsTerminateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public UserProductsTerminateResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } UserProductsTerminateResponse userProductsTerminateResponse = (UserProductsTerminateResponse) o; return Objects.equals(this.requestId, userProductsTerminateResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class UserProductsTerminateResponse {\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetReportAuditCopyCreateResponse.java
src/main/java/com/plaid/client/model/AssetReportAuditCopyCreateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * AssetReportAuditCopyCreateResponse defines the response schema for &#x60;/asset_report/audit_copy/get&#x60; */ @ApiModel(description = "AssetReportAuditCopyCreateResponse defines the response schema for `/asset_report/audit_copy/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetReportAuditCopyCreateResponse { public static final String SERIALIZED_NAME_AUDIT_COPY_TOKEN = "audit_copy_token"; @SerializedName(SERIALIZED_NAME_AUDIT_COPY_TOKEN) private String auditCopyToken; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public AssetReportAuditCopyCreateResponse auditCopyToken(String auditCopyToken) { this.auditCopyToken = auditCopyToken; return this; } /** * A token that can be shared with a third party auditor to allow them to obtain access to the Asset Report. This token should be stored securely. * @return auditCopyToken **/ @ApiModelProperty(required = true, value = "A token that can be shared with a third party auditor to allow them to obtain access to the Asset Report. This token should be stored securely.") public String getAuditCopyToken() { return auditCopyToken; } public void setAuditCopyToken(String auditCopyToken) { this.auditCopyToken = auditCopyToken; } public AssetReportAuditCopyCreateResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetReportAuditCopyCreateResponse assetReportAuditCopyCreateResponse = (AssetReportAuditCopyCreateResponse) o; return Objects.equals(this.auditCopyToken, assetReportAuditCopyCreateResponse.auditCopyToken) && Objects.equals(this.requestId, assetReportAuditCopyCreateResponse.requestId); } @Override public int hashCode() { return Objects.hash(auditCopyToken, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetReportAuditCopyCreateResponse {\n"); sb.append(" auditCopyToken: ").append(toIndentedString(auditCopyToken)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsBaseReport.java
src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsBaseReport.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.LinkTokenCreateRequestCraOptionsBaseReportGSEOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Specifies options for initializing Link for use with the Base Report product, specifically the &#x60;client_report_id&#x60;. */ @ApiModel(description = "Specifies options for initializing Link for use with the Base Report product, specifically the `client_report_id`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenCreateRequestCraOptionsBaseReport { public static final String SERIALIZED_NAME_CLIENT_REPORT_ID = "client_report_id"; @SerializedName(SERIALIZED_NAME_CLIENT_REPORT_ID) private String clientReportId; public static final String SERIALIZED_NAME_GSE_OPTIONS = "gse_options"; @SerializedName(SERIALIZED_NAME_GSE_OPTIONS) private LinkTokenCreateRequestCraOptionsBaseReportGSEOptions gseOptions; public static final String SERIALIZED_NAME_REQUIRE_IDENTITY = "require_identity"; @SerializedName(SERIALIZED_NAME_REQUIRE_IDENTITY) private Boolean requireIdentity; public LinkTokenCreateRequestCraOptionsBaseReport clientReportId(String clientReportId) { this.clientReportId = clientReportId; return this; } /** * Client-generated identifier, which can be used by lenders to track loan applications. * @return clientReportId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Client-generated identifier, which can be used by lenders to track loan applications.") public String getClientReportId() { return clientReportId; } public void setClientReportId(String clientReportId) { this.clientReportId = clientReportId; } public LinkTokenCreateRequestCraOptionsBaseReport gseOptions(LinkTokenCreateRequestCraOptionsBaseReportGSEOptions gseOptions) { this.gseOptions = gseOptions; return this; } /** * Get gseOptions * @return gseOptions **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LinkTokenCreateRequestCraOptionsBaseReportGSEOptions getGseOptions() { return gseOptions; } public void setGseOptions(LinkTokenCreateRequestCraOptionsBaseReportGSEOptions gseOptions) { this.gseOptions = gseOptions; } public LinkTokenCreateRequestCraOptionsBaseReport requireIdentity(Boolean requireIdentity) { this.requireIdentity = requireIdentity; return this; } /** * Indicates that the report must include identity information. If identity information is not available, the report will fail. * @return requireIdentity **/ @javax.annotation.Nullable @ApiModelProperty(value = "Indicates that the report must include identity information. If identity information is not available, the report will fail.") public Boolean getRequireIdentity() { return requireIdentity; } public void setRequireIdentity(Boolean requireIdentity) { this.requireIdentity = requireIdentity; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkTokenCreateRequestCraOptionsBaseReport linkTokenCreateRequestCraOptionsBaseReport = (LinkTokenCreateRequestCraOptionsBaseReport) o; return Objects.equals(this.clientReportId, linkTokenCreateRequestCraOptionsBaseReport.clientReportId) && Objects.equals(this.gseOptions, linkTokenCreateRequestCraOptionsBaseReport.gseOptions) && Objects.equals(this.requireIdentity, linkTokenCreateRequestCraOptionsBaseReport.requireIdentity); } @Override public int hashCode() { return Objects.hash(clientReportId, gseOptions, requireIdentity); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenCreateRequestCraOptionsBaseReport {\n"); sb.append(" clientReportId: ").append(toIndentedString(clientReportId)).append("\n"); sb.append(" gseOptions: ").append(toIndentedString(gseOptions)).append("\n"); sb.append(" requireIdentity: ").append(toIndentedString(requireIdentity)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditPayStubEmployer.java
src/main/java/com/plaid/client/model/CreditPayStubEmployer.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CreditPayStubAddress; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Information about the employer on the pay stub. */ @ApiModel(description = "Information about the employer on the pay stub.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditPayStubEmployer { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private CreditPayStubAddress address; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public CreditPayStubEmployer address(CreditPayStubAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @ApiModelProperty(required = true, value = "") public CreditPayStubAddress getAddress() { return address; } public void setAddress(CreditPayStubAddress address) { this.address = address; } public CreditPayStubEmployer name(String name) { this.name = name; return this; } /** * The name of the employer on the pay stub. * @return name **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The name of the employer on the pay stub.") public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditPayStubEmployer creditPayStubEmployer = (CreditPayStubEmployer) o; return Objects.equals(this.address, creditPayStubEmployer.address) && Objects.equals(this.name, creditPayStubEmployer.name); } @Override public int hashCode() { return Objects.hash(address, name); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditPayStubEmployer {\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraLoanUnregisterResponse.java
src/main/java/com/plaid/client/model/CraLoanUnregisterResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * CraLoanUnregisterResponse defines the response schema for &#x60;/cra/loans/unregister&#x60;. */ @ApiModel(description = "CraLoanUnregisterResponse defines the response schema for `/cra/loans/unregister`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraLoanUnregisterResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public CraLoanUnregisterResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraLoanUnregisterResponse craLoanUnregisterResponse = (CraLoanUnregisterResponse) o; return Objects.equals(this.requestId, craLoanUnregisterResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraLoanUnregisterResponse {\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraPartnerInsightsItem.java
src/main/java/com/plaid/client/model/CraPartnerInsightsItem.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CraPartnerInsightsItemAccount; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * The details and metadata for an end user&#39;s Item. */ @ApiModel(description = "The details and metadata for an end user's Item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraPartnerInsightsItem { public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) private String institutionId; public static final String SERIALIZED_NAME_INSTITUTION_NAME = "institution_name"; @SerializedName(SERIALIZED_NAME_INSTITUTION_NAME) private String institutionName; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) private List<CraPartnerInsightsItemAccount> accounts = null; public CraPartnerInsightsItem institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * The ID for the institution that the user linked. * @return institutionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ID for the institution that the user linked.") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } public CraPartnerInsightsItem institutionName(String institutionName) { this.institutionName = institutionName; return this; } /** * The name of the institution the user linked. * @return institutionName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The name of the institution the user linked.") public String getInstitutionName() { return institutionName; } public void setInstitutionName(String institutionName) { this.institutionName = institutionName; } public CraPartnerInsightsItem itemId(String itemId) { this.itemId = itemId; return this; } /** * The identifier for the item. * @return itemId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The identifier for the item.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public CraPartnerInsightsItem accounts(List<CraPartnerInsightsItemAccount> accounts) { this.accounts = accounts; return this; } public CraPartnerInsightsItem addAccountsItem(CraPartnerInsightsItemAccount accountsItem) { if (this.accounts == null) { this.accounts = new ArrayList<>(); } this.accounts.add(accountsItem); return this; } /** * A list of accounts in the item * @return accounts **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of accounts in the item") public List<CraPartnerInsightsItemAccount> getAccounts() { return accounts; } public void setAccounts(List<CraPartnerInsightsItemAccount> accounts) { this.accounts = accounts; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraPartnerInsightsItem craPartnerInsightsItem = (CraPartnerInsightsItem) o; return Objects.equals(this.institutionId, craPartnerInsightsItem.institutionId) && Objects.equals(this.institutionName, craPartnerInsightsItem.institutionName) && Objects.equals(this.itemId, craPartnerInsightsItem.itemId) && Objects.equals(this.accounts, craPartnerInsightsItem.accounts); } @Override public int hashCode() { return Objects.hash(institutionId, institutionName, itemId, accounts); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraPartnerInsightsItem {\n"); sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n"); sb.append(" institutionName: ").append(toIndentedString(institutionName)).append("\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" accounts: ").append(toIndentedString(accounts)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditFilter.java
src/main/java/com/plaid/client/model/CreditFilter.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CreditAccountSubtype; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * A filter to apply to &#x60;credit&#x60;-type accounts */ @ApiModel(description = "A filter to apply to `credit`-type accounts") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditFilter { public static final String SERIALIZED_NAME_ACCOUNT_SUBTYPES = "account_subtypes"; @SerializedName(SERIALIZED_NAME_ACCOUNT_SUBTYPES) private List<CreditAccountSubtype> accountSubtypes = new ArrayList<>(); public CreditFilter accountSubtypes(List<CreditAccountSubtype> accountSubtypes) { this.accountSubtypes = accountSubtypes; return this; } public CreditFilter addAccountSubtypesItem(CreditAccountSubtype accountSubtypesItem) { this.accountSubtypes.add(accountSubtypesItem); return this; } /** * An array of account subtypes to display in Link. If not specified, all account subtypes will be shown. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema). * @return accountSubtypes **/ @ApiModelProperty(required = true, value = "An array of account subtypes to display in Link. If not specified, all account subtypes will be shown. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema). ") public List<CreditAccountSubtype> getAccountSubtypes() { return accountSubtypes; } public void setAccountSubtypes(List<CreditAccountSubtype> accountSubtypes) { this.accountSubtypes = accountSubtypes; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditFilter creditFilter = (CreditFilter) o; return Objects.equals(this.accountSubtypes, creditFilter.accountSubtypes); } @Override public int hashCode() { return Objects.hash(accountSubtypes); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditFilter {\n"); sb.append(" accountSubtypes: ").append(toIndentedString(accountSubtypes)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaymentInitiationAddress.java
src/main/java/com/plaid/client/model/PaymentInitiationAddress.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * The optional address of the payment recipient&#39;s bank account. Required by most institutions outside of the UK. */ @ApiModel(description = "The optional address of the payment recipient's bank account. Required by most institutions outside of the UK.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentInitiationAddress { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) private List<String> street = new ArrayList<>(); public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) private String city; public static final String SERIALIZED_NAME_POSTAL_CODE = "postal_code"; @SerializedName(SERIALIZED_NAME_POSTAL_CODE) private String postalCode; public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) private String country; public PaymentInitiationAddress street(List<String> street) { this.street = street; return this; } public PaymentInitiationAddress addStreetItem(String streetItem) { this.street.add(streetItem); return this; } /** * An array of length 1-2 representing the street address where the recipient is located. Maximum of 70 characters. * @return street **/ @ApiModelProperty(required = true, value = "An array of length 1-2 representing the street address where the recipient is located. Maximum of 70 characters.") public List<String> getStreet() { return street; } public void setStreet(List<String> street) { this.street = street; } public PaymentInitiationAddress city(String city) { this.city = city; return this; } /** * The city where the recipient is located. Maximum of 35 characters. * @return city **/ @ApiModelProperty(required = true, value = "The city where the recipient is located. Maximum of 35 characters.") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public PaymentInitiationAddress postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The postal code where the recipient is located. Maximum of 16 characters. * @return postalCode **/ @ApiModelProperty(required = true, value = "The postal code where the recipient is located. Maximum of 16 characters.") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public PaymentInitiationAddress country(String country) { this.country = country; return this; } /** * The ISO 3166-1 alpha-2 country code where the recipient is located. * @return country **/ @ApiModelProperty(required = true, value = "The ISO 3166-1 alpha-2 country code where the recipient is located.") public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaymentInitiationAddress paymentInitiationAddress = (PaymentInitiationAddress) o; return Objects.equals(this.street, paymentInitiationAddress.street) && Objects.equals(this.city, paymentInitiationAddress.city) && Objects.equals(this.postalCode, paymentInitiationAddress.postalCode) && Objects.equals(this.country, paymentInitiationAddress.country); } @Override public int hashCode() { return Objects.hash(street, city, postalCode, country); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentInitiationAddress {\n"); sb.append(" street: ").append(toIndentedString(street)).append("\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append(" country: ").append(toIndentedString(country)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferOriginatorCreateRequest.java
src/main/java/com/plaid/client/model/TransferOriginatorCreateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the request schema for &#x60;/transfer/originator/create&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/originator/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferOriginatorCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_COMPANY_NAME = "company_name"; @SerializedName(SERIALIZED_NAME_COMPANY_NAME) private String companyName; public TransferOriginatorCreateRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public TransferOriginatorCreateRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public TransferOriginatorCreateRequest companyName(String companyName) { this.companyName = companyName; return this; } /** * The company name of the end customer being created. This will be displayed in public-facing surfaces, e.g. Plaid Dashboard. * @return companyName **/ @ApiModelProperty(required = true, value = "The company name of the end customer being created. This will be displayed in public-facing surfaces, e.g. Plaid Dashboard.") public String getCompanyName() { return companyName; } public void setCompanyName(String companyName) { this.companyName = companyName; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferOriginatorCreateRequest transferOriginatorCreateRequest = (TransferOriginatorCreateRequest) o; return Objects.equals(this.clientId, transferOriginatorCreateRequest.clientId) && Objects.equals(this.secret, transferOriginatorCreateRequest.secret) && Objects.equals(this.companyName, transferOriginatorCreateRequest.companyName); } @Override public int hashCode() { return Objects.hash(clientId, secret, companyName); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferOriginatorCreateRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" companyName: ").append(toIndentedString(companyName)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/Credit1099Payer.java
src/main/java/com/plaid/client/model/Credit1099Payer.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CreditPayStubAddress; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object representing a payer used by 1099-MISC tax documents. */ @ApiModel(description = "An object representing a payer used by 1099-MISC tax documents.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Credit1099Payer { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private CreditPayStubAddress address; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_TIN = "tin"; @SerializedName(SERIALIZED_NAME_TIN) private String tin; public static final String SERIALIZED_NAME_TELEPHONE_NUMBER = "telephone_number"; @SerializedName(SERIALIZED_NAME_TELEPHONE_NUMBER) private String telephoneNumber; public Credit1099Payer address(CreditPayStubAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CreditPayStubAddress getAddress() { return address; } public void setAddress(CreditPayStubAddress address) { this.address = address; } public Credit1099Payer name(String name) { this.name = name; return this; } /** * Name of payer. * @return name **/ @javax.annotation.Nullable @ApiModelProperty(value = "Name of payer.") public String getName() { return name; } public void setName(String name) { this.name = name; } public Credit1099Payer tin(String tin) { this.tin = tin; return this; } /** * Tax identification number of payer. * @return tin **/ @javax.annotation.Nullable @ApiModelProperty(value = "Tax identification number of payer.") public String getTin() { return tin; } public void setTin(String tin) { this.tin = tin; } public Credit1099Payer telephoneNumber(String telephoneNumber) { this.telephoneNumber = telephoneNumber; return this; } /** * Telephone number of payer. * @return telephoneNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "Telephone number of payer.") public String getTelephoneNumber() { return telephoneNumber; } public void setTelephoneNumber(String telephoneNumber) { this.telephoneNumber = telephoneNumber; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Credit1099Payer credit1099Payer = (Credit1099Payer) o; return Objects.equals(this.address, credit1099Payer.address) && Objects.equals(this.name, credit1099Payer.name) && Objects.equals(this.tin, credit1099Payer.tin) && Objects.equals(this.telephoneNumber, credit1099Payer.telephoneNumber); } @Override public int hashCode() { return Objects.hash(address, name, tin, telephoneNumber); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Credit1099Payer {\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" tin: ").append(toIndentedString(tin)).append("\n"); sb.append(" telephoneNumber: ").append(toIndentedString(telephoneNumber)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AddressDataNullable.java
src/main/java/com/plaid/client/model/AddressDataNullable.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AddressData; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Data about the components comprising an address. */ @ApiModel(description = "Data about the components comprising an address.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AddressDataNullable { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) private String city; public static final String SERIALIZED_NAME_REGION = "region"; @SerializedName(SERIALIZED_NAME_REGION) private String region; public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) private String street; public static final String SERIALIZED_NAME_POSTAL_CODE = "postal_code"; @SerializedName(SERIALIZED_NAME_POSTAL_CODE) private String postalCode; public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) private String country; public AddressDataNullable city(String city) { this.city = city; return this; } /** * The full city name * @return city **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The full city name") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public AddressDataNullable region(String region) { this.region = region; return this; } /** * The region or state. In API versions 2018-05-22 and earlier, this field is called &#x60;state&#x60;. Example: &#x60;\&quot;NC\&quot;&#x60; * @return region **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The region or state. In API versions 2018-05-22 and earlier, this field is called `state`. Example: `\"NC\"`") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public AddressDataNullable street(String street) { this.street = street; return this; } /** * The full street address Example: &#x60;\&quot;564 Main Street, APT 15\&quot;&#x60; * @return street **/ @ApiModelProperty(required = true, value = "The full street address Example: `\"564 Main Street, APT 15\"`") public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } public AddressDataNullable postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The postal code. In API versions 2018-05-22 and earlier, this field is called &#x60;zip&#x60;. * @return postalCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The postal code. In API versions 2018-05-22 and earlier, this field is called `zip`.") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public AddressDataNullable country(String country) { this.country = country; return this; } /** * The ISO 3166-1 alpha-2 country code * @return country **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ISO 3166-1 alpha-2 country code") public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AddressDataNullable addressDataNullable = (AddressDataNullable) o; return Objects.equals(this.city, addressDataNullable.city) && Objects.equals(this.region, addressDataNullable.region) && Objects.equals(this.street, addressDataNullable.street) && Objects.equals(this.postalCode, addressDataNullable.postalCode) && Objects.equals(this.country, addressDataNullable.country); } @Override public int hashCode() { return Objects.hash(city, region, street, postalCode, country); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AddressDataNullable {\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" region: ").append(toIndentedString(region)).append("\n"); sb.append(" street: ").append(toIndentedString(street)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append(" country: ").append(toIndentedString(country)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AuthVerifyRequest.java
src/main/java/com/plaid/client/model/AuthVerifyRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AuthVerifyRequestNumbers; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * AuthVerifyRequest defines the request schema for &#x60;/auth/verify&#x60; */ @ApiModel(description = "AuthVerifyRequest defines the request schema for `/auth/verify`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AuthVerifyRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_LEGAL_NAME = "legal_name"; @SerializedName(SERIALIZED_NAME_LEGAL_NAME) private String legalName; public static final String SERIALIZED_NAME_NUMBERS = "numbers"; @SerializedName(SERIALIZED_NAME_NUMBERS) private AuthVerifyRequestNumbers numbers; public AuthVerifyRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public AuthVerifyRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public AuthVerifyRequest legalName(String legalName) { this.legalName = legalName; return this; } /** * Account owner&#39;s legal name * @return legalName **/ @javax.annotation.Nullable @ApiModelProperty(value = "Account owner's legal name") public String getLegalName() { return legalName; } public void setLegalName(String legalName) { this.legalName = legalName; } public AuthVerifyRequest numbers(AuthVerifyRequestNumbers numbers) { this.numbers = numbers; return this; } /** * Get numbers * @return numbers **/ @ApiModelProperty(required = true, value = "") public AuthVerifyRequestNumbers getNumbers() { return numbers; } public void setNumbers(AuthVerifyRequestNumbers numbers) { this.numbers = numbers; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AuthVerifyRequest authVerifyRequest = (AuthVerifyRequest) o; return Objects.equals(this.clientId, authVerifyRequest.clientId) && Objects.equals(this.secret, authVerifyRequest.secret) && Objects.equals(this.legalName, authVerifyRequest.legalName) && Objects.equals(this.numbers, authVerifyRequest.numbers); } @Override public int hashCode() { return Objects.hash(clientId, secret, legalName, numbers); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AuthVerifyRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" legalName: ").append(toIndentedString(legalName)).append("\n"); sb.append(" numbers: ").append(toIndentedString(numbers)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkSessionExitDeprecated.java
src/main/java/com/plaid/client/model/LinkSessionExitDeprecated.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.LinkSessionExitMetadata; import com.plaid.client.model.PlaidError; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object representing an [onExit](https://plaid.com/docs/link/web/#onexit) callback from Link. This field is returned only for legacy implementations and has been deprecated in favor of [&#x60;exit&#x60;](https://plaid.com/docs/api/link/#link-token-get-response-link-sessions-exit), for improved naming consistency. If you are receiving this field, contact your Account Manager to migrate to the newer &#x60;exit&#x60; field. */ @ApiModel(description = "An object representing an [onExit](https://plaid.com/docs/link/web/#onexit) callback from Link. This field is returned only for legacy implementations and has been deprecated in favor of [`exit`](https://plaid.com/docs/api/link/#link-token-get-response-link-sessions-exit), for improved naming consistency. If you are receiving this field, contact your Account Manager to migrate to the newer `exit` field.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkSessionExitDeprecated { public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; public static final String SERIALIZED_NAME_METADATA = "metadata"; @SerializedName(SERIALIZED_NAME_METADATA) private LinkSessionExitMetadata metadata; public LinkSessionExitDeprecated error(PlaidError error) { this.error = error; return this; } /** * Get error * @return error **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public PlaidError getError() { return error; } public void setError(PlaidError error) { this.error = error; } public LinkSessionExitDeprecated metadata(LinkSessionExitMetadata metadata) { this.metadata = metadata; return this; } /** * Get metadata * @return metadata **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public LinkSessionExitMetadata getMetadata() { return metadata; } public void setMetadata(LinkSessionExitMetadata metadata) { this.metadata = metadata; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkSessionExitDeprecated linkSessionExitDeprecated = (LinkSessionExitDeprecated) o; return Objects.equals(this.error, linkSessionExitDeprecated.error) && Objects.equals(this.metadata, linkSessionExitDeprecated.metadata); } @Override public int hashCode() { return Objects.hash(error, metadata); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkSessionExitDeprecated {\n"); sb.append(" error: ").append(toIndentedString(error)).append("\n"); sb.append(" metadata: ").append(toIndentedString(metadata)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/NewAccountsAvailableWebhook.java
src/main/java/com/plaid/client/model/NewAccountsAvailableWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PlaidError; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Fired when Plaid detects a new account. Upon receiving this webhook, you can prompt your users to share new accounts with you through [update mode](https://plaid.com/docs/link/update-mode/#using-update-mode-to-request-new-accounts) (US/CA only). If the end user has opted not to share new accounts with Plaid via their institution&#39;s OAuth settings, Plaid will not detect new accounts and this webhook will not fire. For end user accounts in the EU and UK, upon receiving this webhook, you can prompt your user to re-link their account and then delete the old Item via &#x60;/item/remove&#x60;. */ @ApiModel(description = "Fired when Plaid detects a new account. Upon receiving this webhook, you can prompt your users to share new accounts with you through [update mode](https://plaid.com/docs/link/update-mode/#using-update-mode-to-request-new-accounts) (US/CA only). If the end user has opted not to share new accounts with Plaid via their institution's OAuth settings, Plaid will not detect new accounts and this webhook will not fire. For end user accounts in the EU and UK, upon receiving this webhook, you can prompt your user to re-link their account and then delete the old Item via `/item/remove`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class NewAccountsAvailableWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public NewAccountsAvailableWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;ITEM&#x60; * @return webhookType **/ @javax.annotation.Nullable @ApiModelProperty(value = "`ITEM`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public NewAccountsAvailableWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;NEW_ACCOUNTS_AVAILABLE&#x60; * @return webhookCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "`NEW_ACCOUNTS_AVAILABLE`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public NewAccountsAvailableWebhook itemId(String itemId) { this.itemId = itemId; return this; } /** * The &#x60;item_id&#x60; of the Item associated with this webhook, warning, or error * @return itemId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The `item_id` of the Item associated with this webhook, warning, or error") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public NewAccountsAvailableWebhook error(PlaidError error) { this.error = error; return this; } /** * Get error * @return error **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PlaidError getError() { return error; } public void setError(PlaidError error) { this.error = error; } public NewAccountsAvailableWebhook environment(WebhookEnvironmentValues environment) { this.environment = environment; return this; } /** * Get environment * @return environment **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public WebhookEnvironmentValues getEnvironment() { return environment; } public void setEnvironment(WebhookEnvironmentValues environment) { this.environment = environment; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } NewAccountsAvailableWebhook newAccountsAvailableWebhook = (NewAccountsAvailableWebhook) o; return Objects.equals(this.webhookType, newAccountsAvailableWebhook.webhookType) && Objects.equals(this.webhookCode, newAccountsAvailableWebhook.webhookCode) && Objects.equals(this.itemId, newAccountsAvailableWebhook.itemId) && Objects.equals(this.error, newAccountsAvailableWebhook.error) && Objects.equals(this.environment, newAccountsAvailableWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, itemId, error, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class NewAccountsAvailableWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" error: ").append(toIndentedString(error)).append("\n"); sb.append(" environment: ").append(toIndentedString(environment)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AccountIdentityMatchScoreAllOf.java
src/main/java/com/plaid/client/model/AccountIdentityMatchScoreAllOf.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AddressMatchScore; import com.plaid.client.model.EmailAddressMatchScore; import com.plaid.client.model.NameMatchScore; import com.plaid.client.model.PhoneNumberMatchScore; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * AccountIdentityMatchScoreAllOf */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AccountIdentityMatchScoreAllOf { public static final String SERIALIZED_NAME_LEGAL_NAME = "legal_name"; @SerializedName(SERIALIZED_NAME_LEGAL_NAME) private NameMatchScore legalName; public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) private PhoneNumberMatchScore phoneNumber; public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) private EmailAddressMatchScore emailAddress; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private AddressMatchScore address; public AccountIdentityMatchScoreAllOf legalName(NameMatchScore legalName) { this.legalName = legalName; return this; } /** * Get legalName * @return legalName **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public NameMatchScore getLegalName() { return legalName; } public void setLegalName(NameMatchScore legalName) { this.legalName = legalName; } public AccountIdentityMatchScoreAllOf phoneNumber(PhoneNumberMatchScore phoneNumber) { this.phoneNumber = phoneNumber; return this; } /** * Get phoneNumber * @return phoneNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PhoneNumberMatchScore getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(PhoneNumberMatchScore phoneNumber) { this.phoneNumber = phoneNumber; } public AccountIdentityMatchScoreAllOf emailAddress(EmailAddressMatchScore emailAddress) { this.emailAddress = emailAddress; return this; } /** * Get emailAddress * @return emailAddress **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public EmailAddressMatchScore getEmailAddress() { return emailAddress; } public void setEmailAddress(EmailAddressMatchScore emailAddress) { this.emailAddress = emailAddress; } public AccountIdentityMatchScoreAllOf address(AddressMatchScore address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AddressMatchScore getAddress() { return address; } public void setAddress(AddressMatchScore address) { this.address = address; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AccountIdentityMatchScoreAllOf accountIdentityMatchScoreAllOf = (AccountIdentityMatchScoreAllOf) o; return Objects.equals(this.legalName, accountIdentityMatchScoreAllOf.legalName) && Objects.equals(this.phoneNumber, accountIdentityMatchScoreAllOf.phoneNumber) && Objects.equals(this.emailAddress, accountIdentityMatchScoreAllOf.emailAddress) && Objects.equals(this.address, accountIdentityMatchScoreAllOf.address); } @Override public int hashCode() { return Objects.hash(legalName, phoneNumber, emailAddress, address); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AccountIdentityMatchScoreAllOf {\n"); sb.append(" legalName: ").append(toIndentedString(legalName)).append("\n"); sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProtectEvent.java
src/main/java/com/plaid/client/model/ProtectEvent.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * Event data for Protect events. */ @ApiModel(description = "Event data for Protect events.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProtectEvent { public static final String SERIALIZED_NAME_TIMESTAMP = "timestamp"; @SerializedName(SERIALIZED_NAME_TIMESTAMP) private OffsetDateTime timestamp; public static final String SERIALIZED_NAME_PROTECT_SESSION_ID = "protect_session_id"; @SerializedName(SERIALIZED_NAME_PROTECT_SESSION_ID) private String protectSessionId; public static final String SERIALIZED_NAME_APP_VISIT = "app_visit"; @SerializedName(SERIALIZED_NAME_APP_VISIT) private Object appVisit; public static final String SERIALIZED_NAME_USER_SIGN_IN = "user_sign_in"; @SerializedName(SERIALIZED_NAME_USER_SIGN_IN) private Object userSignIn; public static final String SERIALIZED_NAME_USER_SIGN_UP = "user_sign_up"; @SerializedName(SERIALIZED_NAME_USER_SIGN_UP) private Object userSignUp; public ProtectEvent timestamp(OffsetDateTime timestamp) { this.timestamp = timestamp; return this; } /** * The timestamp of the event, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format, e.g. &#x60;\&quot;2017-09-14T14:42:19.350Z\&quot;&#x60; * @return timestamp **/ @ApiModelProperty(required = true, value = "The timestamp of the event, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format, e.g. `\"2017-09-14T14:42:19.350Z\"`") public OffsetDateTime getTimestamp() { return timestamp; } public void setTimestamp(OffsetDateTime timestamp) { this.timestamp = timestamp; } public ProtectEvent protectSessionId(String protectSessionId) { this.protectSessionId = protectSessionId; return this; } /** * If present, contains the current Protect Session ID from the Plaid Pixel SDK. * @return protectSessionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "If present, contains the current Protect Session ID from the Plaid Pixel SDK.") public String getProtectSessionId() { return protectSessionId; } public void setProtectSessionId(String protectSessionId) { this.protectSessionId = protectSessionId; } public ProtectEvent appVisit(Object appVisit) { this.appVisit = appVisit; return this; } /** * This event type represents a user visiting the client application. * @return appVisit **/ @javax.annotation.Nullable @ApiModelProperty(value = "This event type represents a user visiting the client application.") public Object getAppVisit() { return appVisit; } public void setAppVisit(Object appVisit) { this.appVisit = appVisit; } public ProtectEvent userSignIn(Object userSignIn) { this.userSignIn = userSignIn; return this; } /** * This event type represents a user signing in to the application. * @return userSignIn **/ @javax.annotation.Nullable @ApiModelProperty(value = "This event type represents a user signing in to the application.") public Object getUserSignIn() { return userSignIn; } public void setUserSignIn(Object userSignIn) { this.userSignIn = userSignIn; } public ProtectEvent userSignUp(Object userSignUp) { this.userSignUp = userSignUp; return this; } /** * This event type represents a user signing up for the application. * @return userSignUp **/ @javax.annotation.Nullable @ApiModelProperty(value = "This event type represents a user signing up for the application.") public Object getUserSignUp() { return userSignUp; } public void setUserSignUp(Object userSignUp) { this.userSignUp = userSignUp; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProtectEvent protectEvent = (ProtectEvent) o; return Objects.equals(this.timestamp, protectEvent.timestamp) && Objects.equals(this.protectSessionId, protectEvent.protectSessionId) && Objects.equals(this.appVisit, protectEvent.appVisit) && Objects.equals(this.userSignIn, protectEvent.userSignIn) && Objects.equals(this.userSignUp, protectEvent.userSignUp); } @Override public int hashCode() { return Objects.hash(timestamp, protectSessionId, appVisit, userSignIn, userSignUp); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProtectEvent {\n"); sb.append(" timestamp: ").append(toIndentedString(timestamp)).append("\n"); sb.append(" protectSessionId: ").append(toIndentedString(protectSessionId)).append("\n"); sb.append(" appVisit: ").append(toIndentedString(appVisit)).append("\n"); sb.append(" userSignIn: ").append(toIndentedString(userSignIn)).append("\n"); sb.append(" userSignUp: ").append(toIndentedString(userSignUp)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SandboxBankIncomeWebhookFireRequestWebhookFields.java
src/main/java/com/plaid/client/model/SandboxBankIncomeWebhookFireRequestWebhookFields.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.BankIncomeRefreshCompleteResult; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Optional fields which will be populated in the simulated webhook */ @ApiModel(description = "Optional fields which will be populated in the simulated webhook") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxBankIncomeWebhookFireRequestWebhookFields { public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_BANK_INCOME_REFRESH_COMPLETE_RESULT = "bank_income_refresh_complete_result"; @SerializedName(SERIALIZED_NAME_BANK_INCOME_REFRESH_COMPLETE_RESULT) private BankIncomeRefreshCompleteResult bankIncomeRefreshCompleteResult; public SandboxBankIncomeWebhookFireRequestWebhookFields userId(String userId) { this.userId = userId; return this; } /** * The user id to be returned in INCOME webhooks * @return userId **/ @ApiModelProperty(required = true, value = "The user id to be returned in INCOME webhooks") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public SandboxBankIncomeWebhookFireRequestWebhookFields bankIncomeRefreshCompleteResult(BankIncomeRefreshCompleteResult bankIncomeRefreshCompleteResult) { this.bankIncomeRefreshCompleteResult = bankIncomeRefreshCompleteResult; return this; } /** * Get bankIncomeRefreshCompleteResult * @return bankIncomeRefreshCompleteResult **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public BankIncomeRefreshCompleteResult getBankIncomeRefreshCompleteResult() { return bankIncomeRefreshCompleteResult; } public void setBankIncomeRefreshCompleteResult(BankIncomeRefreshCompleteResult bankIncomeRefreshCompleteResult) { this.bankIncomeRefreshCompleteResult = bankIncomeRefreshCompleteResult; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SandboxBankIncomeWebhookFireRequestWebhookFields sandboxBankIncomeWebhookFireRequestWebhookFields = (SandboxBankIncomeWebhookFireRequestWebhookFields) o; return Objects.equals(this.userId, sandboxBankIncomeWebhookFireRequestWebhookFields.userId) && Objects.equals(this.bankIncomeRefreshCompleteResult, sandboxBankIncomeWebhookFireRequestWebhookFields.bankIncomeRefreshCompleteResult); } @Override public int hashCode() { return Objects.hash(userId, bankIncomeRefreshCompleteResult); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxBankIncomeWebhookFireRequestWebhookFields {\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" bankIncomeRefreshCompleteResult: ").append(toIndentedString(bankIncomeRefreshCompleteResult)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/EntityScreeningHitData.java
src/main/java/com/plaid/client/model/EntityScreeningHitData.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.EntityScreeningHitDocumentsItems; import com.plaid.client.model.EntityScreeningHitEmailsItems; import com.plaid.client.model.EntityScreeningHitNamesItems; import com.plaid.client.model.EntityScreeningHitUrlsItems; import com.plaid.client.model.EntityScreeningHitsPhoneNumberItems; import com.plaid.client.model.GenericScreeningHitLocationItems; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Information associated with the entity watchlist hit */ @ApiModel(description = "Information associated with the entity watchlist hit") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class EntityScreeningHitData { public static final String SERIALIZED_NAME_DOCUMENTS = "documents"; @SerializedName(SERIALIZED_NAME_DOCUMENTS) private List<EntityScreeningHitDocumentsItems> documents = null; public static final String SERIALIZED_NAME_EMAIL_ADDRESSES = "email_addresses"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESSES) private List<EntityScreeningHitEmailsItems> emailAddresses = null; public static final String SERIALIZED_NAME_LOCATIONS = "locations"; @SerializedName(SERIALIZED_NAME_LOCATIONS) private List<GenericScreeningHitLocationItems> locations = null; public static final String SERIALIZED_NAME_NAMES = "names"; @SerializedName(SERIALIZED_NAME_NAMES) private List<EntityScreeningHitNamesItems> names = null; public static final String SERIALIZED_NAME_PHONE_NUMBERS = "phone_numbers"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBERS) private List<EntityScreeningHitsPhoneNumberItems> phoneNumbers = null; public static final String SERIALIZED_NAME_URLS = "urls"; @SerializedName(SERIALIZED_NAME_URLS) private List<EntityScreeningHitUrlsItems> urls = null; public EntityScreeningHitData documents(List<EntityScreeningHitDocumentsItems> documents) { this.documents = documents; return this; } public EntityScreeningHitData addDocumentsItem(EntityScreeningHitDocumentsItems documentsItem) { if (this.documents == null) { this.documents = new ArrayList<>(); } this.documents.add(documentsItem); return this; } /** * Documents associated with the watchlist hit * @return documents **/ @javax.annotation.Nullable @ApiModelProperty(value = "Documents associated with the watchlist hit") public List<EntityScreeningHitDocumentsItems> getDocuments() { return documents; } public void setDocuments(List<EntityScreeningHitDocumentsItems> documents) { this.documents = documents; } public EntityScreeningHitData emailAddresses(List<EntityScreeningHitEmailsItems> emailAddresses) { this.emailAddresses = emailAddresses; return this; } public EntityScreeningHitData addEmailAddressesItem(EntityScreeningHitEmailsItems emailAddressesItem) { if (this.emailAddresses == null) { this.emailAddresses = new ArrayList<>(); } this.emailAddresses.add(emailAddressesItem); return this; } /** * Email addresses associated with the watchlist hit * @return emailAddresses **/ @javax.annotation.Nullable @ApiModelProperty(value = "Email addresses associated with the watchlist hit") public List<EntityScreeningHitEmailsItems> getEmailAddresses() { return emailAddresses; } public void setEmailAddresses(List<EntityScreeningHitEmailsItems> emailAddresses) { this.emailAddresses = emailAddresses; } public EntityScreeningHitData locations(List<GenericScreeningHitLocationItems> locations) { this.locations = locations; return this; } public EntityScreeningHitData addLocationsItem(GenericScreeningHitLocationItems locationsItem) { if (this.locations == null) { this.locations = new ArrayList<>(); } this.locations.add(locationsItem); return this; } /** * Locations associated with the watchlist hit * @return locations **/ @javax.annotation.Nullable @ApiModelProperty(value = "Locations associated with the watchlist hit") public List<GenericScreeningHitLocationItems> getLocations() { return locations; } public void setLocations(List<GenericScreeningHitLocationItems> locations) { this.locations = locations; } public EntityScreeningHitData names(List<EntityScreeningHitNamesItems> names) { this.names = names; return this; } public EntityScreeningHitData addNamesItem(EntityScreeningHitNamesItems namesItem) { if (this.names == null) { this.names = new ArrayList<>(); } this.names.add(namesItem); return this; } /** * Names associated with the watchlist hit * @return names **/ @javax.annotation.Nullable @ApiModelProperty(value = "Names associated with the watchlist hit") public List<EntityScreeningHitNamesItems> getNames() { return names; } public void setNames(List<EntityScreeningHitNamesItems> names) { this.names = names; } public EntityScreeningHitData phoneNumbers(List<EntityScreeningHitsPhoneNumberItems> phoneNumbers) { this.phoneNumbers = phoneNumbers; return this; } public EntityScreeningHitData addPhoneNumbersItem(EntityScreeningHitsPhoneNumberItems phoneNumbersItem) { if (this.phoneNumbers == null) { this.phoneNumbers = new ArrayList<>(); } this.phoneNumbers.add(phoneNumbersItem); return this; } /** * Phone numbers associated with the watchlist hit * @return phoneNumbers **/ @javax.annotation.Nullable @ApiModelProperty(value = "Phone numbers associated with the watchlist hit") public List<EntityScreeningHitsPhoneNumberItems> getPhoneNumbers() { return phoneNumbers; } public void setPhoneNumbers(List<EntityScreeningHitsPhoneNumberItems> phoneNumbers) { this.phoneNumbers = phoneNumbers; } public EntityScreeningHitData urls(List<EntityScreeningHitUrlsItems> urls) { this.urls = urls; return this; } public EntityScreeningHitData addUrlsItem(EntityScreeningHitUrlsItems urlsItem) { if (this.urls == null) { this.urls = new ArrayList<>(); } this.urls.add(urlsItem); return this; } /** * URLs associated with the watchlist hit * @return urls **/ @javax.annotation.Nullable @ApiModelProperty(value = "URLs associated with the watchlist hit") public List<EntityScreeningHitUrlsItems> getUrls() { return urls; } public void setUrls(List<EntityScreeningHitUrlsItems> urls) { this.urls = urls; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } EntityScreeningHitData entityScreeningHitData = (EntityScreeningHitData) o; return Objects.equals(this.documents, entityScreeningHitData.documents) && Objects.equals(this.emailAddresses, entityScreeningHitData.emailAddresses) && Objects.equals(this.locations, entityScreeningHitData.locations) && Objects.equals(this.names, entityScreeningHitData.names) && Objects.equals(this.phoneNumbers, entityScreeningHitData.phoneNumbers) && Objects.equals(this.urls, entityScreeningHitData.urls); } @Override public int hashCode() { return Objects.hash(documents, emailAddresses, locations, names, phoneNumbers, urls); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class EntityScreeningHitData {\n"); sb.append(" documents: ").append(toIndentedString(documents)).append("\n"); sb.append(" emailAddresses: ").append(toIndentedString(emailAddresses)).append("\n"); sb.append(" locations: ").append(toIndentedString(locations)).append("\n"); sb.append(" names: ").append(toIndentedString(names)).append("\n"); sb.append(" phoneNumbers: ").append(toIndentedString(phoneNumbers)).append("\n"); sb.append(" urls: ").append(toIndentedString(urls)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferUserAddressInResponse.java
src/main/java/com/plaid/client/model/TransferUserAddressInResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The address associated with the account holder. */ @ApiModel(description = "The address associated with the account holder.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferUserAddressInResponse { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) private String street; public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) private String city; public static final String SERIALIZED_NAME_REGION = "region"; @SerializedName(SERIALIZED_NAME_REGION) private String region; public static final String SERIALIZED_NAME_POSTAL_CODE = "postal_code"; @SerializedName(SERIALIZED_NAME_POSTAL_CODE) private String postalCode; public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) private String country; public TransferUserAddressInResponse street(String street) { this.street = street; return this; } /** * The street number and name (i.e., \&quot;100 Market St.\&quot;). * @return street **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The street number and name (i.e., \"100 Market St.\").") public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } public TransferUserAddressInResponse city(String city) { this.city = city; return this; } /** * Ex. \&quot;San Francisco\&quot; * @return city **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Ex. \"San Francisco\"") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public TransferUserAddressInResponse region(String region) { this.region = region; return this; } /** * The state or province (e.g., \&quot;CA\&quot;). * @return region **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The state or province (e.g., \"CA\").") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public TransferUserAddressInResponse postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The postal code (e.g., \&quot;94103\&quot;). * @return postalCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The postal code (e.g., \"94103\").") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public TransferUserAddressInResponse country(String country) { this.country = country; return this; } /** * A two-letter country code (e.g., \&quot;US\&quot;). * @return country **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "A two-letter country code (e.g., \"US\").") public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferUserAddressInResponse transferUserAddressInResponse = (TransferUserAddressInResponse) o; return Objects.equals(this.street, transferUserAddressInResponse.street) && Objects.equals(this.city, transferUserAddressInResponse.city) && Objects.equals(this.region, transferUserAddressInResponse.region) && Objects.equals(this.postalCode, transferUserAddressInResponse.postalCode) && Objects.equals(this.country, transferUserAddressInResponse.country); } @Override public int hashCode() { return Objects.hash(street, city, region, postalCode, country); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferUserAddressInResponse {\n"); sb.append(" street: ").append(toIndentedString(street)).append("\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" region: ").append(toIndentedString(region)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append(" country: ").append(toIndentedString(country)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IdentityVerificationCreateRequest.java
src/main/java/com/plaid/client/model/IdentityVerificationCreateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.IdentityVerificationCreateRequestUser; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Request schema for &#x60;/identity_verification/create&#x60; */ @ApiModel(description = "Request schema for `/identity_verification/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityVerificationCreateRequest { public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id"; @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) private String clientUserId; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_IS_SHAREABLE = "is_shareable"; @SerializedName(SERIALIZED_NAME_IS_SHAREABLE) private Boolean isShareable; public static final String SERIALIZED_NAME_TEMPLATE_ID = "template_id"; @SerializedName(SERIALIZED_NAME_TEMPLATE_ID) private String templateId; public static final String SERIALIZED_NAME_GAVE_CONSENT = "gave_consent"; @SerializedName(SERIALIZED_NAME_GAVE_CONSENT) private Boolean gaveConsent = false; public static final String SERIALIZED_NAME_USER = "user"; @SerializedName(SERIALIZED_NAME_USER) private IdentityVerificationCreateRequestUser user; public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_IS_IDEMPOTENT = "is_idempotent"; @SerializedName(SERIALIZED_NAME_IS_IDEMPOTENT) private Boolean isIdempotent; public IdentityVerificationCreateRequest clientUserId(String clientUserId) { this.clientUserId = clientUserId; return this; } /** * A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the &#x60;/link/token/create&#x60; &#x60;client_user_id&#x60; to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the &#x60;client_user_id&#x60;. * @return clientUserId **/ @javax.annotation.Nullable @ApiModelProperty(example = "your-db-id-3b24110", value = "A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the `/link/token/create` `client_user_id` to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`.") public String getClientUserId() { return clientUserId; } public void setClientUserId(String clientUserId) { this.clientUserId = clientUserId; } public IdentityVerificationCreateRequest userId(String userId) { this.userId = userId; return this; } /** * A unique user identifier, created by &#x60;/user/create&#x60;. All integrations that began using &#x60;/user/create&#x60; after December 10, 2025 use this field to identify a user instead of the &#x60;user_token&#x60;. For more details, see [new user APIs](https://plaid.com/docs/api/user/user-apis). * @return userId **/ @javax.annotation.Nullable @ApiModelProperty(example = "usr_dddAs9ewdcDQQQ", value = "A unique user identifier, created by `/user/create`. All integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/user/user-apis).") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public IdentityVerificationCreateRequest isShareable(Boolean isShareable) { this.isShareable = isShareable; return this; } /** * A flag specifying whether you would like Plaid to expose a shareable URL for the verification being created. * @return isShareable **/ @ApiModelProperty(example = "true", required = true, value = "A flag specifying whether you would like Plaid to expose a shareable URL for the verification being created.") public Boolean getIsShareable() { return isShareable; } public void setIsShareable(Boolean isShareable) { this.isShareable = isShareable; } public IdentityVerificationCreateRequest templateId(String templateId) { this.templateId = templateId; return this; } /** * ID of the associated Identity Verification template. Like all Plaid identifiers, this is case-sensitive. * @return templateId **/ @ApiModelProperty(example = "idvtmp_4FrXJvfQU3zGUR", required = true, value = "ID of the associated Identity Verification template. Like all Plaid identifiers, this is case-sensitive.") public String getTemplateId() { return templateId; } public void setTemplateId(String templateId) { this.templateId = templateId; } public IdentityVerificationCreateRequest gaveConsent(Boolean gaveConsent) { this.gaveConsent = gaveConsent; return this; } /** * A flag specifying whether the end user has already agreed to a privacy policy specifying that their data will be shared with Plaid for verification purposes. If &#x60;gave_consent&#x60; is set to &#x60;true&#x60;, the &#x60;accept_tos&#x60; step will be marked as &#x60;skipped&#x60; and the end user&#39;s session will start at the next step requirement. * @return gaveConsent **/ @ApiModelProperty(example = "true", required = true, value = "A flag specifying whether the end user has already agreed to a privacy policy specifying that their data will be shared with Plaid for verification purposes. If `gave_consent` is set to `true`, the `accept_tos` step will be marked as `skipped` and the end user's session will start at the next step requirement.") public Boolean getGaveConsent() { return gaveConsent; } public void setGaveConsent(Boolean gaveConsent) { this.gaveConsent = gaveConsent; } public IdentityVerificationCreateRequest user(IdentityVerificationCreateRequestUser user) { this.user = user; return this; } /** * Get user * @return user **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IdentityVerificationCreateRequestUser getUser() { return user; } public void setUser(IdentityVerificationCreateRequestUser user) { this.user = user; } public IdentityVerificationCreateRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public IdentityVerificationCreateRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public IdentityVerificationCreateRequest isIdempotent(Boolean isIdempotent) { this.isIdempotent = isIdempotent; return this; } /** * An optional flag specifying how you would like Plaid to handle attempts to create an Identity Verification when an Identity Verification already exists for the provided &#x60;client_user_id&#x60; and &#x60;template_id&#x60;. If idempotency is enabled, Plaid will return the existing Identity Verification. If idempotency is disabled, Plaid will reject the request with a &#x60;400 Bad Request&#x60; status code if an Identity Verification already exists for the supplied &#x60;client_user_id&#x60; and &#x60;template_id&#x60;. * @return isIdempotent **/ @javax.annotation.Nullable @ApiModelProperty(example = "true", value = "An optional flag specifying how you would like Plaid to handle attempts to create an Identity Verification when an Identity Verification already exists for the provided `client_user_id` and `template_id`. If idempotency is enabled, Plaid will return the existing Identity Verification. If idempotency is disabled, Plaid will reject the request with a `400 Bad Request` status code if an Identity Verification already exists for the supplied `client_user_id` and `template_id`.") public Boolean getIsIdempotent() { return isIdempotent; } public void setIsIdempotent(Boolean isIdempotent) { this.isIdempotent = isIdempotent; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IdentityVerificationCreateRequest identityVerificationCreateRequest = (IdentityVerificationCreateRequest) o; return Objects.equals(this.clientUserId, identityVerificationCreateRequest.clientUserId) && Objects.equals(this.userId, identityVerificationCreateRequest.userId) && Objects.equals(this.isShareable, identityVerificationCreateRequest.isShareable) && Objects.equals(this.templateId, identityVerificationCreateRequest.templateId) && Objects.equals(this.gaveConsent, identityVerificationCreateRequest.gaveConsent) && Objects.equals(this.user, identityVerificationCreateRequest.user) && Objects.equals(this.clientId, identityVerificationCreateRequest.clientId) && Objects.equals(this.secret, identityVerificationCreateRequest.secret) && Objects.equals(this.isIdempotent, identityVerificationCreateRequest.isIdempotent); } @Override public int hashCode() { return Objects.hash(clientUserId, userId, isShareable, templateId, gaveConsent, user, clientId, secret, isIdempotent); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityVerificationCreateRequest {\n"); sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" isShareable: ").append(toIndentedString(isShareable)).append("\n"); sb.append(" templateId: ").append(toIndentedString(templateId)).append("\n"); sb.append(" gaveConsent: ").append(toIndentedString(gaveConsent)).append("\n"); sb.append(" user: ").append(toIndentedString(user)).append("\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" isIdempotent: ").append(toIndentedString(isIdempotent)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SignalUser.java
src/main/java/com/plaid/client/model/SignalUser.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.SignalAddressData; import com.plaid.client.model.SignalPersonName; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Details about the end user initiating the transaction (i.e., the account holder). These fields are optional, but strongly recommended to increase the accuracy of results when using Signal Transaction Scores. When using a Balance-only ruleset, if the Signal Addendum has been signed, these fields are ignored; if the Addendum has not been signed, using these fields will result in an error. */ @ApiModel(description = "Details about the end user initiating the transaction (i.e., the account holder). These fields are optional, but strongly recommended to increase the accuracy of results when using Signal Transaction Scores. When using a Balance-only ruleset, if the Signal Addendum has been signed, these fields are ignored; if the Addendum has not been signed, using these fields will result in an error.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SignalUser { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private SignalPersonName name; public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) private String phoneNumber; public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) private String emailAddress; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private SignalAddressData address; public SignalUser name(SignalPersonName name) { this.name = name; return this; } /** * Get name * @return name **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public SignalPersonName getName() { return name; } public void setName(SignalPersonName name) { this.name = name; } public SignalUser phoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; return this; } /** * The user&#39;s phone number, in E.164 format: +{countrycode}{number}. For example: \&quot;+14151234567\&quot; * @return phoneNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's phone number, in E.164 format: +{countrycode}{number}. For example: \"+14151234567\"") public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } public SignalUser emailAddress(String emailAddress) { this.emailAddress = emailAddress; return this; } /** * The user&#39;s email address. * @return emailAddress **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's email address.") public String getEmailAddress() { return emailAddress; } public void setEmailAddress(String emailAddress) { this.emailAddress = emailAddress; } public SignalUser address(SignalAddressData address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public SignalAddressData getAddress() { return address; } public void setAddress(SignalAddressData address) { this.address = address; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SignalUser signalUser = (SignalUser) o; return Objects.equals(this.name, signalUser.name) && Objects.equals(this.phoneNumber, signalUser.phoneNumber) && Objects.equals(this.emailAddress, signalUser.emailAddress) && Objects.equals(this.address, signalUser.address); } @Override public int hashCode() { return Objects.hash(name, phoneNumber, emailAddress, address); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SignalUser {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SandboxTransferSimulateResponse.java
src/main/java/com/plaid/client/model/SandboxTransferSimulateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the response schema for &#x60;/sandbox/transfer/simulate&#x60; */ @ApiModel(description = "Defines the response schema for `/sandbox/transfer/simulate`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxTransferSimulateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public SandboxTransferSimulateResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SandboxTransferSimulateResponse sandboxTransferSimulateResponse = (SandboxTransferSimulateResponse) o; return Objects.equals(this.requestId, sandboxTransferSimulateResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxTransferSimulateResponse {\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditSessionItemAddResult.java
src/main/java/com/plaid/client/model/CreditSessionItemAddResult.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The details of an Item add in Link. */ @ApiModel(description = "The details of an Item add in Link.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditSessionItemAddResult { public static final String SERIALIZED_NAME_PUBLIC_TOKEN = "public_token"; @SerializedName(SERIALIZED_NAME_PUBLIC_TOKEN) private String publicToken; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) private String institutionId; public CreditSessionItemAddResult publicToken(String publicToken) { this.publicToken = publicToken; return this; } /** * Returned once a user has successfully linked their Item. * @return publicToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "Returned once a user has successfully linked their Item.") public String getPublicToken() { return publicToken; } public void setPublicToken(String publicToken) { this.publicToken = publicToken; } public CreditSessionItemAddResult itemId(String itemId) { this.itemId = itemId; return this; } /** * The Plaid Item ID. The &#x60;item_id&#x60; is always unique; linking the same account at the same institution twice will result in two Items with different &#x60;item_id&#x60; values. Like all Plaid identifiers, the &#x60;item_id&#x60; is case-sensitive. * @return itemId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Plaid Item ID. The `item_id` is always unique; linking the same account at the same institution twice will result in two Items with different `item_id` values. Like all Plaid identifiers, the `item_id` is case-sensitive.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public CreditSessionItemAddResult institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * The Plaid Institution ID associated with the Item. * @return institutionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Plaid Institution ID associated with the Item.") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditSessionItemAddResult creditSessionItemAddResult = (CreditSessionItemAddResult) o; return Objects.equals(this.publicToken, creditSessionItemAddResult.publicToken) && Objects.equals(this.itemId, creditSessionItemAddResult.itemId) && Objects.equals(this.institutionId, creditSessionItemAddResult.institutionId); } @Override public int hashCode() { return Objects.hash(publicToken, itemId, institutionId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditSessionItemAddResult {\n"); sb.append(" publicToken: ").append(toIndentedString(publicToken)).append("\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/InvestmentsRefreshResponse.java
src/main/java/com/plaid/client/model/InvestmentsRefreshResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * InvestmentsRefreshResponse defines the response schema for &#x60;/investments/refresh&#x60; */ @ApiModel(description = "InvestmentsRefreshResponse defines the response schema for `/investments/refresh`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InvestmentsRefreshResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public InvestmentsRefreshResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } InvestmentsRefreshResponse investmentsRefreshResponse = (InvestmentsRefreshResponse) o; return Objects.equals(this.requestId, investmentsRefreshResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InvestmentsRefreshResponse {\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BaseReportAverageMonthlyBalances.java
src/main/java/com/plaid/client/model/BaseReportAverageMonthlyBalances.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CreditAmountWithCurrency; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Average balance in dollar amount per month */ @ApiModel(description = "Average balance in dollar amount per month") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BaseReportAverageMonthlyBalances { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) private String startDate; public static final String SERIALIZED_NAME_END_DATE = "end_date"; @SerializedName(SERIALIZED_NAME_END_DATE) private String endDate; public static final String SERIALIZED_NAME_AVERAGE_BALANCE = "average_balance"; @SerializedName(SERIALIZED_NAME_AVERAGE_BALANCE) private CreditAmountWithCurrency averageBalance; public BaseReportAverageMonthlyBalances startDate(String startDate) { this.startDate = startDate; return this; } /** * The start date of this time period. The date will be returned in an ISO 8601 format (YYYY-MM-DD). * @return startDate **/ @ApiModelProperty(required = true, value = "The start date of this time period. The date will be returned in an ISO 8601 format (YYYY-MM-DD).") public String getStartDate() { return startDate; } public void setStartDate(String startDate) { this.startDate = startDate; } public BaseReportAverageMonthlyBalances endDate(String endDate) { this.endDate = endDate; return this; } /** * The end date of this time period. The date will be returned in an ISO 8601 format (YYYY-MM-DD). * @return endDate **/ @ApiModelProperty(required = true, value = "The end date of this time period. The date will be returned in an ISO 8601 format (YYYY-MM-DD).") public String getEndDate() { return endDate; } public void setEndDate(String endDate) { this.endDate = endDate; } public BaseReportAverageMonthlyBalances averageBalance(CreditAmountWithCurrency averageBalance) { this.averageBalance = averageBalance; return this; } /** * Get averageBalance * @return averageBalance **/ @ApiModelProperty(required = true, value = "") public CreditAmountWithCurrency getAverageBalance() { return averageBalance; } public void setAverageBalance(CreditAmountWithCurrency averageBalance) { this.averageBalance = averageBalance; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BaseReportAverageMonthlyBalances baseReportAverageMonthlyBalances = (BaseReportAverageMonthlyBalances) o; return Objects.equals(this.startDate, baseReportAverageMonthlyBalances.startDate) && Objects.equals(this.endDate, baseReportAverageMonthlyBalances.endDate) && Objects.equals(this.averageBalance, baseReportAverageMonthlyBalances.averageBalance); } @Override public int hashCode() { return Objects.hash(startDate, endDate, averageBalance); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BaseReportAverageMonthlyBalances {\n"); sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n"); sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n"); sb.append(" averageBalance: ").append(toIndentedString(averageBalance)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BaseReportWarningCode.java
src/main/java/com/plaid/client/model/BaseReportWarningCode.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The warning code identifies a specific kind of warning. &#x60;IDENTITY_UNAVAILABLE&#x60;: Account-owner information is not available. &#x60;TRANSACTIONS_UNAVAILABLE&#x60;: Transactions information associated with Credit and Depository accounts are unavailable. &#x60;USER_FRAUD_ALERT&#x60;: The User has placed a fraud alert on their Plaid Check consumer report due to suspected fraud. Note: when a fraud alert is in place, the recipient of the consumer report has an obligation to verify the consumer’s identity. */ @JsonAdapter(BaseReportWarningCode.Adapter.class) public enum BaseReportWarningCode { IDENTITY_UNAVAILABLE("IDENTITY_UNAVAILABLE"), TRANSACTIONS_UNAVAILABLE("TRANSACTIONS_UNAVAILABLE"), USER_FRAUD_ALERT("USER_FRAUD_ALERT"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; BaseReportWarningCode(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static BaseReportWarningCode fromValue(String value) { for (BaseReportWarningCode b : BaseReportWarningCode.values()) { if (b.value.equals(value)) { return b; } } return BaseReportWarningCode.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<BaseReportWarningCode> { @Override public void write(final JsonWriter jsonWriter, final BaseReportWarningCode enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public BaseReportWarningCode read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return BaseReportWarningCode.fromValue(value); } } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransactionStreamStatus.java
src/main/java/com/plaid/client/model/TransactionStreamStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The current status of the transaction stream. &#x60;MATURE&#x60;: A &#x60;MATURE&#x60; recurring stream should have at least 3 transactions and happen on a regular cadence (For Annual recurring stream, we will mark it &#x60;MATURE&#x60; after 2 instances). &#x60;EARLY_DETECTION&#x60;: When a recurring transaction first appears in the transaction history and before it fulfills the requirement of a mature stream, the status will be &#x60;EARLY_DETECTION&#x60;. &#x60;TOMBSTONED&#x60;: A stream that was previously in the &#x60;EARLY_DETECTION&#x60; status will move to the &#x60;TOMBSTONED&#x60; status when no further transactions were found at the next expected date. &#x60;UNKNOWN&#x60;: A stream is assigned an &#x60;UNKNOWN&#x60; status when none of the other statuses are applicable. */ @JsonAdapter(TransactionStreamStatus.Adapter.class) public enum TransactionStreamStatus { UNKNOWN("UNKNOWN"), MATURE("MATURE"), EARLY_DETECTION("EARLY_DETECTION"), TOMBSTONED("TOMBSTONED"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; TransactionStreamStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransactionStreamStatus fromValue(String value) { for (TransactionStreamStatus b : TransactionStreamStatus.values()) { if (b.value.equals(value)) { return b; } } return TransactionStreamStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<TransactionStreamStatus> { @Override public void write(final JsonWriter jsonWriter, final TransactionStreamStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransactionStreamStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransactionStreamStatus.fromValue(value); } } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PayStubTaxpayerID.java
src/main/java/com/plaid/client/model/PayStubTaxpayerID.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Taxpayer ID of the individual receiving the paystub. */ @ApiModel(description = "Taxpayer ID of the individual receiving the paystub.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PayStubTaxpayerID { public static final String SERIALIZED_NAME_ID_TYPE = "id_type"; @SerializedName(SERIALIZED_NAME_ID_TYPE) private String idType; public static final String SERIALIZED_NAME_ID_MASK = "id_mask"; @SerializedName(SERIALIZED_NAME_ID_MASK) private String idMask; public PayStubTaxpayerID idType(String idType) { this.idType = idType; return this; } /** * Type of ID, e.g. &#39;SSN&#39;. * @return idType **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Type of ID, e.g. 'SSN'.") public String getIdType() { return idType; } public void setIdType(String idType) { this.idType = idType; } public PayStubTaxpayerID idMask(String idMask) { this.idMask = idMask; return this; } /** * ID mask; i.e. last 4 digits of the taxpayer ID. * @return idMask **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "ID mask; i.e. last 4 digits of the taxpayer ID.") public String getIdMask() { return idMask; } public void setIdMask(String idMask) { this.idMask = idMask; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PayStubTaxpayerID payStubTaxpayerID = (PayStubTaxpayerID) o; return Objects.equals(this.idType, payStubTaxpayerID.idType) && Objects.equals(this.idMask, payStubTaxpayerID.idMask); } @Override public int hashCode() { return Objects.hash(idType, idMask); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PayStubTaxpayerID {\n"); sb.append(" idType: ").append(toIndentedString(idType)).append("\n"); sb.append(" idMask: ").append(toIndentedString(idMask)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetEmploymentRefreshOptions.java
src/main/java/com/plaid/client/model/CraCheckReportVerificationGetEmploymentRefreshOptions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines configuration options for the Employment Refresh Report. */ @ApiModel(description = "Defines configuration options for the Employment Refresh Report.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportVerificationGetEmploymentRefreshOptions { public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) private Integer daysRequested; public CraCheckReportVerificationGetEmploymentRefreshOptions daysRequested(Integer daysRequested) { this.daysRequested = daysRequested; return this; } /** * The number of days of data to request for the report. This field is required if an Employment Refresh Report is requested. Maximum is 731. * maximum: 731 * @return daysRequested **/ @ApiModelProperty(required = true, value = "The number of days of data to request for the report. This field is required if an Employment Refresh Report is requested. Maximum is 731.") public Integer getDaysRequested() { return daysRequested; } public void setDaysRequested(Integer daysRequested) { this.daysRequested = daysRequested; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraCheckReportVerificationGetEmploymentRefreshOptions craCheckReportVerificationGetEmploymentRefreshOptions = (CraCheckReportVerificationGetEmploymentRefreshOptions) o; return Objects.equals(this.daysRequested, craCheckReportVerificationGetEmploymentRefreshOptions.daysRequested); } @Override public int hashCode() { return Objects.hash(daysRequested); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportVerificationGetEmploymentRefreshOptions {\n"); sb.append(" daysRequested: ").append(toIndentedString(daysRequested)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WatchlistScreeningHitStatus.java
src/main/java/com/plaid/client/model/WatchlistScreeningHitStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The current state of review. All watchlist screening hits begin in a &#x60;pending_review&#x60; state but can be changed by creating a review. When a hit is in the &#x60;pending_review&#x60; state, it will always show the latest version of the watchlist data Plaid has available and be compared against the latest customer information saved in the watchlist screening. Once a hit has been marked as &#x60;confirmed&#x60; or &#x60;dismissed&#x60; it will no longer be updated so that the state is as it was when the review was first conducted. */ @JsonAdapter(WatchlistScreeningHitStatus.Adapter.class) public enum WatchlistScreeningHitStatus { CONFIRMED("confirmed"), PENDING_REVIEW("pending_review"), DISMISSED("dismissed"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; WatchlistScreeningHitStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static WatchlistScreeningHitStatus fromValue(String value) { for (WatchlistScreeningHitStatus b : WatchlistScreeningHitStatus.values()) { if (b.value.equals(value)) { return b; } } return WatchlistScreeningHitStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<WatchlistScreeningHitStatus> { @Override public void write(final JsonWriter jsonWriter, final WatchlistScreeningHitStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public WatchlistScreeningHitStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return WatchlistScreeningHitStatus.fromValue(value); } } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetsProductReadyWebhook.java
src/main/java/com/plaid/client/model/AssetsProductReadyWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AssetReportType; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Fired when the Asset Report has been generated and &#x60;/asset_report/get&#x60; is ready to be called. If you attempt to retrieve an Asset Report before this webhook has fired, you’ll receive a response with the HTTP status code 400 and a Plaid error code of &#x60;PRODUCT_NOT_READY&#x60;. */ @ApiModel(description = "Fired when the Asset Report has been generated and `/asset_report/get` is ready to be called. If you attempt to retrieve an Asset Report before this webhook has fired, you’ll receive a response with the HTTP status code 400 and a Plaid error code of `PRODUCT_NOT_READY`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetsProductReadyWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_ASSET_REPORT_ID = "asset_report_id"; @SerializedName(SERIALIZED_NAME_ASSET_REPORT_ID) private String assetReportId; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_REPORT_TYPE = "report_type"; @SerializedName(SERIALIZED_NAME_REPORT_TYPE) private AssetReportType reportType; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public AssetsProductReadyWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;ASSETS&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`ASSETS`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public AssetsProductReadyWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;PRODUCT_READY&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`PRODUCT_READY`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public AssetsProductReadyWebhook assetReportId(String assetReportId) { this.assetReportId = assetReportId; return this; } /** * The &#x60;asset_report_id&#x60; corresponding to the Asset Report the webhook has fired for. * @return assetReportId **/ @ApiModelProperty(required = true, value = "The `asset_report_id` corresponding to the Asset Report the webhook has fired for.") public String getAssetReportId() { return assetReportId; } public void setAssetReportId(String assetReportId) { this.assetReportId = assetReportId; } public AssetsProductReadyWebhook userId(String userId) { this.userId = userId; return this; } /** * The &#x60;user_id&#x60; corresponding to the User ID the webhook has fired for. * @return userId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The `user_id` corresponding to the User ID the webhook has fired for.") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public AssetsProductReadyWebhook reportType(AssetReportType reportType) { this.reportType = reportType; return this; } /** * Get reportType * @return reportType **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AssetReportType getReportType() { return reportType; } public void setReportType(AssetReportType reportType) { this.reportType = reportType; } public AssetsProductReadyWebhook environment(WebhookEnvironmentValues environment) { this.environment = environment; return this; } /** * Get environment * @return environment **/ @ApiModelProperty(required = true, value = "") public WebhookEnvironmentValues getEnvironment() { return environment; } public void setEnvironment(WebhookEnvironmentValues environment) { this.environment = environment; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetsProductReadyWebhook assetsProductReadyWebhook = (AssetsProductReadyWebhook) o; return Objects.equals(this.webhookType, assetsProductReadyWebhook.webhookType) && Objects.equals(this.webhookCode, assetsProductReadyWebhook.webhookCode) && Objects.equals(this.assetReportId, assetsProductReadyWebhook.assetReportId) && Objects.equals(this.userId, assetsProductReadyWebhook.userId) && Objects.equals(this.reportType, assetsProductReadyWebhook.reportType) && Objects.equals(this.environment, assetsProductReadyWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, assetReportId, userId, reportType, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetsProductReadyWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" assetReportId: ").append(toIndentedString(assetReportId)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" reportType: ").append(toIndentedString(reportType)).append("\n"); sb.append(" environment: ").append(toIndentedString(environment)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferDiligenceDocumentUploadResponse.java
src/main/java/com/plaid/client/model/TransferDiligenceDocumentUploadResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the response schema for &#x60;/transfer/diligence/document/upload&#x60; */ @ApiModel(description = "Defines the response schema for `/transfer/diligence/document/upload`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferDiligenceDocumentUploadResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public TransferDiligenceDocumentUploadResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferDiligenceDocumentUploadResponse transferDiligenceDocumentUploadResponse = (TransferDiligenceDocumentUploadResponse) o; return Objects.equals(this.requestId, transferDiligenceDocumentUploadResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferDiligenceDocumentUploadResponse {\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferLedgerGetRequest.java
src/main/java/com/plaid/client/model/TransferLedgerGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the request schema for &#x60;/transfer/ledger/get&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/ledger/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferLedgerGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_LEDGER_ID = "ledger_id"; @SerializedName(SERIALIZED_NAME_LEDGER_ID) private String ledgerId; public static final String SERIALIZED_NAME_ORIGINATOR_CLIENT_ID = "originator_client_id"; @SerializedName(SERIALIZED_NAME_ORIGINATOR_CLIENT_ID) private String originatorClientId; public TransferLedgerGetRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public TransferLedgerGetRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public TransferLedgerGetRequest ledgerId(String ledgerId) { this.ledgerId = ledgerId; return this; } /** * Specify which ledger balance to get. Customers can find a list of &#x60;ledger_id&#x60;s in the Accounts page of your Plaid Dashboard. If this field is left blank, this will default to id of the default ledger balance. * @return ledgerId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Specify which ledger balance to get. Customers can find a list of `ledger_id`s in the Accounts page of your Plaid Dashboard. If this field is left blank, this will default to id of the default ledger balance.") public String getLedgerId() { return ledgerId; } public void setLedgerId(String ledgerId) { this.ledgerId = ledgerId; } public TransferLedgerGetRequest originatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; return this; } /** * Client ID of the end customer. * @return originatorClientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Client ID of the end customer.") public String getOriginatorClientId() { return originatorClientId; } public void setOriginatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferLedgerGetRequest transferLedgerGetRequest = (TransferLedgerGetRequest) o; return Objects.equals(this.clientId, transferLedgerGetRequest.clientId) && Objects.equals(this.secret, transferLedgerGetRequest.secret) && Objects.equals(this.ledgerId, transferLedgerGetRequest.ledgerId) && Objects.equals(this.originatorClientId, transferLedgerGetRequest.originatorClientId); } @Override public int hashCode() { return Objects.hash(clientId, secret, ledgerId, originatorClientId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferLedgerGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" ledgerId: ").append(toIndentedString(ledgerId)).append("\n"); sb.append(" originatorClientId: ").append(toIndentedString(originatorClientId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferQuestionnaireCreateResponse.java
src/main/java/com/plaid/client/model/TransferQuestionnaireCreateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the response schema for &#x60;/transfer/questionnaire/create&#x60; */ @ApiModel(description = "Defines the response schema for `/transfer/questionnaire/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferQuestionnaireCreateResponse { public static final String SERIALIZED_NAME_ONBOARDING_URL = "onboarding_url"; @SerializedName(SERIALIZED_NAME_ONBOARDING_URL) private String onboardingUrl; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public TransferQuestionnaireCreateResponse onboardingUrl(String onboardingUrl) { this.onboardingUrl = onboardingUrl; return this; } /** * Plaid-hosted onboarding URL that you will redirect the end customer to. * @return onboardingUrl **/ @ApiModelProperty(required = true, value = "Plaid-hosted onboarding URL that you will redirect the end customer to.") public String getOnboardingUrl() { return onboardingUrl; } public void setOnboardingUrl(String onboardingUrl) { this.onboardingUrl = onboardingUrl; } public TransferQuestionnaireCreateResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferQuestionnaireCreateResponse transferQuestionnaireCreateResponse = (TransferQuestionnaireCreateResponse) o; return Objects.equals(this.onboardingUrl, transferQuestionnaireCreateResponse.onboardingUrl) && Objects.equals(this.requestId, transferQuestionnaireCreateResponse.requestId); } @Override public int hashCode() { return Objects.hash(onboardingUrl, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferQuestionnaireCreateResponse {\n"); sb.append(" onboardingUrl: ").append(toIndentedString(onboardingUrl)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaymentInitiationRecipientGetResponse.java
src/main/java/com/plaid/client/model/PaymentInitiationRecipientGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PaymentInitiationAddress; import com.plaid.client.model.PaymentInitiationRecipient; import com.plaid.client.model.PaymentInitiationRecipientGetResponseAllOf; import com.plaid.client.model.RecipientBACSNullable; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * PaymentInitiationRecipientGetResponse defines the response schema for &#x60;/payment_initiation/recipient/get&#x60; */ @ApiModel(description = "PaymentInitiationRecipientGetResponse defines the response schema for `/payment_initiation/recipient/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentInitiationRecipientGetResponse { public static final String SERIALIZED_NAME_RECIPIENT_ID = "recipient_id"; @SerializedName(SERIALIZED_NAME_RECIPIENT_ID) private String recipientId; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private PaymentInitiationAddress address; public static final String SERIALIZED_NAME_IBAN = "iban"; @SerializedName(SERIALIZED_NAME_IBAN) private String iban; public static final String SERIALIZED_NAME_BACS = "bacs"; @SerializedName(SERIALIZED_NAME_BACS) private RecipientBACSNullable bacs; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public PaymentInitiationRecipientGetResponse recipientId(String recipientId) { this.recipientId = recipientId; return this; } /** * The ID of the recipient. * @return recipientId **/ @ApiModelProperty(required = true, value = "The ID of the recipient.") public String getRecipientId() { return recipientId; } public void setRecipientId(String recipientId) { this.recipientId = recipientId; } public PaymentInitiationRecipientGetResponse name(String name) { this.name = name; return this; } /** * The name of the recipient. * @return name **/ @ApiModelProperty(required = true, value = "The name of the recipient.") public String getName() { return name; } public void setName(String name) { this.name = name; } public PaymentInitiationRecipientGetResponse address(PaymentInitiationAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaymentInitiationAddress getAddress() { return address; } public void setAddress(PaymentInitiationAddress address) { this.address = address; } public PaymentInitiationRecipientGetResponse iban(String iban) { this.iban = iban; return this; } /** * The International Bank Account Number (IBAN) for the recipient. * @return iban **/ @javax.annotation.Nullable @ApiModelProperty(value = "The International Bank Account Number (IBAN) for the recipient.") public String getIban() { return iban; } public void setIban(String iban) { this.iban = iban; } public PaymentInitiationRecipientGetResponse bacs(RecipientBACSNullable bacs) { this.bacs = bacs; return this; } /** * Get bacs * @return bacs **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public RecipientBACSNullable getBacs() { return bacs; } public void setBacs(RecipientBACSNullable bacs) { this.bacs = bacs; } public PaymentInitiationRecipientGetResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaymentInitiationRecipientGetResponse paymentInitiationRecipientGetResponse = (PaymentInitiationRecipientGetResponse) o; return Objects.equals(this.recipientId, paymentInitiationRecipientGetResponse.recipientId) && Objects.equals(this.name, paymentInitiationRecipientGetResponse.name) && Objects.equals(this.address, paymentInitiationRecipientGetResponse.address) && Objects.equals(this.iban, paymentInitiationRecipientGetResponse.iban) && Objects.equals(this.bacs, paymentInitiationRecipientGetResponse.bacs) && Objects.equals(this.requestId, paymentInitiationRecipientGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(recipientId, name, address, iban, bacs, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentInitiationRecipientGetResponse {\n"); sb.append(" recipientId: ").append(toIndentedString(recipientId)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" iban: ").append(toIndentedString(iban)).append("\n"); sb.append(" bacs: ").append(toIndentedString(bacs)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditAccountSubtype.java
src/main/java/com/plaid/client/model/CreditAccountSubtype.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * Valid account subtypes for credit accounts. For a list containing descriptions of each subtype, see [Account schemas](https://plaid.com/docs/api/accounts/#StandaloneAccountType-credit). */ @JsonAdapter(CreditAccountSubtype.Adapter.class) public enum CreditAccountSubtype { CREDIT_CARD("credit card"), PAYPAL("paypal"), ALL("all"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; CreditAccountSubtype(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static CreditAccountSubtype fromValue(String value) { for (CreditAccountSubtype b : CreditAccountSubtype.values()) { if (b.value.equals(value)) { return b; } } return CreditAccountSubtype.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<CreditAccountSubtype> { @Override public void write(final JsonWriter jsonWriter, final CreditAccountSubtype enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public CreditAccountSubtype read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return CreditAccountSubtype.fromValue(value); } } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ItemWebhookUpdateResponse.java
src/main/java/com/plaid/client/model/ItemWebhookUpdateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.Item; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * ItemWebhookUpdateResponse defines the response schema for &#x60;/item/webhook/update&#x60; */ @ApiModel(description = "ItemWebhookUpdateResponse defines the response schema for `/item/webhook/update`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ItemWebhookUpdateResponse { public static final String SERIALIZED_NAME_ITEM = "item"; @SerializedName(SERIALIZED_NAME_ITEM) private Item item; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ItemWebhookUpdateResponse item(Item item) { this.item = item; return this; } /** * Get item * @return item **/ @ApiModelProperty(required = true, value = "") public Item getItem() { return item; } public void setItem(Item item) { this.item = item; } public ItemWebhookUpdateResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ItemWebhookUpdateResponse itemWebhookUpdateResponse = (ItemWebhookUpdateResponse) o; return Objects.equals(this.item, itemWebhookUpdateResponse.item) && Objects.equals(this.requestId, itemWebhookUpdateResponse.requestId); } @Override public int hashCode() { return Objects.hash(item, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ItemWebhookUpdateResponse {\n"); sb.append(" item: ").append(toIndentedString(item)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PartnerEndCustomerCustomerSupportInfo.java
src/main/java/com/plaid/client/model/PartnerEndCustomerCustomerSupportInfo.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * This information is public. Users of your app will see this information when managing connections between your app and their bank accounts in Plaid Portal. Defaults to partner&#39;s customer support info if omitted. This field is mandatory for partners whose Plaid accounts were created after November 26, 2024 and will be mandatory for all partners by the 1033 compliance deadline. */ @ApiModel(description = "This information is public. Users of your app will see this information when managing connections between your app and their bank accounts in Plaid Portal. Defaults to partner's customer support info if omitted. This field is mandatory for partners whose Plaid accounts were created after November 26, 2024 and will be mandatory for all partners by the 1033 compliance deadline.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PartnerEndCustomerCustomerSupportInfo { public static final String SERIALIZED_NAME_EMAIL = "email"; @SerializedName(SERIALIZED_NAME_EMAIL) private String email; public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) private String phoneNumber; public static final String SERIALIZED_NAME_CONTACT_URL = "contact_url"; @SerializedName(SERIALIZED_NAME_CONTACT_URL) private String contactUrl; public static final String SERIALIZED_NAME_LINK_UPDATE_URL = "link_update_url"; @SerializedName(SERIALIZED_NAME_LINK_UPDATE_URL) private String linkUpdateUrl; public PartnerEndCustomerCustomerSupportInfo email(String email) { this.email = email; return this; } /** * This field is mandatory for partners whose Plaid accounts were created after November 26, 2024 and will be mandatory for all partners by the 1033 compliance deadline. * @return email **/ @javax.annotation.Nullable @ApiModelProperty(value = "This field is mandatory for partners whose Plaid accounts were created after November 26, 2024 and will be mandatory for all partners by the 1033 compliance deadline.") public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public PartnerEndCustomerCustomerSupportInfo phoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; return this; } /** * Get phoneNumber * @return phoneNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } public PartnerEndCustomerCustomerSupportInfo contactUrl(String contactUrl) { this.contactUrl = contactUrl; return this; } /** * Get contactUrl * @return contactUrl **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getContactUrl() { return contactUrl; } public void setContactUrl(String contactUrl) { this.contactUrl = contactUrl; } public PartnerEndCustomerCustomerSupportInfo linkUpdateUrl(String linkUpdateUrl) { this.linkUpdateUrl = linkUpdateUrl; return this; } /** * Get linkUpdateUrl * @return linkUpdateUrl **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getLinkUpdateUrl() { return linkUpdateUrl; } public void setLinkUpdateUrl(String linkUpdateUrl) { this.linkUpdateUrl = linkUpdateUrl; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PartnerEndCustomerCustomerSupportInfo partnerEndCustomerCustomerSupportInfo = (PartnerEndCustomerCustomerSupportInfo) o; return Objects.equals(this.email, partnerEndCustomerCustomerSupportInfo.email) && Objects.equals(this.phoneNumber, partnerEndCustomerCustomerSupportInfo.phoneNumber) && Objects.equals(this.contactUrl, partnerEndCustomerCustomerSupportInfo.contactUrl) && Objects.equals(this.linkUpdateUrl, partnerEndCustomerCustomerSupportInfo.linkUpdateUrl); } @Override public int hashCode() { return Objects.hash(email, phoneNumber, contactUrl, linkUpdateUrl); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PartnerEndCustomerCustomerSupportInfo {\n"); sb.append(" email: ").append(toIndentedString(email)).append("\n"); sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); sb.append(" contactUrl: ").append(toIndentedString(contactUrl)).append("\n"); sb.append(" linkUpdateUrl: ").append(toIndentedString(linkUpdateUrl)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalVariableExpense.java
src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalVariableExpense.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; /** * The total amount of all variable expense transactions during this month. */ @ApiModel(description = "The total amount of all variable expense transactions during this month.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CashflowReportMonthlySummaryTotalVariableExpense { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private Double amount; public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code"; @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE) private String isoCurrencyCode; public static final String SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE = "unofficial_currency_code"; @SerializedName(SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE) private String unofficialCurrencyCode; public CashflowReportMonthlySummaryTotalVariableExpense amount(Double amount) { this.amount = amount; return this; } /** * Value of amount with up to 2 decimal places. * @return amount **/ @ApiModelProperty(required = true, value = "Value of amount with up to 2 decimal places.") public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public CashflowReportMonthlySummaryTotalVariableExpense isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the amount. Always &#x60;null&#x60; if &#x60;unofficial_currency_code&#x60; is non-&#x60;null&#x60; * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ISO-4217 currency code of the amount. Always `null` if `unofficial_currency_code` is non-`null`") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public CashflowReportMonthlySummaryTotalVariableExpense unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code of the amount. Always &#x60;null&#x60; if &#x60;iso_currency_code&#x60; is non-&#x60;null&#x60;. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. * @return unofficialCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The unofficial currency code of the amount. Always `null` if `iso_currency_code` is non-`null`. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.") public String getUnofficialCurrencyCode() { return unofficialCurrencyCode; } public void setUnofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CashflowReportMonthlySummaryTotalVariableExpense cashflowReportMonthlySummaryTotalVariableExpense = (CashflowReportMonthlySummaryTotalVariableExpense) o; return Objects.equals(this.amount, cashflowReportMonthlySummaryTotalVariableExpense.amount) && Objects.equals(this.isoCurrencyCode, cashflowReportMonthlySummaryTotalVariableExpense.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, cashflowReportMonthlySummaryTotalVariableExpense.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CashflowReportMonthlySummaryTotalVariableExpense {\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append(" unofficialCurrencyCode: ").append(toIndentedString(unofficialCurrencyCode)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AccountsBalanceGetRequestOptions.java
src/main/java/com/plaid/client/model/AccountsBalanceGetRequestOptions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.List; /** * Optional parameters to &#x60;/accounts/balance/get&#x60;. */ @ApiModel(description = "Optional parameters to `/accounts/balance/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AccountsBalanceGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) private List<String> accountIds = null; public static final String SERIALIZED_NAME_MIN_LAST_UPDATED_DATETIME = "min_last_updated_datetime"; @SerializedName(SERIALIZED_NAME_MIN_LAST_UPDATED_DATETIME) private OffsetDateTime minLastUpdatedDatetime; public AccountsBalanceGetRequestOptions accountIds(List<String> accountIds) { this.accountIds = accountIds; return this; } public AccountsBalanceGetRequestOptions addAccountIdsItem(String accountIdsItem) { if (this.accountIds == null) { this.accountIds = new ArrayList<>(); } this.accountIds.add(accountIdsItem); return this; } /** * A list of &#x60;account_ids&#x60; to retrieve for the Item. The default value is &#x60;null&#x60;. Note: An error will be returned if a provided &#x60;account_id&#x60; is not associated with the Item. * @return accountIds **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of `account_ids` to retrieve for the Item. The default value is `null`. Note: An error will be returned if a provided `account_id` is not associated with the Item.") public List<String> getAccountIds() { return accountIds; } public void setAccountIds(List<String> accountIds) { this.accountIds = accountIds; } public AccountsBalanceGetRequestOptions minLastUpdatedDatetime(OffsetDateTime minLastUpdatedDatetime) { this.minLastUpdatedDatetime = minLastUpdatedDatetime; return this; } /** * Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (&#x60;YYYY-MM-DDTHH:mm:ssZ&#x60;) indicating the oldest acceptable balance when making a request to &#x60;/accounts/balance/get&#x60;. This field is only necessary when the institution is &#x60;ins_128026&#x60; (Capital One), *and* one or more account types being requested is a non-depository account (such as a credit card) as Capital One does not provide real-time balance for non-depository accounts. In this case, a value must be provided or an &#x60;INVALID_REQUEST&#x60; error with the code of &#x60;INVALID_FIELD&#x60; will be returned. For all other institutions, as well as for depository accounts at Capital One (including all checking and savings accounts) this field is ignored and real-time balance information will be fetched. If this field is not ignored, and no acceptable balance is available, an &#x60;INVALID_RESULT&#x60; error with the code &#x60;LAST_UPDATED_DATETIME_OUT_OF_RANGE&#x60; will be returned. * @return minLastUpdatedDatetime **/ @javax.annotation.Nullable @ApiModelProperty(value = "Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the oldest acceptable balance when making a request to `/accounts/balance/get`. This field is only necessary when the institution is `ins_128026` (Capital One), *and* one or more account types being requested is a non-depository account (such as a credit card) as Capital One does not provide real-time balance for non-depository accounts. In this case, a value must be provided or an `INVALID_REQUEST` error with the code of `INVALID_FIELD` will be returned. For all other institutions, as well as for depository accounts at Capital One (including all checking and savings accounts) this field is ignored and real-time balance information will be fetched. If this field is not ignored, and no acceptable balance is available, an `INVALID_RESULT` error with the code `LAST_UPDATED_DATETIME_OUT_OF_RANGE` will be returned.") public OffsetDateTime getMinLastUpdatedDatetime() { return minLastUpdatedDatetime; } public void setMinLastUpdatedDatetime(OffsetDateTime minLastUpdatedDatetime) { this.minLastUpdatedDatetime = minLastUpdatedDatetime; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AccountsBalanceGetRequestOptions accountsBalanceGetRequestOptions = (AccountsBalanceGetRequestOptions) o; return Objects.equals(this.accountIds, accountsBalanceGetRequestOptions.accountIds) && Objects.equals(this.minLastUpdatedDatetime, accountsBalanceGetRequestOptions.minLastUpdatedDatetime); } @Override public int hashCode() { return Objects.hash(accountIds, minLastUpdatedDatetime); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AccountsBalanceGetRequestOptions {\n"); sb.append(" accountIds: ").append(toIndentedString(accountIds)).append("\n"); sb.append(" minLastUpdatedDatetime: ").append(toIndentedString(minLastUpdatedDatetime)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditBankIncomeWebhookUpdateResponse.java
src/main/java/com/plaid/client/model/CreditBankIncomeWebhookUpdateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * CreditBankIncomeWebhookUpdateResponse defines the response schema for &#x60;/credit/bank_income/webhook/update&#x60;. */ @ApiModel(description = "CreditBankIncomeWebhookUpdateResponse defines the response schema for `/credit/bank_income/webhook/update`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankIncomeWebhookUpdateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public CreditBankIncomeWebhookUpdateResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditBankIncomeWebhookUpdateResponse creditBankIncomeWebhookUpdateResponse = (CreditBankIncomeWebhookUpdateResponse) o; return Objects.equals(this.requestId, creditBankIncomeWebhookUpdateResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankIncomeWebhookUpdateResponse {\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WebhookEnvironmentValues.java
src/main/java/com/plaid/client/model/WebhookEnvironmentValues.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The Plaid environment the webhook was sent from */ @JsonAdapter(WebhookEnvironmentValues.Adapter.class) public enum WebhookEnvironmentValues { SANDBOX("sandbox"), PRODUCTION("production"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; WebhookEnvironmentValues(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static WebhookEnvironmentValues fromValue(String value) { for (WebhookEnvironmentValues b : WebhookEnvironmentValues.values()) { if (b.value.equals(value)) { return b; } } return WebhookEnvironmentValues.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<WebhookEnvironmentValues> { @Override public void write(final JsonWriter jsonWriter, final WebhookEnvironmentValues enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public WebhookEnvironmentValues read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return WebhookEnvironmentValues.fromValue(value); } } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraBankIncomeErrorWebhook.java
src/main/java/com/plaid/client/model/CraBankIncomeErrorWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Fired when a bank income report has failed to generate */ @ApiModel(description = "Fired when a bank income report has failed to generate") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraBankIncomeErrorWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public CraBankIncomeErrorWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;CRA_INCOME&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`CRA_INCOME`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public CraBankIncomeErrorWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;ERROR&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`ERROR`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public CraBankIncomeErrorWebhook userId(String userId) { this.userId = userId; return this; } /** * The &#x60;user_id&#x60; corresponding to the user the webhook has fired for. * @return userId **/ @ApiModelProperty(required = true, value = "The `user_id` corresponding to the user the webhook has fired for.") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public CraBankIncomeErrorWebhook environment(WebhookEnvironmentValues environment) { this.environment = environment; return this; } /** * Get environment * @return environment **/ @ApiModelProperty(required = true, value = "") public WebhookEnvironmentValues getEnvironment() { return environment; } public void setEnvironment(WebhookEnvironmentValues environment) { this.environment = environment; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraBankIncomeErrorWebhook craBankIncomeErrorWebhook = (CraBankIncomeErrorWebhook) o; return Objects.equals(this.webhookType, craBankIncomeErrorWebhook.webhookType) && Objects.equals(this.webhookCode, craBankIncomeErrorWebhook.webhookCode) && Objects.equals(this.userId, craBankIncomeErrorWebhook.userId) && Objects.equals(this.environment, craBankIncomeErrorWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, userId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraBankIncomeErrorWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" environment: ").append(toIndentedString(environment)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BeaconReportCreateType.java
src/main/java/com/plaid/client/model/BeaconReportCreateType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The type of Beacon Report. &#x60;first_party&#x60;: If this is the same individual as the one who submitted the KYC. &#x60;stolen&#x60;: If this is a different individual from the one who submitted the KYC. &#x60;synthetic&#x60;: If this is an individual using fabricated information. &#x60;account_takeover&#x60;: If this individual&#39;s account was compromised. &#x60;unknown&#x60;: If you aren&#39;t sure who committed the fraud. */ @JsonAdapter(BeaconReportCreateType.Adapter.class) public enum BeaconReportCreateType { FIRST_PARTY("first_party"), STOLEN("stolen"), SYNTHETIC("synthetic"), ACCOUNT_TAKEOVER("account_takeover"), DATA_BREACH("data_breach"), UNKNOWN("unknown"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; BeaconReportCreateType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static BeaconReportCreateType fromValue(String value) { for (BeaconReportCreateType b : BeaconReportCreateType.values()) { if (b.value.equals(value)) { return b; } } return BeaconReportCreateType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<BeaconReportCreateType> { @Override public void write(final JsonWriter jsonWriter, final BeaconReportCreateType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public BeaconReportCreateType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return BeaconReportCreateType.fromValue(value); } } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BeaconUserReviewRequest.java
src/main/java/com/plaid/client/model/BeaconUserReviewRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.BeaconUserStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Request input for updating the status of a Beacon User */ @ApiModel(description = "Request input for updating the status of a Beacon User") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconUserReviewRequest { public static final String SERIALIZED_NAME_BEACON_USER_ID = "beacon_user_id"; @SerializedName(SERIALIZED_NAME_BEACON_USER_ID) private String beaconUserId; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private BeaconUserStatus status; public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public BeaconUserReviewRequest beaconUserId(String beaconUserId) { this.beaconUserId = beaconUserId; return this; } /** * ID of the associated Beacon User. * @return beaconUserId **/ @ApiModelProperty(example = "becusr_42cF1MNo42r9Xj", required = true, value = "ID of the associated Beacon User.") public String getBeaconUserId() { return beaconUserId; } public void setBeaconUserId(String beaconUserId) { this.beaconUserId = beaconUserId; } public BeaconUserReviewRequest status(BeaconUserStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public BeaconUserStatus getStatus() { return status; } public void setStatus(BeaconUserStatus status) { this.status = status; } public BeaconUserReviewRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public BeaconUserReviewRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BeaconUserReviewRequest beaconUserReviewRequest = (BeaconUserReviewRequest) o; return Objects.equals(this.beaconUserId, beaconUserReviewRequest.beaconUserId) && Objects.equals(this.status, beaconUserReviewRequest.status) && Objects.equals(this.clientId, beaconUserReviewRequest.clientId) && Objects.equals(this.secret, beaconUserReviewRequest.secret); } @Override public int hashCode() { return Objects.hash(beaconUserId, status, clientId, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconUserReviewRequest {\n"); sb.append(" beaconUserId: ").append(toIndentedString(beaconUserId)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BankIncomeRefreshCompleteWebhook.java
src/main/java/com/plaid/client/model/BankIncomeRefreshCompleteWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.BankIncomeRefreshCompleteResult; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Fired when a refreshed bank income report has finished generating or failed to generate, triggered by calling &#x60;/credit/bank_income/refresh&#x60;. To get this webhook, subscribe via the [Dashboard](https://dashboard.plaid.com/developers/webhooks). */ @ApiModel(description = "Fired when a refreshed bank income report has finished generating or failed to generate, triggered by calling `/credit/bank_income/refresh`. To get this webhook, subscribe via the [Dashboard](https://dashboard.plaid.com/developers/webhooks).") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankIncomeRefreshCompleteWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_RESULT = "result"; @SerializedName(SERIALIZED_NAME_RESULT) private BankIncomeRefreshCompleteResult result; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public BankIncomeRefreshCompleteWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;INCOME&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`INCOME`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public BankIncomeRefreshCompleteWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;BANK_INCOME_REFRESH_COMPLETE&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`BANK_INCOME_REFRESH_COMPLETE`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public BankIncomeRefreshCompleteWebhook userId(String userId) { this.userId = userId; return this; } /** * The &#x60;user_id&#x60; corresponding to the user the webhook has fired for. * @return userId **/ @ApiModelProperty(required = true, value = "The `user_id` corresponding to the user the webhook has fired for.") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public BankIncomeRefreshCompleteWebhook result(BankIncomeRefreshCompleteResult result) { this.result = result; return this; } /** * Get result * @return result **/ @ApiModelProperty(required = true, value = "") public BankIncomeRefreshCompleteResult getResult() { return result; } public void setResult(BankIncomeRefreshCompleteResult result) { this.result = result; } public BankIncomeRefreshCompleteWebhook environment(WebhookEnvironmentValues environment) { this.environment = environment; return this; } /** * Get environment * @return environment **/ @ApiModelProperty(required = true, value = "") public WebhookEnvironmentValues getEnvironment() { return environment; } public void setEnvironment(WebhookEnvironmentValues environment) { this.environment = environment; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BankIncomeRefreshCompleteWebhook bankIncomeRefreshCompleteWebhook = (BankIncomeRefreshCompleteWebhook) o; return Objects.equals(this.webhookType, bankIncomeRefreshCompleteWebhook.webhookType) && Objects.equals(this.webhookCode, bankIncomeRefreshCompleteWebhook.webhookCode) && Objects.equals(this.userId, bankIncomeRefreshCompleteWebhook.userId) && Objects.equals(this.result, bankIncomeRefreshCompleteWebhook.result) && Objects.equals(this.environment, bankIncomeRefreshCompleteWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, userId, result, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankIncomeRefreshCompleteWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" result: ").append(toIndentedString(result)).append("\n"); sb.append(" environment: ").append(toIndentedString(environment)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorIdentityGetRequest.java
src/main/java/com/plaid/client/model/ProcessorIdentityGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * ProcessorIdentityGetRequest defines the request schema for &#x60;/processor/identity/get&#x60; */ @ApiModel(description = "ProcessorIdentityGetRequest defines the request schema for `/processor/identity/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorIdentityGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_PROCESSOR_TOKEN = "processor_token"; @SerializedName(SERIALIZED_NAME_PROCESSOR_TOKEN) private String processorToken; public ProcessorIdentityGetRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public ProcessorIdentityGetRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public ProcessorIdentityGetRequest processorToken(String processorToken) { this.processorToken = processorToken; return this; } /** * The processor token obtained from the Plaid integration partner. Processor tokens are in the format: &#x60;processor-&lt;environment&gt;-&lt;identifier&gt;&#x60; * @return processorToken **/ @ApiModelProperty(required = true, value = "The processor token obtained from the Plaid integration partner. Processor tokens are in the format: `processor-<environment>-<identifier>`") public String getProcessorToken() { return processorToken; } public void setProcessorToken(String processorToken) { this.processorToken = processorToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProcessorIdentityGetRequest processorIdentityGetRequest = (ProcessorIdentityGetRequest) o; return Objects.equals(this.clientId, processorIdentityGetRequest.clientId) && Objects.equals(this.secret, processorIdentityGetRequest.secret) && Objects.equals(this.processorToken, processorIdentityGetRequest.processorToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, processorToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorIdentityGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" processorToken: ").append(toIndentedString(processorToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/HiddenMatchSummaryCode.java
src/main/java/com/plaid/client/model/HiddenMatchSummaryCode.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * An enum indicating the match type between data provided by user and data checked against an external data source. &#x60;match&#x60; indicates that the provided input data was a strong match against external data. &#x60;partial_match&#x60; indicates the data approximately matched against external data. For example, \&quot;Knope\&quot; vs. \&quot;Knope-Wyatt\&quot; for last name. &#x60;no_match&#x60; indicates that Plaid was able to perform a check against an external data source and it did not match the provided input data. &#x60;no_data&#x60; indicates that Plaid was unable to find external data to compare against the provided input data. &#x60;no_input&#x60; indicates that Plaid was unable to perform a check because no information was provided for this field by the end user. */ @JsonAdapter(HiddenMatchSummaryCode.Adapter.class) public enum HiddenMatchSummaryCode { MATCH("match"), PARTIAL_MATCH("partial_match"), NO_MATCH("no_match"), NO_DATA("no_data"), NO_INPUT("no_input"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; HiddenMatchSummaryCode(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static HiddenMatchSummaryCode fromValue(String value) { for (HiddenMatchSummaryCode b : HiddenMatchSummaryCode.values()) { if (b.value.equals(value)) { return b; } } return HiddenMatchSummaryCode.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<HiddenMatchSummaryCode> { @Override public void write(final JsonWriter jsonWriter, final HiddenMatchSummaryCode enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public HiddenMatchSummaryCode read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return HiddenMatchSummaryCode.fromValue(value); } } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaymentInitiationConsentScope.java
src/main/java/com/plaid/client/model/PaymentInitiationConsentScope.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * This field is deprecated in favor of the consent &#x60;type&#x60; field. Consents are required to have a single type. Payment consent scope. Defines possible directions for payments made with the given consent. &#x60;ME_TO_ME&#x60;: Allows moving money between accounts owned by the same user. &#x60;EXTERNAL&#x60;: Allows initiating payments from the user&#39;s account to third parties. */ @JsonAdapter(PaymentInitiationConsentScope.Adapter.class) public enum PaymentInitiationConsentScope { ME_TO_ME("ME_TO_ME"), EXTERNAL("EXTERNAL"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; PaymentInitiationConsentScope(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PaymentInitiationConsentScope fromValue(String value) { for (PaymentInitiationConsentScope b : PaymentInitiationConsentScope.values()) { if (b.value.equals(value)) { return b; } } return PaymentInitiationConsentScope.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<PaymentInitiationConsentScope> { @Override public void write(final JsonWriter jsonWriter, final PaymentInitiationConsentScope enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PaymentInitiationConsentScope read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PaymentInitiationConsentScope.fromValue(value); } } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorAccountGetResponse.java
src/main/java/com/plaid/client/model/ProcessorAccountGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AccountBase; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * ProcessorAccountGetResponse defines the response schema for &#x60;/processor/account/get&#x60; */ @ApiModel(description = "ProcessorAccountGetResponse defines the response schema for `/processor/account/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorAccountGetResponse { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) private AccountBase account; public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) private String institutionId; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ProcessorAccountGetResponse account(AccountBase account) { this.account = account; return this; } /** * Get account * @return account **/ @ApiModelProperty(required = true, value = "") public AccountBase getAccount() { return account; } public void setAccount(AccountBase account) { this.account = account; } public ProcessorAccountGetResponse institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * The Plaid Institution ID associated with the Account. * @return institutionId **/ @ApiModelProperty(required = true, value = "The Plaid Institution ID associated with the Account.") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } public ProcessorAccountGetResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProcessorAccountGetResponse processorAccountGetResponse = (ProcessorAccountGetResponse) o; return Objects.equals(this.account, processorAccountGetResponse.account) && Objects.equals(this.institutionId, processorAccountGetResponse.institutionId) && Objects.equals(this.requestId, processorAccountGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(account, institutionId, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorAccountGetResponse {\n"); sb.append(" account: ").append(toIndentedString(account)).append("\n"); sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferRepayment.java
src/main/java/com/plaid/client/model/TransferRepayment.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * A repayment is created automatically after one or more guaranteed transactions receive a return. If there are multiple eligible returns in a day, they are batched together into a single repayment. Repayments are sent over ACH, with funds typically available on the next banking day. */ @ApiModel(description = "A repayment is created automatically after one or more guaranteed transactions receive a return. If there are multiple eligible returns in a day, they are batched together into a single repayment. Repayments are sent over ACH, with funds typically available on the next banking day.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferRepayment { public static final String SERIALIZED_NAME_REPAYMENT_ID = "repayment_id"; @SerializedName(SERIALIZED_NAME_REPAYMENT_ID) private String repaymentId; public static final String SERIALIZED_NAME_CREATED = "created"; @SerializedName(SERIALIZED_NAME_CREATED) private OffsetDateTime created; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private String amount; public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code"; @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE) private String isoCurrencyCode; public TransferRepayment repaymentId(String repaymentId) { this.repaymentId = repaymentId; return this; } /** * Identifier of the repayment. * @return repaymentId **/ @ApiModelProperty(required = true, value = "Identifier of the repayment.") public String getRepaymentId() { return repaymentId; } public void setRepaymentId(String repaymentId) { this.repaymentId = repaymentId; } public TransferRepayment created(OffsetDateTime created) { this.created = created; return this; } /** * The datetime when the repayment occurred, in RFC 3339 format. * @return created **/ @ApiModelProperty(required = true, value = "The datetime when the repayment occurred, in RFC 3339 format.") public OffsetDateTime getCreated() { return created; } public void setCreated(OffsetDateTime created) { this.created = created; } public TransferRepayment amount(String amount) { this.amount = amount; return this; } /** * Decimal amount of the repayment as it appears on your account ledger. * @return amount **/ @ApiModelProperty(required = true, value = "Decimal amount of the repayment as it appears on your account ledger.") public String getAmount() { return amount; } public void setAmount(String amount) { this.amount = amount; } public TransferRepayment isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The currency of the repayment, e.g. \&quot;USD\&quot;. * @return isoCurrencyCode **/ @ApiModelProperty(required = true, value = "The currency of the repayment, e.g. \"USD\".") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferRepayment transferRepayment = (TransferRepayment) o; return Objects.equals(this.repaymentId, transferRepayment.repaymentId) && Objects.equals(this.created, transferRepayment.created) && Objects.equals(this.amount, transferRepayment.amount) && Objects.equals(this.isoCurrencyCode, transferRepayment.isoCurrencyCode); } @Override public int hashCode() { return Objects.hash(repaymentId, created, amount, isoCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferRepayment {\n"); sb.append(" repaymentId: ").append(toIndentedString(repaymentId)).append("\n"); sb.append(" created: ").append(toIndentedString(created)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BeaconReportSyndicationAnalysis.java
src/main/java/com/plaid/client/model/BeaconReportSyndicationAnalysis.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.BeaconMatchSummaryCode; import com.plaid.client.model.BeaconSyndicatedReportDepositoryAccountMatchAnalysis; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Analysis of which fields matched between the originally reported Beacon User and the Beacon User that the report was syndicated to. */ @ApiModel(description = "Analysis of which fields matched between the originally reported Beacon User and the Beacon User that the report was syndicated to.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconReportSyndicationAnalysis { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private BeaconMatchSummaryCode address; public static final String SERIALIZED_NAME_DATE_OF_BIRTH = "date_of_birth"; @SerializedName(SERIALIZED_NAME_DATE_OF_BIRTH) private BeaconMatchSummaryCode dateOfBirth; public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) private BeaconMatchSummaryCode emailAddress; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private BeaconMatchSummaryCode name; public static final String SERIALIZED_NAME_ID_NUMBER = "id_number"; @SerializedName(SERIALIZED_NAME_ID_NUMBER) private BeaconMatchSummaryCode idNumber; public static final String SERIALIZED_NAME_IP_ADDRESS = "ip_address"; @SerializedName(SERIALIZED_NAME_IP_ADDRESS) private BeaconMatchSummaryCode ipAddress; public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) private BeaconMatchSummaryCode phoneNumber; public static final String SERIALIZED_NAME_DEPOSITORY_ACCOUNTS = "depository_accounts"; @SerializedName(SERIALIZED_NAME_DEPOSITORY_ACCOUNTS) private List<BeaconSyndicatedReportDepositoryAccountMatchAnalysis> depositoryAccounts = new ArrayList<>(); public BeaconReportSyndicationAnalysis address(BeaconMatchSummaryCode address) { this.address = address; return this; } /** * Get address * @return address **/ @ApiModelProperty(required = true, value = "") public BeaconMatchSummaryCode getAddress() { return address; } public void setAddress(BeaconMatchSummaryCode address) { this.address = address; } public BeaconReportSyndicationAnalysis dateOfBirth(BeaconMatchSummaryCode dateOfBirth) { this.dateOfBirth = dateOfBirth; return this; } /** * Get dateOfBirth * @return dateOfBirth **/ @ApiModelProperty(required = true, value = "") public BeaconMatchSummaryCode getDateOfBirth() { return dateOfBirth; } public void setDateOfBirth(BeaconMatchSummaryCode dateOfBirth) { this.dateOfBirth = dateOfBirth; } public BeaconReportSyndicationAnalysis emailAddress(BeaconMatchSummaryCode emailAddress) { this.emailAddress = emailAddress; return this; } /** * Get emailAddress * @return emailAddress **/ @ApiModelProperty(required = true, value = "") public BeaconMatchSummaryCode getEmailAddress() { return emailAddress; } public void setEmailAddress(BeaconMatchSummaryCode emailAddress) { this.emailAddress = emailAddress; } public BeaconReportSyndicationAnalysis name(BeaconMatchSummaryCode name) { this.name = name; return this; } /** * Get name * @return name **/ @ApiModelProperty(required = true, value = "") public BeaconMatchSummaryCode getName() { return name; } public void setName(BeaconMatchSummaryCode name) { this.name = name; } public BeaconReportSyndicationAnalysis idNumber(BeaconMatchSummaryCode idNumber) { this.idNumber = idNumber; return this; } /** * Get idNumber * @return idNumber **/ @ApiModelProperty(required = true, value = "") public BeaconMatchSummaryCode getIdNumber() { return idNumber; } public void setIdNumber(BeaconMatchSummaryCode idNumber) { this.idNumber = idNumber; } public BeaconReportSyndicationAnalysis ipAddress(BeaconMatchSummaryCode ipAddress) { this.ipAddress = ipAddress; return this; } /** * Get ipAddress * @return ipAddress **/ @ApiModelProperty(required = true, value = "") public BeaconMatchSummaryCode getIpAddress() { return ipAddress; } public void setIpAddress(BeaconMatchSummaryCode ipAddress) { this.ipAddress = ipAddress; } public BeaconReportSyndicationAnalysis phoneNumber(BeaconMatchSummaryCode phoneNumber) { this.phoneNumber = phoneNumber; return this; } /** * Get phoneNumber * @return phoneNumber **/ @ApiModelProperty(required = true, value = "") public BeaconMatchSummaryCode getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(BeaconMatchSummaryCode phoneNumber) { this.phoneNumber = phoneNumber; } public BeaconReportSyndicationAnalysis depositoryAccounts(List<BeaconSyndicatedReportDepositoryAccountMatchAnalysis> depositoryAccounts) { this.depositoryAccounts = depositoryAccounts; return this; } public BeaconReportSyndicationAnalysis addDepositoryAccountsItem(BeaconSyndicatedReportDepositoryAccountMatchAnalysis depositoryAccountsItem) { this.depositoryAccounts.add(depositoryAccountsItem); return this; } /** * Get depositoryAccounts * @return depositoryAccounts **/ @ApiModelProperty(required = true, value = "") public List<BeaconSyndicatedReportDepositoryAccountMatchAnalysis> getDepositoryAccounts() { return depositoryAccounts; } public void setDepositoryAccounts(List<BeaconSyndicatedReportDepositoryAccountMatchAnalysis> depositoryAccounts) { this.depositoryAccounts = depositoryAccounts; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BeaconReportSyndicationAnalysis beaconReportSyndicationAnalysis = (BeaconReportSyndicationAnalysis) o; return Objects.equals(this.address, beaconReportSyndicationAnalysis.address) && Objects.equals(this.dateOfBirth, beaconReportSyndicationAnalysis.dateOfBirth) && Objects.equals(this.emailAddress, beaconReportSyndicationAnalysis.emailAddress) && Objects.equals(this.name, beaconReportSyndicationAnalysis.name) && Objects.equals(this.idNumber, beaconReportSyndicationAnalysis.idNumber) && Objects.equals(this.ipAddress, beaconReportSyndicationAnalysis.ipAddress) && Objects.equals(this.phoneNumber, beaconReportSyndicationAnalysis.phoneNumber) && Objects.equals(this.depositoryAccounts, beaconReportSyndicationAnalysis.depositoryAccounts); } @Override public int hashCode() { return Objects.hash(address, dateOfBirth, emailAddress, name, idNumber, ipAddress, phoneNumber, depositoryAccounts); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconReportSyndicationAnalysis {\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n"); sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" idNumber: ").append(toIndentedString(idNumber)).append("\n"); sb.append(" ipAddress: ").append(toIndentedString(ipAddress)).append("\n"); sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); sb.append(" depositoryAccounts: ").append(toIndentedString(depositoryAccounts)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/DocumentNameMatchCode.java
src/main/java/com/plaid/client/model/DocumentNameMatchCode.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * A match summary describing the cross comparison between the subject&#39;s name, extracted from the document image, and the name they separately provided to identity verification attempt. */ @JsonAdapter(DocumentNameMatchCode.Adapter.class) public enum DocumentNameMatchCode { MATCH("match"), PARTIAL_MATCH("partial_match"), NO_MATCH("no_match"), NO_DATA("no_data"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; DocumentNameMatchCode(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static DocumentNameMatchCode fromValue(String value) { for (DocumentNameMatchCode b : DocumentNameMatchCode.values()) { if (b.value.equals(value)) { return b; } } return DocumentNameMatchCode.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<DocumentNameMatchCode> { @Override public void write(final JsonWriter jsonWriter, final DocumentNameMatchCode enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public DocumentNameMatchCode read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return DocumentNameMatchCode.fromValue(value); } } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkEventName.java
src/main/java/com/plaid/client/model/LinkEventName.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * A string representing the event that has just occurred in the Link flow. */ @JsonAdapter(LinkEventName.Adapter.class) public enum LinkEventName { BANK_INCOME_INSIGHTS_COMPLETED("BANK_INCOME_INSIGHTS_COMPLETED"), CLOSE_OAUTH("CLOSE_OAUTH"), ERROR("ERROR"), EXIT("EXIT"), FAIL_OAUTH("FAIL_OAUTH"), HANDOFF("HANDOFF"), ISSUE_FOLLOWED("ISSUE_FOLLOWED"), OPEN("OPEN"), OPEN_MY_PLAID("OPEN_MY_PLAID"), OPEN_OAUTH("OPEN_OAUTH"), SEARCH_INSTITUTION("SEARCH_INSTITUTION"), SELECT_AUTH_TYPE("SELECT_AUTH_TYPE"), SELECT_BRAND("SELECT_BRAND"), SELECT_DEGRADED_INSTITUTION("SELECT_DEGRADED_INSTITUTION"), SELECT_DOWN_INSTITUTION("SELECT_DOWN_INSTITUTION"), SELECT_FILTERED_INSTITUTION("SELECT_FILTERED_INSTITUTION"), SELECT_INSTITUTION("SELECT_INSTITUTION"), SUBMIT_ACCOUNT_NUMBER("SUBMIT_ACCOUNT_NUMBER"), SUBMIT_CREDENTIALS("SUBMIT_CREDENTIALS"), SUBMIT_DOCUMENTS("SUBMIT_DOCUMENTS"), SUBMIT_DOCUMENTS_ERROR("SUBMIT_DOCUMENTS_ERROR"), SUBMIT_DOCUMENTS_SUCCESS("SUBMIT_DOCUMENTS_SUCCESS"), SUBMIT_MFA("SUBMIT_MFA"), SUBMIT_ROUTING_NUMBER("SUBMIT_ROUTING_NUMBER"), TRANSITION_VIEW("TRANSITION_VIEW"), VIEW_DATA_TYPES("VIEW_DATA_TYPES"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; LinkEventName(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static LinkEventName fromValue(String value) { for (LinkEventName b : LinkEventName.values()) { if (b.value.equals(value)) { return b; } } return LinkEventName.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<LinkEventName> { @Override public void write(final JsonWriter jsonWriter, final LinkEventName enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public LinkEventName read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return LinkEventName.fromValue(value); } } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false