diff --git a/CHANGELOG.md b/CHANGELOG.md index 813de98fa..8e3df43b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ See full changelog for the OpenAPI schema (OAS) [here](https://github.com/plaid/plaid-openapi/blob/master/CHANGELOG.md). +# 39.4.0 +- Updating to OAS 2020-09-14_1.682.2 + +## OpenAPI Schema Changes +### 2020-09-14_1.682.2 +- Add personal_finance_category to BaseReportTransaction model. + +### 2020-09-14_1.682.1 +- Update `ProtectComputeResponse`: promote `score` and `model` to top-level fields, rename `fraud_attributes` to `attributes`, and remove `trust_index` and `subscores` +- Mark `ProtectComputeResponse.score` as nullable so it is omitted from the API response when no trust index score is present, preventing clients from seeing a spurious `"score": 0` + +### 2020-09-14_1.682.0 +- Add `has_null_available_balance` field to `OverrideAccounts` schema. When set to `true`, the Sandbox test account will always return `null` for its available balance. Cannot be set together with `force_available_balance`. + +### 2020-09-14_1.681.9 +- Add `fico` field to `CraCheckReportPartnerInsightsGetPartnerInsights`, `CraCheckReportCreatePartnerInsightsOptions`, and `LinkTokenCreateRequestCraOptionsPartnerInsights` schemas to support UltraFICO score generation; add new `CraPartnerInsightsFicoInput`, `CraPartnerInsightsUltraFicoScoreRequest`, `CraPartnerInsightsBaseFicoScore`, `CraPartnerInsightsUltraFicoScoreVersion`, `CraPartnerInsightsBureau`, and `CraPartnerInsightsBaseFicoScoreVersion` schemas + +### 2020-09-14_1.681.8 +- Update `beta/transactions/rules/v1` endpoints to use `client_user_id` instead of `access_token` +- Split `personal_finance_category` into `pfc_primary_category` and `pfc_detailed_category` on rule request/response schemas; add optional `pfc_version` field +- Rename `TransactionsRuleField` enum value `NAME` to `MERCHANT_NAME` +- Add `updated_at` and `client_user_id` to `TransactionsCategoryRule`; replace `item_id` and `personal_finance_category` + +### 2020-09-14_1.681.7 +- Add `sdk` field to `ProtectModelInputs` on `ProtectComputeRequest`. + +### 2020-09-14_1.681.6 +- Clarify `/protect/compute` `model` field: version suffix is required and must be `major.minor` format; removed references to versionless model names +- Expand `require_extracted_data` field description to document HTTP 400 / `FAILED_PRECONDITION` behavior when set to `true` +- Add readiness error to `/protect/compute` endpoint description: for link-session models, calling the endpoint before the Link session is complete returns HTTP 400 with `error_type` = `INVALID_REQUEST` and `error_code` = `FAILED_PRECONDITION` + # 39.3.0 - Updating to OAS 2020-09-14_1.681.5 diff --git a/pom.xml b/pom.xml index c802fb127..0e9651937 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.plaid plaid-java - 39.3.0-SNAPSHOT + 39.4.0-SNAPSHOT org.sonatype.oss diff --git a/src/main/java/com/plaid/client/ApiClient.java b/src/main/java/com/plaid/client/ApiClient.java index 495b0db68..1bca8501c 100644 --- a/src/main/java/com/plaid/client/ApiClient.java +++ b/src/main/java/com/plaid/client/ApiClient.java @@ -49,7 +49,7 @@ public ApiClient() { public Response intercept(Chain chain) throws IOException { Request originalRequest = chain.request(); Request requestWithUserAgent = originalRequest.newBuilder() - .header("User-Agent", "Plaid Java v39.3.0") + .header("User-Agent", "Plaid Java v39.4.0") .header("Plaid-Version", "2020-09-14") .build(); return chain.proceed(requestWithUserAgent); diff --git a/src/main/java/com/plaid/client/JSON.java b/src/main/java/com/plaid/client/JSON.java index facfeba51..d07f646b3 100644 --- a/src/main/java/com/plaid/client/JSON.java +++ b/src/main/java/com/plaid/client/JSON.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/StringUtil.java b/src/main/java/com/plaid/client/StringUtil.java index 107f16eb1..6ecd95846 100644 --- a/src/main/java/com/plaid/client/StringUtil.java +++ b/src/main/java/com/plaid/client/StringUtil.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -16,7 +16,7 @@ import java.util.Collection; import java.util.Iterator; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class StringUtil { /** * Check if the given array contains the given value (with case-insensitive comparison). diff --git a/src/main/java/com/plaid/client/model/AAMVAAnalysis.java b/src/main/java/com/plaid/client/model/AAMVAAnalysis.java index 9706069cb..1b8c2792f 100644 --- a/src/main/java/com/plaid/client/model/AAMVAAnalysis.java +++ b/src/main/java/com/plaid/client/model/AAMVAAnalysis.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Analyzed AAMVA data for the associated hit. Note: This field is only available for U.S. driver's licenses issued by participating states. */ @ApiModel(description = "Analyzed AAMVA data for the associated hit. Note: This field is only available for U.S. driver's licenses issued by participating states.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AAMVAAnalysis { public static final String SERIALIZED_NAME_IS_VERIFIED = "is_verified"; @SerializedName(SERIALIZED_NAME_IS_VERIFIED) diff --git a/src/main/java/com/plaid/client/model/AAMVADetailedMatchResult.java b/src/main/java/com/plaid/client/model/AAMVADetailedMatchResult.java index 7bd7d8783..6781c2ab8 100644 --- a/src/main/java/com/plaid/client/model/AAMVADetailedMatchResult.java +++ b/src/main/java/com/plaid/client/model/AAMVADetailedMatchResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/AAMVAMatchResult.java b/src/main/java/com/plaid/client/model/AAMVAMatchResult.java index 81694c31b..d87937650 100644 --- a/src/main/java/com/plaid/client/model/AAMVAMatchResult.java +++ b/src/main/java/com/plaid/client/model/AAMVAMatchResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ACHClass.java b/src/main/java/com/plaid/client/model/ACHClass.java index bafbe2643..6ded9fb56 100644 --- a/src/main/java/com/plaid/client/model/ACHClass.java +++ b/src/main/java/com/plaid/client/model/ACHClass.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/APR.java b/src/main/java/com/plaid/client/model/APR.java index 294f9d5ec..333a93971 100644 --- a/src/main/java/com/plaid/client/model/APR.java +++ b/src/main/java/com/plaid/client/model/APR.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Information about the APR on the account. */ @ApiModel(description = "Information about the APR on the account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class APR { public static final String SERIALIZED_NAME_APR_PERCENTAGE = "apr_percentage"; @SerializedName(SERIALIZED_NAME_APR_PERCENTAGE) diff --git a/src/main/java/com/plaid/client/model/AccountAccess.java b/src/main/java/com/plaid/client/model/AccountAccess.java index 898f83795..e0b97890f 100644 --- a/src/main/java/com/plaid/client/model/AccountAccess.java +++ b/src/main/java/com/plaid/client/model/AccountAccess.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Allow or disallow product access by account. Unlisted (e.g. missing) accounts will be considered `new_accounts`. */ @ApiModel(description = "Allow or disallow product access by account. Unlisted (e.g. missing) accounts will be considered `new_accounts`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountAccess { public static final String SERIALIZED_NAME_UNIQUE_ID = "unique_id"; @SerializedName(SERIALIZED_NAME_UNIQUE_ID) diff --git a/src/main/java/com/plaid/client/model/AccountAssets.java b/src/main/java/com/plaid/client/model/AccountAssets.java index 49067df92..c01860429 100644 --- a/src/main/java/com/plaid/client/model/AccountAssets.java +++ b/src/main/java/com/plaid/client/model/AccountAssets.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -40,7 +40,7 @@ * Asset information about an account */ @ApiModel(description = "Asset information about an account") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountAssets { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/AccountBalance.java b/src/main/java/com/plaid/client/model/AccountBalance.java index d88e029a7..ffa28a9ae 100644 --- a/src/main/java/com/plaid/client/model/AccountBalance.java +++ b/src/main/java/com/plaid/client/model/AccountBalance.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A set of fields describing the balance for an account. Balance information may be cached unless the balance object was returned by `/accounts/balance/get` or `/signal/evaluate` (using a Balance-only ruleset). */ @ApiModel(description = "A set of fields describing the balance for an account. Balance information may be cached unless the balance object was returned by `/accounts/balance/get` or `/signal/evaluate` (using a Balance-only ruleset).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountBalance { public static final String SERIALIZED_NAME_AVAILABLE = "available"; @SerializedName(SERIALIZED_NAME_AVAILABLE) diff --git a/src/main/java/com/plaid/client/model/AccountBase.java b/src/main/java/com/plaid/client/model/AccountBase.java index bfb4d56d5..29d38bcb2 100644 --- a/src/main/java/com/plaid/client/model/AccountBase.java +++ b/src/main/java/com/plaid/client/model/AccountBase.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * A single account at a financial institution. */ @ApiModel(description = "A single account at a financial institution.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountBase { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/AccountBaseNullable.java b/src/main/java/com/plaid/client/model/AccountBaseNullable.java index 3bb2200b9..e4c7ed79a 100644 --- a/src/main/java/com/plaid/client/model/AccountBaseNullable.java +++ b/src/main/java/com/plaid/client/model/AccountBaseNullable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * A single account at a financial institution. */ @ApiModel(description = "A single account at a financial institution.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountBaseNullable { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/AccountFilter.java b/src/main/java/com/plaid/client/model/AccountFilter.java index 2a276cff8..7cea2fd71 100644 --- a/src/main/java/com/plaid/client/model/AccountFilter.java +++ b/src/main/java/com/plaid/client/model/AccountFilter.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Enumerates the account subtypes that the application wishes for the user to be able to select from. For more details refer to Plaid documentation on account filters. */ @ApiModel(description = "Enumerates the account subtypes that the application wishes for the user to be able to select from. For more details refer to Plaid documentation on account filters.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountFilter { public static final String SERIALIZED_NAME_DEPOSITORY = "depository"; @SerializedName(SERIALIZED_NAME_DEPOSITORY) diff --git a/src/main/java/com/plaid/client/model/AccountFiltersResponse.java b/src/main/java/com/plaid/client/model/AccountFiltersResponse.java index e1b1f1568..8706cdae8 100644 --- a/src/main/java/com/plaid/client/model/AccountFiltersResponse.java +++ b/src/main/java/com/plaid/client/model/AccountFiltersResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * The `account_filters` specified in the original call to `/link/token/create`. */ @ApiModel(description = "The `account_filters` specified in the original call to `/link/token/create`. ") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountFiltersResponse { public static final String SERIALIZED_NAME_DEPOSITORY = "depository"; @SerializedName(SERIALIZED_NAME_DEPOSITORY) diff --git a/src/main/java/com/plaid/client/model/AccountHolderCategory.java b/src/main/java/com/plaid/client/model/AccountHolderCategory.java index bd486a967..4ac73531e 100644 --- a/src/main/java/com/plaid/client/model/AccountHolderCategory.java +++ b/src/main/java/com/plaid/client/model/AccountHolderCategory.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/AccountIdentity.java b/src/main/java/com/plaid/client/model/AccountIdentity.java index 83b3531c7..4e2047670 100644 --- a/src/main/java/com/plaid/client/model/AccountIdentity.java +++ b/src/main/java/com/plaid/client/model/AccountIdentity.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -38,7 +38,7 @@ * Identity information about an account */ @ApiModel(description = "Identity information about an account") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountIdentity { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/AccountIdentityAllOf.java b/src/main/java/com/plaid/client/model/AccountIdentityAllOf.java index c11b19117..c0962bff8 100644 --- a/src/main/java/com/plaid/client/model/AccountIdentityAllOf.java +++ b/src/main/java/com/plaid/client/model/AccountIdentityAllOf.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ /** * AccountIdentityAllOf */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountIdentityAllOf { public static final String SERIALIZED_NAME_OWNERS = "owners"; @SerializedName(SERIALIZED_NAME_OWNERS) diff --git a/src/main/java/com/plaid/client/model/AccountIdentityDocumentUpload.java b/src/main/java/com/plaid/client/model/AccountIdentityDocumentUpload.java index a9d39c6be..a9cc4b76c 100644 --- a/src/main/java/com/plaid/client/model/AccountIdentityDocumentUpload.java +++ b/src/main/java/com/plaid/client/model/AccountIdentityDocumentUpload.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -39,7 +39,7 @@ * Identity information about an account */ @ApiModel(description = "Identity information about an account") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountIdentityDocumentUpload { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/AccountIdentityDocumentUploadAllOf.java b/src/main/java/com/plaid/client/model/AccountIdentityDocumentUploadAllOf.java index 02ed049ca..17ef85e19 100644 --- a/src/main/java/com/plaid/client/model/AccountIdentityDocumentUploadAllOf.java +++ b/src/main/java/com/plaid/client/model/AccountIdentityDocumentUploadAllOf.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ /** * AccountIdentityDocumentUploadAllOf */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountIdentityDocumentUploadAllOf { public static final String SERIALIZED_NAME_OWNERS = "owners"; @SerializedName(SERIALIZED_NAME_OWNERS) diff --git a/src/main/java/com/plaid/client/model/AccountIdentityMatchScore.java b/src/main/java/com/plaid/client/model/AccountIdentityMatchScore.java index fcd2a013d..7b71a72d3 100644 --- a/src/main/java/com/plaid/client/model/AccountIdentityMatchScore.java +++ b/src/main/java/com/plaid/client/model/AccountIdentityMatchScore.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -39,7 +39,7 @@ * Identity match scores for an account */ @ApiModel(description = "Identity match scores for an account") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountIdentityMatchScore { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/AccountIdentityMatchScoreAllOf.java b/src/main/java/com/plaid/client/model/AccountIdentityMatchScoreAllOf.java index 99ac4b6a7..39e069f66 100644 --- a/src/main/java/com/plaid/client/model/AccountIdentityMatchScoreAllOf.java +++ b/src/main/java/com/plaid/client/model/AccountIdentityMatchScoreAllOf.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ /** * AccountIdentityMatchScoreAllOf */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountIdentityMatchScoreAllOf { public static final String SERIALIZED_NAME_LEGAL_NAME = "legal_name"; @SerializedName(SERIALIZED_NAME_LEGAL_NAME) diff --git a/src/main/java/com/plaid/client/model/AccountInsights.java b/src/main/java/com/plaid/client/model/AccountInsights.java index aa44317f1..1627a0305 100644 --- a/src/main/java/com/plaid/client/model/AccountInsights.java +++ b/src/main/java/com/plaid/client/model/AccountInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountInsights { public static final String SERIALIZED_NAME_RISK = "risk"; @SerializedName(SERIALIZED_NAME_RISK) diff --git a/src/main/java/com/plaid/client/model/AccountProductAccess.java b/src/main/java/com/plaid/client/model/AccountProductAccess.java index c9eb437c1..995095d7d 100644 --- a/src/main/java/com/plaid/client/model/AccountProductAccess.java +++ b/src/main/java/com/plaid/client/model/AccountProductAccess.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Allow the application to access specific products on this account */ @ApiModel(description = "Allow the application to access specific products on this account") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountProductAccess { public static final String SERIALIZED_NAME_ACCOUNT_DATA = "account_data"; @SerializedName(SERIALIZED_NAME_ACCOUNT_DATA) diff --git a/src/main/java/com/plaid/client/model/AccountProductAccessNullable.java b/src/main/java/com/plaid/client/model/AccountProductAccessNullable.java index 0b7a257a8..df578019c 100644 --- a/src/main/java/com/plaid/client/model/AccountProductAccessNullable.java +++ b/src/main/java/com/plaid/client/model/AccountProductAccessNullable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Allow the application to access specific products on this account */ @ApiModel(description = "Allow the application to access specific products on this account") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountProductAccessNullable { public static final String SERIALIZED_NAME_ACCOUNT_DATA = "account_data"; @SerializedName(SERIALIZED_NAME_ACCOUNT_DATA) diff --git a/src/main/java/com/plaid/client/model/AccountSelectionCardinality.java b/src/main/java/com/plaid/client/model/AccountSelectionCardinality.java index cc9e56e39..9e03fd0b0 100644 --- a/src/main/java/com/plaid/client/model/AccountSelectionCardinality.java +++ b/src/main/java/com/plaid/client/model/AccountSelectionCardinality.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/AccountSubtype.java b/src/main/java/com/plaid/client/model/AccountSubtype.java index 99026df4d..40bbb0712 100644 --- a/src/main/java/com/plaid/client/model/AccountSubtype.java +++ b/src/main/java/com/plaid/client/model/AccountSubtype.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/AccountType.java b/src/main/java/com/plaid/client/model/AccountType.java index 0ef03629b..ff3e6d024 100644 --- a/src/main/java/com/plaid/client/model/AccountType.java +++ b/src/main/java/com/plaid/client/model/AccountType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/AccountVerificationInsights.java b/src/main/java/com/plaid/client/model/AccountVerificationInsights.java index 9889a7497..7e58671f6 100644 --- a/src/main/java/com/plaid/client/model/AccountVerificationInsights.java +++ b/src/main/java/com/plaid/client/model/AccountVerificationInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Insights from performing database verification for the account. Only returned for Auth Items using Database Auth. */ @ApiModel(description = "Insights from performing database verification for the account. Only returned for Auth Items using Database Auth.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountVerificationInsights { public static final String SERIALIZED_NAME_NAME_MATCH_SCORE = "name_match_score"; @SerializedName(SERIALIZED_NAME_NAME_MATCH_SCORE) @@ -57,11 +57,11 @@ public AccountVerificationInsights nameMatchScore(Integer nameMatchScore) { } /** - * Indicates the score of the name match between the given name provided during database verification (available in the [`verification_name`](https://plaid.com/docs/api/products/auth/#auth-get-response-accounts-verification-name) field) and matched Plaid network accounts. If defined, will be a value between 0 and 100. Will be undefined if name matching was not enabled for the database verification session or if there were no eligible Plaid network matches to compare the given name with. + * Indicates the score of the name match between the given name provided during database verification (available in the [`verification_name`](https://plaid.com/docs/api/products/auth/#auth-get-response-accounts-verification-name) field if using standard Database Auth, or provided in the request if using `/auth/verify`) and matched Plaid network accounts. If defined, will be a value between 0 and 100. Will be undefined if name matching was not enabled for the database verification session or if there were no eligible Plaid network matches to compare the given name with. * @return nameMatchScore **/ @javax.annotation.Nullable - @ApiModelProperty(value = "Indicates the score of the name match between the given name provided during database verification (available in the [`verification_name`](https://plaid.com/docs/api/products/auth/#auth-get-response-accounts-verification-name) field) and matched Plaid network accounts. If defined, will be a value between 0 and 100. Will be undefined if name matching was not enabled for the database verification session or if there were no eligible Plaid network matches to compare the given name with.") + @ApiModelProperty(value = "Indicates the score of the name match between the given name provided during database verification (available in the [`verification_name`](https://plaid.com/docs/api/products/auth/#auth-get-response-accounts-verification-name) field if using standard Database Auth, or provided in the request if using `/auth/verify`) and matched Plaid network accounts. If defined, will be a value between 0 and 100. Will be undefined if name matching was not enabled for the database verification session or if there were no eligible Plaid network matches to compare the given name with.") public Integer getNameMatchScore() { return nameMatchScore; diff --git a/src/main/java/com/plaid/client/model/AccountVerificationInsightsAccountNumberFormat.java b/src/main/java/com/plaid/client/model/AccountVerificationInsightsAccountNumberFormat.java index db0322fb4..ddcfe578b 100644 --- a/src/main/java/com/plaid/client/model/AccountVerificationInsightsAccountNumberFormat.java +++ b/src/main/java/com/plaid/client/model/AccountVerificationInsightsAccountNumberFormat.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/AccountVerificationInsightsNetworkStatus.java b/src/main/java/com/plaid/client/model/AccountVerificationInsightsNetworkStatus.java index 841701192..b904acf43 100644 --- a/src/main/java/com/plaid/client/model/AccountVerificationInsightsNetworkStatus.java +++ b/src/main/java/com/plaid/client/model/AccountVerificationInsightsNetworkStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Status information about the account and routing number in the Plaid network. */ @ApiModel(description = "Status information about the account and routing number in the Plaid network.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountVerificationInsightsNetworkStatus { public static final String SERIALIZED_NAME_HAS_NUMBERS_MATCH = "has_numbers_match"; @SerializedName(SERIALIZED_NAME_HAS_NUMBERS_MATCH) diff --git a/src/main/java/com/plaid/client/model/AccountVerificationInsightsPreviousReturns.java b/src/main/java/com/plaid/client/model/AccountVerificationInsightsPreviousReturns.java index 42fb99262..a13610198 100644 --- a/src/main/java/com/plaid/client/model/AccountVerificationInsightsPreviousReturns.java +++ b/src/main/java/com/plaid/client/model/AccountVerificationInsightsPreviousReturns.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Information about known ACH returns for the account and routing number. */ @ApiModel(description = "Information about known ACH returns for the account and routing number.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountVerificationInsightsPreviousReturns { public static final String SERIALIZED_NAME_HAS_PREVIOUS_ADMINISTRATIVE_RETURN = "has_previous_administrative_return"; @SerializedName(SERIALIZED_NAME_HAS_PREVIOUS_ADMINISTRATIVE_RETURN) @@ -42,10 +42,10 @@ public AccountVerificationInsightsPreviousReturns hasPreviousAdministrativeRetur } /** - * Indicates whether Plaid's data sources include a known administrative ACH return for account and routing number. + * Indicates whether Plaid's data sources include a known administrative ACH return for this account and routing number. * @return hasPreviousAdministrativeReturn **/ - @ApiModelProperty(required = true, value = "Indicates whether Plaid's data sources include a known administrative ACH return for account and routing number.") + @ApiModelProperty(required = true, value = "Indicates whether Plaid's data sources include a known administrative ACH return for this account and routing number.") public Boolean getHasPreviousAdministrativeReturn() { return hasPreviousAdministrativeReturn; diff --git a/src/main/java/com/plaid/client/model/AccountsBalanceGetRequest.java b/src/main/java/com/plaid/client/model/AccountsBalanceGetRequest.java index 3c9b39eb8..9b605e115 100644 --- a/src/main/java/com/plaid/client/model/AccountsBalanceGetRequest.java +++ b/src/main/java/com/plaid/client/model/AccountsBalanceGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * AccountsBalanceGetRequest defines the request schema for `/accounts/balance/get` */ @ApiModel(description = "AccountsBalanceGetRequest defines the request schema for `/accounts/balance/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountsBalanceGetRequest { public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) diff --git a/src/main/java/com/plaid/client/model/AccountsBalanceGetRequestOptions.java b/src/main/java/com/plaid/client/model/AccountsBalanceGetRequestOptions.java index e1613e968..6480af640 100644 --- a/src/main/java/com/plaid/client/model/AccountsBalanceGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/AccountsBalanceGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Optional parameters to `/accounts/balance/get`. */ @ApiModel(description = "Optional parameters to `/accounts/balance/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountsBalanceGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) diff --git a/src/main/java/com/plaid/client/model/AccountsGetRequest.java b/src/main/java/com/plaid/client/model/AccountsGetRequest.java index 8850bcce1..02349c8ca 100644 --- a/src/main/java/com/plaid/client/model/AccountsGetRequest.java +++ b/src/main/java/com/plaid/client/model/AccountsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * AccountsGetRequest defines the request schema for `/accounts/get` */ @ApiModel(description = "AccountsGetRequest defines the request schema for `/accounts/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/AccountsGetRequestOptions.java b/src/main/java/com/plaid/client/model/AccountsGetRequestOptions.java index f590124a8..9d1a111e0 100644 --- a/src/main/java/com/plaid/client/model/AccountsGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/AccountsGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An optional object to filter `/accounts/get` results. */ @ApiModel(description = "An optional object to filter `/accounts/get` results.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountsGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) diff --git a/src/main/java/com/plaid/client/model/AccountsGetResponse.java b/src/main/java/com/plaid/client/model/AccountsGetResponse.java index 22984d3ca..9dccc8542 100644 --- a/src/main/java/com/plaid/client/model/AccountsGetResponse.java +++ b/src/main/java/com/plaid/client/model/AccountsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * AccountsGetResponse defines the response schema for `/accounts/get` and `/accounts/balance/get`. */ @ApiModel(description = "AccountsGetResponse defines the response schema for `/accounts/get` and `/accounts/balance/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AccountsGetResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) diff --git a/src/main/java/com/plaid/client/model/ActionState.java b/src/main/java/com/plaid/client/model/ActionState.java index a64e86fb8..0c25548bf 100644 --- a/src/main/java/com/plaid/client/model/ActionState.java +++ b/src/main/java/com/plaid/client/model/ActionState.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/Activity.java b/src/main/java/com/plaid/client/model/Activity.java index c2f975665..853a917f8 100644 --- a/src/main/java/com/plaid/client/model/Activity.java +++ b/src/main/java/com/plaid/client/model/Activity.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Describes a consent activity. */ @ApiModel(description = "Describes a consent activity.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Activity { public static final String SERIALIZED_NAME_ACTIVITY = "activity"; @SerializedName(SERIALIZED_NAME_ACTIVITY) diff --git a/src/main/java/com/plaid/client/model/ActivityType.java b/src/main/java/com/plaid/client/model/ActivityType.java index cbe36ff28..74e6a4873 100644 --- a/src/main/java/com/plaid/client/model/ActivityType.java +++ b/src/main/java/com/plaid/client/model/ActivityType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/Address.java b/src/main/java/com/plaid/client/model/Address.java index d7bd8650a..6a139fe53 100644 --- a/src/main/java/com/plaid/client/model/Address.java +++ b/src/main/java/com/plaid/client/model/Address.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A physical mailing address. */ @ApiModel(description = "A physical mailing address.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Address { public static final String SERIALIZED_NAME_DATA = "data"; @SerializedName(SERIALIZED_NAME_DATA) diff --git a/src/main/java/com/plaid/client/model/AddressData.java b/src/main/java/com/plaid/client/model/AddressData.java index 055652e93..178116784 100644 --- a/src/main/java/com/plaid/client/model/AddressData.java +++ b/src/main/java/com/plaid/client/model/AddressData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AddressData { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/AddressDataNotRequired.java b/src/main/java/com/plaid/client/model/AddressDataNotRequired.java index 2cd8a1d30..2ec8b8771 100644 --- a/src/main/java/com/plaid/client/model/AddressDataNotRequired.java +++ b/src/main/java/com/plaid/client/model/AddressDataNotRequired.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AddressDataNotRequired { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/AddressDataNullable.java b/src/main/java/com/plaid/client/model/AddressDataNullable.java index 58b96b936..e1b7a01b2 100644 --- a/src/main/java/com/plaid/client/model/AddressDataNullable.java +++ b/src/main/java/com/plaid/client/model/AddressDataNullable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AddressDataNullable { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/AddressDataNullableNoRequiredFields.java b/src/main/java/com/plaid/client/model/AddressDataNullableNoRequiredFields.java index 8c50ab6ad..6c3b26dff 100644 --- a/src/main/java/com/plaid/client/model/AddressDataNullableNoRequiredFields.java +++ b/src/main/java/com/plaid/client/model/AddressDataNullableNoRequiredFields.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AddressDataNullableNoRequiredFields { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/AddressMatchScore.java b/src/main/java/com/plaid/client/model/AddressMatchScore.java index 3d3dca5b8..43193b3d2 100644 --- a/src/main/java/com/plaid/client/model/AddressMatchScore.java +++ b/src/main/java/com/plaid/client/model/AddressMatchScore.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Score found by matching address provided by the API with the address on the account at the financial institution. The score can range from 0 to 100 where 100 is a perfect match and 0 is a no match. If the account contains multiple owners, the maximum match score is filled. */ @ApiModel(description = "Score found by matching address provided by the API with the address on the account at the financial institution. The score can range from 0 to 100 where 100 is a perfect match and 0 is a no match. If the account contains multiple owners, the maximum match score is filled.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AddressMatchScore { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) diff --git a/src/main/java/com/plaid/client/model/AddressNullable.java b/src/main/java/com/plaid/client/model/AddressNullable.java index 2f548cb87..2a1d3e3e6 100644 --- a/src/main/java/com/plaid/client/model/AddressNullable.java +++ b/src/main/java/com/plaid/client/model/AddressNullable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * A physical mailing address. */ @ApiModel(description = "A physical mailing address.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AddressNullable { public static final String SERIALIZED_NAME_DATA = "data"; @SerializedName(SERIALIZED_NAME_DATA) diff --git a/src/main/java/com/plaid/client/model/AddressPurposeLabel.java b/src/main/java/com/plaid/client/model/AddressPurposeLabel.java index 12610f543..314dd401e 100644 --- a/src/main/java/com/plaid/client/model/AddressPurposeLabel.java +++ b/src/main/java/com/plaid/client/model/AddressPurposeLabel.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/AffordabilityInsights.java b/src/main/java/com/plaid/client/model/AffordabilityInsights.java index 694aec1a2..13851d4e9 100644 --- a/src/main/java/com/plaid/client/model/AffordabilityInsights.java +++ b/src/main/java/com/plaid/client/model/AffordabilityInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Affordability insights focus on providing signal on the ability of a borrower to repay their loan without experiencing financial strain. It provides insights on factors such a user's monthly income and expenses, disposable income, average expenditure, etc., helping lenders gauge the level of affordability of a borrower. */ @ApiModel(description = "Affordability insights focus on providing signal on the ability of a borrower to repay their loan without experiencing financial strain. It provides insights on factors such a user's monthly income and expenses, disposable income, average expenditure, etc., helping lenders gauge the level of affordability of a borrower.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AffordabilityInsights { public static final String SERIALIZED_NAME_EXPENDITURE = "expenditure"; @SerializedName(SERIALIZED_NAME_EXPENDITURE) diff --git a/src/main/java/com/plaid/client/model/AmountWithCurrency.java b/src/main/java/com/plaid/client/model/AmountWithCurrency.java index 71fadc30d..68ef9927a 100644 --- a/src/main/java/com/plaid/client/model/AmountWithCurrency.java +++ b/src/main/java/com/plaid/client/model/AmountWithCurrency.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * A monetary amount with its associated currency information, supporting both official and unofficial currency codes. */ @ApiModel(description = "A monetary amount with its associated currency information, supporting both official and unofficial currency codes.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AmountWithCurrency { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/AmountWithCurrencyWithMonthlyAverage.java b/src/main/java/com/plaid/client/model/AmountWithCurrencyWithMonthlyAverage.java index 83cdb7393..6ab5509c5 100644 --- a/src/main/java/com/plaid/client/model/AmountWithCurrencyWithMonthlyAverage.java +++ b/src/main/java/com/plaid/client/model/AmountWithCurrencyWithMonthlyAverage.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Represents an amount and a monthly average */ @ApiModel(description = "Represents an amount and a monthly average") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AmountWithCurrencyWithMonthlyAverage { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/Application.java b/src/main/java/com/plaid/client/model/Application.java index b7bcc8a61..6e1c1b581 100644 --- a/src/main/java/com/plaid/client/model/Application.java +++ b/src/main/java/com/plaid/client/model/Application.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Metadata about the application */ @ApiModel(description = "Metadata about the application") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Application { public static final String SERIALIZED_NAME_APPLICATION_ID = "application_id"; @SerializedName(SERIALIZED_NAME_APPLICATION_ID) diff --git a/src/main/java/com/plaid/client/model/ApplicationGetRequest.java b/src/main/java/com/plaid/client/model/ApplicationGetRequest.java index b9d01ff39..6a482ef6c 100644 --- a/src/main/java/com/plaid/client/model/ApplicationGetRequest.java +++ b/src/main/java/com/plaid/client/model/ApplicationGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ApplicationGetRequest defines the schema for `/application/get` */ @ApiModel(description = "ApplicationGetRequest defines the schema for `/application/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ApplicationGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ApplicationGetResponse.java b/src/main/java/com/plaid/client/model/ApplicationGetResponse.java index 436a4a84f..cb1becb1a 100644 --- a/src/main/java/com/plaid/client/model/ApplicationGetResponse.java +++ b/src/main/java/com/plaid/client/model/ApplicationGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ApplicationGetResponse defines the response schema for `/application/get` */ @ApiModel(description = "ApplicationGetResponse defines the response schema for `/application/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ApplicationGetResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/Asset.java b/src/main/java/com/plaid/client/model/Asset.java index 56f86e88d..189890716 100644 --- a/src/main/java/com/plaid/client/model/Asset.java +++ b/src/main/java/com/plaid/client/model/Asset.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Asset { public static final String SERIALIZED_NAME_A_S_S_E_T_D_E_T_A_I_L = "ASSET_DETAIL"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_D_E_T_A_I_L) diff --git a/src/main/java/com/plaid/client/model/AssetDetail.java b/src/main/java/com/plaid/client/model/AssetDetail.java index 16d3f9a30..3faab8bc3 100644 --- a/src/main/java/com/plaid/client/model/AssetDetail.java +++ b/src/main/java/com/plaid/client/model/AssetDetail.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Details about an asset. */ @ApiModel(description = "Details about an asset.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetDetail { public static final String SERIALIZED_NAME_ASSET_UNIQUE_IDENTIFIER = "AssetUniqueIdentifier"; @SerializedName(SERIALIZED_NAME_ASSET_UNIQUE_IDENTIFIER) diff --git a/src/main/java/com/plaid/client/model/AssetHolder.java b/src/main/java/com/plaid/client/model/AssetHolder.java index b7062f6f9..b2734107f 100644 --- a/src/main/java/com/plaid/client/model/AssetHolder.java +++ b/src/main/java/com/plaid/client/model/AssetHolder.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetHolder { public static final String SERIALIZED_NAME_N_A_M_E = "NAME"; @SerializedName(SERIALIZED_NAME_N_A_M_E) diff --git a/src/main/java/com/plaid/client/model/AssetHolderName.java b/src/main/java/com/plaid/client/model/AssetHolderName.java index 347351304..63f07f920 100644 --- a/src/main/java/com/plaid/client/model/AssetHolderName.java +++ b/src/main/java/com/plaid/client/model/AssetHolderName.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetHolderName { public static final String SERIALIZED_NAME_FULL_NAME = "FullName"; @SerializedName(SERIALIZED_NAME_FULL_NAME) diff --git a/src/main/java/com/plaid/client/model/AssetHolding.java b/src/main/java/com/plaid/client/model/AssetHolding.java index a2d85f6a4..ee8632b05 100644 --- a/src/main/java/com/plaid/client/model/AssetHolding.java +++ b/src/main/java/com/plaid/client/model/AssetHolding.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetHolding { public static final String SERIALIZED_NAME_ASSET_HOLDING_I_D = "AssetHoldingID"; @SerializedName(SERIALIZED_NAME_ASSET_HOLDING_I_D) diff --git a/src/main/java/com/plaid/client/model/AssetHoldings.java b/src/main/java/com/plaid/client/model/AssetHoldings.java index 9f823d99b..7107d3543 100644 --- a/src/main/java/com/plaid/client/model/AssetHoldings.java +++ b/src/main/java/com/plaid/client/model/AssetHoldings.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetHoldings { public static final String SERIALIZED_NAME_A_S_S_E_T_H_O_L_D_I_N_G = "ASSET_HOLDING"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_H_O_L_D_I_N_G) diff --git a/src/main/java/com/plaid/client/model/AssetInvestmentTransactionType.java b/src/main/java/com/plaid/client/model/AssetInvestmentTransactionType.java index 610683ae0..cf4e744db 100644 --- a/src/main/java/com/plaid/client/model/AssetInvestmentTransactionType.java +++ b/src/main/java/com/plaid/client/model/AssetInvestmentTransactionType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/AssetOwner.java b/src/main/java/com/plaid/client/model/AssetOwner.java index 55a820b39..30b1ed8b7 100644 --- a/src/main/java/com/plaid/client/model/AssetOwner.java +++ b/src/main/java/com/plaid/client/model/AssetOwner.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetOwner { public static final String SERIALIZED_NAME_ASSET_OWNER_TEXT = "AssetOwnerText"; @SerializedName(SERIALIZED_NAME_ASSET_OWNER_TEXT) diff --git a/src/main/java/com/plaid/client/model/AssetOwners.java b/src/main/java/com/plaid/client/model/AssetOwners.java index 16337b7e0..0b8e2e8a6 100644 --- a/src/main/java/com/plaid/client/model/AssetOwners.java +++ b/src/main/java/com/plaid/client/model/AssetOwners.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetOwners { public static final String SERIALIZED_NAME_A_S_S_E_T_O_W_N_E_R = "ASSET_OWNER"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_O_W_N_E_R) diff --git a/src/main/java/com/plaid/client/model/AssetReport.java b/src/main/java/com/plaid/client/model/AssetReport.java index 9f264427d..f7aeb7f02 100644 --- a/src/main/java/com/plaid/client/model/AssetReport.java +++ b/src/main/java/com/plaid/client/model/AssetReport.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * An object representing an Asset Report */ @ApiModel(description = "An object representing an Asset Report") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReport { public static final String SERIALIZED_NAME_ASSET_REPORT_ID = "asset_report_id"; @SerializedName(SERIALIZED_NAME_ASSET_REPORT_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportAccountBalance.java b/src/main/java/com/plaid/client/model/AssetReportAccountBalance.java index c691c6e89..45441e11f 100644 --- a/src/main/java/com/plaid/client/model/AssetReportAccountBalance.java +++ b/src/main/java/com/plaid/client/model/AssetReportAccountBalance.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A set of fields describing the balance for an account. Balance information may be cached unless the balance object was returned by `/accounts/balance/get`. */ @ApiModel(description = "A set of fields describing the balance for an account. Balance information may be cached unless the balance object was returned by `/accounts/balance/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportAccountBalance { public static final String SERIALIZED_NAME_AVAILABLE = "available"; @SerializedName(SERIALIZED_NAME_AVAILABLE) diff --git a/src/main/java/com/plaid/client/model/AssetReportAddOns.java b/src/main/java/com/plaid/client/model/AssetReportAddOns.java index bcb32c9b3..589bc6c51 100644 --- a/src/main/java/com/plaid/client/model/AssetReportAddOns.java +++ b/src/main/java/com/plaid/client/model/AssetReportAddOns.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/AssetReportAuditCopyCreateRequest.java b/src/main/java/com/plaid/client/model/AssetReportAuditCopyCreateRequest.java index 009a30f22..c7f117ff0 100644 --- a/src/main/java/com/plaid/client/model/AssetReportAuditCopyCreateRequest.java +++ b/src/main/java/com/plaid/client/model/AssetReportAuditCopyCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * AssetReportAuditCopyCreateRequest defines the request schema for `/asset_report/audit_copy/get` */ @ApiModel(description = "AssetReportAuditCopyCreateRequest defines the request schema for `/asset_report/audit_copy/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportAuditCopyCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportAuditCopyCreateResponse.java b/src/main/java/com/plaid/client/model/AssetReportAuditCopyCreateResponse.java index ca0fbd4f2..4958bf23f 100644 --- a/src/main/java/com/plaid/client/model/AssetReportAuditCopyCreateResponse.java +++ b/src/main/java/com/plaid/client/model/AssetReportAuditCopyCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * AssetReportAuditCopyCreateResponse defines the response schema for `/asset_report/audit_copy/get` */ @ApiModel(description = "AssetReportAuditCopyCreateResponse defines the response schema for `/asset_report/audit_copy/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportAuditCopyCreateResponse { public static final String SERIALIZED_NAME_AUDIT_COPY_TOKEN = "audit_copy_token"; @SerializedName(SERIALIZED_NAME_AUDIT_COPY_TOKEN) diff --git a/src/main/java/com/plaid/client/model/AssetReportAuditCopyGetRequest.java b/src/main/java/com/plaid/client/model/AssetReportAuditCopyGetRequest.java index 030579e86..4b10c376d 100644 --- a/src/main/java/com/plaid/client/model/AssetReportAuditCopyGetRequest.java +++ b/src/main/java/com/plaid/client/model/AssetReportAuditCopyGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * AssetReportAuditCopyGetRequest defines the request schema for `/asset_report/audit_copy/get` */ @ApiModel(description = "AssetReportAuditCopyGetRequest defines the request schema for `/asset_report/audit_copy/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportAuditCopyGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportAuditCopyPdfGetRequest.java b/src/main/java/com/plaid/client/model/AssetReportAuditCopyPdfGetRequest.java index 8860b6463..7312d6827 100644 --- a/src/main/java/com/plaid/client/model/AssetReportAuditCopyPdfGetRequest.java +++ b/src/main/java/com/plaid/client/model/AssetReportAuditCopyPdfGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * AssetReportAuditCopyPDFGetRequest defines the request schema for `/asset_report/audit_copy/pdf/get` */ @ApiModel(description = "AssetReportAuditCopyPDFGetRequest defines the request schema for `/asset_report/audit_copy/pdf/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportAuditCopyPdfGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportAuditCopyRemoveRequest.java b/src/main/java/com/plaid/client/model/AssetReportAuditCopyRemoveRequest.java index f00ab75b1..92294f122 100644 --- a/src/main/java/com/plaid/client/model/AssetReportAuditCopyRemoveRequest.java +++ b/src/main/java/com/plaid/client/model/AssetReportAuditCopyRemoveRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * AssetReportAuditCopyRemoveRequest defines the request schema for `/asset_report/audit_copy/remove` */ @ApiModel(description = "AssetReportAuditCopyRemoveRequest defines the request schema for `/asset_report/audit_copy/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportAuditCopyRemoveRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportAuditCopyRemoveResponse.java b/src/main/java/com/plaid/client/model/AssetReportAuditCopyRemoveResponse.java index 21ec86c54..a8a8dddbc 100644 --- a/src/main/java/com/plaid/client/model/AssetReportAuditCopyRemoveResponse.java +++ b/src/main/java/com/plaid/client/model/AssetReportAuditCopyRemoveResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * AssetReportAuditCopyRemoveResponse defines the response schema for `/asset_report/audit_copy/remove` */ @ApiModel(description = "AssetReportAuditCopyRemoveResponse defines the response schema for `/asset_report/audit_copy/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportAuditCopyRemoveResponse { public static final String SERIALIZED_NAME_REMOVED = "removed"; @SerializedName(SERIALIZED_NAME_REMOVED) diff --git a/src/main/java/com/plaid/client/model/AssetReportCreateRequest.java b/src/main/java/com/plaid/client/model/AssetReportCreateRequest.java index 33c810b6d..091af947e 100644 --- a/src/main/java/com/plaid/client/model/AssetReportCreateRequest.java +++ b/src/main/java/com/plaid/client/model/AssetReportCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * AssetReportCreateRequest defines the request schema for `/asset_report/create` */ @ApiModel(description = "AssetReportCreateRequest defines the request schema for `/asset_report/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportCreateRequestOptions.java b/src/main/java/com/plaid/client/model/AssetReportCreateRequestOptions.java index 9ebd11d88..6da09fc2b 100644 --- a/src/main/java/com/plaid/client/model/AssetReportCreateRequestOptions.java +++ b/src/main/java/com/plaid/client/model/AssetReportCreateRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * An optional object to filter `/asset_report/create` results. If provided, must be non-`null`. The optional `user` object is required for the report to be eligible for Fannie Mae's Day 1 Certainty program. */ @ApiModel(description = "An optional object to filter `/asset_report/create` results. If provided, must be non-`null`. The optional `user` object is required for the report to be eligible for Fannie Mae's Day 1 Certainty program.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportCreateRequestOptions { public static final String SERIALIZED_NAME_CLIENT_REPORT_ID = "client_report_id"; @SerializedName(SERIALIZED_NAME_CLIENT_REPORT_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportCreateResponse.java b/src/main/java/com/plaid/client/model/AssetReportCreateResponse.java index f20a8ec10..5a9629b1c 100644 --- a/src/main/java/com/plaid/client/model/AssetReportCreateResponse.java +++ b/src/main/java/com/plaid/client/model/AssetReportCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * AssetReportCreateResponse defines the response schema for `/asset_report/create` */ @ApiModel(description = "AssetReportCreateResponse defines the response schema for `/asset_report/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportCreateResponse { public static final String SERIALIZED_NAME_ASSET_REPORT_TOKEN = "asset_report_token"; @SerializedName(SERIALIZED_NAME_ASSET_REPORT_TOKEN) diff --git a/src/main/java/com/plaid/client/model/AssetReportFilterRequest.java b/src/main/java/com/plaid/client/model/AssetReportFilterRequest.java index bc0baa632..edbe8b236 100644 --- a/src/main/java/com/plaid/client/model/AssetReportFilterRequest.java +++ b/src/main/java/com/plaid/client/model/AssetReportFilterRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * AssetReportFilterRequest defines the request schema for `/asset_report/filter` */ @ApiModel(description = "AssetReportFilterRequest defines the request schema for `/asset_report/filter`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportFilterRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportFilterResponse.java b/src/main/java/com/plaid/client/model/AssetReportFilterResponse.java index 1a657127d..60e13e0fe 100644 --- a/src/main/java/com/plaid/client/model/AssetReportFilterResponse.java +++ b/src/main/java/com/plaid/client/model/AssetReportFilterResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * AssetReportFilterResponse defines the response schema for `/asset_report/filter` */ @ApiModel(description = "AssetReportFilterResponse defines the response schema for `/asset_report/filter`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportFilterResponse { public static final String SERIALIZED_NAME_ASSET_REPORT_TOKEN = "asset_report_token"; @SerializedName(SERIALIZED_NAME_ASSET_REPORT_TOKEN) diff --git a/src/main/java/com/plaid/client/model/AssetReportFreddie.java b/src/main/java/com/plaid/client/model/AssetReportFreddie.java index c58417130..045c48842 100644 --- a/src/main/java/com/plaid/client/model/AssetReportFreddie.java +++ b/src/main/java/com/plaid/client/model/AssetReportFreddie.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * An object representing an Asset Report with Freddie Mac schema. */ @ApiModel(description = "An object representing an Asset Report with Freddie Mac schema.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportFreddie { public static final String SERIALIZED_NAME_L_O_A_N_S = "LOANS"; @SerializedName(SERIALIZED_NAME_L_O_A_N_S) diff --git a/src/main/java/com/plaid/client/model/AssetReportFreddieGetRequest.java b/src/main/java/com/plaid/client/model/AssetReportFreddieGetRequest.java index 1e8e09249..edd435f96 100644 --- a/src/main/java/com/plaid/client/model/AssetReportFreddieGetRequest.java +++ b/src/main/java/com/plaid/client/model/AssetReportFreddieGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * AssetReportFreddieGetRequest defines the request schema for `credit/asset_report/freddie_mac/get` */ @ApiModel(description = "AssetReportFreddieGetRequest defines the request schema for `credit/asset_report/freddie_mac/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportFreddieGetRequest { public static final String SERIALIZED_NAME_AUDIT_COPY_TOKEN = "audit_copy_token"; @SerializedName(SERIALIZED_NAME_AUDIT_COPY_TOKEN) diff --git a/src/main/java/com/plaid/client/model/AssetReportFreddieGetResponse.java b/src/main/java/com/plaid/client/model/AssetReportFreddieGetResponse.java index 78044bc2b..38b960f70 100644 --- a/src/main/java/com/plaid/client/model/AssetReportFreddieGetResponse.java +++ b/src/main/java/com/plaid/client/model/AssetReportFreddieGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * AssetReportFreddieGetResponse defines the response schema for `/asset_report/get` */ @ApiModel(description = "AssetReportFreddieGetResponse defines the response schema for `/asset_report/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportFreddieGetResponse { public static final String SERIALIZED_NAME_D_E_A_L = "DEAL"; @SerializedName(SERIALIZED_NAME_D_E_A_L) diff --git a/src/main/java/com/plaid/client/model/AssetReportGetRequest.java b/src/main/java/com/plaid/client/model/AssetReportGetRequest.java index 40244d467..4ce2ed8d9 100644 --- a/src/main/java/com/plaid/client/model/AssetReportGetRequest.java +++ b/src/main/java/com/plaid/client/model/AssetReportGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * AssetReportGetRequest defines the request schema for `/asset_report/get` */ @ApiModel(description = "AssetReportGetRequest defines the request schema for `/asset_report/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportGetRequestOptions.java b/src/main/java/com/plaid/client/model/AssetReportGetRequestOptions.java index 65054a09c..3cfeec562 100644 --- a/src/main/java/com/plaid/client/model/AssetReportGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/AssetReportGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An optional object to filter or add data to `/asset_report/get` results. If provided, must be non-`null`. */ @ApiModel(description = "An optional object to filter or add data to `/asset_report/get` results. If provided, must be non-`null`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportGetRequestOptions { public static final String SERIALIZED_NAME_DAYS_TO_INCLUDE = "days_to_include"; @SerializedName(SERIALIZED_NAME_DAYS_TO_INCLUDE) diff --git a/src/main/java/com/plaid/client/model/AssetReportGetResponse.java b/src/main/java/com/plaid/client/model/AssetReportGetResponse.java index ae48956f6..72650b434 100644 --- a/src/main/java/com/plaid/client/model/AssetReportGetResponse.java +++ b/src/main/java/com/plaid/client/model/AssetReportGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * AssetReportGetResponse defines the response schema for `/asset_report/get` */ @ApiModel(description = "AssetReportGetResponse defines the response schema for `/asset_report/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportGetResponse { public static final String SERIALIZED_NAME_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) diff --git a/src/main/java/com/plaid/client/model/AssetReportInvestmentHolding.java b/src/main/java/com/plaid/client/model/AssetReportInvestmentHolding.java index 518eaaaac..554b633bb 100644 --- a/src/main/java/com/plaid/client/model/AssetReportInvestmentHolding.java +++ b/src/main/java/com/plaid/client/model/AssetReportInvestmentHolding.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A securities holding at an institution. */ @ApiModel(description = "A securities holding at an institution.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportInvestmentHolding { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportInvestmentSecurity.java b/src/main/java/com/plaid/client/model/AssetReportInvestmentSecurity.java index 60e1fea93..7c3c6b2d6 100644 --- a/src/main/java/com/plaid/client/model/AssetReportInvestmentSecurity.java +++ b/src/main/java/com/plaid/client/model/AssetReportInvestmentSecurity.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Investment security associated with the account. */ @ApiModel(description = "Investment security associated with the account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportInvestmentSecurity { public static final String SERIALIZED_NAME_SECURITY_ID = "security_id"; @SerializedName(SERIALIZED_NAME_SECURITY_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportInvestmentTransaction.java b/src/main/java/com/plaid/client/model/AssetReportInvestmentTransaction.java index 534d3018d..6c7f3565b 100644 --- a/src/main/java/com/plaid/client/model/AssetReportInvestmentTransaction.java +++ b/src/main/java/com/plaid/client/model/AssetReportInvestmentTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A transaction within an investment account. */ @ApiModel(description = "A transaction within an investment account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportInvestmentTransaction { public static final String SERIALIZED_NAME_INVESTMENT_TRANSACTION_ID = "investment_transaction_id"; @SerializedName(SERIALIZED_NAME_INVESTMENT_TRANSACTION_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportInvestments.java b/src/main/java/com/plaid/client/model/AssetReportInvestments.java index 66ca5d2b3..7a2e6be93 100644 --- a/src/main/java/com/plaid/client/model/AssetReportInvestments.java +++ b/src/main/java/com/plaid/client/model/AssetReportInvestments.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * A set of fields describing the investments data on an account. */ @ApiModel(description = "A set of fields describing the investments data on an account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportInvestments { public static final String SERIALIZED_NAME_HOLDINGS = "holdings"; @SerializedName(SERIALIZED_NAME_HOLDINGS) diff --git a/src/main/java/com/plaid/client/model/AssetReportItem.java b/src/main/java/com/plaid/client/model/AssetReportItem.java index d73d36ccf..c00aa37c7 100644 --- a/src/main/java/com/plaid/client/model/AssetReportItem.java +++ b/src/main/java/com/plaid/client/model/AssetReportItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * A representation of an Item within an Asset Report. */ @ApiModel(description = "A representation of an Item within an Asset Report.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportItem { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportPDFGetRequest.java b/src/main/java/com/plaid/client/model/AssetReportPDFGetRequest.java index 82862ece3..6af2e7040 100644 --- a/src/main/java/com/plaid/client/model/AssetReportPDFGetRequest.java +++ b/src/main/java/com/plaid/client/model/AssetReportPDFGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * AssetReportPDFGetRequest defines the request schema for `/asset_report/pdf/get` */ @ApiModel(description = "AssetReportPDFGetRequest defines the request schema for `/asset_report/pdf/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportPDFGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportPDFGetRequestOptions.java b/src/main/java/com/plaid/client/model/AssetReportPDFGetRequestOptions.java index 457822c55..eccb2c4eb 100644 --- a/src/main/java/com/plaid/client/model/AssetReportPDFGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/AssetReportPDFGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An optional object to filter or add data to `/asset_report/get` results. If provided, must be non-`null`. */ @ApiModel(description = "An optional object to filter or add data to `/asset_report/get` results. If provided, must be non-`null`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportPDFGetRequestOptions { public static final String SERIALIZED_NAME_DAYS_TO_INCLUDE = "days_to_include"; @SerializedName(SERIALIZED_NAME_DAYS_TO_INCLUDE) diff --git a/src/main/java/com/plaid/client/model/AssetReportRefreshRequest.java b/src/main/java/com/plaid/client/model/AssetReportRefreshRequest.java index 1504edbd0..2261f3e38 100644 --- a/src/main/java/com/plaid/client/model/AssetReportRefreshRequest.java +++ b/src/main/java/com/plaid/client/model/AssetReportRefreshRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * AssetReportRefreshRequest defines the request schema for `/asset_report/refresh` */ @ApiModel(description = "AssetReportRefreshRequest defines the request schema for `/asset_report/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportRefreshRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportRefreshRequestOptions.java b/src/main/java/com/plaid/client/model/AssetReportRefreshRequestOptions.java index d534cbe5c..a90c13ac3 100644 --- a/src/main/java/com/plaid/client/model/AssetReportRefreshRequestOptions.java +++ b/src/main/java/com/plaid/client/model/AssetReportRefreshRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An optional object to filter `/asset_report/refresh` results. If provided, cannot be `null`. If not specified, the `options` from the original call to `/asset_report/create` will be used. */ @ApiModel(description = "An optional object to filter `/asset_report/refresh` results. If provided, cannot be `null`. If not specified, the `options` from the original call to `/asset_report/create` will be used.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportRefreshRequestOptions { public static final String SERIALIZED_NAME_CLIENT_REPORT_ID = "client_report_id"; @SerializedName(SERIALIZED_NAME_CLIENT_REPORT_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportRefreshResponse.java b/src/main/java/com/plaid/client/model/AssetReportRefreshResponse.java index 7b2a4619e..428f673ce 100644 --- a/src/main/java/com/plaid/client/model/AssetReportRefreshResponse.java +++ b/src/main/java/com/plaid/client/model/AssetReportRefreshResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * AssetReportRefreshResponse defines the response schema for `/asset_report/refresh` */ @ApiModel(description = "AssetReportRefreshResponse defines the response schema for `/asset_report/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportRefreshResponse { public static final String SERIALIZED_NAME_ASSET_REPORT_ID = "asset_report_id"; @SerializedName(SERIALIZED_NAME_ASSET_REPORT_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportRemoveRequest.java b/src/main/java/com/plaid/client/model/AssetReportRemoveRequest.java index 48836393b..8f87bf1e4 100644 --- a/src/main/java/com/plaid/client/model/AssetReportRemoveRequest.java +++ b/src/main/java/com/plaid/client/model/AssetReportRemoveRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * AssetReportRemoveRequest defines the request schema for `/asset_report/remove` */ @ApiModel(description = "AssetReportRemoveRequest defines the request schema for `/asset_report/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportRemoveRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportRemoveResponse.java b/src/main/java/com/plaid/client/model/AssetReportRemoveResponse.java index 63bbccc5f..1d49a53c4 100644 --- a/src/main/java/com/plaid/client/model/AssetReportRemoveResponse.java +++ b/src/main/java/com/plaid/client/model/AssetReportRemoveResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * AssetReportRemoveResponse defines the response schema for `/asset_report/remove` */ @ApiModel(description = "AssetReportRemoveResponse defines the response schema for `/asset_report/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportRemoveResponse { public static final String SERIALIZED_NAME_REMOVED = "removed"; @SerializedName(SERIALIZED_NAME_REMOVED) diff --git a/src/main/java/com/plaid/client/model/AssetReportTransaction.java b/src/main/java/com/plaid/client/model/AssetReportTransaction.java index 91ba94037..ed8fbbf40 100644 --- a/src/main/java/com/plaid/client/model/AssetReportTransaction.java +++ b/src/main/java/com/plaid/client/model/AssetReportTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * A transaction on the asset report */ @ApiModel(description = "A transaction on the asset report") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportTransaction { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/AssetReportTransactionType.java b/src/main/java/com/plaid/client/model/AssetReportTransactionType.java index 35c9556ad..5530d6b55 100644 --- a/src/main/java/com/plaid/client/model/AssetReportTransactionType.java +++ b/src/main/java/com/plaid/client/model/AssetReportTransactionType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/AssetReportType.java b/src/main/java/com/plaid/client/model/AssetReportType.java index 76219430f..47fe8e313 100644 --- a/src/main/java/com/plaid/client/model/AssetReportType.java +++ b/src/main/java/com/plaid/client/model/AssetReportType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/AssetReportUser.java b/src/main/java/com/plaid/client/model/AssetReportUser.java index 51f577d9c..e597dea3a 100644 --- a/src/main/java/com/plaid/client/model/AssetReportUser.java +++ b/src/main/java/com/plaid/client/model/AssetReportUser.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The user object allows you to provide additional information about the user to be appended to the Asset Report. All fields are optional. The `first_name`, `last_name`, and `ssn` fields are required if you would like the Report to be eligible for Fannie Mae’s Day 1 Certainty™ program. */ @ApiModel(description = "The user object allows you to provide additional information about the user to be appended to the Asset Report. All fields are optional. The `first_name`, `last_name`, and `ssn` fields are required if you would like the Report to be eligible for Fannie Mae’s Day 1 Certainty™ program.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetReportUser { public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id"; @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) diff --git a/src/main/java/com/plaid/client/model/AssetTransaction.java b/src/main/java/com/plaid/client/model/AssetTransaction.java index 0023f4c1d..d2cf1f8db 100644 --- a/src/main/java/com/plaid/client/model/AssetTransaction.java +++ b/src/main/java/com/plaid/client/model/AssetTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * An object representing... */ @ApiModel(description = "An object representing...") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetTransaction { public static final String SERIALIZED_NAME_A_S_S_E_T_T_R_A_N_S_A_C_T_I_O_N_D_E_T_A_I_L = "ASSET_TRANSACTION_DETAIL"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_T_R_A_N_S_A_C_T_I_O_N_D_E_T_A_I_L) diff --git a/src/main/java/com/plaid/client/model/AssetTransactionCategoryType.java b/src/main/java/com/plaid/client/model/AssetTransactionCategoryType.java index d391a3df0..ed1bb8a27 100644 --- a/src/main/java/com/plaid/client/model/AssetTransactionCategoryType.java +++ b/src/main/java/com/plaid/client/model/AssetTransactionCategoryType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/AssetTransactionDescription.java b/src/main/java/com/plaid/client/model/AssetTransactionDescription.java index fe6346205..3252a33b5 100644 --- a/src/main/java/com/plaid/client/model/AssetTransactionDescription.java +++ b/src/main/java/com/plaid/client/model/AssetTransactionDescription.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetTransactionDescription { public static final String SERIALIZED_NAME_ASSET_TRANSACTION_DESCRIPTION = "AssetTransactionDescription"; @SerializedName(SERIALIZED_NAME_ASSET_TRANSACTION_DESCRIPTION) diff --git a/src/main/java/com/plaid/client/model/AssetTransactionDetail.java b/src/main/java/com/plaid/client/model/AssetTransactionDetail.java index 72f9894fb..9b6208458 100644 --- a/src/main/java/com/plaid/client/model/AssetTransactionDetail.java +++ b/src/main/java/com/plaid/client/model/AssetTransactionDetail.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetTransactionDetail { public static final String SERIALIZED_NAME_ASSET_TRANSACTION_UNIQUE_IDENTIFIER = "AssetTransactionUniqueIdentifier"; @SerializedName(SERIALIZED_NAME_ASSET_TRANSACTION_UNIQUE_IDENTIFIER) diff --git a/src/main/java/com/plaid/client/model/AssetTransactionType.java b/src/main/java/com/plaid/client/model/AssetTransactionType.java index d82bff3d3..3d5a82e15 100644 --- a/src/main/java/com/plaid/client/model/AssetTransactionType.java +++ b/src/main/java/com/plaid/client/model/AssetTransactionType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/AssetTransactions.java b/src/main/java/com/plaid/client/model/AssetTransactions.java index 2de2f4679..009089f31 100644 --- a/src/main/java/com/plaid/client/model/AssetTransactions.java +++ b/src/main/java/com/plaid/client/model/AssetTransactions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetTransactions { public static final String SERIALIZED_NAME_A_S_S_E_T_T_R_A_N_S_A_C_T_I_O_N = "ASSET_TRANSACTION"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_T_R_A_N_S_A_C_T_I_O_N) diff --git a/src/main/java/com/plaid/client/model/AssetType.java b/src/main/java/com/plaid/client/model/AssetType.java index 85b145f35..574120413 100644 --- a/src/main/java/com/plaid/client/model/AssetType.java +++ b/src/main/java/com/plaid/client/model/AssetType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/Assets.java b/src/main/java/com/plaid/client/model/Assets.java index ac1d35642..f425a9e26 100644 --- a/src/main/java/com/plaid/client/model/Assets.java +++ b/src/main/java/com/plaid/client/model/Assets.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Assets { public static final String SERIALIZED_NAME_A_S_S_E_T = "ASSET"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T) diff --git a/src/main/java/com/plaid/client/model/AssetsErrorWebhook.java b/src/main/java/com/plaid/client/model/AssetsErrorWebhook.java index 59a28f088..a69e3322b 100644 --- a/src/main/java/com/plaid/client/model/AssetsErrorWebhook.java +++ b/src/main/java/com/plaid/client/model/AssetsErrorWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Fired when Asset Report generation has failed. The resulting `error` will have an `error_type` of `ASSET_REPORT_ERROR`. */ @ApiModel(description = "Fired when Asset Report generation has failed. The resulting `error` will have an `error_type` of `ASSET_REPORT_ERROR`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetsErrorWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/AssetsProductReadyWebhook.java b/src/main/java/com/plaid/client/model/AssetsProductReadyWebhook.java index d51bc1813..36feb2a78 100644 --- a/src/main/java/com/plaid/client/model/AssetsProductReadyWebhook.java +++ b/src/main/java/com/plaid/client/model/AssetsProductReadyWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * 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`. */ @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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AssetsProductReadyWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/AuthDefaultUpdateWebhook.java b/src/main/java/com/plaid/client/model/AuthDefaultUpdateWebhook.java index c908cc7be..87e8a96ea 100644 --- a/src/main/java/com/plaid/client/model/AuthDefaultUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/AuthDefaultUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * Plaid will trigger a `DEFAULT_UPDATE` webhook for Items that undergo a change in Auth data. This is generally caused by data partners notifying Plaid of a change in their account numbering system or to their routing numbers. To avoid returned transactions, customers that receive a `DEFAULT_UPDATE` webhook with the `account_ids_with_updated_auth` object populated should immediately discontinue all usages of existing Auth data for those accounts and call `/auth/get` or `/processor/auth/get` to obtain updated account and routing numbers. */ @ApiModel(description = "Plaid will trigger a `DEFAULT_UPDATE` webhook for Items that undergo a change in Auth data. This is generally caused by data partners notifying Plaid of a change in their account numbering system or to their routing numbers. To avoid returned transactions, customers that receive a `DEFAULT_UPDATE` webhook with the `account_ids_with_updated_auth` object populated should immediately discontinue all usages of existing Auth data for those accounts and call `/auth/get` or `/processor/auth/get` to obtain updated account and routing numbers.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AuthDefaultUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/AuthGetNumbers.java b/src/main/java/com/plaid/client/model/AuthGetNumbers.java index 51ed83eb4..3100fb90f 100644 --- a/src/main/java/com/plaid/client/model/AuthGetNumbers.java +++ b/src/main/java/com/plaid/client/model/AuthGetNumbers.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * An object containing identifying numbers used for making electronic transfers to and from the `accounts`. The identifying number type (ACH, EFT, IBAN, or BACS) used will depend on the country of the account. An account may have more than one number type. If a particular identifying number type is not used by any `accounts` for which data has been requested, the array for that type will be empty. */ @ApiModel(description = "An object containing identifying numbers used for making electronic transfers to and from the `accounts`. The identifying number type (ACH, EFT, IBAN, or BACS) used will depend on the country of the account. An account may have more than one number type. If a particular identifying number type is not used by any `accounts` for which data has been requested, the array for that type will be empty.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AuthGetNumbers { public static final String SERIALIZED_NAME_ACH = "ach"; @SerializedName(SERIALIZED_NAME_ACH) diff --git a/src/main/java/com/plaid/client/model/AuthGetRequest.java b/src/main/java/com/plaid/client/model/AuthGetRequest.java index 7c342bc33..867ca78ed 100644 --- a/src/main/java/com/plaid/client/model/AuthGetRequest.java +++ b/src/main/java/com/plaid/client/model/AuthGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * AuthGetRequest defines the request schema for `/auth/get` */ @ApiModel(description = "AuthGetRequest defines the request schema for `/auth/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AuthGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/AuthGetRequestOptions.java b/src/main/java/com/plaid/client/model/AuthGetRequestOptions.java index 409841276..9d4629f07 100644 --- a/src/main/java/com/plaid/client/model/AuthGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/AuthGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An optional object to filter `/auth/get` results. */ @ApiModel(description = "An optional object to filter `/auth/get` results.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AuthGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) diff --git a/src/main/java/com/plaid/client/model/AuthGetResponse.java b/src/main/java/com/plaid/client/model/AuthGetResponse.java index 79fde5bcb..257e85a99 100644 --- a/src/main/java/com/plaid/client/model/AuthGetResponse.java +++ b/src/main/java/com/plaid/client/model/AuthGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * AuthGetResponse defines the response schema for `/auth/get` */ @ApiModel(description = "AuthGetResponse defines the response schema for `/auth/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AuthGetResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) diff --git a/src/main/java/com/plaid/client/model/AuthMetadata.java b/src/main/java/com/plaid/client/model/AuthMetadata.java index 47c41faab..895cd13b1 100644 --- a/src/main/java/com/plaid/client/model/AuthMetadata.java +++ b/src/main/java/com/plaid/client/model/AuthMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AuthMetadata { public static final String SERIALIZED_NAME_SUPPORTED_METHODS = "supported_methods"; @SerializedName(SERIALIZED_NAME_SUPPORTED_METHODS) diff --git a/src/main/java/com/plaid/client/model/AuthSupportedMethods.java b/src/main/java/com/plaid/client/model/AuthSupportedMethods.java index cb9a9d999..6f508280f 100644 --- a/src/main/java/com/plaid/client/model/AuthSupportedMethods.java +++ b/src/main/java/com/plaid/client/model/AuthSupportedMethods.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Metadata specifically related to which auth methods an institution supports. */ @ApiModel(description = "Metadata specifically related to which auth methods an institution supports.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AuthSupportedMethods { public static final String SERIALIZED_NAME_INSTANT_AUTH = "instant_auth"; @SerializedName(SERIALIZED_NAME_INSTANT_AUTH) diff --git a/src/main/java/com/plaid/client/model/AuthUpdateTypes.java b/src/main/java/com/plaid/client/model/AuthUpdateTypes.java index d094a1bdb..80757716d 100644 --- a/src/main/java/com/plaid/client/model/AuthUpdateTypes.java +++ b/src/main/java/com/plaid/client/model/AuthUpdateTypes.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/AuthVerifyNumbersACH.java b/src/main/java/com/plaid/client/model/AuthVerifyNumbersACH.java index 42b456ae0..b73354550 100644 --- a/src/main/java/com/plaid/client/model/AuthVerifyNumbersACH.java +++ b/src/main/java/com/plaid/client/model/AuthVerifyNumbersACH.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ACH numbers for verification via Database Auth */ @ApiModel(description = "ACH numbers for verification via Database Auth") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AuthVerifyNumbersACH { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) diff --git a/src/main/java/com/plaid/client/model/AuthVerifyRequest.java b/src/main/java/com/plaid/client/model/AuthVerifyRequest.java index dd874ccf4..b99cfa2be 100644 --- a/src/main/java/com/plaid/client/model/AuthVerifyRequest.java +++ b/src/main/java/com/plaid/client/model/AuthVerifyRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * AuthVerifyRequest defines the request schema for `/auth/verify` */ @ApiModel(description = "AuthVerifyRequest defines the request schema for `/auth/verify`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AuthVerifyRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/AuthVerifyRequestNumbers.java b/src/main/java/com/plaid/client/model/AuthVerifyRequestNumbers.java index 0d2cc58a3..8d75c0ea8 100644 --- a/src/main/java/com/plaid/client/model/AuthVerifyRequestNumbers.java +++ b/src/main/java/com/plaid/client/model/AuthVerifyRequestNumbers.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object containing identifying account numbers for verification via Database Auth */ @ApiModel(description = "An object containing identifying account numbers for verification via Database Auth") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AuthVerifyRequestNumbers { public static final String SERIALIZED_NAME_ACH = "ach"; @SerializedName(SERIALIZED_NAME_ACH) diff --git a/src/main/java/com/plaid/client/model/AuthVerifyResponse.java b/src/main/java/com/plaid/client/model/AuthVerifyResponse.java index b0af9bb70..fd348e253 100644 --- a/src/main/java/com/plaid/client/model/AuthVerifyResponse.java +++ b/src/main/java/com/plaid/client/model/AuthVerifyResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * AuthVerifyResponse defines the response schema for `/auth/verify` */ @ApiModel(description = "AuthVerifyResponse defines the response schema for `/auth/verify`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AuthVerifyResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/AutomaticallyVerifiedWebhook.java b/src/main/java/com/plaid/client/model/AutomaticallyVerifiedWebhook.java index 82a4bf2ec..540400be1 100644 --- a/src/main/java/com/plaid/client/model/AutomaticallyVerifiedWebhook.java +++ b/src/main/java/com/plaid/client/model/AutomaticallyVerifiedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Fired when an Item is verified via automated micro-deposits. We recommend communicating to your users when this event is received to notify them that their account is verified and ready for use. */ @ApiModel(description = "Fired when an Item is verified via automated micro-deposits. We recommend communicating to your users when this event is received to notify them that their account is verified and ready for use.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class AutomaticallyVerifiedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/BankIncomeCompleteResult.java b/src/main/java/com/plaid/client/model/BankIncomeCompleteResult.java index 18d0d3ff6..96830c154 100644 --- a/src/main/java/com/plaid/client/model/BankIncomeCompleteResult.java +++ b/src/main/java/com/plaid/client/model/BankIncomeCompleteResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BankIncomeCompleteWebhook.java b/src/main/java/com/plaid/client/model/BankIncomeCompleteWebhook.java index 462852976..20fa47310 100644 --- a/src/main/java/com/plaid/client/model/BankIncomeCompleteWebhook.java +++ b/src/main/java/com/plaid/client/model/BankIncomeCompleteWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Fired when a bank income report has finished generating or failed to generate, triggered by calling `/credit/bank_income/get` in CRA enabled client. */ @ApiModel(description = "Fired when a bank income report has finished generating or failed to generate, triggered by calling `/credit/bank_income/get` in CRA enabled client.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankIncomeCompleteWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/BankIncomeRefreshCompleteResult.java b/src/main/java/com/plaid/client/model/BankIncomeRefreshCompleteResult.java index 9a75be778..d2e22a572 100644 --- a/src/main/java/com/plaid/client/model/BankIncomeRefreshCompleteResult.java +++ b/src/main/java/com/plaid/client/model/BankIncomeRefreshCompleteResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BankIncomeRefreshCompleteWebhook.java b/src/main/java/com/plaid/client/model/BankIncomeRefreshCompleteWebhook.java index 68ac3af09..bfe35b16d 100644 --- a/src/main/java/com/plaid/client/model/BankIncomeRefreshCompleteWebhook.java +++ b/src/main/java/com/plaid/client/model/BankIncomeRefreshCompleteWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * 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). */ @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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankIncomeRefreshCompleteWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/BankIncomeRefreshUpdateWebhook.java b/src/main/java/com/plaid/client/model/BankIncomeRefreshUpdateWebhook.java index 909983864..83f932b3d 100644 --- a/src/main/java/com/plaid/client/model/BankIncomeRefreshUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/BankIncomeRefreshUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when a change to the user's income is detected. You should call `/credit/bank_income/refresh` to get updated income data for the user. To receive this webhook, subscribe in the [Dashboard](https://dashboard.plaid.com/developers/webhooks). */ @ApiModel(description = "Fired when a change to the user's income is detected. You should call `/credit/bank_income/refresh` to get updated income data for the user. To receive this webhook, subscribe in the [Dashboard](https://dashboard.plaid.com/developers/webhooks).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankIncomeRefreshUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/BankInitiatedReturnRisk.java b/src/main/java/com/plaid/client/model/BankInitiatedReturnRisk.java index 17d4f4bf1..fe486440a 100644 --- a/src/main/java/com/plaid/client/model/BankInitiatedReturnRisk.java +++ b/src/main/java/com/plaid/client/model/BankInitiatedReturnRisk.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The object contains a risk score and a risk tier that evaluate the transaction return risk because an account is overdrawn or because an ineligible account is used. Common return codes in this category include: \"R01\", \"R02\", \"R03\", \"R04\", \"R06\", \"R08\", \"R09\", \"R13\", \"R16\", \"R17\", \"R20\", \"R23\". These returns have a turnaround time of 2 banking days. */ @ApiModel(description = "The object contains a risk score and a risk tier that evaluate the transaction return risk because an account is overdrawn or because an ineligible account is used. Common return codes in this category include: \"R01\", \"R02\", \"R03\", \"R04\", \"R06\", \"R08\", \"R09\", \"R13\", \"R16\", \"R17\", \"R20\", \"R23\". These returns have a turnaround time of 2 banking days.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankInitiatedReturnRisk { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) diff --git a/src/main/java/com/plaid/client/model/BankPenaltiesIndicators.java b/src/main/java/com/plaid/client/model/BankPenaltiesIndicators.java index 750cd0d23..d292df091 100644 --- a/src/main/java/com/plaid/client/model/BankPenaltiesIndicators.java +++ b/src/main/java/com/plaid/client/model/BankPenaltiesIndicators.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Insights into bank penalties and fees, including overdraft fees, NSF fees, and other bank-imposed charges. */ @ApiModel(description = "Insights into bank penalties and fees, including overdraft fees, NSF fees, and other bank-imposed charges.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankPenaltiesIndicators { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/BankTransfer.java b/src/main/java/com/plaid/client/model/BankTransfer.java index eeed8638b..fee134434 100644 --- a/src/main/java/com/plaid/client/model/BankTransfer.java +++ b/src/main/java/com/plaid/client/model/BankTransfer.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -39,7 +39,7 @@ * Represents a bank transfer within the Bank Transfers API. */ @ApiModel(description = "Represents a bank transfer within the Bank Transfers API.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransfer { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/BankTransferBalance.java b/src/main/java/com/plaid/client/model/BankTransferBalance.java index 30129be36..b35d5669c 100644 --- a/src/main/java/com/plaid/client/model/BankTransferBalance.java +++ b/src/main/java/com/plaid/client/model/BankTransferBalance.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Information about the balance of a bank transfer */ @ApiModel(description = "Information about the balance of a bank transfer") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferBalance { public static final String SERIALIZED_NAME_AVAILABLE = "available"; @SerializedName(SERIALIZED_NAME_AVAILABLE) diff --git a/src/main/java/com/plaid/client/model/BankTransferBalanceGetRequest.java b/src/main/java/com/plaid/client/model/BankTransferBalanceGetRequest.java index 733e35003..85d7a8f9e 100644 --- a/src/main/java/com/plaid/client/model/BankTransferBalanceGetRequest.java +++ b/src/main/java/com/plaid/client/model/BankTransferBalanceGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/bank_transfer/balance/get` */ @ApiModel(description = "Defines the request schema for `/bank_transfer/balance/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferBalanceGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BankTransferBalanceGetResponse.java b/src/main/java/com/plaid/client/model/BankTransferBalanceGetResponse.java index c9e7ef80e..beeaf6299 100644 --- a/src/main/java/com/plaid/client/model/BankTransferBalanceGetResponse.java +++ b/src/main/java/com/plaid/client/model/BankTransferBalanceGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/bank_transfer/balance/get` */ @ApiModel(description = "Defines the response schema for `/bank_transfer/balance/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferBalanceGetResponse { public static final String SERIALIZED_NAME_BALANCE = "balance"; @SerializedName(SERIALIZED_NAME_BALANCE) diff --git a/src/main/java/com/plaid/client/model/BankTransferCancelRequest.java b/src/main/java/com/plaid/client/model/BankTransferCancelRequest.java index d2e5d436d..7c21d3aa7 100644 --- a/src/main/java/com/plaid/client/model/BankTransferCancelRequest.java +++ b/src/main/java/com/plaid/client/model/BankTransferCancelRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/bank_transfer/cancel` */ @ApiModel(description = "Defines the request schema for `/bank_transfer/cancel`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferCancelRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BankTransferCancelResponse.java b/src/main/java/com/plaid/client/model/BankTransferCancelResponse.java index b3a1d4064..00dc3748e 100644 --- a/src/main/java/com/plaid/client/model/BankTransferCancelResponse.java +++ b/src/main/java/com/plaid/client/model/BankTransferCancelResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/bank_transfer/cancel` */ @ApiModel(description = "Defines the response schema for `/bank_transfer/cancel`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferCancelResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/BankTransferCreateRequest.java b/src/main/java/com/plaid/client/model/BankTransferCreateRequest.java index ac328c6de..2590c9a08 100644 --- a/src/main/java/com/plaid/client/model/BankTransferCreateRequest.java +++ b/src/main/java/com/plaid/client/model/BankTransferCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * Defines the request schema for `/bank_transfer/create` */ @ApiModel(description = "Defines the request schema for `/bank_transfer/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BankTransferCreateResponse.java b/src/main/java/com/plaid/client/model/BankTransferCreateResponse.java index 59e842440..836a58186 100644 --- a/src/main/java/com/plaid/client/model/BankTransferCreateResponse.java +++ b/src/main/java/com/plaid/client/model/BankTransferCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/bank_transfer/create` */ @ApiModel(description = "Defines the response schema for `/bank_transfer/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferCreateResponse { public static final String SERIALIZED_NAME_BANK_TRANSFER = "bank_transfer"; @SerializedName(SERIALIZED_NAME_BANK_TRANSFER) diff --git a/src/main/java/com/plaid/client/model/BankTransferDirection.java b/src/main/java/com/plaid/client/model/BankTransferDirection.java index 7b8081dce..7cbebddcd 100644 --- a/src/main/java/com/plaid/client/model/BankTransferDirection.java +++ b/src/main/java/com/plaid/client/model/BankTransferDirection.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BankTransferEvent.java b/src/main/java/com/plaid/client/model/BankTransferEvent.java index 9b236c65a..491abad83 100644 --- a/src/main/java/com/plaid/client/model/BankTransferEvent.java +++ b/src/main/java/com/plaid/client/model/BankTransferEvent.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Represents an event in the Bank Transfers API. */ @ApiModel(description = "Represents an event in the Bank Transfers API.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferEvent { public static final String SERIALIZED_NAME_EVENT_ID = "event_id"; @SerializedName(SERIALIZED_NAME_EVENT_ID) diff --git a/src/main/java/com/plaid/client/model/BankTransferEventListBankTransferType.java b/src/main/java/com/plaid/client/model/BankTransferEventListBankTransferType.java index 9433933d0..ec4ae5b00 100644 --- a/src/main/java/com/plaid/client/model/BankTransferEventListBankTransferType.java +++ b/src/main/java/com/plaid/client/model/BankTransferEventListBankTransferType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BankTransferEventListDirection.java b/src/main/java/com/plaid/client/model/BankTransferEventListDirection.java index 19d4c6ec7..4fe10f9f6 100644 --- a/src/main/java/com/plaid/client/model/BankTransferEventListDirection.java +++ b/src/main/java/com/plaid/client/model/BankTransferEventListDirection.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BankTransferEventListRequest.java b/src/main/java/com/plaid/client/model/BankTransferEventListRequest.java index 2cfab7063..591cdd74e 100644 --- a/src/main/java/com/plaid/client/model/BankTransferEventListRequest.java +++ b/src/main/java/com/plaid/client/model/BankTransferEventListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * Defines the request schema for `/bank_transfer/event/list` */ @ApiModel(description = "Defines the request schema for `/bank_transfer/event/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferEventListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BankTransferEventListResponse.java b/src/main/java/com/plaid/client/model/BankTransferEventListResponse.java index b747d1694..d792f3b5c 100644 --- a/src/main/java/com/plaid/client/model/BankTransferEventListResponse.java +++ b/src/main/java/com/plaid/client/model/BankTransferEventListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Defines the response schema for `/bank_transfer/event/list` */ @ApiModel(description = "Defines the response schema for `/bank_transfer/event/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferEventListResponse { public static final String SERIALIZED_NAME_BANK_TRANSFER_EVENTS = "bank_transfer_events"; @SerializedName(SERIALIZED_NAME_BANK_TRANSFER_EVENTS) diff --git a/src/main/java/com/plaid/client/model/BankTransferEventSyncRequest.java b/src/main/java/com/plaid/client/model/BankTransferEventSyncRequest.java index 4f6492681..c21a26d86 100644 --- a/src/main/java/com/plaid/client/model/BankTransferEventSyncRequest.java +++ b/src/main/java/com/plaid/client/model/BankTransferEventSyncRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/bank_transfer/event/sync` */ @ApiModel(description = "Defines the request schema for `/bank_transfer/event/sync`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferEventSyncRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BankTransferEventSyncResponse.java b/src/main/java/com/plaid/client/model/BankTransferEventSyncResponse.java index b8c213f14..e2d699908 100644 --- a/src/main/java/com/plaid/client/model/BankTransferEventSyncResponse.java +++ b/src/main/java/com/plaid/client/model/BankTransferEventSyncResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Defines the response schema for `/bank_transfer/event/sync` */ @ApiModel(description = "Defines the response schema for `/bank_transfer/event/sync`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferEventSyncResponse { public static final String SERIALIZED_NAME_BANK_TRANSFER_EVENTS = "bank_transfer_events"; @SerializedName(SERIALIZED_NAME_BANK_TRANSFER_EVENTS) diff --git a/src/main/java/com/plaid/client/model/BankTransferEventType.java b/src/main/java/com/plaid/client/model/BankTransferEventType.java index f6b980cd2..ec897405e 100644 --- a/src/main/java/com/plaid/client/model/BankTransferEventType.java +++ b/src/main/java/com/plaid/client/model/BankTransferEventType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BankTransferFailure.java b/src/main/java/com/plaid/client/model/BankTransferFailure.java index 7be7ac7b1..1b45a2950 100644 --- a/src/main/java/com/plaid/client/model/BankTransferFailure.java +++ b/src/main/java/com/plaid/client/model/BankTransferFailure.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The failure reason if the type of this transfer is `\"failed\"` or `\"reversed\"`. Null value otherwise. */ @ApiModel(description = "The failure reason if the type of this transfer is `\"failed\"` or `\"reversed\"`. Null value otherwise.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferFailure { public static final String SERIALIZED_NAME_ACH_RETURN_CODE = "ach_return_code"; @SerializedName(SERIALIZED_NAME_ACH_RETURN_CODE) diff --git a/src/main/java/com/plaid/client/model/BankTransferGetRequest.java b/src/main/java/com/plaid/client/model/BankTransferGetRequest.java index ef12bf212..b644434e1 100644 --- a/src/main/java/com/plaid/client/model/BankTransferGetRequest.java +++ b/src/main/java/com/plaid/client/model/BankTransferGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/bank_transfer/get` */ @ApiModel(description = "Defines the request schema for `/bank_transfer/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BankTransferGetResponse.java b/src/main/java/com/plaid/client/model/BankTransferGetResponse.java index 8f804101e..87c2059de 100644 --- a/src/main/java/com/plaid/client/model/BankTransferGetResponse.java +++ b/src/main/java/com/plaid/client/model/BankTransferGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/bank_transfer/get` */ @ApiModel(description = "Defines the response schema for `/bank_transfer/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferGetResponse { public static final String SERIALIZED_NAME_BANK_TRANSFER = "bank_transfer"; @SerializedName(SERIALIZED_NAME_BANK_TRANSFER) diff --git a/src/main/java/com/plaid/client/model/BankTransferListRequest.java b/src/main/java/com/plaid/client/model/BankTransferListRequest.java index 1cb6c7a3b..2e85e920e 100644 --- a/src/main/java/com/plaid/client/model/BankTransferListRequest.java +++ b/src/main/java/com/plaid/client/model/BankTransferListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Defines the request schema for `/bank_transfer/list` */ @ApiModel(description = "Defines the request schema for `/bank_transfer/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BankTransferListResponse.java b/src/main/java/com/plaid/client/model/BankTransferListResponse.java index c2e1937fa..60ee6fee4 100644 --- a/src/main/java/com/plaid/client/model/BankTransferListResponse.java +++ b/src/main/java/com/plaid/client/model/BankTransferListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Defines the response schema for `/bank_transfer/list` */ @ApiModel(description = "Defines the response schema for `/bank_transfer/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferListResponse { public static final String SERIALIZED_NAME_BANK_TRANSFERS = "bank_transfers"; @SerializedName(SERIALIZED_NAME_BANK_TRANSFERS) diff --git a/src/main/java/com/plaid/client/model/BankTransferMigrateAccountRequest.java b/src/main/java/com/plaid/client/model/BankTransferMigrateAccountRequest.java index bfd003738..cca5d5496 100644 --- a/src/main/java/com/plaid/client/model/BankTransferMigrateAccountRequest.java +++ b/src/main/java/com/plaid/client/model/BankTransferMigrateAccountRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/bank_transfer/migrate_account` */ @ApiModel(description = "Defines the request schema for `/bank_transfer/migrate_account`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferMigrateAccountRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BankTransferMigrateAccountResponse.java b/src/main/java/com/plaid/client/model/BankTransferMigrateAccountResponse.java index 970761f28..b1a0f0cff 100644 --- a/src/main/java/com/plaid/client/model/BankTransferMigrateAccountResponse.java +++ b/src/main/java/com/plaid/client/model/BankTransferMigrateAccountResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/bank_transfer/migrate_account` */ @ApiModel(description = "Defines the response schema for `/bank_transfer/migrate_account`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferMigrateAccountResponse { public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) diff --git a/src/main/java/com/plaid/client/model/BankTransferNetwork.java b/src/main/java/com/plaid/client/model/BankTransferNetwork.java index bae74e211..845db0a3b 100644 --- a/src/main/java/com/plaid/client/model/BankTransferNetwork.java +++ b/src/main/java/com/plaid/client/model/BankTransferNetwork.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BankTransferStatus.java b/src/main/java/com/plaid/client/model/BankTransferStatus.java index 3c9630477..af062aed0 100644 --- a/src/main/java/com/plaid/client/model/BankTransferStatus.java +++ b/src/main/java/com/plaid/client/model/BankTransferStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BankTransferSweep.java b/src/main/java/com/plaid/client/model/BankTransferSweep.java index e4afca75e..8fcb69e35 100644 --- a/src/main/java/com/plaid/client/model/BankTransferSweep.java +++ b/src/main/java/com/plaid/client/model/BankTransferSweep.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * BankTransferSweep describes a sweep transfer. */ @ApiModel(description = "BankTransferSweep describes a sweep transfer.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferSweep { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/BankTransferSweepGetRequest.java b/src/main/java/com/plaid/client/model/BankTransferSweepGetRequest.java index dffd08b04..a37738d60 100644 --- a/src/main/java/com/plaid/client/model/BankTransferSweepGetRequest.java +++ b/src/main/java/com/plaid/client/model/BankTransferSweepGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/bank_transfer/sweep/get` */ @ApiModel(description = "Defines the request schema for `/bank_transfer/sweep/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferSweepGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BankTransferSweepGetResponse.java b/src/main/java/com/plaid/client/model/BankTransferSweepGetResponse.java index daa490dc3..55b2733d9 100644 --- a/src/main/java/com/plaid/client/model/BankTransferSweepGetResponse.java +++ b/src/main/java/com/plaid/client/model/BankTransferSweepGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * BankTransferSweepGetResponse defines the response schema for `/bank_transfer/sweep/get` */ @ApiModel(description = "BankTransferSweepGetResponse defines the response schema for `/bank_transfer/sweep/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferSweepGetResponse { public static final String SERIALIZED_NAME_SWEEP = "sweep"; @SerializedName(SERIALIZED_NAME_SWEEP) diff --git a/src/main/java/com/plaid/client/model/BankTransferSweepListRequest.java b/src/main/java/com/plaid/client/model/BankTransferSweepListRequest.java index 50d380d63..fa904ab26 100644 --- a/src/main/java/com/plaid/client/model/BankTransferSweepListRequest.java +++ b/src/main/java/com/plaid/client/model/BankTransferSweepListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * BankTransferSweepListRequest defines the request schema for `/bank_transfer/sweep/list` */ @ApiModel(description = "BankTransferSweepListRequest defines the request schema for `/bank_transfer/sweep/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferSweepListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BankTransferSweepListResponse.java b/src/main/java/com/plaid/client/model/BankTransferSweepListResponse.java index 0c1579b19..f5bb1cd9b 100644 --- a/src/main/java/com/plaid/client/model/BankTransferSweepListResponse.java +++ b/src/main/java/com/plaid/client/model/BankTransferSweepListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * BankTransferSweepListResponse defines the response schema for `/bank_transfer/sweep/list` */ @ApiModel(description = "BankTransferSweepListResponse defines the response schema for `/bank_transfer/sweep/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferSweepListResponse { public static final String SERIALIZED_NAME_SWEEPS = "sweeps"; @SerializedName(SERIALIZED_NAME_SWEEPS) diff --git a/src/main/java/com/plaid/client/model/BankTransferType.java b/src/main/java/com/plaid/client/model/BankTransferType.java index 08fd0cc17..953defa5e 100644 --- a/src/main/java/com/plaid/client/model/BankTransferType.java +++ b/src/main/java/com/plaid/client/model/BankTransferType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BankTransferUser.java b/src/main/java/com/plaid/client/model/BankTransferUser.java index f937afdfc..87b44caff 100644 --- a/src/main/java/com/plaid/client/model/BankTransferUser.java +++ b/src/main/java/com/plaid/client/model/BankTransferUser.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The legal name and other information for the account holder. */ @ApiModel(description = "The legal name and other information for the account holder.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransferUser { public static final String SERIALIZED_NAME_LEGAL_NAME = "legal_name"; @SerializedName(SERIALIZED_NAME_LEGAL_NAME) diff --git a/src/main/java/com/plaid/client/model/BankTransfersEventsUpdateWebhook.java b/src/main/java/com/plaid/client/model/BankTransfersEventsUpdateWebhook.java index 4f83ceb4d..40abfba0f 100644 --- a/src/main/java/com/plaid/client/model/BankTransfersEventsUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/BankTransfersEventsUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when new bank transfer events are available. Receiving this webhook indicates you should fetch the new events from `/bank_transfer/event/sync`. */ @ApiModel(description = "Fired when new bank transfer events are available. Receiving this webhook indicates you should fetch the new events from `/bank_transfer/event/sync`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransfersEventsUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/BankTransfersEventsUpdateWebhookForAuth.java b/src/main/java/com/plaid/client/model/BankTransfersEventsUpdateWebhookForAuth.java index 953885389..d436725d1 100644 --- a/src/main/java/com/plaid/client/model/BankTransfersEventsUpdateWebhookForAuth.java +++ b/src/main/java/com/plaid/client/model/BankTransfersEventsUpdateWebhookForAuth.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when new ACH events are available. To begin receiving this webhook, you must first register your webhook listener endpoint via the [webhooks page in the Dashboard](https://dashboard.plaid.com/team/webhooks). The `BANK_TRANSFERS_EVENTS_UPDATE` webhook can be used to track the progress of ACH transfers used in [micro-deposit verification](https:///docs/auth/coverage/microdeposit-events/). Receiving this webhook indicates you should fetch the new events from `/bank_transfer/event/sync`. Note that [Transfer](https://plaid.com/docs/transfer) customers should use Transfer webhooks instead of using `BANK_TRANSFERS_EVENTS_UPDATE`; see [micro-deposit events documentation](https://plaid.com/docs/auth/coverage/microdeposit-events/) for more details. */ @ApiModel(description = "Fired when new ACH events are available. To begin receiving this webhook, you must first register your webhook listener endpoint via the [webhooks page in the Dashboard](https://dashboard.plaid.com/team/webhooks). The `BANK_TRANSFERS_EVENTS_UPDATE` webhook can be used to track the progress of ACH transfers used in [micro-deposit verification](https:///docs/auth/coverage/microdeposit-events/). Receiving this webhook indicates you should fetch the new events from `/bank_transfer/event/sync`. Note that [Transfer](https://plaid.com/docs/transfer) customers should use Transfer webhooks instead of using `BANK_TRANSFERS_EVENTS_UPDATE`; see [micro-deposit events documentation](https://plaid.com/docs/auth/coverage/microdeposit-events/) for more details.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BankTransfersEventsUpdateWebhookForAuth { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/BaseReport.java b/src/main/java/com/plaid/client/model/BaseReport.java index 050f2e2a3..adaa130b6 100644 --- a/src/main/java/com/plaid/client/model/BaseReport.java +++ b/src/main/java/com/plaid/client/model/BaseReport.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * An object representing a Base Report */ @ApiModel(description = "An object representing a Base Report") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReport { public static final String SERIALIZED_NAME_REPORT_ID = "report_id"; @SerializedName(SERIALIZED_NAME_REPORT_ID) diff --git a/src/main/java/com/plaid/client/model/BaseReportAccount.java b/src/main/java/com/plaid/client/model/BaseReportAccount.java index eb3a61e0c..456dc4ffa 100644 --- a/src/main/java/com/plaid/client/model/BaseReportAccount.java +++ b/src/main/java/com/plaid/client/model/BaseReportAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -42,7 +42,7 @@ * Base Report information about an account */ @ApiModel(description = "Base Report information about an account") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportAccount { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/BaseReportAccountBalances.java b/src/main/java/com/plaid/client/model/BaseReportAccountBalances.java index e6b16437d..a6e85db8e 100644 --- a/src/main/java/com/plaid/client/model/BaseReportAccountBalances.java +++ b/src/main/java/com/plaid/client/model/BaseReportAccountBalances.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Information about an account's balances. */ @ApiModel(description = "Information about an account's balances.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportAccountBalances { public static final String SERIALIZED_NAME_AVAILABLE = "available"; @SerializedName(SERIALIZED_NAME_AVAILABLE) diff --git a/src/main/java/com/plaid/client/model/BaseReportAccountInsights.java b/src/main/java/com/plaid/client/model/BaseReportAccountInsights.java index 62fa6c694..b6735b4eb 100644 --- a/src/main/java/com/plaid/client/model/BaseReportAccountInsights.java +++ b/src/main/java/com/plaid/client/model/BaseReportAccountInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * Calculated insights derived from transaction-level data. This field has been deprecated in favor of [Base Report attributes aggregated across accounts](https://plaid.com/docs/api/products/check/#cra-check_report-base_report-get-response-report-attributes) and will be removed in a future release. */ @ApiModel(description = "Calculated insights derived from transaction-level data. This field has been deprecated in favor of [Base Report attributes aggregated across accounts](https://plaid.com/docs/api/products/check/#cra-check_report-base_report-get-response-report-attributes) and will be removed in a future release.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportAccountInsights { public static final String SERIALIZED_NAME_OLDEST_TRANSACTION_DATE = "oldest_transaction_date"; @SerializedName(SERIALIZED_NAME_OLDEST_TRANSACTION_DATE) diff --git a/src/main/java/com/plaid/client/model/BaseReportAccountMetadata.java b/src/main/java/com/plaid/client/model/BaseReportAccountMetadata.java index 6f2fb7658..a8d7530a5 100644 --- a/src/main/java/com/plaid/client/model/BaseReportAccountMetadata.java +++ b/src/main/java/com/plaid/client/model/BaseReportAccountMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Metadata about the extracted account. */ @ApiModel(description = "Metadata about the extracted account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportAccountMetadata { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) diff --git a/src/main/java/com/plaid/client/model/BaseReportAttributes.java b/src/main/java/com/plaid/client/model/BaseReportAttributes.java index aeb1173df..e69557d74 100644 --- a/src/main/java/com/plaid/client/model/BaseReportAttributes.java +++ b/src/main/java/com/plaid/client/model/BaseReportAttributes.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -37,7 +37,7 @@ * Calculated attributes derived from transaction-level data. */ @ApiModel(description = "Calculated attributes derived from transaction-level data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportAttributes { public static final String SERIALIZED_NAME_IS_PRIMARY_ACCOUNT = "is_primary_account"; @SerializedName(SERIALIZED_NAME_IS_PRIMARY_ACCOUNT) diff --git a/src/main/java/com/plaid/client/model/BaseReportAverageFlowInsights.java b/src/main/java/com/plaid/client/model/BaseReportAverageFlowInsights.java index 45884b74c..7bbdd9694 100644 --- a/src/main/java/com/plaid/client/model/BaseReportAverageFlowInsights.java +++ b/src/main/java/com/plaid/client/model/BaseReportAverageFlowInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Average dollar amount of credit or debit transactions out of the account. This field will only be included for depository accounts. */ @ApiModel(description = "Average dollar amount of credit or debit transactions out of the account. This field will only be included for depository accounts.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportAverageFlowInsights { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) diff --git a/src/main/java/com/plaid/client/model/BaseReportAverageMonthlyBalances.java b/src/main/java/com/plaid/client/model/BaseReportAverageMonthlyBalances.java index 113a03ebf..fc16e887b 100644 --- a/src/main/java/com/plaid/client/model/BaseReportAverageMonthlyBalances.java +++ b/src/main/java/com/plaid/client/model/BaseReportAverageMonthlyBalances.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportAverageMonthlyBalances { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) diff --git a/src/main/java/com/plaid/client/model/BaseReportHistoricalBalance.java b/src/main/java/com/plaid/client/model/BaseReportHistoricalBalance.java index 6a92ae7c4..d387a98b6 100644 --- a/src/main/java/com/plaid/client/model/BaseReportHistoricalBalance.java +++ b/src/main/java/com/plaid/client/model/BaseReportHistoricalBalance.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object representing a balance held by an account in the past */ @ApiModel(description = "An object representing a balance held by an account in the past") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportHistoricalBalance { public static final String SERIALIZED_NAME_DATE = "date"; @SerializedName(SERIALIZED_NAME_DATE) diff --git a/src/main/java/com/plaid/client/model/BaseReportInvestmentHolding.java b/src/main/java/com/plaid/client/model/BaseReportInvestmentHolding.java index 5f9ba1e94..d4b26271a 100644 --- a/src/main/java/com/plaid/client/model/BaseReportInvestmentHolding.java +++ b/src/main/java/com/plaid/client/model/BaseReportInvestmentHolding.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A securities holding at an institution. */ @ApiModel(description = "A securities holding at an institution.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportInvestmentHolding { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/BaseReportInvestmentSecurity.java b/src/main/java/com/plaid/client/model/BaseReportInvestmentSecurity.java index f9e80a13f..e78909a39 100644 --- a/src/main/java/com/plaid/client/model/BaseReportInvestmentSecurity.java +++ b/src/main/java/com/plaid/client/model/BaseReportInvestmentSecurity.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Investment security associated with the account. */ @ApiModel(description = "Investment security associated with the account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportInvestmentSecurity { public static final String SERIALIZED_NAME_SECURITY_ID = "security_id"; @SerializedName(SERIALIZED_NAME_SECURITY_ID) diff --git a/src/main/java/com/plaid/client/model/BaseReportInvestmentTransaction.java b/src/main/java/com/plaid/client/model/BaseReportInvestmentTransaction.java index 32afe45b4..2ed159968 100644 --- a/src/main/java/com/plaid/client/model/BaseReportInvestmentTransaction.java +++ b/src/main/java/com/plaid/client/model/BaseReportInvestmentTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A transaction within an investment account. */ @ApiModel(description = "A transaction within an investment account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportInvestmentTransaction { public static final String SERIALIZED_NAME_INVESTMENT_TRANSACTION_ID = "investment_transaction_id"; @SerializedName(SERIALIZED_NAME_INVESTMENT_TRANSACTION_ID) diff --git a/src/main/java/com/plaid/client/model/BaseReportInvestments.java b/src/main/java/com/plaid/client/model/BaseReportInvestments.java index 61e5076db..1c922fd72 100644 --- a/src/main/java/com/plaid/client/model/BaseReportInvestments.java +++ b/src/main/java/com/plaid/client/model/BaseReportInvestments.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * A set of fields describing the investments data on an account. */ @ApiModel(description = "A set of fields describing the investments data on an account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportInvestments { public static final String SERIALIZED_NAME_HOLDINGS = "holdings"; @SerializedName(SERIALIZED_NAME_HOLDINGS) diff --git a/src/main/java/com/plaid/client/model/BaseReportItem.java b/src/main/java/com/plaid/client/model/BaseReportItem.java index 9bf17f7c1..dd2f4aea2 100644 --- a/src/main/java/com/plaid/client/model/BaseReportItem.java +++ b/src/main/java/com/plaid/client/model/BaseReportItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * A representation of an Item within a Base Report. */ @ApiModel(description = "A representation of an Item within a Base Report.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportItem { public static final String SERIALIZED_NAME_INSTITUTION_NAME = "institution_name"; @SerializedName(SERIALIZED_NAME_INSTITUTION_NAME) diff --git a/src/main/java/com/plaid/client/model/BaseReportLongestGapInsights.java b/src/main/java/com/plaid/client/model/BaseReportLongestGapInsights.java index 97695b147..327182c16 100644 --- a/src/main/java/com/plaid/client/model/BaseReportLongestGapInsights.java +++ b/src/main/java/com/plaid/client/model/BaseReportLongestGapInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Largest number of days between sequential transactions per calendar month */ @ApiModel(description = "Largest number of days between sequential transactions per calendar month") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportLongestGapInsights { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) diff --git a/src/main/java/com/plaid/client/model/BaseReportNumberFlowInsights.java b/src/main/java/com/plaid/client/model/BaseReportNumberFlowInsights.java index dd51dfb8c..908afa2ec 100644 --- a/src/main/java/com/plaid/client/model/BaseReportNumberFlowInsights.java +++ b/src/main/java/com/plaid/client/model/BaseReportNumberFlowInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The number of credits or debits out of the account. This field will only be included for depository accounts. */ @ApiModel(description = "The number of credits or debits out of the account. This field will only be included for depository accounts.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportNumberFlowInsights { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) diff --git a/src/main/java/com/plaid/client/model/BaseReportTransaction.java b/src/main/java/com/plaid/client/model/BaseReportTransaction.java index f4a78d934..a0a88d531 100644 --- a/src/main/java/com/plaid/client/model/BaseReportTransaction.java +++ b/src/main/java/com/plaid/client/model/BaseReportTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -23,6 +23,7 @@ import com.plaid.client.model.BaseReportTransactionType; import com.plaid.client.model.CreditCategory; import com.plaid.client.model.Location; +import com.plaid.client.model.PersonalFinanceCategory; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; @@ -34,7 +35,7 @@ * A transaction on the Base Report */ @ApiModel(description = "A transaction on the Base Report") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportTransaction { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) @@ -108,6 +109,10 @@ public class BaseReportTransaction { @SerializedName(SERIALIZED_NAME_CATEGORY_ID) private String categoryId; + public static final String SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY = "personal_finance_category"; + @SerializedName(SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY) + private PersonalFinanceCategory personalFinanceCategory; + public BaseReportTransaction accountId(String accountId) { @@ -526,6 +531,29 @@ public void setCategoryId(String categoryId) { } + public BaseReportTransaction personalFinanceCategory(PersonalFinanceCategory personalFinanceCategory) { + + this.personalFinanceCategory = personalFinanceCategory; + return this; + } + + /** + * Get personalFinanceCategory + * @return personalFinanceCategory + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public PersonalFinanceCategory getPersonalFinanceCategory() { + return personalFinanceCategory; + } + + + public void setPersonalFinanceCategory(PersonalFinanceCategory personalFinanceCategory) { + this.personalFinanceCategory = personalFinanceCategory; + } + + @Override public boolean equals(Object o) { if (this == o) { @@ -552,12 +580,13 @@ public boolean equals(Object o) { Objects.equals(this.transactionId, baseReportTransaction.transactionId) && Objects.equals(this.transactionType, baseReportTransaction.transactionType) && Objects.equals(this.category, baseReportTransaction.category) && - Objects.equals(this.categoryId, baseReportTransaction.categoryId); + Objects.equals(this.categoryId, baseReportTransaction.categoryId) && + Objects.equals(this.personalFinanceCategory, baseReportTransaction.personalFinanceCategory); } @Override public int hashCode() { - return Objects.hash(accountId, amount, isoCurrencyCode, unofficialCurrencyCode, name, originalDescription, creditCategory, checkNumber, date, dateTransacted, location, merchantName, pending, accountOwner, transactionId, transactionType, category, categoryId); + return Objects.hash(accountId, amount, isoCurrencyCode, unofficialCurrencyCode, name, originalDescription, creditCategory, checkNumber, date, dateTransacted, location, merchantName, pending, accountOwner, transactionId, transactionType, category, categoryId, personalFinanceCategory); } @Override @@ -582,6 +611,7 @@ public String toString() { sb.append(" transactionType: ").append(toIndentedString(transactionType)).append("\n"); sb.append(" category: ").append(toIndentedString(category)).append("\n"); sb.append(" categoryId: ").append(toIndentedString(categoryId)).append("\n"); + sb.append(" personalFinanceCategory: ").append(toIndentedString(personalFinanceCategory)).append("\n"); sb.append("}"); return sb.toString(); } diff --git a/src/main/java/com/plaid/client/model/BaseReportTransactionType.java b/src/main/java/com/plaid/client/model/BaseReportTransactionType.java index 14ab85ad7..6fdbb106c 100644 --- a/src/main/java/com/plaid/client/model/BaseReportTransactionType.java +++ b/src/main/java/com/plaid/client/model/BaseReportTransactionType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BaseReportUserAttributes.java b/src/main/java/com/plaid/client/model/BaseReportUserAttributes.java index 4a701c56f..7925cac09 100644 --- a/src/main/java/com/plaid/client/model/BaseReportUserAttributes.java +++ b/src/main/java/com/plaid/client/model/BaseReportUserAttributes.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -36,7 +36,7 @@ * Calculated attributes derived from transaction-level data, aggregated across accounts. */ @ApiModel(description = "Calculated attributes derived from transaction-level data, aggregated across accounts.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportUserAttributes { public static final String SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT = "nsf_overdraft_transactions_count"; @SerializedName(SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT) diff --git a/src/main/java/com/plaid/client/model/BaseReportWarning.java b/src/main/java/com/plaid/client/model/BaseReportWarning.java index f0ea109bc..9e46db6fc 100644 --- a/src/main/java/com/plaid/client/model/BaseReportWarning.java +++ b/src/main/java/com/plaid/client/model/BaseReportWarning.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * It is possible for a Base Report to be returned with missing account owner information. In such cases, the Base Report will contain warning data in the response, indicating why obtaining the owner information failed. */ @ApiModel(description = "It is possible for a Base Report to be returned with missing account owner information. In such cases, the Base Report will contain warning data in the response, indicating why obtaining the owner information failed.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportWarning { public static final String SERIALIZED_NAME_WARNING_TYPE = "warning_type"; @SerializedName(SERIALIZED_NAME_WARNING_TYPE) diff --git a/src/main/java/com/plaid/client/model/BaseReportWarningCode.java b/src/main/java/com/plaid/client/model/BaseReportWarningCode.java index 256abd0e2..f5e104099 100644 --- a/src/main/java/com/plaid/client/model/BaseReportWarningCode.java +++ b/src/main/java/com/plaid/client/model/BaseReportWarningCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BaseReportsErrorWebhook.java b/src/main/java/com/plaid/client/model/BaseReportsErrorWebhook.java index 0b5bd1a7a..9ee126b26 100644 --- a/src/main/java/com/plaid/client/model/BaseReportsErrorWebhook.java +++ b/src/main/java/com/plaid/client/model/BaseReportsErrorWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Fired when Base Report generation has failed. The resulting `error` will have an `error_type` of `BASE_REPORT_ERROR`. */ @ApiModel(description = "Fired when Base Report generation has failed. The resulting `error` will have an `error_type` of `BASE_REPORT_ERROR`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BaseReportsErrorWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/BeaconAccountRiskAttributes.java b/src/main/java/com/plaid/client/model/BeaconAccountRiskAttributes.java index ad98a8d36..f0672c0ef 100644 --- a/src/main/java/com/plaid/client/model/BeaconAccountRiskAttributes.java +++ b/src/main/java/com/plaid/client/model/BeaconAccountRiskAttributes.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The attributes object contains data that can be used to assess account risk. Examples of data include: `days_since_first_plaid_connection`: The number of days since the first time the Item was connected to an application via Plaid `plaid_connections_count_7d`: The number of times the Item has been connected to applications via Plaid over the past 7 days `plaid_connections_count_30d`: The number of times the Item has been connected to applications via Plaid over the past 30 days `total_plaid_connections_count`: The number of times the Item has been connected to applications via Plaid For the full list and detailed documentation of core attributes available, or to request that core attributes not be returned, contact Sales or your Plaid account manager */ @ApiModel(description = "The attributes object contains data that can be used to assess account risk. Examples of data include: `days_since_first_plaid_connection`: The number of days since the first time the Item was connected to an application via Plaid `plaid_connections_count_7d`: The number of times the Item has been connected to applications via Plaid over the past 7 days `plaid_connections_count_30d`: The number of times the Item has been connected to applications via Plaid over the past 30 days `total_plaid_connections_count`: The number of times the Item has been connected to applications via Plaid For the full list and detailed documentation of core attributes available, or to request that core attributes not be returned, contact Sales or your Plaid account manager") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconAccountRiskAttributes { public static final String SERIALIZED_NAME_DAYS_SINCE_FIRST_PLAID_CONNECTION = "days_since_first_plaid_connection"; @SerializedName(SERIALIZED_NAME_DAYS_SINCE_FIRST_PLAID_CONNECTION) diff --git a/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateAccount.java b/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateAccount.java index 5076bc161..2e8b1c50e 100644 --- a/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateAccount.java +++ b/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * An account in the `/beacon/account_risk/v1/evaluate` response. */ @ApiModel(description = "An account in the `/beacon/account_risk/v1/evaluate` response.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconAccountRiskEvaluateAccount { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateAccountAttributes.java b/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateAccountAttributes.java index 9b4fb49c2..f894e6535 100644 --- a/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateAccountAttributes.java +++ b/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateAccountAttributes.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The attributes object contains data that can be used to assess account risk. Examples of data include: `days_since_first_plaid_connection`: The number of days since the first time the Item was connected to an application via Plaid `plaid_connections_count_7d`: The number of times the Item has been connected to applications via Plaid over the past 7 days `plaid_connections_count_30d`: The number of times the Item has been connected to applications via Plaid over the past 30 days `total_plaid_connections_count`: The number of times the Item has been connected to applications via Plaid For the full list and detailed documentation of core attributes available, or to request that core attributes not be returned, contact Sales or your Plaid account manager */ @ApiModel(description = "The attributes object contains data that can be used to assess account risk. Examples of data include: `days_since_first_plaid_connection`: The number of days since the first time the Item was connected to an application via Plaid `plaid_connections_count_7d`: The number of times the Item has been connected to applications via Plaid over the past 7 days `plaid_connections_count_30d`: The number of times the Item has been connected to applications via Plaid over the past 30 days `total_plaid_connections_count`: The number of times the Item has been connected to applications via Plaid For the full list and detailed documentation of core attributes available, or to request that core attributes not be returned, contact Sales or your Plaid account manager") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconAccountRiskEvaluateAccountAttributes { public static final String SERIALIZED_NAME_DAYS_SINCE_FIRST_PLAID_CONNECTION = "days_since_first_plaid_connection"; @SerializedName(SERIALIZED_NAME_DAYS_SINCE_FIRST_PLAID_CONNECTION) diff --git a/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateEvaluationReason.java b/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateEvaluationReason.java index 400fe3c09..590ae2750 100644 --- a/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateEvaluationReason.java +++ b/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateEvaluationReason.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateRequest.java b/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateRequest.java index 8a123eaeb..19ed6bdf0 100644 --- a/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateRequest.java +++ b/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * BeaconAccountRiskEvaluateRequest defines the request schema for `/v1/beacon/account_risk/risk/evaluate` */ @ApiModel(description = "BeaconAccountRiskEvaluateRequest defines the request schema for `/v1/beacon/account_risk/risk/evaluate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconAccountRiskEvaluateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateRequestOptions.java b/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateRequestOptions.java index 70bf395c7..777138d93 100644 --- a/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateRequestOptions.java +++ b/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An optional object to filter `/beacon/account_risk/v1/evaluate` results to a subset of the accounts on the linked Item. */ @ApiModel(description = "An optional object to filter `/beacon/account_risk/v1/evaluate` results to a subset of the accounts on the linked Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconAccountRiskEvaluateRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) diff --git a/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateResponse.java b/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateResponse.java index e829c7a90..5dc5a3720 100644 --- a/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateResponse.java +++ b/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * BeaconAccountRiskEvaluateResponse defines the response schema for `/beacon/account_risk/v1/evaluate` */ @ApiModel(description = "BeaconAccountRiskEvaluateResponse defines the response schema for `/beacon/account_risk/v1/evaluate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconAccountRiskEvaluateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconAuditTrail.java b/src/main/java/com/plaid/client/model/BeaconAuditTrail.java index 8c0c22198..909a79334 100644 --- a/src/main/java/com/plaid/client/model/BeaconAuditTrail.java +++ b/src/main/java/com/plaid/client/model/BeaconAuditTrail.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Information about the last change made to the parent object specifying what caused the change as well as when it occurred. */ @ApiModel(description = "Information about the last change made to the parent object specifying what caused the change as well as when it occurred.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconAuditTrail { public static final String SERIALIZED_NAME_SOURCE = "source"; @SerializedName(SERIALIZED_NAME_SOURCE) diff --git a/src/main/java/com/plaid/client/model/BeaconAuditTrailSource.java b/src/main/java/com/plaid/client/model/BeaconAuditTrailSource.java index 7600a3fb5..5e6f3f637 100644 --- a/src/main/java/com/plaid/client/model/BeaconAuditTrailSource.java +++ b/src/main/java/com/plaid/client/model/BeaconAuditTrailSource.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BeaconBankAccountInsights.java b/src/main/java/com/plaid/client/model/BeaconBankAccountInsights.java index dbaf688aa..b7d7131b0 100644 --- a/src/main/java/com/plaid/client/model/BeaconBankAccountInsights.java +++ b/src/main/java/com/plaid/client/model/BeaconBankAccountInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Bank Account Insights encapsulate the risk insights for a single Bank Account linked to an Item that is assocaited with a Beacon User. */ @ApiModel(description = "Bank Account Insights encapsulate the risk insights for a single Bank Account linked to an Item that is assocaited with a Beacon User.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconBankAccountInsights { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconBankAccounts.java b/src/main/java/com/plaid/client/model/BeaconBankAccounts.java index b8dbb1b86..54e57d8f2 100644 --- a/src/main/java/com/plaid/client/model/BeaconBankAccounts.java +++ b/src/main/java/com/plaid/client/model/BeaconBankAccounts.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A collection of Bank Accounts linked to an Item that is associated with this Beacon User. */ @ApiModel(description = "A collection of Bank Accounts linked to an Item that is associated with this Beacon User.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconBankAccounts { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconDuplicateDetectedWebhook.java b/src/main/java/com/plaid/client/model/BeaconDuplicateDetectedWebhook.java index 2d0aa0be9..9f03f1b20 100644 --- a/src/main/java/com/plaid/client/model/BeaconDuplicateDetectedWebhook.java +++ b/src/main/java/com/plaid/client/model/BeaconDuplicateDetectedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when a Beacon User created within your organization matches one of your existing users. */ @ApiModel(description = "Fired when a Beacon User created within your organization matches one of your existing users.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconDuplicateDetectedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/BeaconDuplicateGetRequest.java b/src/main/java/com/plaid/client/model/BeaconDuplicateGetRequest.java index ad9a43068..4d5eabd8e 100644 --- a/src/main/java/com/plaid/client/model/BeaconDuplicateGetRequest.java +++ b/src/main/java/com/plaid/client/model/BeaconDuplicateGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for getting a Beacon Duplicate */ @ApiModel(description = "Request input for getting a Beacon Duplicate") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconDuplicateGetRequest { public static final String SERIALIZED_NAME_BEACON_DUPLICATE_ID = "beacon_duplicate_id"; @SerializedName(SERIALIZED_NAME_BEACON_DUPLICATE_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconDuplicateGetResponse.java b/src/main/java/com/plaid/client/model/BeaconDuplicateGetResponse.java index 434266e40..19fda5e9e 100644 --- a/src/main/java/com/plaid/client/model/BeaconDuplicateGetResponse.java +++ b/src/main/java/com/plaid/client/model/BeaconDuplicateGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * A Beacon Duplicate represents a pair of matching Beacon Users and an analysis of the fields they matched on. */ @ApiModel(description = "A Beacon Duplicate represents a pair of matching Beacon Users and an analysis of the fields they matched on.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconDuplicateGetResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconMatchSummaryAnalysis.java b/src/main/java/com/plaid/client/model/BeaconMatchSummaryAnalysis.java index aba26cfe2..e6498ab01 100644 --- a/src/main/java/com/plaid/client/model/BeaconMatchSummaryAnalysis.java +++ b/src/main/java/com/plaid/client/model/BeaconMatchSummaryAnalysis.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Analysis of which fields matched between one Beacon User and another. */ @ApiModel(description = "Analysis of which fields matched between one Beacon User and another.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconMatchSummaryAnalysis { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) diff --git a/src/main/java/com/plaid/client/model/BeaconMatchSummaryCode.java b/src/main/java/com/plaid/client/model/BeaconMatchSummaryCode.java index 7c08e61ff..17ec33588 100644 --- a/src/main/java/com/plaid/client/model/BeaconMatchSummaryCode.java +++ b/src/main/java/com/plaid/client/model/BeaconMatchSummaryCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BeaconReport.java b/src/main/java/com/plaid/client/model/BeaconReport.java index 3c34d62a4..415a4ef95 100644 --- a/src/main/java/com/plaid/client/model/BeaconReport.java +++ b/src/main/java/com/plaid/client/model/BeaconReport.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * A Beacon Report describes the type of fraud committed by a user as well as the date the fraud was committed and the total amount of money lost due to the fraud incident. This information is used to block similar fraud attempts on your platform as well as alert other companies who screen a user with matching identity information. Other companies will not receive any new identity information, just what matched, plus information such as industry, type of fraud, and date of fraud. You can manage your fraud reports by adding, deleting, or editing reports as you get additional information on fraudulent users. */ @ApiModel(description = "A Beacon Report describes the type of fraud committed by a user as well as the date the fraud was committed and the total amount of money lost due to the fraud incident. This information is used to block similar fraud attempts on your platform as well as alert other companies who screen a user with matching identity information. Other companies will not receive any new identity information, just what matched, plus information such as industry, type of fraud, and date of fraud. You can manage your fraud reports by adding, deleting, or editing reports as you get additional information on fraudulent users.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconReport { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconReportCreateRequest.java b/src/main/java/com/plaid/client/model/BeaconReportCreateRequest.java index b4922c2bc..c08bc1435 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportCreateRequest.java +++ b/src/main/java/com/plaid/client/model/BeaconReportCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Request input for creating a Beacon Report */ @ApiModel(description = "Request input for creating a Beacon Report") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconReportCreateRequest { public static final String SERIALIZED_NAME_BEACON_USER_ID = "beacon_user_id"; @SerializedName(SERIALIZED_NAME_BEACON_USER_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconReportCreateResponse.java b/src/main/java/com/plaid/client/model/BeaconReportCreateResponse.java index 4e0259245..264ed58c9 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportCreateResponse.java +++ b/src/main/java/com/plaid/client/model/BeaconReportCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * A Beacon Report describes the type of fraud committed by a user as well as the date the fraud was committed and the total amount of money lost due to the fraud incident. This information is used to block similar fraud attempts on your platform as well as alert other companies who screen a user with matching identity information. Other companies will not receive any new identity information, just what matched, plus information such as industry, type of fraud, and date of fraud. You can manage your fraud reports by adding, deleting, or editing reports as you get additional information on fraudulent users. */ @ApiModel(description = "A Beacon Report describes the type of fraud committed by a user as well as the date the fraud was committed and the total amount of money lost due to the fraud incident. This information is used to block similar fraud attempts on your platform as well as alert other companies who screen a user with matching identity information. Other companies will not receive any new identity information, just what matched, plus information such as industry, type of fraud, and date of fraud. You can manage your fraud reports by adding, deleting, or editing reports as you get additional information on fraudulent users.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconReportCreateResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconReportCreateType.java b/src/main/java/com/plaid/client/model/BeaconReportCreateType.java index fc8777a2e..72774ae27 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportCreateType.java +++ b/src/main/java/com/plaid/client/model/BeaconReportCreateType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BeaconReportCreatedWebhook.java b/src/main/java/com/plaid/client/model/BeaconReportCreatedWebhook.java index 01a00359a..2984a82b3 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportCreatedWebhook.java +++ b/src/main/java/com/plaid/client/model/BeaconReportCreatedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when one of your Beacon Users is first reported to the Beacon network. */ @ApiModel(description = "Fired when one of your Beacon Users is first reported to the Beacon network.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconReportCreatedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/BeaconReportGetRequest.java b/src/main/java/com/plaid/client/model/BeaconReportGetRequest.java index d5799a410..6734a4700 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportGetRequest.java +++ b/src/main/java/com/plaid/client/model/BeaconReportGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for getting a Beacon Report */ @ApiModel(description = "Request input for getting a Beacon Report") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconReportGetRequest { public static final String SERIALIZED_NAME_BEACON_REPORT_ID = "beacon_report_id"; @SerializedName(SERIALIZED_NAME_BEACON_REPORT_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconReportGetResponse.java b/src/main/java/com/plaid/client/model/BeaconReportGetResponse.java index 2496cb959..be2b1275d 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportGetResponse.java +++ b/src/main/java/com/plaid/client/model/BeaconReportGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * A Beacon Report describes the type of fraud committed by a user as well as the date the fraud was committed and the total amount of money lost due to the fraud incident. This information is used to block similar fraud attempts on your platform as well as alert other companies who screen a user with matching identity information. Other companies will not receive any new identity information, just what matched, plus information such as industry, type of fraud, and date of fraud. You can manage your fraud reports by adding, deleting, or editing reports as you get additional information on fraudulent users. */ @ApiModel(description = "A Beacon Report describes the type of fraud committed by a user as well as the date the fraud was committed and the total amount of money lost due to the fraud incident. This information is used to block similar fraud attempts on your platform as well as alert other companies who screen a user with matching identity information. Other companies will not receive any new identity information, just what matched, plus information such as industry, type of fraud, and date of fraud. You can manage your fraud reports by adding, deleting, or editing reports as you get additional information on fraudulent users.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconReportGetResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconReportListRequest.java b/src/main/java/com/plaid/client/model/BeaconReportListRequest.java index 28a76e498..65d53b724 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportListRequest.java +++ b/src/main/java/com/plaid/client/model/BeaconReportListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for listing Beacon Reports */ @ApiModel(description = "Request input for listing Beacon Reports") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconReportListRequest { public static final String SERIALIZED_NAME_BEACON_USER_ID = "beacon_user_id"; @SerializedName(SERIALIZED_NAME_BEACON_USER_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconReportListResponse.java b/src/main/java/com/plaid/client/model/BeaconReportListResponse.java index 4130ed117..400265f57 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportListResponse.java +++ b/src/main/java/com/plaid/client/model/BeaconReportListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The response schema for `/beacon/report/list` */ @ApiModel(description = "The response schema for `/beacon/report/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconReportListResponse { public static final String SERIALIZED_NAME_BEACON_REPORTS = "beacon_reports"; @SerializedName(SERIALIZED_NAME_BEACON_REPORTS) diff --git a/src/main/java/com/plaid/client/model/BeaconReportSyndication.java b/src/main/java/com/plaid/client/model/BeaconReportSyndication.java index a189407b6..a5b7a29e5 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportSyndication.java +++ b/src/main/java/com/plaid/client/model/BeaconReportSyndication.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * A Beacon Report Syndication represents a Beacon Report created either by your organization or another Beacon customer that matches a specific Beacon User you've created. The `analysis` field in the response indicates which fields matched between the originally reported Beacon User and the Beacon User that the report was syndicated to. The `report` field in the response contains a subset of information from the original report. */ @ApiModel(description = "A Beacon Report Syndication represents a Beacon Report created either by your organization or another Beacon customer that matches a specific Beacon User you've created. The `analysis` field in the response indicates which fields matched between the originally reported Beacon User and the Beacon User that the report was syndicated to. The `report` field in the response contains a subset of information from the original report.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconReportSyndication { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconReportSyndicationAnalysis.java b/src/main/java/com/plaid/client/model/BeaconReportSyndicationAnalysis.java index 7626b47a0..a398fde87 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportSyndicationAnalysis.java +++ b/src/main/java/com/plaid/client/model/BeaconReportSyndicationAnalysis.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconReportSyndicationAnalysis { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) diff --git a/src/main/java/com/plaid/client/model/BeaconReportSyndicationCreatedWebhook.java b/src/main/java/com/plaid/client/model/BeaconReportSyndicationCreatedWebhook.java index 61e5885ec..a3354fae0 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportSyndicationCreatedWebhook.java +++ b/src/main/java/com/plaid/client/model/BeaconReportSyndicationCreatedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when a report created on the Beacon Network matches with one of your Beacon Users. */ @ApiModel(description = "Fired when a report created on the Beacon Network matches with one of your Beacon Users.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconReportSyndicationCreatedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/BeaconReportSyndicationGetRequest.java b/src/main/java/com/plaid/client/model/BeaconReportSyndicationGetRequest.java index f44f1e2a0..629f7c764 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportSyndicationGetRequest.java +++ b/src/main/java/com/plaid/client/model/BeaconReportSyndicationGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for getting a Beacon Report Syndication */ @ApiModel(description = "Request input for getting a Beacon Report Syndication") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconReportSyndicationGetRequest { public static final String SERIALIZED_NAME_BEACON_REPORT_SYNDICATION_ID = "beacon_report_syndication_id"; @SerializedName(SERIALIZED_NAME_BEACON_REPORT_SYNDICATION_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconReportSyndicationGetResponse.java b/src/main/java/com/plaid/client/model/BeaconReportSyndicationGetResponse.java index 56b7bd682..3a0b60bbc 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportSyndicationGetResponse.java +++ b/src/main/java/com/plaid/client/model/BeaconReportSyndicationGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * A Beacon Report Syndication represents a Beacon Report created either by your organization or another Beacon customer that matches a specific Beacon User you've created. The `analysis` field in the response indicates which fields matched between the originally reported Beacon User and the Beacon User that the report was syndicated to. The `report` field in the response contains a subset of information from the original report. */ @ApiModel(description = "A Beacon Report Syndication represents a Beacon Report created either by your organization or another Beacon customer that matches a specific Beacon User you've created. The `analysis` field in the response indicates which fields matched between the originally reported Beacon User and the Beacon User that the report was syndicated to. The `report` field in the response contains a subset of information from the original report.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconReportSyndicationGetResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconReportSyndicationListRequest.java b/src/main/java/com/plaid/client/model/BeaconReportSyndicationListRequest.java index 5758dede8..fd4a9dc28 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportSyndicationListRequest.java +++ b/src/main/java/com/plaid/client/model/BeaconReportSyndicationListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for listing Beacon Report Syndications */ @ApiModel(description = "Request input for listing Beacon Report Syndications") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconReportSyndicationListRequest { public static final String SERIALIZED_NAME_BEACON_USER_ID = "beacon_user_id"; @SerializedName(SERIALIZED_NAME_BEACON_USER_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconReportSyndicationListResponse.java b/src/main/java/com/plaid/client/model/BeaconReportSyndicationListResponse.java index c533829b8..aadc73d51 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportSyndicationListResponse.java +++ b/src/main/java/com/plaid/client/model/BeaconReportSyndicationListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The response schema for `/beacon/report_syndication/list` */ @ApiModel(description = "The response schema for `/beacon/report_syndication/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconReportSyndicationListResponse { public static final String SERIALIZED_NAME_BEACON_REPORT_SYNDICATIONS = "beacon_report_syndications"; @SerializedName(SERIALIZED_NAME_BEACON_REPORT_SYNDICATIONS) diff --git a/src/main/java/com/plaid/client/model/BeaconReportSyndicationOriginalReport.java b/src/main/java/com/plaid/client/model/BeaconReportSyndicationOriginalReport.java index f51f296f3..219bef7a8 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportSyndicationOriginalReport.java +++ b/src/main/java/com/plaid/client/model/BeaconReportSyndicationOriginalReport.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * A subset of information from a Beacon Report that has been syndicated to a matching Beacon User in your program. The `id` field in the response is the ID of the original report that was syndicated. If the original report was created by your organization, the field will be filled with the ID of the report. Otherwise, the field will be `null` indicating that the original report was created by another Beacon customer. */ @ApiModel(description = "A subset of information from a Beacon Report that has been syndicated to a matching Beacon User in your program. The `id` field in the response is the ID of the original report that was syndicated. If the original report was created by your organization, the field will be filled with the ID of the report. Otherwise, the field will be `null` indicating that the original report was created by another Beacon customer.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconReportSyndicationOriginalReport { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconReportType.java b/src/main/java/com/plaid/client/model/BeaconReportType.java index 02273f19a..8a2958d78 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportType.java +++ b/src/main/java/com/plaid/client/model/BeaconReportType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BeaconReportUpdatedWebhook.java b/src/main/java/com/plaid/client/model/BeaconReportUpdatedWebhook.java index 7c14c6f94..84fb85d3a 100644 --- a/src/main/java/com/plaid/client/model/BeaconReportUpdatedWebhook.java +++ b/src/main/java/com/plaid/client/model/BeaconReportUpdatedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when one of your existing Beacon Reports has been modified or removed from the Beacon Network. */ @ApiModel(description = "Fired when one of your existing Beacon Reports has been modified or removed from the Beacon Network.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconReportUpdatedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/BeaconSyndicatedReportDepositoryAccountMatchAnalysis.java b/src/main/java/com/plaid/client/model/BeaconSyndicatedReportDepositoryAccountMatchAnalysis.java index 0fe0151cf..e5a385ab6 100644 --- a/src/main/java/com/plaid/client/model/BeaconSyndicatedReportDepositoryAccountMatchAnalysis.java +++ b/src/main/java/com/plaid/client/model/BeaconSyndicatedReportDepositoryAccountMatchAnalysis.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Analysis of whether this account matched between the originally reported Beacon User and the Beacon User that the report syndicated to. */ @ApiModel(description = "Analysis of whether this account matched between the originally reported Beacon User and the Beacon User that the report syndicated to.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconSyndicatedReportDepositoryAccountMatchAnalysis { public static final String SERIALIZED_NAME_ACCOUNT_MASK = "account_mask"; @SerializedName(SERIALIZED_NAME_ACCOUNT_MASK) diff --git a/src/main/java/com/plaid/client/model/BeaconUser.java b/src/main/java/com/plaid/client/model/BeaconUser.java index 85960d22f..fced7df15 100644 --- a/src/main/java/com/plaid/client/model/BeaconUser.java +++ b/src/main/java/com/plaid/client/model/BeaconUser.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * A Beacon User represents an end user that has been scanned against the Beacon Network. */ @ApiModel(description = "A Beacon User represents an end user that has been scanned against the Beacon Network.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUser { public static final String SERIALIZED_NAME_ITEM_IDS = "item_ids"; @SerializedName(SERIALIZED_NAME_ITEM_IDS) diff --git a/src/main/java/com/plaid/client/model/BeaconUserAccountInsightsGetRequest.java b/src/main/java/com/plaid/client/model/BeaconUserAccountInsightsGetRequest.java index 8d5975bc4..23c55d190 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserAccountInsightsGetRequest.java +++ b/src/main/java/com/plaid/client/model/BeaconUserAccountInsightsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for fetching the risk insights for a Beacon User's Bank Accounts */ @ApiModel(description = "Request input for fetching the risk insights for a Beacon User's Bank Accounts") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserAccountInsightsGetRequest { public static final String SERIALIZED_NAME_BEACON_USER_ID = "beacon_user_id"; @SerializedName(SERIALIZED_NAME_BEACON_USER_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconUserAccountInsightsGetResponse.java b/src/main/java/com/plaid/client/model/BeaconUserAccountInsightsGetResponse.java index 463706d08..afc0e8ce4 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserAccountInsightsGetResponse.java +++ b/src/main/java/com/plaid/client/model/BeaconUserAccountInsightsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The response schema for `/beacon/user/account/insights/get` */ @ApiModel(description = "The response schema for `/beacon/user/account/insights/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserAccountInsightsGetResponse { public static final String SERIALIZED_NAME_BEACON_USER_ID = "beacon_user_id"; @SerializedName(SERIALIZED_NAME_BEACON_USER_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconUserAddress.java b/src/main/java/com/plaid/client/model/BeaconUserAddress.java index 179d7b5ee..6ea37a4ec 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserAddress.java +++ b/src/main/java/com/plaid/client/model/BeaconUserAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Even if an address has been collected, some fields may be null depending on the region's addressing system. For example: Addresses from the United Kingdom will not include a region Addresses from Hong Kong will not include a postal code */ @ApiModel(description = "Even if an address has been collected, some fields may be null depending on the region's addressing system. For example: Addresses from the United Kingdom will not include a region Addresses from Hong Kong will not include a postal code") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserAddress { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) diff --git a/src/main/java/com/plaid/client/model/BeaconUserCreateRequest.java b/src/main/java/com/plaid/client/model/BeaconUserCreateRequest.java index 1ff6a9eae..55b784701 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserCreateRequest.java +++ b/src/main/java/com/plaid/client/model/BeaconUserCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Request input for creating a Beacon User. The primary use for this endpoint is to add a new end user to Beacon for fraud and duplicate scanning. Some fields are optional, but it is recommended to provide as much information as possible to improve the accuracy of the fraud and duplicate scanning. */ @ApiModel(description = "Request input for creating a Beacon User. The primary use for this endpoint is to add a new end user to Beacon for fraud and duplicate scanning. Some fields are optional, but it is recommended to provide as much information as possible to improve the accuracy of the fraud and duplicate scanning.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserCreateRequest { public static final String SERIALIZED_NAME_PROGRAM_ID = "program_id"; @SerializedName(SERIALIZED_NAME_PROGRAM_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconUserCreateResponse.java b/src/main/java/com/plaid/client/model/BeaconUserCreateResponse.java index bde8f95d7..2328391f1 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserCreateResponse.java +++ b/src/main/java/com/plaid/client/model/BeaconUserCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * A Beacon User represents an end user that has been scanned against the Beacon Network. */ @ApiModel(description = "A Beacon User represents an end user that has been scanned against the Beacon Network.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserCreateResponse { public static final String SERIALIZED_NAME_ITEM_IDS = "item_ids"; @SerializedName(SERIALIZED_NAME_ITEM_IDS) diff --git a/src/main/java/com/plaid/client/model/BeaconUserData.java b/src/main/java/com/plaid/client/model/BeaconUserData.java index c9dbb938d..d44ba2dea 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserData.java +++ b/src/main/java/com/plaid/client/model/BeaconUserData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * A Beacon User's data and resulting analysis when checked against duplicate records and the Beacon Fraud Network. */ @ApiModel(description = "A Beacon User's data and resulting analysis when checked against duplicate records and the Beacon Fraud Network.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserData { public static final String SERIALIZED_NAME_DATE_OF_BIRTH = "date_of_birth"; @SerializedName(SERIALIZED_NAME_DATE_OF_BIRTH) diff --git a/src/main/java/com/plaid/client/model/BeaconUserDepositoryAccount.java b/src/main/java/com/plaid/client/model/BeaconUserDepositoryAccount.java index d6b902a8c..13644baff 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserDepositoryAccount.java +++ b/src/main/java/com/plaid/client/model/BeaconUserDepositoryAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Depository account information for the associated user. */ @ApiModel(description = "Depository account information for the associated user.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserDepositoryAccount { public static final String SERIALIZED_NAME_ACCOUNT_MASK = "account_mask"; @SerializedName(SERIALIZED_NAME_ACCOUNT_MASK) diff --git a/src/main/java/com/plaid/client/model/BeaconUserGetRequest.java b/src/main/java/com/plaid/client/model/BeaconUserGetRequest.java index 3083c5b50..bca1616ea 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserGetRequest.java +++ b/src/main/java/com/plaid/client/model/BeaconUserGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for fetching a Beacon User */ @ApiModel(description = "Request input for fetching a Beacon User") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserGetRequest { public static final String SERIALIZED_NAME_BEACON_USER_ID = "beacon_user_id"; @SerializedName(SERIALIZED_NAME_BEACON_USER_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconUserGetResponse.java b/src/main/java/com/plaid/client/model/BeaconUserGetResponse.java index 77b0efa24..dff285277 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserGetResponse.java +++ b/src/main/java/com/plaid/client/model/BeaconUserGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * A Beacon User represents an end user that has been scanned against the Beacon Network. */ @ApiModel(description = "A Beacon User represents an end user that has been scanned against the Beacon Network.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserGetResponse { public static final String SERIALIZED_NAME_ITEM_IDS = "item_ids"; @SerializedName(SERIALIZED_NAME_ITEM_IDS) diff --git a/src/main/java/com/plaid/client/model/BeaconUserHistoryListRequest.java b/src/main/java/com/plaid/client/model/BeaconUserHistoryListRequest.java index 964868524..2ec64f4dc 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserHistoryListRequest.java +++ b/src/main/java/com/plaid/client/model/BeaconUserHistoryListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for listing the history of a Beacon User */ @ApiModel(description = "Request input for listing the history of a Beacon User") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserHistoryListRequest { public static final String SERIALIZED_NAME_BEACON_USER_ID = "beacon_user_id"; @SerializedName(SERIALIZED_NAME_BEACON_USER_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconUserHistoryListResponse.java b/src/main/java/com/plaid/client/model/BeaconUserHistoryListResponse.java index 173405a7b..a6e1e59fc 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserHistoryListResponse.java +++ b/src/main/java/com/plaid/client/model/BeaconUserHistoryListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The response schema for `/beacon/user/history/list` */ @ApiModel(description = "The response schema for `/beacon/user/history/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserHistoryListResponse { public static final String SERIALIZED_NAME_BEACON_USERS = "beacon_users"; @SerializedName(SERIALIZED_NAME_BEACON_USERS) diff --git a/src/main/java/com/plaid/client/model/BeaconUserIDNumber.java b/src/main/java/com/plaid/client/model/BeaconUserIDNumber.java index 994fe9062..48dc21d91 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserIDNumber.java +++ b/src/main/java/com/plaid/client/model/BeaconUserIDNumber.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The ID number associated with a Beacon User. */ @ApiModel(description = "The ID number associated with a Beacon User.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserIDNumber { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) diff --git a/src/main/java/com/plaid/client/model/BeaconUserName.java b/src/main/java/com/plaid/client/model/BeaconUserName.java index b3917971c..794e89c00 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserName.java +++ b/src/main/java/com/plaid/client/model/BeaconUserName.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The full name for a given Beacon User. */ @ApiModel(description = "The full name for a given Beacon User.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserName { public static final String SERIALIZED_NAME_GIVEN_NAME = "given_name"; @SerializedName(SERIALIZED_NAME_GIVEN_NAME) diff --git a/src/main/java/com/plaid/client/model/BeaconUserNameNullable.java b/src/main/java/com/plaid/client/model/BeaconUserNameNullable.java index 347ff3220..d4927548d 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserNameNullable.java +++ b/src/main/java/com/plaid/client/model/BeaconUserNameNullable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The full name for a given Beacon User. */ @ApiModel(description = "The full name for a given Beacon User.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserNameNullable { public static final String SERIALIZED_NAME_GIVEN_NAME = "given_name"; @SerializedName(SERIALIZED_NAME_GIVEN_NAME) diff --git a/src/main/java/com/plaid/client/model/BeaconUserRequestAddress.java b/src/main/java/com/plaid/client/model/BeaconUserRequestAddress.java index e04372832..4249efcbc 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserRequestAddress.java +++ b/src/main/java/com/plaid/client/model/BeaconUserRequestAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Home address for the associated user. For more context on this field, see [Input Validation by Country](https://plaid.com/docs/identity-verification/hybrid-input-validation/#input-validation-by-country). */ @ApiModel(description = "Home address for the associated user. For more context on this field, see [Input Validation by Country](https://plaid.com/docs/identity-verification/hybrid-input-validation/#input-validation-by-country).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserRequestAddress { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) diff --git a/src/main/java/com/plaid/client/model/BeaconUserRequestAddressNullable.java b/src/main/java/com/plaid/client/model/BeaconUserRequestAddressNullable.java index 34397abef..890c5ade4 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserRequestAddressNullable.java +++ b/src/main/java/com/plaid/client/model/BeaconUserRequestAddressNullable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Home address for the associated user. For more context on this field, see [Input Validation by Country](https://plaid.com/docs/identity-verification/hybrid-input-validation/#input-validation-by-country). */ @ApiModel(description = "Home address for the associated user. For more context on this field, see [Input Validation by Country](https://plaid.com/docs/identity-verification/hybrid-input-validation/#input-validation-by-country).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserRequestAddressNullable { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) diff --git a/src/main/java/com/plaid/client/model/BeaconUserRequestData.java b/src/main/java/com/plaid/client/model/BeaconUserRequestData.java index 2fae0e5cb..2c813bbb5 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserRequestData.java +++ b/src/main/java/com/plaid/client/model/BeaconUserRequestData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * A Beacon User's data which is used to check against duplicate records and the Beacon Fraud Network. In order to create a Beacon User, in addition to the `name`, _either_ the `date_of_birth` _or_ the `depository_accounts` field must be provided. */ @ApiModel(description = "A Beacon User's data which is used to check against duplicate records and the Beacon Fraud Network. In order to create a Beacon User, in addition to the `name`, _either_ the `date_of_birth` _or_ the `depository_accounts` field must be provided.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserRequestData { public static final String SERIALIZED_NAME_DATE_OF_BIRTH = "date_of_birth"; @SerializedName(SERIALIZED_NAME_DATE_OF_BIRTH) diff --git a/src/main/java/com/plaid/client/model/BeaconUserRequestDepositoryAccount.java b/src/main/java/com/plaid/client/model/BeaconUserRequestDepositoryAccount.java index 2f747db5d..6223646a2 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserRequestDepositoryAccount.java +++ b/src/main/java/com/plaid/client/model/BeaconUserRequestDepositoryAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Depository account information for the associated user. */ @ApiModel(description = "Depository account information for the associated user.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserRequestDepositoryAccount { public static final String SERIALIZED_NAME_ACCOUNT_NUMBER = "account_number"; @SerializedName(SERIALIZED_NAME_ACCOUNT_NUMBER) diff --git a/src/main/java/com/plaid/client/model/BeaconUserReviewRequest.java b/src/main/java/com/plaid/client/model/BeaconUserReviewRequest.java index 92b8e799f..962aee8dd 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserReviewRequest.java +++ b/src/main/java/com/plaid/client/model/BeaconUserReviewRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserReviewRequest { public static final String SERIALIZED_NAME_BEACON_USER_ID = "beacon_user_id"; @SerializedName(SERIALIZED_NAME_BEACON_USER_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconUserRevision.java b/src/main/java/com/plaid/client/model/BeaconUserRevision.java index 2b70bb575..d14cc26a1 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserRevision.java +++ b/src/main/java/com/plaid/client/model/BeaconUserRevision.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * A Beacon User Revision identifies a Beacon User at some point in its revision history. */ @ApiModel(description = "A Beacon User Revision identifies a Beacon User at some point in its revision history.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserRevision { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconUserStatus.java b/src/main/java/com/plaid/client/model/BeaconUserStatus.java index a0513253b..bd7fd0f2c 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserStatus.java +++ b/src/main/java/com/plaid/client/model/BeaconUserStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BeaconUserStatusUpdatedWebhook.java b/src/main/java/com/plaid/client/model/BeaconUserStatusUpdatedWebhook.java index 62d58cd84..c96080645 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserStatusUpdatedWebhook.java +++ b/src/main/java/com/plaid/client/model/BeaconUserStatusUpdatedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when a Beacon User status has changed, which can occur manually via the dashboard or when information is reported to the Beacon network. */ @ApiModel(description = "Fired when a Beacon User status has changed, which can occur manually via the dashboard or when information is reported to the Beacon network.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserStatusUpdatedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/BeaconUserUpdateRequest.java b/src/main/java/com/plaid/client/model/BeaconUserUpdateRequest.java index bb7e2d828..3f723d3a0 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserUpdateRequest.java +++ b/src/main/java/com/plaid/client/model/BeaconUserUpdateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Request input for updating the identity data of a Beacon User. */ @ApiModel(description = "Request input for updating the identity data of a Beacon User.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserUpdateRequest { public static final String SERIALIZED_NAME_BEACON_USER_ID = "beacon_user_id"; @SerializedName(SERIALIZED_NAME_BEACON_USER_ID) diff --git a/src/main/java/com/plaid/client/model/BeaconUserUpdateRequestData.java b/src/main/java/com/plaid/client/model/BeaconUserUpdateRequestData.java index ad059fcce..36615502d 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserUpdateRequestData.java +++ b/src/main/java/com/plaid/client/model/BeaconUserUpdateRequestData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * A subset of a Beacon User's data which is used to patch the existing identity data associated with a Beacon User. At least one field must be provided. If left unset or null, user data will not be patched. */ @ApiModel(description = "A subset of a Beacon User's data which is used to patch the existing identity data associated with a Beacon User. At least one field must be provided. If left unset or null, user data will not be patched.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserUpdateRequestData { public static final String SERIALIZED_NAME_DATE_OF_BIRTH = "date_of_birth"; @SerializedName(SERIALIZED_NAME_DATE_OF_BIRTH) diff --git a/src/main/java/com/plaid/client/model/BeaconUserUpdateResponse.java b/src/main/java/com/plaid/client/model/BeaconUserUpdateResponse.java index cacc93208..f6518f0f7 100644 --- a/src/main/java/com/plaid/client/model/BeaconUserUpdateResponse.java +++ b/src/main/java/com/plaid/client/model/BeaconUserUpdateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * A Beacon User represents an end user that has been scanned against the Beacon Network. */ @ApiModel(description = "A Beacon User represents an end user that has been scanned against the Beacon Network.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BeaconUserUpdateResponse { public static final String SERIALIZED_NAME_ITEM_IDS = "item_ids"; @SerializedName(SERIALIZED_NAME_ITEM_IDS) diff --git a/src/main/java/com/plaid/client/model/BetaEwaReportV1GetRequest.java b/src/main/java/com/plaid/client/model/BetaEwaReportV1GetRequest.java index bc2a8fe85..c6d3be591 100644 --- a/src/main/java/com/plaid/client/model/BetaEwaReportV1GetRequest.java +++ b/src/main/java/com/plaid/client/model/BetaEwaReportV1GetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * BetaEwaReportV1GetRequest defines the request schema for `/beta/ewa_report/v1/get` */ @ApiModel(description = "BetaEwaReportV1GetRequest defines the request schema for `/beta/ewa_report/v1/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BetaEwaReportV1GetRequest { public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) diff --git a/src/main/java/com/plaid/client/model/BetaEwaReportV1GetResponse.java b/src/main/java/com/plaid/client/model/BetaEwaReportV1GetResponse.java index 77d5f38be..c3f455bfe 100644 --- a/src/main/java/com/plaid/client/model/BetaEwaReportV1GetResponse.java +++ b/src/main/java/com/plaid/client/model/BetaEwaReportV1GetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * BetaEwaReportV1GetResponse defines the response schema for `/beta/ewa_report/v1/get` */ @ApiModel(description = "BetaEwaReportV1GetResponse defines the response schema for `/beta/ewa_report/v1/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BetaEwaReportV1GetResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1CreateRequest.java b/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1CreateRequest.java index a779f7d2c..4143f663b 100644 --- a/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1CreateRequest.java +++ b/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1CreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -37,7 +37,7 @@ * Request schema for `/beta/partner/customer/v1/create`. */ @ApiModel(description = "Request schema for `/beta/partner/customer/v1/create`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BetaPartnerCustomerV1CreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1CreateResponse.java b/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1CreateResponse.java index 15a27fe28..c087f6043 100644 --- a/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1CreateResponse.java +++ b/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1CreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Response schema for `/beta/partner/customer/v1/create`. */ @ApiModel(description = "Response schema for `/beta/partner/customer/v1/create`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BetaPartnerCustomerV1CreateResponse { public static final String SERIALIZED_NAME_END_CUSTOMER = "end_customer"; @SerializedName(SERIALIZED_NAME_END_CUSTOMER) diff --git a/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1EnableRequest.java b/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1EnableRequest.java index 930399399..9ff7cf727 100644 --- a/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1EnableRequest.java +++ b/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1EnableRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Request schema for `/beta/partner/customer/v1/enable`. */ @ApiModel(description = "Request schema for `/beta/partner/customer/v1/enable`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BetaPartnerCustomerV1EnableRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1EnableResponse.java b/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1EnableResponse.java index 10d2d64a9..cd1a3da27 100644 --- a/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1EnableResponse.java +++ b/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1EnableResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Response schema for `/beta/partner/customer/v1/enable`. */ @ApiModel(description = "Response schema for `/beta/partner/customer/v1/enable`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BetaPartnerCustomerV1EnableResponse { public static final String SERIALIZED_NAME_END_CUSTOMER_CLIENT_ID = "end_customer_client_id"; @SerializedName(SERIALIZED_NAME_END_CUSTOMER_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1GetRequest.java b/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1GetRequest.java index d5cb6606f..4ceb75d33 100644 --- a/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1GetRequest.java +++ b/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1GetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request schema for `/beta/partner/customer/v1/get`. */ @ApiModel(description = "Request schema for `/beta/partner/customer/v1/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BetaPartnerCustomerV1GetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1GetResponse.java b/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1GetResponse.java index 962e622f5..d0dacb4ee 100644 --- a/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1GetResponse.java +++ b/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1GetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Response schema for `/beta/partner/customer/v1/get`. */ @ApiModel(description = "Response schema for `/beta/partner/customer/v1/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BetaPartnerCustomerV1GetResponse { public static final String SERIALIZED_NAME_END_CUSTOMER = "end_customer"; @SerializedName(SERIALIZED_NAME_END_CUSTOMER) diff --git a/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1UpdateRequest.java b/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1UpdateRequest.java index b9e2f2a95..e64beb58a 100644 --- a/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1UpdateRequest.java +++ b/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1UpdateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Request schema for `/beta/partner/customer/v1/update`. */ @ApiModel(description = "Request schema for `/beta/partner/customer/v1/update`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BetaPartnerCustomerV1UpdateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1UpdateResponse.java b/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1UpdateResponse.java index d9729d321..d5fcbe209 100644 --- a/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1UpdateResponse.java +++ b/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1UpdateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Response schema for `/beta/partner/customer/v1/update`. */ @ApiModel(description = "Response schema for `/beta/partner/customer/v1/update`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BetaPartnerCustomerV1UpdateResponse { public static final String SERIALIZED_NAME_END_CUSTOMER = "end_customer"; @SerializedName(SERIALIZED_NAME_END_CUSTOMER) diff --git a/src/main/java/com/plaid/client/model/BetaPartnerEndCustomer.java b/src/main/java/com/plaid/client/model/BetaPartnerEndCustomer.java index 7f96ef9e6..54fd00381 100644 --- a/src/main/java/com/plaid/client/model/BetaPartnerEndCustomer.java +++ b/src/main/java/com/plaid/client/model/BetaPartnerEndCustomer.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * The details for an end customer. */ @ApiModel(description = "The details for an end customer.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BetaPartnerEndCustomer { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BetaPartnerEndCustomerWithSecrets.java b/src/main/java/com/plaid/client/model/BetaPartnerEndCustomerWithSecrets.java index 1822a4307..330a5dd22 100644 --- a/src/main/java/com/plaid/client/model/BetaPartnerEndCustomerWithSecrets.java +++ b/src/main/java/com/plaid/client/model/BetaPartnerEndCustomerWithSecrets.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * The details for the newly created end customer, including secrets for Sandbox and Limited Production. */ @ApiModel(description = "The details for the newly created end customer, including secrets for Sandbox and Limited Production.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BetaPartnerEndCustomerWithSecrets { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/BusinessAccount.java b/src/main/java/com/plaid/client/model/BusinessAccount.java index 9e6358e0c..567030ac6 100644 --- a/src/main/java/com/plaid/client/model/BusinessAccount.java +++ b/src/main/java/com/plaid/client/model/BusinessAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -38,7 +38,7 @@ * Business identity information about an account */ @ApiModel(description = "Business identity information about an account") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BusinessAccount { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/BusinessAccountAllOf.java b/src/main/java/com/plaid/client/model/BusinessAccountAllOf.java index 2d74f0024..e53de4700 100644 --- a/src/main/java/com/plaid/client/model/BusinessAccountAllOf.java +++ b/src/main/java/com/plaid/client/model/BusinessAccountAllOf.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ /** * BusinessAccountAllOf */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BusinessAccountAllOf { public static final String SERIALIZED_NAME_OWNERS = "owners"; @SerializedName(SERIALIZED_NAME_OWNERS) diff --git a/src/main/java/com/plaid/client/model/BusinessCheckBooleanStatus.java b/src/main/java/com/plaid/client/model/BusinessCheckBooleanStatus.java new file mode 100644 index 000000000..8ec16e540 --- /dev/null +++ b/src/main/java/com/plaid/client/model/BusinessCheckBooleanStatus.java @@ -0,0 +1,81 @@ +/* + * 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.682.2 + * + * + * 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; + +/** + * Tri-state boolean status, where `no_data` indicates the check could not determine a value. + */ +@JsonAdapter(BusinessCheckBooleanStatus.Adapter.class) +public enum BusinessCheckBooleanStatus { + + YES("yes"), + + NO("no"), + + 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; + + BusinessCheckBooleanStatus(String value) { + this.value = value; + } + + public String getValue() { + return value; + } + + @Override + public String toString() { + return String.valueOf(value); + } + + public static BusinessCheckBooleanStatus fromValue(String value) { + for (BusinessCheckBooleanStatus b : BusinessCheckBooleanStatus.values()) { + if (b.value.equals(value)) { + return b; + } + } + + return BusinessCheckBooleanStatus.ENUM_UNKNOWN; + } + + public static class Adapter extends TypeAdapter { + @Override + public void write(final JsonWriter jsonWriter, final BusinessCheckBooleanStatus enumeration) throws IOException { + jsonWriter.value(enumeration.getValue()); + } + + @Override + public BusinessCheckBooleanStatus read(final JsonReader jsonReader) throws IOException { + String value = jsonReader.nextString(); + return BusinessCheckBooleanStatus.fromValue(value); + } + } +} + diff --git a/src/main/java/com/plaid/client/model/BusinessDigitalPresenceCheck.java b/src/main/java/com/plaid/client/model/BusinessDigitalPresenceCheck.java new file mode 100644 index 000000000..735df163a --- /dev/null +++ b/src/main/java/com/plaid/client/model/BusinessDigitalPresenceCheck.java @@ -0,0 +1,270 @@ +/* + * 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.682.2 + * + * + * 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.BusinessFieldMatchSummary; +import com.plaid.client.model.BusinessVerificationStatusWebPresenceCheck; +import com.plaid.client.model.BusinessWebsiteAnalysis; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; + +/** + * Results from the digital presence check. + */ +@ApiModel(description = "Results from the digital presence check.") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") +public class BusinessDigitalPresenceCheck { + public static final String SERIALIZED_NAME_STATUS = "status"; + @SerializedName(SERIALIZED_NAME_STATUS) + private BusinessVerificationStatusWebPresenceCheck status; + + public static final String SERIALIZED_NAME_SCORE = "score"; + @SerializedName(SERIALIZED_NAME_SCORE) + private Integer score; + + public static final String SERIALIZED_NAME_ADDRESS = "address"; + @SerializedName(SERIALIZED_NAME_ADDRESS) + private BusinessFieldMatchSummary address; + + public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; + @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) + private BusinessFieldMatchSummary phoneNumber; + + public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; + @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) + private BusinessFieldMatchSummary emailAddress; + + public static final String SERIALIZED_NAME_WEBSITE = "website"; + @SerializedName(SERIALIZED_NAME_WEBSITE) + private BusinessFieldMatchSummary website; + + public static final String SERIALIZED_NAME_WEBSITE_ANALYSIS = "website_analysis"; + @SerializedName(SERIALIZED_NAME_WEBSITE_ANALYSIS) + private BusinessWebsiteAnalysis websiteAnalysis; + + + public BusinessDigitalPresenceCheck status(BusinessVerificationStatusWebPresenceCheck status) { + + this.status = status; + return this; + } + + /** + * Get status + * @return status + **/ + @ApiModelProperty(required = true, value = "") + + public BusinessVerificationStatusWebPresenceCheck getStatus() { + return status; + } + + + public void setStatus(BusinessVerificationStatusWebPresenceCheck status) { + this.status = status; + } + + + public BusinessDigitalPresenceCheck score(Integer score) { + + this.score = score; + return this; + } + + /** + * A score from 0 to 100 indicating digital presence confidence. + * @return score + **/ + @ApiModelProperty(example = "55", required = true, value = "A score from 0 to 100 indicating digital presence confidence.") + + public Integer getScore() { + return score; + } + + + public void setScore(Integer score) { + this.score = score; + } + + + public BusinessDigitalPresenceCheck address(BusinessFieldMatchSummary address) { + + this.address = address; + return this; + } + + /** + * Get address + * @return address + **/ + @ApiModelProperty(required = true, value = "") + + public BusinessFieldMatchSummary getAddress() { + return address; + } + + + public void setAddress(BusinessFieldMatchSummary address) { + this.address = address; + } + + + public BusinessDigitalPresenceCheck phoneNumber(BusinessFieldMatchSummary phoneNumber) { + + this.phoneNumber = phoneNumber; + return this; + } + + /** + * Get phoneNumber + * @return phoneNumber + **/ + @ApiModelProperty(required = true, value = "") + + public BusinessFieldMatchSummary getPhoneNumber() { + return phoneNumber; + } + + + public void setPhoneNumber(BusinessFieldMatchSummary phoneNumber) { + this.phoneNumber = phoneNumber; + } + + + public BusinessDigitalPresenceCheck emailAddress(BusinessFieldMatchSummary emailAddress) { + + this.emailAddress = emailAddress; + return this; + } + + /** + * Get emailAddress + * @return emailAddress + **/ + @ApiModelProperty(required = true, value = "") + + public BusinessFieldMatchSummary getEmailAddress() { + return emailAddress; + } + + + public void setEmailAddress(BusinessFieldMatchSummary emailAddress) { + this.emailAddress = emailAddress; + } + + + public BusinessDigitalPresenceCheck website(BusinessFieldMatchSummary website) { + + this.website = website; + return this; + } + + /** + * Get website + * @return website + **/ + @ApiModelProperty(required = true, value = "") + + public BusinessFieldMatchSummary getWebsite() { + return website; + } + + + public void setWebsite(BusinessFieldMatchSummary website) { + this.website = website; + } + + + public BusinessDigitalPresenceCheck websiteAnalysis(BusinessWebsiteAnalysis websiteAnalysis) { + + this.websiteAnalysis = websiteAnalysis; + return this; + } + + /** + * Get websiteAnalysis + * @return websiteAnalysis + **/ + @javax.annotation.Nullable + @ApiModelProperty(required = true, value = "") + + public BusinessWebsiteAnalysis getWebsiteAnalysis() { + return websiteAnalysis; + } + + + public void setWebsiteAnalysis(BusinessWebsiteAnalysis websiteAnalysis) { + this.websiteAnalysis = websiteAnalysis; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + BusinessDigitalPresenceCheck businessDigitalPresenceCheck = (BusinessDigitalPresenceCheck) o; + return Objects.equals(this.status, businessDigitalPresenceCheck.status) && + Objects.equals(this.score, businessDigitalPresenceCheck.score) && + Objects.equals(this.address, businessDigitalPresenceCheck.address) && + Objects.equals(this.phoneNumber, businessDigitalPresenceCheck.phoneNumber) && + Objects.equals(this.emailAddress, businessDigitalPresenceCheck.emailAddress) && + Objects.equals(this.website, businessDigitalPresenceCheck.website) && + Objects.equals(this.websiteAnalysis, businessDigitalPresenceCheck.websiteAnalysis); + } + + @Override + public int hashCode() { + return Objects.hash(status, score, address, phoneNumber, emailAddress, website, websiteAnalysis); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class BusinessDigitalPresenceCheck {\n"); + sb.append(" status: ").append(toIndentedString(status)).append("\n"); + sb.append(" score: ").append(toIndentedString(score)).append("\n"); + sb.append(" address: ").append(toIndentedString(address)).append("\n"); + sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); + sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n"); + sb.append(" website: ").append(toIndentedString(website)).append("\n"); + sb.append(" websiteAnalysis: ").append(toIndentedString(websiteAnalysis)).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 "); + } + +} + diff --git a/src/main/java/com/plaid/client/model/BusinessEmailAddress.java b/src/main/java/com/plaid/client/model/BusinessEmailAddress.java index b845828ab..53f4c8ee8 100644 --- a/src/main/java/com/plaid/client/model/BusinessEmailAddress.java +++ b/src/main/java/com/plaid/client/model/BusinessEmailAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Email address associated with a business */ @ApiModel(description = "Email address associated with a business") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BusinessEmailAddress { public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) diff --git a/src/main/java/com/plaid/client/model/BusinessEntityType.java b/src/main/java/com/plaid/client/model/BusinessEntityType.java index 3e76fc1f3..71de0d27c 100644 --- a/src/main/java/com/plaid/client/model/BusinessEntityType.java +++ b/src/main/java/com/plaid/client/model/BusinessEntityType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BusinessFieldMatchSummary.java b/src/main/java/com/plaid/client/model/BusinessFieldMatchSummary.java index 0f6e6b897..ea2e40462 100644 --- a/src/main/java/com/plaid/client/model/BusinessFieldMatchSummary.java +++ b/src/main/java/com/plaid/client/model/BusinessFieldMatchSummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Summary of how a specific business field matched against data provider results */ @ApiModel(description = "Summary of how a specific business field matched against data provider results") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BusinessFieldMatchSummary { public static final String SERIALIZED_NAME_SUMMARY = "summary"; @SerializedName(SERIALIZED_NAME_SUMMARY) diff --git a/src/main/java/com/plaid/client/model/BusinessFinanceCategory.java b/src/main/java/com/plaid/client/model/BusinessFinanceCategory.java index 60bd59708..b09930987 100644 --- a/src/main/java/com/plaid/client/model/BusinessFinanceCategory.java +++ b/src/main/java/com/plaid/client/model/BusinessFinanceCategory.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Information describing the intent of the transaction. Most relevant for business finance use cases, but not limited to such use cases. */ @ApiModel(description = "Information describing the intent of the transaction. Most relevant for business finance use cases, but not limited to such use cases.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BusinessFinanceCategory { public static final String SERIALIZED_NAME_PRIMARY = "primary"; @SerializedName(SERIALIZED_NAME_PRIMARY) diff --git a/src/main/java/com/plaid/client/model/BusinessIndustryPrediction.java b/src/main/java/com/plaid/client/model/BusinessIndustryPrediction.java new file mode 100644 index 000000000..eebdf7a59 --- /dev/null +++ b/src/main/java/com/plaid/client/model/BusinessIndustryPrediction.java @@ -0,0 +1,126 @@ +/* + * 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.682.2 + * + * + * 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 predicted industry classification for the business, based on digital presence assessments. + */ +@ApiModel(description = "The predicted industry classification for the business, based on digital presence assessments.") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") +public class BusinessIndustryPrediction { + public static final String SERIALIZED_NAME_CODE = "code"; + @SerializedName(SERIALIZED_NAME_CODE) + private Integer code; + + public static final String SERIALIZED_NAME_TITLE = "title"; + @SerializedName(SERIALIZED_NAME_TITLE) + private String title; + + + public BusinessIndustryPrediction code(Integer code) { + + this.code = code; + return this; + } + + /** + * NAICS code for the predicted business industry. + * @return code + **/ + @ApiModelProperty(example = "518210", required = true, value = "NAICS code for the predicted business industry.") + + public Integer getCode() { + return code; + } + + + public void setCode(Integer code) { + this.code = code; + } + + + public BusinessIndustryPrediction title(String title) { + + this.title = title; + return this; + } + + /** + * The business industry classification of the predicted NAICS code. + * @return title + **/ + @ApiModelProperty(example = "Data Processing, Hosting, and Related Services", required = true, value = "The business industry classification of the predicted NAICS code.") + + public String getTitle() { + return title; + } + + + public void setTitle(String title) { + this.title = title; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + BusinessIndustryPrediction businessIndustryPrediction = (BusinessIndustryPrediction) o; + return Objects.equals(this.code, businessIndustryPrediction.code) && + Objects.equals(this.title, businessIndustryPrediction.title); + } + + @Override + public int hashCode() { + return Objects.hash(code, title); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class BusinessIndustryPrediction {\n"); + sb.append(" code: ").append(toIndentedString(code)).append("\n"); + sb.append(" title: ").append(toIndentedString(title)).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 "); + } + +} + diff --git a/src/main/java/com/plaid/client/model/BusinessIndustryPredictionNullable.java b/src/main/java/com/plaid/client/model/BusinessIndustryPredictionNullable.java new file mode 100644 index 000000000..f227d04da --- /dev/null +++ b/src/main/java/com/plaid/client/model/BusinessIndustryPredictionNullable.java @@ -0,0 +1,127 @@ +/* + * 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.682.2 + * + * + * 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.BusinessIndustryPrediction; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; + +/** + * Nullable industry prediction details. + */ +@ApiModel(description = "Nullable industry prediction details.") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") +public class BusinessIndustryPredictionNullable { + public static final String SERIALIZED_NAME_CODE = "code"; + @SerializedName(SERIALIZED_NAME_CODE) + private Integer code; + + public static final String SERIALIZED_NAME_TITLE = "title"; + @SerializedName(SERIALIZED_NAME_TITLE) + private String title; + + + public BusinessIndustryPredictionNullable code(Integer code) { + + this.code = code; + return this; + } + + /** + * NAICS code for the predicted business industry. + * @return code + **/ + @ApiModelProperty(example = "518210", required = true, value = "NAICS code for the predicted business industry.") + + public Integer getCode() { + return code; + } + + + public void setCode(Integer code) { + this.code = code; + } + + + public BusinessIndustryPredictionNullable title(String title) { + + this.title = title; + return this; + } + + /** + * The business industry classification of the predicted NAICS code. + * @return title + **/ + @ApiModelProperty(example = "Data Processing, Hosting, and Related Services", required = true, value = "The business industry classification of the predicted NAICS code.") + + public String getTitle() { + return title; + } + + + public void setTitle(String title) { + this.title = title; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + BusinessIndustryPredictionNullable businessIndustryPredictionNullable = (BusinessIndustryPredictionNullable) o; + return Objects.equals(this.code, businessIndustryPredictionNullable.code) && + Objects.equals(this.title, businessIndustryPredictionNullable.title); + } + + @Override + public int hashCode() { + return Objects.hash(code, title); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class BusinessIndustryPredictionNullable {\n"); + sb.append(" code: ").append(toIndentedString(code)).append("\n"); + sb.append(" title: ").append(toIndentedString(title)).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 "); + } + +} + diff --git a/src/main/java/com/plaid/client/model/BusinessKYBCheck.java b/src/main/java/com/plaid/client/model/BusinessKYBCheck.java index d326c497b..cc0ae338f 100644 --- a/src/main/java/com/plaid/client/model/BusinessKYBCheck.java +++ b/src/main/java/com/plaid/client/model/BusinessKYBCheck.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Results from the KYB (Know Your Business) identity verification check */ @ApiModel(description = "Results from the KYB (Know Your Business) identity verification check") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BusinessKYBCheck { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/BusinessKYBMatchDetails.java b/src/main/java/com/plaid/client/model/BusinessKYBMatchDetails.java index 6c36cb907..fe07c6776 100644 --- a/src/main/java/com/plaid/client/model/BusinessKYBMatchDetails.java +++ b/src/main/java/com/plaid/client/model/BusinessKYBMatchDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -36,7 +36,7 @@ * Detailed information about the business from data provider results */ @ApiModel(description = "Detailed information about the business from data provider results") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BusinessKYBMatchDetails { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/BusinessPhoneNumber.java b/src/main/java/com/plaid/client/model/BusinessPhoneNumber.java index cc72f7b65..34adebb14 100644 --- a/src/main/java/com/plaid/client/model/BusinessPhoneNumber.java +++ b/src/main/java/com/plaid/client/model/BusinessPhoneNumber.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Phone number associated with a business */ @ApiModel(description = "Phone number associated with a business") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BusinessPhoneNumber { public static final String SERIALIZED_NAME_NUMBER = "number"; @SerializedName(SERIALIZED_NAME_NUMBER) diff --git a/src/main/java/com/plaid/client/model/BusinessRiskCheck.java b/src/main/java/com/plaid/client/model/BusinessRiskCheck.java index 2e59e4783..f1e66f362 100644 --- a/src/main/java/com/plaid/client/model/BusinessRiskCheck.java +++ b/src/main/java/com/plaid/client/model/BusinessRiskCheck.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -20,6 +20,7 @@ import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; +import com.plaid.client.model.BusinessIndustryPredictionNullable; import com.plaid.client.model.BusinessVerificationStatusRiskCheck; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; @@ -29,7 +30,7 @@ * Results from the business risk assessment check */ @ApiModel(description = "Results from the business risk assessment check") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BusinessRiskCheck { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) @@ -39,6 +40,10 @@ public class BusinessRiskCheck { @SerializedName(SERIALIZED_NAME_SCORE) private Integer score; + public static final String SERIALIZED_NAME_INDUSTRY_PREDICTION = "industry_prediction"; + @SerializedName(SERIALIZED_NAME_INDUSTRY_PREDICTION) + private BusinessIndustryPredictionNullable industryPrediction; + public BusinessRiskCheck status(BusinessVerificationStatusRiskCheck status) { @@ -84,6 +89,29 @@ public void setScore(Integer score) { } + public BusinessRiskCheck industryPrediction(BusinessIndustryPredictionNullable industryPrediction) { + + this.industryPrediction = industryPrediction; + return this; + } + + /** + * Get industryPrediction + * @return industryPrediction + **/ + @javax.annotation.Nullable + @ApiModelProperty(required = true, value = "") + + public BusinessIndustryPredictionNullable getIndustryPrediction() { + return industryPrediction; + } + + + public void setIndustryPrediction(BusinessIndustryPredictionNullable industryPrediction) { + this.industryPrediction = industryPrediction; + } + + @Override public boolean equals(Object o) { if (this == o) { @@ -94,12 +122,13 @@ public boolean equals(Object o) { } BusinessRiskCheck businessRiskCheck = (BusinessRiskCheck) o; return Objects.equals(this.status, businessRiskCheck.status) && - Objects.equals(this.score, businessRiskCheck.score); + Objects.equals(this.score, businessRiskCheck.score) && + Objects.equals(this.industryPrediction, businessRiskCheck.industryPrediction); } @Override public int hashCode() { - return Objects.hash(status, score); + return Objects.hash(status, score, industryPrediction); } @Override @@ -108,6 +137,7 @@ public String toString() { sb.append("class BusinessRiskCheck {\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" score: ").append(toIndentedString(score)).append("\n"); + sb.append(" industryPrediction: ").append(toIndentedString(industryPrediction)).append("\n"); sb.append("}"); return sb.toString(); } diff --git a/src/main/java/com/plaid/client/model/BusinessSearchTerms.java b/src/main/java/com/plaid/client/model/BusinessSearchTerms.java index ae2140217..9c97eadde 100644 --- a/src/main/java/com/plaid/client/model/BusinessSearchTerms.java +++ b/src/main/java/com/plaid/client/model/BusinessSearchTerms.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The business information that was used to perform the verification search */ @ApiModel(description = "The business information that was used to perform the verification search") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BusinessSearchTerms { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/BusinessVerificationCreateRequest.java b/src/main/java/com/plaid/client/model/BusinessVerificationCreateRequest.java index 36764026c..c85ab33f7 100644 --- a/src/main/java/com/plaid/client/model/BusinessVerificationCreateRequest.java +++ b/src/main/java/com/plaid/client/model/BusinessVerificationCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Request input for creating a business verification */ @ApiModel(description = "Request input for creating a business verification") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BusinessVerificationCreateRequest { public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id"; @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) diff --git a/src/main/java/com/plaid/client/model/BusinessVerificationCreateRequestBusiness.java b/src/main/java/com/plaid/client/model/BusinessVerificationCreateRequestBusiness.java index 2f72b6dec..44591905b 100644 --- a/src/main/java/com/plaid/client/model/BusinessVerificationCreateRequestBusiness.java +++ b/src/main/java/com/plaid/client/model/BusinessVerificationCreateRequestBusiness.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Business information provided in the verification request */ @ApiModel(description = "Business information provided in the verification request") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BusinessVerificationCreateRequestBusiness { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/BusinessVerificationCreateResponse.java b/src/main/java/com/plaid/client/model/BusinessVerificationCreateResponse.java index aafde4218..343d7e3f7 100644 --- a/src/main/java/com/plaid/client/model/BusinessVerificationCreateResponse.java +++ b/src/main/java/com/plaid/client/model/BusinessVerificationCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -20,6 +20,7 @@ import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; +import com.plaid.client.model.BusinessDigitalPresenceCheck; import com.plaid.client.model.BusinessKYBCheck; import com.plaid.client.model.BusinessRiskCheck; import com.plaid.client.model.BusinessSearchTerms; @@ -33,7 +34,7 @@ * A business verification represents a check of a business's identity and risk profile, including information collected about the business and results from third-party data providers. */ @ApiModel(description = "A business verification represents a check of a business's identity and risk profile, including information collected about the business and results from third-party data providers.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BusinessVerificationCreateResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) @@ -71,6 +72,10 @@ public class BusinessVerificationCreateResponse { @SerializedName(SERIALIZED_NAME_RISK_CHECK) private BusinessRiskCheck riskCheck; + public static final String SERIALIZED_NAME_DIGITAL_PRESENCE_CHECK = "digital_presence_check"; + @SerializedName(SERIALIZED_NAME_DIGITAL_PRESENCE_CHECK) + private BusinessDigitalPresenceCheck digitalPresenceCheck; + public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; @@ -282,6 +287,29 @@ public void setRiskCheck(BusinessRiskCheck riskCheck) { } + public BusinessVerificationCreateResponse digitalPresenceCheck(BusinessDigitalPresenceCheck digitalPresenceCheck) { + + this.digitalPresenceCheck = digitalPresenceCheck; + return this; + } + + /** + * Get digitalPresenceCheck + * @return digitalPresenceCheck + **/ + @javax.annotation.Nullable + @ApiModelProperty(required = true, value = "") + + public BusinessDigitalPresenceCheck getDigitalPresenceCheck() { + return digitalPresenceCheck; + } + + + public void setDigitalPresenceCheck(BusinessDigitalPresenceCheck digitalPresenceCheck) { + this.digitalPresenceCheck = digitalPresenceCheck; + } + + public BusinessVerificationCreateResponse requestId(String requestId) { this.requestId = requestId; @@ -345,13 +373,14 @@ public boolean equals(Object o) { Objects.equals(this.searchTerms, businessVerificationCreateResponse.searchTerms) && Objects.equals(this.kybCheck, businessVerificationCreateResponse.kybCheck) && Objects.equals(this.riskCheck, businessVerificationCreateResponse.riskCheck) && + Objects.equals(this.digitalPresenceCheck, businessVerificationCreateResponse.digitalPresenceCheck) && Objects.equals(this.requestId, businessVerificationCreateResponse.requestId) && Objects.equals(this.shareableUrl, businessVerificationCreateResponse.shareableUrl); } @Override public int hashCode() { - return Objects.hash(id, clientUserId, createdAt, completedAt, redactedAt, status, searchTerms, kybCheck, riskCheck, requestId, shareableUrl); + return Objects.hash(id, clientUserId, createdAt, completedAt, redactedAt, status, searchTerms, kybCheck, riskCheck, digitalPresenceCheck, requestId, shareableUrl); } @Override @@ -367,6 +396,7 @@ public String toString() { sb.append(" searchTerms: ").append(toIndentedString(searchTerms)).append("\n"); sb.append(" kybCheck: ").append(toIndentedString(kybCheck)).append("\n"); sb.append(" riskCheck: ").append(toIndentedString(riskCheck)).append("\n"); + sb.append(" digitalPresenceCheck: ").append(toIndentedString(digitalPresenceCheck)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append(" shareableUrl: ").append(toIndentedString(shareableUrl)).append("\n"); sb.append("}"); diff --git a/src/main/java/com/plaid/client/model/BusinessVerificationGetRequest.java b/src/main/java/com/plaid/client/model/BusinessVerificationGetRequest.java index b3dce70e7..d06200bf8 100644 --- a/src/main/java/com/plaid/client/model/BusinessVerificationGetRequest.java +++ b/src/main/java/com/plaid/client/model/BusinessVerificationGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for fetching a business verification */ @ApiModel(description = "Request input for fetching a business verification") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BusinessVerificationGetRequest { public static final String SERIALIZED_NAME_BUSINESS_VERIFICATION_ID = "business_verification_id"; @SerializedName(SERIALIZED_NAME_BUSINESS_VERIFICATION_ID) diff --git a/src/main/java/com/plaid/client/model/BusinessVerificationGetResponse.java b/src/main/java/com/plaid/client/model/BusinessVerificationGetResponse.java index 94371dc2f..036996b9e 100644 --- a/src/main/java/com/plaid/client/model/BusinessVerificationGetResponse.java +++ b/src/main/java/com/plaid/client/model/BusinessVerificationGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -20,6 +20,7 @@ import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; +import com.plaid.client.model.BusinessDigitalPresenceCheck; import com.plaid.client.model.BusinessKYBCheck; import com.plaid.client.model.BusinessRiskCheck; import com.plaid.client.model.BusinessSearchTerms; @@ -33,7 +34,7 @@ * A business verification represents a check of a business's identity and risk profile, including information collected about the business and results from third-party data providers. */ @ApiModel(description = "A business verification represents a check of a business's identity and risk profile, including information collected about the business and results from third-party data providers.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BusinessVerificationGetResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) @@ -71,6 +72,10 @@ public class BusinessVerificationGetResponse { @SerializedName(SERIALIZED_NAME_RISK_CHECK) private BusinessRiskCheck riskCheck; + public static final String SERIALIZED_NAME_DIGITAL_PRESENCE_CHECK = "digital_presence_check"; + @SerializedName(SERIALIZED_NAME_DIGITAL_PRESENCE_CHECK) + private BusinessDigitalPresenceCheck digitalPresenceCheck; + public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; @@ -282,6 +287,29 @@ public void setRiskCheck(BusinessRiskCheck riskCheck) { } + public BusinessVerificationGetResponse digitalPresenceCheck(BusinessDigitalPresenceCheck digitalPresenceCheck) { + + this.digitalPresenceCheck = digitalPresenceCheck; + return this; + } + + /** + * Get digitalPresenceCheck + * @return digitalPresenceCheck + **/ + @javax.annotation.Nullable + @ApiModelProperty(required = true, value = "") + + public BusinessDigitalPresenceCheck getDigitalPresenceCheck() { + return digitalPresenceCheck; + } + + + public void setDigitalPresenceCheck(BusinessDigitalPresenceCheck digitalPresenceCheck) { + this.digitalPresenceCheck = digitalPresenceCheck; + } + + public BusinessVerificationGetResponse requestId(String requestId) { this.requestId = requestId; @@ -345,13 +373,14 @@ public boolean equals(Object o) { Objects.equals(this.searchTerms, businessVerificationGetResponse.searchTerms) && Objects.equals(this.kybCheck, businessVerificationGetResponse.kybCheck) && Objects.equals(this.riskCheck, businessVerificationGetResponse.riskCheck) && + Objects.equals(this.digitalPresenceCheck, businessVerificationGetResponse.digitalPresenceCheck) && Objects.equals(this.requestId, businessVerificationGetResponse.requestId) && Objects.equals(this.shareableUrl, businessVerificationGetResponse.shareableUrl); } @Override public int hashCode() { - return Objects.hash(id, clientUserId, createdAt, completedAt, redactedAt, status, searchTerms, kybCheck, riskCheck, requestId, shareableUrl); + return Objects.hash(id, clientUserId, createdAt, completedAt, redactedAt, status, searchTerms, kybCheck, riskCheck, digitalPresenceCheck, requestId, shareableUrl); } @Override @@ -367,6 +396,7 @@ public String toString() { sb.append(" searchTerms: ").append(toIndentedString(searchTerms)).append("\n"); sb.append(" kybCheck: ").append(toIndentedString(kybCheck)).append("\n"); sb.append(" riskCheck: ").append(toIndentedString(riskCheck)).append("\n"); + sb.append(" digitalPresenceCheck: ").append(toIndentedString(digitalPresenceCheck)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append(" shareableUrl: ").append(toIndentedString(shareableUrl)).append("\n"); sb.append("}"); diff --git a/src/main/java/com/plaid/client/model/BusinessVerificationStatusKYBCheck.java b/src/main/java/com/plaid/client/model/BusinessVerificationStatusKYBCheck.java index 26cc28fa5..91dcd1396 100644 --- a/src/main/java/com/plaid/client/model/BusinessVerificationStatusKYBCheck.java +++ b/src/main/java/com/plaid/client/model/BusinessVerificationStatusKYBCheck.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BusinessVerificationStatusOverall.java b/src/main/java/com/plaid/client/model/BusinessVerificationStatusOverall.java index 5bffe6ff0..7342abd1f 100644 --- a/src/main/java/com/plaid/client/model/BusinessVerificationStatusOverall.java +++ b/src/main/java/com/plaid/client/model/BusinessVerificationStatusOverall.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BusinessVerificationStatusRiskCheck.java b/src/main/java/com/plaid/client/model/BusinessVerificationStatusRiskCheck.java index eaaf37f30..6ef365028 100644 --- a/src/main/java/com/plaid/client/model/BusinessVerificationStatusRiskCheck.java +++ b/src/main/java/com/plaid/client/model/BusinessVerificationStatusRiskCheck.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/BusinessVerificationStatusWebPresenceCheck.java b/src/main/java/com/plaid/client/model/BusinessVerificationStatusWebPresenceCheck.java new file mode 100644 index 000000000..7c3aab604 --- /dev/null +++ b/src/main/java/com/plaid/client/model/BusinessVerificationStatusWebPresenceCheck.java @@ -0,0 +1,83 @@ +/* + * 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.682.2 + * + * + * 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; + +/** + * Status of the digital presence check + */ +@JsonAdapter(BusinessVerificationStatusWebPresenceCheck.Adapter.class) +public enum BusinessVerificationStatusWebPresenceCheck { + + ACTIVE("active"), + + SUCCESS("success"), + + FAILED("failed"), + + NOT_APPLICABLE("not_applicable"), + + // 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; + + BusinessVerificationStatusWebPresenceCheck(String value) { + this.value = value; + } + + public String getValue() { + return value; + } + + @Override + public String toString() { + return String.valueOf(value); + } + + public static BusinessVerificationStatusWebPresenceCheck fromValue(String value) { + for (BusinessVerificationStatusWebPresenceCheck b : BusinessVerificationStatusWebPresenceCheck.values()) { + if (b.value.equals(value)) { + return b; + } + } + + return BusinessVerificationStatusWebPresenceCheck.ENUM_UNKNOWN; + } + + public static class Adapter extends TypeAdapter { + @Override + public void write(final JsonWriter jsonWriter, final BusinessVerificationStatusWebPresenceCheck enumeration) throws IOException { + jsonWriter.value(enumeration.getValue()); + } + + @Override + public BusinessVerificationStatusWebPresenceCheck read(final JsonReader jsonReader) throws IOException { + String value = jsonReader.nextString(); + return BusinessVerificationStatusWebPresenceCheck.fromValue(value); + } + } +} + diff --git a/src/main/java/com/plaid/client/model/BusinessWebsite.java b/src/main/java/com/plaid/client/model/BusinessWebsite.java index 9533120ff..a1db5fcb5 100644 --- a/src/main/java/com/plaid/client/model/BusinessWebsite.java +++ b/src/main/java/com/plaid/client/model/BusinessWebsite.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Website associated with a business */ @ApiModel(description = "Website associated with a business") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class BusinessWebsite { public static final String SERIALIZED_NAME_URL = "url"; @SerializedName(SERIALIZED_NAME_URL) diff --git a/src/main/java/com/plaid/client/model/BusinessWebsiteAnalysis.java b/src/main/java/com/plaid/client/model/BusinessWebsiteAnalysis.java new file mode 100644 index 000000000..fbfe9c000 --- /dev/null +++ b/src/main/java/com/plaid/client/model/BusinessWebsiteAnalysis.java @@ -0,0 +1,214 @@ +/* + * 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.682.2 + * + * + * 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.BusinessCheckBooleanStatus; +import com.plaid.client.model.BusinessWebsiteBuildStatus; +import com.plaid.client.model.BusinessWebsiteSSL; +import com.plaid.client.model.BusinessWhoisRecord; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; + +/** + * Website analysis details if a website is found for the provided website in the search terms. + */ +@ApiModel(description = "Website analysis details if a website is found for the provided website in the search terms.") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") +public class BusinessWebsiteAnalysis { + public static final String SERIALIZED_NAME_IS_PARKED = "is_parked"; + @SerializedName(SERIALIZED_NAME_IS_PARKED) + private BusinessCheckBooleanStatus isParked; + + public static final String SERIALIZED_NAME_EMAIL_IS_DELIVERABLE = "email_is_deliverable"; + @SerializedName(SERIALIZED_NAME_EMAIL_IS_DELIVERABLE) + private BusinessCheckBooleanStatus emailIsDeliverable; + + public static final String SERIALIZED_NAME_WEBSITE_BUILD_STATUS = "website_build_status"; + @SerializedName(SERIALIZED_NAME_WEBSITE_BUILD_STATUS) + private BusinessWebsiteBuildStatus websiteBuildStatus; + + public static final String SERIALIZED_NAME_WHOIS_RECORD = "whois_record"; + @SerializedName(SERIALIZED_NAME_WHOIS_RECORD) + private BusinessWhoisRecord whoisRecord; + + public static final String SERIALIZED_NAME_SSL = "ssl"; + @SerializedName(SERIALIZED_NAME_SSL) + private BusinessWebsiteSSL ssl; + + + public BusinessWebsiteAnalysis isParked(BusinessCheckBooleanStatus isParked) { + + this.isParked = isParked; + return this; + } + + /** + * Get isParked + * @return isParked + **/ + @ApiModelProperty(required = true, value = "") + + public BusinessCheckBooleanStatus getIsParked() { + return isParked; + } + + + public void setIsParked(BusinessCheckBooleanStatus isParked) { + this.isParked = isParked; + } + + + public BusinessWebsiteAnalysis emailIsDeliverable(BusinessCheckBooleanStatus emailIsDeliverable) { + + this.emailIsDeliverable = emailIsDeliverable; + return this; + } + + /** + * Get emailIsDeliverable + * @return emailIsDeliverable + **/ + @ApiModelProperty(required = true, value = "") + + public BusinessCheckBooleanStatus getEmailIsDeliverable() { + return emailIsDeliverable; + } + + + public void setEmailIsDeliverable(BusinessCheckBooleanStatus emailIsDeliverable) { + this.emailIsDeliverable = emailIsDeliverable; + } + + + public BusinessWebsiteAnalysis websiteBuildStatus(BusinessWebsiteBuildStatus websiteBuildStatus) { + + this.websiteBuildStatus = websiteBuildStatus; + return this; + } + + /** + * Get websiteBuildStatus + * @return websiteBuildStatus + **/ + @ApiModelProperty(required = true, value = "") + + public BusinessWebsiteBuildStatus getWebsiteBuildStatus() { + return websiteBuildStatus; + } + + + public void setWebsiteBuildStatus(BusinessWebsiteBuildStatus websiteBuildStatus) { + this.websiteBuildStatus = websiteBuildStatus; + } + + + public BusinessWebsiteAnalysis whoisRecord(BusinessWhoisRecord whoisRecord) { + + this.whoisRecord = whoisRecord; + return this; + } + + /** + * Get whoisRecord + * @return whoisRecord + **/ + @ApiModelProperty(required = true, value = "") + + public BusinessWhoisRecord getWhoisRecord() { + return whoisRecord; + } + + + public void setWhoisRecord(BusinessWhoisRecord whoisRecord) { + this.whoisRecord = whoisRecord; + } + + + public BusinessWebsiteAnalysis ssl(BusinessWebsiteSSL ssl) { + + this.ssl = ssl; + return this; + } + + /** + * Get ssl + * @return ssl + **/ + @ApiModelProperty(required = true, value = "") + + public BusinessWebsiteSSL getSsl() { + return ssl; + } + + + public void setSsl(BusinessWebsiteSSL ssl) { + this.ssl = ssl; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + BusinessWebsiteAnalysis businessWebsiteAnalysis = (BusinessWebsiteAnalysis) o; + return Objects.equals(this.isParked, businessWebsiteAnalysis.isParked) && + Objects.equals(this.emailIsDeliverable, businessWebsiteAnalysis.emailIsDeliverable) && + Objects.equals(this.websiteBuildStatus, businessWebsiteAnalysis.websiteBuildStatus) && + Objects.equals(this.whoisRecord, businessWebsiteAnalysis.whoisRecord) && + Objects.equals(this.ssl, businessWebsiteAnalysis.ssl); + } + + @Override + public int hashCode() { + return Objects.hash(isParked, emailIsDeliverable, websiteBuildStatus, whoisRecord, ssl); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class BusinessWebsiteAnalysis {\n"); + sb.append(" isParked: ").append(toIndentedString(isParked)).append("\n"); + sb.append(" emailIsDeliverable: ").append(toIndentedString(emailIsDeliverable)).append("\n"); + sb.append(" websiteBuildStatus: ").append(toIndentedString(websiteBuildStatus)).append("\n"); + sb.append(" whoisRecord: ").append(toIndentedString(whoisRecord)).append("\n"); + sb.append(" ssl: ").append(toIndentedString(ssl)).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 "); + } + +} + diff --git a/src/main/java/com/plaid/client/model/BusinessWebsiteBuildStatus.java b/src/main/java/com/plaid/client/model/BusinessWebsiteBuildStatus.java new file mode 100644 index 000000000..3b16d2b3d --- /dev/null +++ b/src/main/java/com/plaid/client/model/BusinessWebsiteBuildStatus.java @@ -0,0 +1,81 @@ +/* + * 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.682.2 + * + * + * 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; + +/** + * Build status of the business website. + */ +@JsonAdapter(BusinessWebsiteBuildStatus.Adapter.class) +public enum BusinessWebsiteBuildStatus { + + COMING_SOON("coming_soon"), + + ACTIVE("active"), + + INACTIVE("inactive"), + + // 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; + + BusinessWebsiteBuildStatus(String value) { + this.value = value; + } + + public String getValue() { + return value; + } + + @Override + public String toString() { + return String.valueOf(value); + } + + public static BusinessWebsiteBuildStatus fromValue(String value) { + for (BusinessWebsiteBuildStatus b : BusinessWebsiteBuildStatus.values()) { + if (b.value.equals(value)) { + return b; + } + } + + return BusinessWebsiteBuildStatus.ENUM_UNKNOWN; + } + + public static class Adapter extends TypeAdapter { + @Override + public void write(final JsonWriter jsonWriter, final BusinessWebsiteBuildStatus enumeration) throws IOException { + jsonWriter.value(enumeration.getValue()); + } + + @Override + public BusinessWebsiteBuildStatus read(final JsonReader jsonReader) throws IOException { + String value = jsonReader.nextString(); + return BusinessWebsiteBuildStatus.fromValue(value); + } + } +} + diff --git a/src/main/java/com/plaid/client/model/BusinessWebsiteSSL.java b/src/main/java/com/plaid/client/model/BusinessWebsiteSSL.java new file mode 100644 index 000000000..8caa9ecd7 --- /dev/null +++ b/src/main/java/com/plaid/client/model/BusinessWebsiteSSL.java @@ -0,0 +1,99 @@ +/* + * 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.682.2 + * + * + * 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.BusinessCheckBooleanStatus; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; + +/** + * SSL status for the business website. + */ +@ApiModel(description = "SSL status for the business website.") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") +public class BusinessWebsiteSSL { + public static final String SERIALIZED_NAME_IS_VALID = "is_valid"; + @SerializedName(SERIALIZED_NAME_IS_VALID) + private BusinessCheckBooleanStatus isValid; + + + public BusinessWebsiteSSL isValid(BusinessCheckBooleanStatus isValid) { + + this.isValid = isValid; + return this; + } + + /** + * Get isValid + * @return isValid + **/ + @ApiModelProperty(required = true, value = "") + + public BusinessCheckBooleanStatus getIsValid() { + return isValid; + } + + + public void setIsValid(BusinessCheckBooleanStatus isValid) { + this.isValid = isValid; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + BusinessWebsiteSSL businessWebsiteSSL = (BusinessWebsiteSSL) o; + return Objects.equals(this.isValid, businessWebsiteSSL.isValid); + } + + @Override + public int hashCode() { + return Objects.hash(isValid); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class BusinessWebsiteSSL {\n"); + sb.append(" isValid: ").append(toIndentedString(isValid)).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 "); + } + +} + diff --git a/src/main/java/com/plaid/client/model/BusinessWhoisRecord.java b/src/main/java/com/plaid/client/model/BusinessWhoisRecord.java new file mode 100644 index 000000000..df1ea0180 --- /dev/null +++ b/src/main/java/com/plaid/client/model/BusinessWhoisRecord.java @@ -0,0 +1,187 @@ +/* + * 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.682.2 + * + * + * 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; + +/** + * WHOIS metadata for the business website domain. + */ +@ApiModel(description = "WHOIS metadata for the business website domain.") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") +public class BusinessWhoisRecord { + public static final String SERIALIZED_NAME_DOMAIN_CREATED_AT = "domain_created_at"; + @SerializedName(SERIALIZED_NAME_DOMAIN_CREATED_AT) + private OffsetDateTime domainCreatedAt; + + public static final String SERIALIZED_NAME_DOMAIN_UPDATED_AT = "domain_updated_at"; + @SerializedName(SERIALIZED_NAME_DOMAIN_UPDATED_AT) + private OffsetDateTime domainUpdatedAt; + + public static final String SERIALIZED_NAME_DOMAIN_EXPIRES_AT = "domain_expires_at"; + @SerializedName(SERIALIZED_NAME_DOMAIN_EXPIRES_AT) + private OffsetDateTime domainExpiresAt; + + public static final String SERIALIZED_NAME_REGISTRAR = "registrar"; + @SerializedName(SERIALIZED_NAME_REGISTRAR) + private String registrar; + + + public BusinessWhoisRecord domainCreatedAt(OffsetDateTime domainCreatedAt) { + + this.domainCreatedAt = domainCreatedAt; + return this; + } + + /** + * An ISO8601 formatted timestamp. + * @return domainCreatedAt + **/ + @javax.annotation.Nullable + @ApiModelProperty(example = "2020-07-24T03:26:02Z", required = true, value = "An ISO8601 formatted timestamp.") + + public OffsetDateTime getDomainCreatedAt() { + return domainCreatedAt; + } + + + public void setDomainCreatedAt(OffsetDateTime domainCreatedAt) { + this.domainCreatedAt = domainCreatedAt; + } + + + public BusinessWhoisRecord domainUpdatedAt(OffsetDateTime domainUpdatedAt) { + + this.domainUpdatedAt = domainUpdatedAt; + return this; + } + + /** + * An ISO8601 formatted timestamp. + * @return domainUpdatedAt + **/ + @javax.annotation.Nullable + @ApiModelProperty(example = "2020-07-24T03:26:02Z", required = true, value = "An ISO8601 formatted timestamp.") + + public OffsetDateTime getDomainUpdatedAt() { + return domainUpdatedAt; + } + + + public void setDomainUpdatedAt(OffsetDateTime domainUpdatedAt) { + this.domainUpdatedAt = domainUpdatedAt; + } + + + public BusinessWhoisRecord domainExpiresAt(OffsetDateTime domainExpiresAt) { + + this.domainExpiresAt = domainExpiresAt; + return this; + } + + /** + * An ISO8601 formatted timestamp. + * @return domainExpiresAt + **/ + @javax.annotation.Nullable + @ApiModelProperty(example = "2020-07-24T03:26:02Z", required = true, value = "An ISO8601 formatted timestamp.") + + public OffsetDateTime getDomainExpiresAt() { + return domainExpiresAt; + } + + + public void setDomainExpiresAt(OffsetDateTime domainExpiresAt) { + this.domainExpiresAt = domainExpiresAt; + } + + + public BusinessWhoisRecord registrar(String registrar) { + + this.registrar = registrar; + return this; + } + + /** + * Domain registrar. + * @return registrar + **/ + @javax.annotation.Nullable + @ApiModelProperty(example = "GANDI SAS", required = true, value = "Domain registrar.") + + public String getRegistrar() { + return registrar; + } + + + public void setRegistrar(String registrar) { + this.registrar = registrar; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + BusinessWhoisRecord businessWhoisRecord = (BusinessWhoisRecord) o; + return Objects.equals(this.domainCreatedAt, businessWhoisRecord.domainCreatedAt) && + Objects.equals(this.domainUpdatedAt, businessWhoisRecord.domainUpdatedAt) && + Objects.equals(this.domainExpiresAt, businessWhoisRecord.domainExpiresAt) && + Objects.equals(this.registrar, businessWhoisRecord.registrar); + } + + @Override + public int hashCode() { + return Objects.hash(domainCreatedAt, domainUpdatedAt, domainExpiresAt, registrar); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class BusinessWhoisRecord {\n"); + sb.append(" domainCreatedAt: ").append(toIndentedString(domainCreatedAt)).append("\n"); + sb.append(" domainUpdatedAt: ").append(toIndentedString(domainUpdatedAt)).append("\n"); + sb.append(" domainExpiresAt: ").append(toIndentedString(domainExpiresAt)).append("\n"); + sb.append(" registrar: ").append(toIndentedString(registrar)).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 "); + } + +} + diff --git a/src/main/java/com/plaid/client/model/CRALoansRegisterRequest.java b/src/main/java/com/plaid/client/model/CRALoansRegisterRequest.java index a7dd0156c..4e3e31517 100644 --- a/src/main/java/com/plaid/client/model/CRALoansRegisterRequest.java +++ b/src/main/java/com/plaid/client/model/CRALoansRegisterRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * CraLoansRegisterRequest defines the request schema for `/cra/loans/register` */ @ApiModel(description = "CraLoansRegisterRequest defines the request schema for `/cra/loans/register`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CRALoansRegisterRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CashFlowInsight.java b/src/main/java/com/plaid/client/model/CashFlowInsight.java index c0d6b3624..ce5f9f5e5 100644 --- a/src/main/java/com/plaid/client/model/CashFlowInsight.java +++ b/src/main/java/com/plaid/client/model/CashFlowInsight.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CashFlowUpdatesEventWebhookCodes.java b/src/main/java/com/plaid/client/model/CashFlowUpdatesEventWebhookCodes.java index 89c883b4b..d5436ef60 100644 --- a/src/main/java/com/plaid/client/model/CashFlowUpdatesEventWebhookCodes.java +++ b/src/main/java/com/plaid/client/model/CashFlowUpdatesEventWebhookCodes.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CashFlowUpdatesExpectedDepositMissedWebhook.java b/src/main/java/com/plaid/client/model/CashFlowUpdatesExpectedDepositMissedWebhook.java index f08fe515b..924adb8bb 100644 --- a/src/main/java/com/plaid/client/model/CashFlowUpdatesExpectedDepositMissedWebhook.java +++ b/src/main/java/com/plaid/client/model/CashFlowUpdatesExpectedDepositMissedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * For each user's item enabled for Cash Flow Updates, this webhook will fire when an update detects that an expected deposit was missed. Upon receiving the webhook, call `/cra/monitoring_insights/get` 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 that an expected deposit was missed. Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashFlowUpdatesExpectedDepositMissedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/CashFlowUpdatesInsightsV2Webhook.java b/src/main/java/com/plaid/client/model/CashFlowUpdatesInsightsV2Webhook.java index 4d9a003d3..a99d80d6d 100644 --- a/src/main/java/com/plaid/client/model/CashFlowUpdatesInsightsV2Webhook.java +++ b/src/main/java/com/plaid/client/model/CashFlowUpdatesInsightsV2Webhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * For each item on an enabled user, this webhook will fire up to four times a day with status information. This webhook will not fire immediately upon enrollment in Cash Flow Updates. The payload may contain an `insights` array with insights that have been detected, if any (e.g. `LOW_BALANCE_DETECTED`, `LARGE_DEPOSIT_DETECTED`). Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights. */ @ApiModel(description = "For each item on an enabled user, this webhook will fire up to four times a day with status information. This webhook will not fire immediately upon enrollment in Cash Flow Updates. The payload may contain an `insights` array with insights that have been detected, if any (e.g. `LOW_BALANCE_DETECTED`, `LARGE_DEPOSIT_DETECTED`). Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashFlowUpdatesInsightsV2Webhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/CashFlowUpdatesInsightsWebhook.java b/src/main/java/com/plaid/client/model/CashFlowUpdatesInsightsWebhook.java index eacdc4719..b217c28a7 100644 --- a/src/main/java/com/plaid/client/model/CashFlowUpdatesInsightsWebhook.java +++ b/src/main/java/com/plaid/client/model/CashFlowUpdatesInsightsWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * For each user's Item enabled for Cash Flow Updates, this webhook will fire between one and four times a day with information on the status of the update. This webhook will not fire immediately upon enrollment in Cash Flow Updates. Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights. At approximately the same time as the `INSIGHTS_UPDATED` webhook, any event-driven `CASH_FLOW_UPDATES` webhooks (e.g. `LOW_BALANCE_DETECTED`, `LARGE_DEPOSIT_DETECTED`) that were triggered by the update will also fire. This webhook has been replaced by the `CASH_FLOW_INSIGHTS_UPDATED` webhook for all customers who began using Plaid Check on or after December 10, 2025. */ @ApiModel(description = "For each user's Item enabled for Cash Flow Updates, this webhook will fire between one and four times a day with information on the status of the update. This webhook will not fire immediately upon enrollment in Cash Flow Updates. Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights. At approximately the same time as the `INSIGHTS_UPDATED` webhook, any event-driven `CASH_FLOW_UPDATES` webhooks (e.g. `LOW_BALANCE_DETECTED`, `LARGE_DEPOSIT_DETECTED`) that were triggered by the update will also fire. This webhook has been replaced by the `CASH_FLOW_INSIGHTS_UPDATED` webhook for all customers who began using Plaid Check on or after December 10, 2025.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashFlowUpdatesInsightsWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/CashFlowUpdatesLargeDepositWebhook.java b/src/main/java/com/plaid/client/model/CashFlowUpdatesLargeDepositWebhook.java index d74b9fb52..d9677f4dc 100644 --- a/src/main/java/com/plaid/client/model/CashFlowUpdatesLargeDepositWebhook.java +++ b/src/main/java/com/plaid/client/model/CashFlowUpdatesLargeDepositWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * For each user's item enabled for Cash Flow Updates, this webhook will fire when an update detects a deposit over $5,000. Upon receiving the webhook, call `/cra/monitoring_insights/get` 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 deposit over $5,000. Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashFlowUpdatesLargeDepositWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/CashFlowUpdatesLowBalanceWebhook.java b/src/main/java/com/plaid/client/model/CashFlowUpdatesLowBalanceWebhook.java index 38f24df27..fdc784d5d 100644 --- a/src/main/java/com/plaid/client/model/CashFlowUpdatesLowBalanceWebhook.java +++ b/src/main/java/com/plaid/client/model/CashFlowUpdatesLowBalanceWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * 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. */ @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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashFlowUpdatesLowBalanceWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/CashFlowUpdatesNSFWebhook.java b/src/main/java/com/plaid/client/model/CashFlowUpdatesNSFWebhook.java index c898639b6..d6d791419 100644 --- a/src/main/java/com/plaid/client/model/CashFlowUpdatesNSFWebhook.java +++ b/src/main/java/com/plaid/client/model/CashFlowUpdatesNSFWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * For each user's item enabled for Cash Flow Updates, this webhook will fire when an update includes an NSF overdraft transaction. Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights. */ @ApiModel(description = "For each user's item enabled for Cash Flow Updates, this webhook will fire when an update includes an NSF overdraft transaction. Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashFlowUpdatesNSFWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/CashFlowUpdatesNewIncomeStreamWebhook.java b/src/main/java/com/plaid/client/model/CashFlowUpdatesNewIncomeStreamWebhook.java index a0d18272d..82aac8c48 100644 --- a/src/main/java/com/plaid/client/model/CashFlowUpdatesNewIncomeStreamWebhook.java +++ b/src/main/java/com/plaid/client/model/CashFlowUpdatesNewIncomeStreamWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * For each user's item enabled for Cash Flow Updates, this webhook will fire when an update includes a new income stream. Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights. */ @ApiModel(description = "For each user's item enabled for Cash Flow Updates, this webhook will fire when an update includes a new income stream. Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashFlowUpdatesNewIncomeStreamWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/CashFlowUpdatesNewLoanPaymentWebhook.java b/src/main/java/com/plaid/client/model/CashFlowUpdatesNewLoanPaymentWebhook.java index 0f5eac747..e92d1f96b 100644 --- a/src/main/java/com/plaid/client/model/CashFlowUpdatesNewLoanPaymentWebhook.java +++ b/src/main/java/com/plaid/client/model/CashFlowUpdatesNewLoanPaymentWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * For each user's item enabled for Cash Flow Updates, this webhook will fire when an update detects a new loan payment. Upon receiving the webhook, call `/cra/monitoring_insights/get` 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 new loan payment. Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashFlowUpdatesNewLoanPaymentWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/CashflowAttributesVersion.java b/src/main/java/com/plaid/client/model/CashflowAttributesVersion.java index 21cebf0e1..ffa945e16 100644 --- a/src/main/java/com/plaid/client/model/CashflowAttributesVersion.java +++ b/src/main/java/com/plaid/client/model/CashflowAttributesVersion.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CashflowReportAccountInsights.java b/src/main/java/com/plaid/client/model/CashflowReportAccountInsights.java index 6b0ff98b3..6f3d866ad 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportAccountInsights.java +++ b/src/main/java/com/plaid/client/model/CashflowReportAccountInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Insights on the account level. These are only returned for Credit and Depository type accounts. */ @ApiModel(description = "Insights on the account level. These are only returned for Credit and Depository type accounts.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportAccountInsights { public static final String SERIALIZED_NAME_HISTORICAL_BALANCES = "historical_balances"; @SerializedName(SERIALIZED_NAME_HISTORICAL_BALANCES) diff --git a/src/main/java/com/plaid/client/model/CashflowReportGetRequest.java b/src/main/java/com/plaid/client/model/CashflowReportGetRequest.java index a586d1adf..93b971619 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportGetRequest.java +++ b/src/main/java/com/plaid/client/model/CashflowReportGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * CashflowReportGetRequest defines the request schema for `/cashflow_report/get` */ @ApiModel(description = "CashflowReportGetRequest defines the request schema for `/cashflow_report/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CashflowReportGetRequestOptions.java b/src/main/java/com/plaid/client/model/CashflowReportGetRequestOptions.java index efa34faa1..c23b9e599 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/CashflowReportGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An optional object to be used with the request. If specified, `options` must not be `null`. */ @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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) diff --git a/src/main/java/com/plaid/client/model/CashflowReportGetResponse.java b/src/main/java/com/plaid/client/model/CashflowReportGetResponse.java index e10f2e74d..1e4af4c21 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportGetResponse.java +++ b/src/main/java/com/plaid/client/model/CashflowReportGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * CashflowReportGetResponse defines the response schema for `/cashflow_report/get` */ @ApiModel(description = "CashflowReportGetResponse defines the response schema for `/cashflow_report/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportGetResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) diff --git a/src/main/java/com/plaid/client/model/CashflowReportHistoricalBalance.java b/src/main/java/com/plaid/client/model/CashflowReportHistoricalBalance.java index 4ed4ffe5f..9208d8612 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportHistoricalBalance.java +++ b/src/main/java/com/plaid/client/model/CashflowReportHistoricalBalance.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object representing a balance held by an account in the past */ @ApiModel(description = "An object representing a balance held by an account in the past") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportHistoricalBalance { public static final String SERIALIZED_NAME_DATE = "date"; @SerializedName(SERIALIZED_NAME_DATE) diff --git a/src/main/java/com/plaid/client/model/CashflowReportInsightsGetRequest.java b/src/main/java/com/plaid/client/model/CashflowReportInsightsGetRequest.java index 4d65d8d56..aa2ddf535 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportInsightsGetRequest.java +++ b/src/main/java/com/plaid/client/model/CashflowReportInsightsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CashflowReportInsightsGetRequest defines the request schema for `/cashflow_report/insights/get` */ @ApiModel(description = "CashflowReportInsightsGetRequest defines the request schema for `/cashflow_report/insights/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportInsightsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CashflowReportInsightsGetResponse.java b/src/main/java/com/plaid/client/model/CashflowReportInsightsGetResponse.java index 7ab07de32..9bcbffb60 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportInsightsGetResponse.java +++ b/src/main/java/com/plaid/client/model/CashflowReportInsightsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * CashflowReportInsightsGetResponse defines the response schema for `/cashflow_report/insights/get` */ @ApiModel(description = "CashflowReportInsightsGetResponse defines the response schema for `/cashflow_report/insights/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportInsightsGetResponse { public static final String SERIALIZED_NAME_ITEM = "item"; @SerializedName(SERIALIZED_NAME_ITEM) diff --git a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummary.java b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummary.java index e7dbae502..100ce0b51 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummary.java +++ b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -40,7 +40,7 @@ * Monthly summary statistics derived from transaction-level data. */ @ApiModel(description = "Monthly summary statistics derived from transaction-level data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportMonthlySummary { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) diff --git a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyEndingBalance.java b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyEndingBalance.java index 86193360d..7f2b75dac 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyEndingBalance.java +++ b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyEndingBalance.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Calendar-day average of the ending balance. */ @ApiModel(description = "Calendar-day average of the ending balance.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportMonthlySummaryAverageDailyEndingBalance { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyInflowAmount.java b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyInflowAmount.java index 3173f86e4..0cf6f99d3 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyInflowAmount.java +++ b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyInflowAmount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The average daily sum of inflow transactions, calculated over the month. Always represented as a positive monetary amount. */ @ApiModel(description = "The average daily sum of inflow transactions, calculated over the month. Always represented as a positive monetary amount.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportMonthlySummaryAverageDailyInflowAmount { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyNetCashflowAmount.java b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyNetCashflowAmount.java index 1a6c6cf95..13c02f0bc 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyNetCashflowAmount.java +++ b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyNetCashflowAmount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The average daily net cash flow amount, calculated as total daily inflows less total daily outflows. */ @ApiModel(description = "The average daily net cash flow amount, calculated as total daily inflows less total daily outflows.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportMonthlySummaryAverageDailyNetCashflowAmount { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyOutflowAmount.java b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyOutflowAmount.java index 5d8bccfb8..12c814f51 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyOutflowAmount.java +++ b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyOutflowAmount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The average daily sum of outflow transactions, calculated over the month. Always represented as a positive monetary amount. */ @ApiModel(description = "The average daily sum of outflow transactions, calculated over the month. Always represented as a positive monetary amount.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportMonthlySummaryAverageDailyOutflowAmount { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryEndingBalance.java b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryEndingBalance.java index c7d3dd162..c8bd1b975 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryEndingBalance.java +++ b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryEndingBalance.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The ending balance of the month. This will be the same as the starting balance of the next month. This field will not be available for the last monthly summary. */ @ApiModel(description = "The ending balance of the month. This will be the same as the starting balance of the next month. This field will not be available for the last monthly summary.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportMonthlySummaryEndingBalance { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryStartingBalance.java b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryStartingBalance.java index 4a83d7d28..1a56074f0 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryStartingBalance.java +++ b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryStartingBalance.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The starting balance of the month. This will be the same as the ending balance of the previous month. This field will not be available for the first monthly summary. */ @ApiModel(description = "The starting balance of the month. This will be the same as the ending balance of the previous month. This field will not be available for the first monthly summary.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportMonthlySummaryStartingBalance { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalLoanPayment.java b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalLoanPayment.java index 2f3109f25..6d71bc184 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalLoanPayment.java +++ b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalLoanPayment.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The total amount of all loan payment transactions during this month. */ @ApiModel(description = "The total amount of all loan payment transactions during this month.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportMonthlySummaryTotalLoanPayment { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalPayroll.java b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalPayroll.java index 1bd2b70d5..4dae6643d 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalPayroll.java +++ b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalPayroll.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The total amount of all payroll transactions during this month. */ @ApiModel(description = "The total amount of all payroll transactions during this month.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportMonthlySummaryTotalPayroll { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalRevenue.java b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalRevenue.java index ba9529b27..4e6c54a90 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalRevenue.java +++ b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalRevenue.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The total amount of all revenue transactions during this month. */ @ApiModel(description = "The total amount of all revenue transactions during this month.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportMonthlySummaryTotalRevenue { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalVariableExpense.java b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalVariableExpense.java index 5b060ef82..0491c8643 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalVariableExpense.java +++ b/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalVariableExpense.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportMonthlySummaryTotalVariableExpense { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/CashflowReportPaymentMeta.java b/src/main/java/com/plaid/client/model/CashflowReportPaymentMeta.java index 033db797b..37f403931 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportPaymentMeta.java +++ b/src/main/java/com/plaid/client/model/CashflowReportPaymentMeta.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Transaction information specific to inter-bank transfers. If the transaction was not an inter-bank transfer, all fields will be `null`. */ @ApiModel(description = "Transaction information specific to inter-bank transfers. If the transaction was not an inter-bank transfer, all fields will be `null`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportPaymentMeta { public static final String SERIALIZED_NAME_REFERENCE_NUMBER = "reference_number"; @SerializedName(SERIALIZED_NAME_REFERENCE_NUMBER) diff --git a/src/main/java/com/plaid/client/model/CashflowReportRefreshRequest.java b/src/main/java/com/plaid/client/model/CashflowReportRefreshRequest.java index 19709f943..09e758b6e 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportRefreshRequest.java +++ b/src/main/java/com/plaid/client/model/CashflowReportRefreshRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CashflowReportRefreshRequest defines the request schema for `/cashflow_report/refresh` */ @ApiModel(description = "CashflowReportRefreshRequest defines the request schema for `/cashflow_report/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportRefreshRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CashflowReportRefreshResponse.java b/src/main/java/com/plaid/client/model/CashflowReportRefreshResponse.java index 544691a6a..f94148bd9 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportRefreshResponse.java +++ b/src/main/java/com/plaid/client/model/CashflowReportRefreshResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CashflowReportRefreshResponse defines the response schema for `/cashflow_report/response` */ @ApiModel(description = "CashflowReportRefreshResponse defines the response schema for `/cashflow_report/response`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportRefreshResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/CashflowReportTransaction.java b/src/main/java/com/plaid/client/model/CashflowReportTransaction.java index 3047e7f9e..558dd884f 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportTransaction.java +++ b/src/main/java/com/plaid/client/model/CashflowReportTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -40,7 +40,7 @@ * A representation of a transaction returned from Cashflow Report */ @ApiModel(description = "A representation of a transaction returned from Cashflow Report") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportTransaction { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/CashflowReportTransactionsGetRequest.java b/src/main/java/com/plaid/client/model/CashflowReportTransactionsGetRequest.java index a797d37ee..dc831db04 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportTransactionsGetRequest.java +++ b/src/main/java/com/plaid/client/model/CashflowReportTransactionsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * CashflowReportTransactionsGetRequest defines the request schema for `/cashflow_report/transactions/get` */ @ApiModel(description = "CashflowReportTransactionsGetRequest defines the request schema for `/cashflow_report/transactions/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportTransactionsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CashflowReportTransactionsGetRequestOptions.java b/src/main/java/com/plaid/client/model/CashflowReportTransactionsGetRequestOptions.java index 622746ed8..5213c8800 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportTransactionsGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/CashflowReportTransactionsGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An optional object to be used with the request. If specified, `options` must not be `null`. */ @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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportTransactionsGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) diff --git a/src/main/java/com/plaid/client/model/CashflowReportTransactionsGetResponse.java b/src/main/java/com/plaid/client/model/CashflowReportTransactionsGetResponse.java index e388718d5..6c24380a0 100644 --- a/src/main/java/com/plaid/client/model/CashflowReportTransactionsGetResponse.java +++ b/src/main/java/com/plaid/client/model/CashflowReportTransactionsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * CashflowReportTransactionsGetResponse defines the response schema for `/cashflow_report/transactions/get` */ @ApiModel(description = "CashflowReportTransactionsGetResponse defines the response schema for `/cashflow_report/transactions/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CashflowReportTransactionsGetResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) diff --git a/src/main/java/com/plaid/client/model/CategoriesGetResponse.java b/src/main/java/com/plaid/client/model/CategoriesGetResponse.java index c658df226..9dcc57512 100644 --- a/src/main/java/com/plaid/client/model/CategoriesGetResponse.java +++ b/src/main/java/com/plaid/client/model/CategoriesGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * CategoriesGetResponse defines the response schema for `/categories/get` */ @ApiModel(description = "CategoriesGetResponse defines the response schema for `/categories/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CategoriesGetResponse { public static final String SERIALIZED_NAME_CATEGORIES = "categories"; @SerializedName(SERIALIZED_NAME_CATEGORIES) diff --git a/src/main/java/com/plaid/client/model/Category.java b/src/main/java/com/plaid/client/model/Category.java index 1ed39c8e7..3e99b2757 100644 --- a/src/main/java/com/plaid/client/model/Category.java +++ b/src/main/java/com/plaid/client/model/Category.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Information describing a transaction category */ @ApiModel(description = "Information describing a transaction category") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Category { public static final String SERIALIZED_NAME_CATEGORY_ID = "category_id"; @SerializedName(SERIALIZED_NAME_CATEGORY_ID) diff --git a/src/main/java/com/plaid/client/model/CategoryExpenses.java b/src/main/java/com/plaid/client/model/CategoryExpenses.java index 070960530..70ecf17f7 100644 --- a/src/main/java/com/plaid/client/model/CategoryExpenses.java +++ b/src/main/java/com/plaid/client/model/CategoryExpenses.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Detailed expense information for a specific credit category, including transaction count and total amount spent. */ @ApiModel(description = "Detailed expense information for a specific credit category, including transaction count and total amount spent.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CategoryExpenses { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/CategoryInsightDetails.java b/src/main/java/com/plaid/client/model/CategoryInsightDetails.java index 9a1bb71dc..5b271eb50 100644 --- a/src/main/java/com/plaid/client/model/CategoryInsightDetails.java +++ b/src/main/java/com/plaid/client/model/CategoryInsightDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Insights object for categories. */ @ApiModel(description = "Insights object for categories.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CategoryInsightDetails { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/CategoryInsights.java b/src/main/java/com/plaid/client/model/CategoryInsights.java index 701ceeb8a..107cbe0fc 100644 --- a/src/main/java/com/plaid/client/model/CategoryInsights.java +++ b/src/main/java/com/plaid/client/model/CategoryInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Insights on a user's top personal finance categories. */ @ApiModel(description = "Insights on a user's top personal finance categories.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CategoryInsights { public static final String SERIALIZED_NAME_PRIMARY_CATEGORY_INSIGHTS = "primary_category_insights"; @SerializedName(SERIALIZED_NAME_PRIMARY_CATEGORY_INSIGHTS) diff --git a/src/main/java/com/plaid/client/model/Cause.java b/src/main/java/com/plaid/client/model/Cause.java index 02743a2ac..68e91ebc4 100644 --- a/src/main/java/com/plaid/client/model/Cause.java +++ b/src/main/java/com/plaid/client/model/Cause.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * An error object and associated `item_id` used to identify a specific Item and error when a batch operation operating on multiple Items has encountered an error in one of the Items. */ @ApiModel(description = "An error object and associated `item_id` used to identify a specific Item and error when a batch operation operating on multiple Items has encountered an error in one of the Items.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Cause { public static final String SERIALIZED_NAME_ERROR_TYPE = "error_type"; @SerializedName(SERIALIZED_NAME_ERROR_TYPE) diff --git a/src/main/java/com/plaid/client/model/CauseAllOf.java b/src/main/java/com/plaid/client/model/CauseAllOf.java index 69cc7efb5..7a170c414 100644 --- a/src/main/java/com/plaid/client/model/CauseAllOf.java +++ b/src/main/java/com/plaid/client/model/CauseAllOf.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -27,7 +27,7 @@ /** * CauseAllOf */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CauseAllOf { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) diff --git a/src/main/java/com/plaid/client/model/CheckReportWarning.java b/src/main/java/com/plaid/client/model/CheckReportWarning.java index c25012d52..d8e44d1ca 100644 --- a/src/main/java/com/plaid/client/model/CheckReportWarning.java +++ b/src/main/java/com/plaid/client/model/CheckReportWarning.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * It is possible for a Check Report product to be returned with missing information. In such cases, the product will contain warning data in the response, indicating why obtaining the owner information failed. */ @ApiModel(description = "It is possible for a Check Report product to be returned with missing information. In such cases, the product will contain warning data in the response, indicating why obtaining the owner information failed.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CheckReportWarning { public static final String SERIALIZED_NAME_WARNING_TYPE = "warning_type"; @SerializedName(SERIALIZED_NAME_WARNING_TYPE) diff --git a/src/main/java/com/plaid/client/model/CheckReportWarningCode.java b/src/main/java/com/plaid/client/model/CheckReportWarningCode.java index a0ae4e074..1c18a09ab 100644 --- a/src/main/java/com/plaid/client/model/CheckReportWarningCode.java +++ b/src/main/java/com/plaid/client/model/CheckReportWarningCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ClientCustomization.java b/src/main/java/com/plaid/client/model/ClientCustomization.java index 2238fe51b..ac31e8186 100644 --- a/src/main/java/com/plaid/client/model/ClientCustomization.java +++ b/src/main/java/com/plaid/client/model/ClientCustomization.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Custom client fields */ @ApiModel(description = "Custom client fields") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ClientCustomization { public static final String SERIALIZED_NAME_CUSTOM_ENTITY_ID = "custom_entity_id"; @SerializedName(SERIALIZED_NAME_CUSTOM_ENTITY_ID) diff --git a/src/main/java/com/plaid/client/model/ClientProvidedEnhancedTransaction.java b/src/main/java/com/plaid/client/model/ClientProvidedEnhancedTransaction.java index 7e7d1ac41..65bda8d63 100644 --- a/src/main/java/com/plaid/client/model/ClientProvidedEnhancedTransaction.java +++ b/src/main/java/com/plaid/client/model/ClientProvidedEnhancedTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A client-provided transaction that Plaid has enhanced. */ @ApiModel(description = "A client-provided transaction that Plaid has enhanced.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ClientProvidedEnhancedTransaction { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/ClientProvidedEnrichedTransaction.java b/src/main/java/com/plaid/client/model/ClientProvidedEnrichedTransaction.java index a93f4807f..7d0b13e82 100644 --- a/src/main/java/com/plaid/client/model/ClientProvidedEnrichedTransaction.java +++ b/src/main/java/com/plaid/client/model/ClientProvidedEnrichedTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A client-provided transaction that Plaid has enriched. */ @ApiModel(description = "A client-provided transaction that Plaid has enriched.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ClientProvidedEnrichedTransaction { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/ClientProvidedRawTransaction.java b/src/main/java/com/plaid/client/model/ClientProvidedRawTransaction.java index 2b3d5acd7..100a9729b 100644 --- a/src/main/java/com/plaid/client/model/ClientProvidedRawTransaction.java +++ b/src/main/java/com/plaid/client/model/ClientProvidedRawTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * A client-provided transaction for Plaid to enhance. */ @ApiModel(description = "A client-provided transaction for Plaid to enhance.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ClientProvidedRawTransaction { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/ClientProvidedTransaction.java b/src/main/java/com/plaid/client/model/ClientProvidedTransaction.java index 80f9e09c1..c5f565039 100644 --- a/src/main/java/com/plaid/client/model/ClientProvidedTransaction.java +++ b/src/main/java/com/plaid/client/model/ClientProvidedTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A client-provided transaction for Plaid to enrich. */ @ApiModel(description = "A client-provided transaction for Plaid to enrich.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ClientProvidedTransaction { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/ClientProvidedTransactionLocation.java b/src/main/java/com/plaid/client/model/ClientProvidedTransactionLocation.java index 16659cc48..f10788db8 100644 --- a/src/main/java/com/plaid/client/model/ClientProvidedTransactionLocation.java +++ b/src/main/java/com/plaid/client/model/ClientProvidedTransactionLocation.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * A representation of where a transaction took place. Use this field to pass in structured location information you may have about your transactions. Providing location data is optional but can increase result quality. If you have unstructured location information, it may be appended to the `description` field. */ @ApiModel(description = "A representation of where a transaction took place. Use this field to pass in structured location information you may have about your transactions. Providing location data is optional but can increase result quality. If you have unstructured location information, it may be appended to the `description` field.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ClientProvidedTransactionLocation { public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) diff --git a/src/main/java/com/plaid/client/model/ClientUserIdentity.java b/src/main/java/com/plaid/client/model/ClientUserIdentity.java index 519d3a7c3..3181c1b7b 100644 --- a/src/main/java/com/plaid/client/model/ClientUserIdentity.java +++ b/src/main/java/com/plaid/client/model/ClientUserIdentity.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -36,7 +36,7 @@ * The identity fields associated with a user. For a user to be eligible for a Plaid Check Consumer Report, all fields are required except `id_number`. Providing a partial SSN is strongly recommended, and improves the accuracy of matching user records during compliance processes such as file disclosure, dispute, or security freeze requests. If creating a report that will be shared with GSEs such as Fannie or Freddie, a full Social Security Number must be provided via the `id_number` field. */ @ApiModel(description = "The identity fields associated with a user. For a user to be eligible for a Plaid Check Consumer Report, all fields are required except `id_number`. Providing a partial SSN is strongly recommended, and improves the accuracy of matching user records during compliance processes such as file disclosure, dispute, or security freeze requests. If creating a report that will be shared with GSEs such as Fannie or Freddie, a full Social Security Number must be provided via the `id_number` field.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ClientUserIdentity { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/ClientUserIdentityAddress.java b/src/main/java/com/plaid/client/model/ClientUserIdentityAddress.java index 018f35935..5bce08076 100644 --- a/src/main/java/com/plaid/client/model/ClientUserIdentityAddress.java +++ b/src/main/java/com/plaid/client/model/ClientUserIdentityAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * User address information. */ @ApiModel(description = "User address information.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ClientUserIdentityAddress { public static final String SERIALIZED_NAME_STREET1 = "street_1"; @SerializedName(SERIALIZED_NAME_STREET1) diff --git a/src/main/java/com/plaid/client/model/ClientUserIdentityEmail.java b/src/main/java/com/plaid/client/model/ClientUserIdentityEmail.java index 325de8b5a..19f10d012 100644 --- a/src/main/java/com/plaid/client/model/ClientUserIdentityEmail.java +++ b/src/main/java/com/plaid/client/model/ClientUserIdentityEmail.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * User email information. */ @ApiModel(description = "User email information.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ClientUserIdentityEmail { public static final String SERIALIZED_NAME_DATA = "data"; @SerializedName(SERIALIZED_NAME_DATA) diff --git a/src/main/java/com/plaid/client/model/ClientUserIdentityName.java b/src/main/java/com/plaid/client/model/ClientUserIdentityName.java index 79adc0e0f..4c7b087ac 100644 --- a/src/main/java/com/plaid/client/model/ClientUserIdentityName.java +++ b/src/main/java/com/plaid/client/model/ClientUserIdentityName.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * User name information. */ @ApiModel(description = "User name information.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ClientUserIdentityName { public static final String SERIALIZED_NAME_GIVEN_NAME = "given_name"; @SerializedName(SERIALIZED_NAME_GIVEN_NAME) diff --git a/src/main/java/com/plaid/client/model/ClientUserIdentityPhoneNumber.java b/src/main/java/com/plaid/client/model/ClientUserIdentityPhoneNumber.java index 696397c32..dca29bfb3 100644 --- a/src/main/java/com/plaid/client/model/ClientUserIdentityPhoneNumber.java +++ b/src/main/java/com/plaid/client/model/ClientUserIdentityPhoneNumber.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * User phone number information. */ @ApiModel(description = "User phone number information.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ClientUserIdentityPhoneNumber { public static final String SERIALIZED_NAME_DATA = "data"; @SerializedName(SERIALIZED_NAME_DATA) diff --git a/src/main/java/com/plaid/client/model/ConnectedApplication.java b/src/main/java/com/plaid/client/model/ConnectedApplication.java index 357fcbaad..2c26f20f0 100644 --- a/src/main/java/com/plaid/client/model/ConnectedApplication.java +++ b/src/main/java/com/plaid/client/model/ConnectedApplication.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Describes the connected application for a particular end user. */ @ApiModel(description = "Describes the connected application for a particular end user.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ConnectedApplication { public static final String SERIALIZED_NAME_APPLICATION_ID = "application_id"; @SerializedName(SERIALIZED_NAME_APPLICATION_ID) diff --git a/src/main/java/com/plaid/client/model/ConsentEvent.java b/src/main/java/com/plaid/client/model/ConsentEvent.java index 8f54f15a6..7de533d67 100644 --- a/src/main/java/com/plaid/client/model/ConsentEvent.java +++ b/src/main/java/com/plaid/client/model/ConsentEvent.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * Describes a consent event. */ @ApiModel(description = "Describes a consent event.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ConsentEvent { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) diff --git a/src/main/java/com/plaid/client/model/ConsentEventCode.java b/src/main/java/com/plaid/client/model/ConsentEventCode.java index cf04a6835..124d6748c 100644 --- a/src/main/java/com/plaid/client/model/ConsentEventCode.java +++ b/src/main/java/com/plaid/client/model/ConsentEventCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ConsentEventInitiator.java b/src/main/java/com/plaid/client/model/ConsentEventInitiator.java index 32ebf2ff5..503b97cf2 100644 --- a/src/main/java/com/plaid/client/model/ConsentEventInitiator.java +++ b/src/main/java/com/plaid/client/model/ConsentEventInitiator.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ConsentEventType.java b/src/main/java/com/plaid/client/model/ConsentEventType.java index 220489eb8..65b9e00ba 100644 --- a/src/main/java/com/plaid/client/model/ConsentEventType.java +++ b/src/main/java/com/plaid/client/model/ConsentEventType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ConsentEventsGetRequest.java b/src/main/java/com/plaid/client/model/ConsentEventsGetRequest.java index 85acd9e75..2cdc9bf0e 100644 --- a/src/main/java/com/plaid/client/model/ConsentEventsGetRequest.java +++ b/src/main/java/com/plaid/client/model/ConsentEventsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request to list a historical log of item consent events. */ @ApiModel(description = "Request to list a historical log of item consent events.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ConsentEventsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ConsentEventsGetResponse.java b/src/main/java/com/plaid/client/model/ConsentEventsGetResponse.java index 37a869338..f3de6598d 100644 --- a/src/main/java/com/plaid/client/model/ConsentEventsGetResponse.java +++ b/src/main/java/com/plaid/client/model/ConsentEventsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Describes a historical log of item consent events. */ @ApiModel(description = "Describes a historical log of item consent events.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ConsentEventsGetResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/ConsentedAccount.java b/src/main/java/com/plaid/client/model/ConsentedAccount.java index af3bd1b83..d47af4c7a 100644 --- a/src/main/java/com/plaid/client/model/ConsentedAccount.java +++ b/src/main/java/com/plaid/client/model/ConsentedAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * A financial institution account. */ @ApiModel(description = "A financial institution account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ConsentedAccount { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/ConsumerDispute.java b/src/main/java/com/plaid/client/model/ConsumerDispute.java index 45a4dadf1..e3237d999 100644 --- a/src/main/java/com/plaid/client/model/ConsumerDispute.java +++ b/src/main/java/com/plaid/client/model/ConsumerDispute.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The information about a previously submitted valid dispute statement by the consumer */ @ApiModel(description = "The information about a previously submitted valid dispute statement by the consumer") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ConsumerDispute { public static final String SERIALIZED_NAME_CONSUMER_DISPUTE_ID = "consumer_dispute_id"; @SerializedName(SERIALIZED_NAME_CONSUMER_DISPUTE_ID) diff --git a/src/main/java/com/plaid/client/model/ConsumerDisputeCategory.java b/src/main/java/com/plaid/client/model/ConsumerDisputeCategory.java index 88d828941..00c15ea70 100644 --- a/src/main/java/com/plaid/client/model/ConsumerDisputeCategory.java +++ b/src/main/java/com/plaid/client/model/ConsumerDisputeCategory.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ConsumerReportPDFGetRequest.java b/src/main/java/com/plaid/client/model/ConsumerReportPDFGetRequest.java index 3d77c0271..30adce48a 100644 --- a/src/main/java/com/plaid/client/model/ConsumerReportPDFGetRequest.java +++ b/src/main/java/com/plaid/client/model/ConsumerReportPDFGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ConsumerReportPDFGetRequest defines the request schema for `/consumer_report/pdf/get` */ @ApiModel(description = "ConsumerReportPDFGetRequest defines the request schema for `/consumer_report/pdf/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ConsumerReportPDFGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ConsumerReportPermissiblePurpose.java b/src/main/java/com/plaid/client/model/ConsumerReportPermissiblePurpose.java index 5ed1bb256..ce84588fe 100644 --- a/src/main/java/com/plaid/client/model/ConsumerReportPermissiblePurpose.java +++ b/src/main/java/com/plaid/client/model/ConsumerReportPermissiblePurpose.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -25,7 +25,7 @@ import com.google.gson.stream.JsonWriter; /** - * Describes the reason you are generating a Consumer Report for this user. `ACCOUNT_REVIEW_CREDIT`: In connection with a consumer credit transaction for the review or collection of an account pursuant to FCRA Section 604(a)(3)(A). `ACCOUNT_REVIEW_NON_CREDIT`: For a legitimate business need of the information to review a non-credit account provided primarily for personal, family, or household purposes to determine whether the consumer continues to meet the terms of the account pursuant to FCRA Section 604(a)(3)(F)(2). `EXTENSION_OF_CREDIT`: In connection with a credit transaction initiated by and involving the consumer pursuant to FCRA Section 604(a)(3)(A). `LEGITIMATE_BUSINESS_NEED_TENANT_SCREENING`: For a legitimate business need in connection with a business transaction initiated by the consumer primarily for personal, family, or household purposes in connection with a property rental assessment pursuant to FCRA Section 604(a)(3)(F)(i). `LEGITIMATE_BUSINESS_NEED_OTHER`: For a legitimate business need in connection with a business transaction made primarily for personal, family, or household initiated by the consumer pursuant to FCRA Section 604(a)(3)(F)(i). `WRITTEN_INSTRUCTION_PREQUALIFICATION`: In accordance with the written instructions of the consumer pursuant to FCRA Section 604(a)(2), to evaluate an application’s profile to make an offer to the consumer. `WRITTEN_INSTRUCTION_OTHER`: In accordance with the written instructions of the consumer pursuant to FCRA Section 604(a)(2), such as when an individual agrees to act as a guarantor or assumes personal liability for a consumer, business, or commercial loan. `ELIGIBILITY_FOR_GOVT_BENEFITS`: In connection with an eligibility determination for a government benefit where the entity is required to consider an applicant’s financial status pursuant to FCRA Section 604(a)(3)(D). + * Describes the reason you are generating a Consumer Report for this user. When calling `/link/token/create`, this field is required when using Plaid Check (CRA) products; invalid if not using Plaid Check (CRA) products. `ACCOUNT_REVIEW_CREDIT`: In connection with a consumer credit transaction for the review or collection of an account pursuant to FCRA Section 604(a)(3)(A). `ACCOUNT_REVIEW_NON_CREDIT`: For a legitimate business need of the information to review a non-credit account provided primarily for personal, family, or household purposes to determine whether the consumer continues to meet the terms of the account pursuant to FCRA Section 604(a)(3)(F)(2). `EXTENSION_OF_CREDIT`: In connection with a credit transaction initiated by and involving the consumer pursuant to FCRA Section 604(a)(3)(A). `LEGITIMATE_BUSINESS_NEED_TENANT_SCREENING`: For a legitimate business need in connection with a business transaction initiated by the consumer primarily for personal, family, or household purposes in connection with a property rental assessment pursuant to FCRA Section 604(a)(3)(F)(i). `LEGITIMATE_BUSINESS_NEED_OTHER`: For a legitimate business need in connection with a business transaction made primarily for personal, family, or household initiated by the consumer pursuant to FCRA Section 604(a)(3)(F)(i). `WRITTEN_INSTRUCTION_PREQUALIFICATION`: In accordance with the written instructions of the consumer pursuant to FCRA Section 604(a)(2), to evaluate an application’s profile to make an offer to the consumer. `WRITTEN_INSTRUCTION_OTHER`: In accordance with the written instructions of the consumer pursuant to FCRA Section 604(a)(2), such as when an individual agrees to act as a guarantor or assumes personal liability for a consumer, business, or commercial loan. `ELIGIBILITY_FOR_GOVT_BENEFITS`: In connection with an eligibility determination for a government benefit where the entity is required to consider an applicant’s financial status pursuant to FCRA Section 604(a)(3)(D). */ @JsonAdapter(ConsumerReportPermissiblePurpose.Adapter.class) public enum ConsumerReportPermissiblePurpose { diff --git a/src/main/java/com/plaid/client/model/ConsumerReportUserIdentity.java b/src/main/java/com/plaid/client/model/ConsumerReportUserIdentity.java index bac096259..92748e41c 100644 --- a/src/main/java/com/plaid/client/model/ConsumerReportUserIdentity.java +++ b/src/main/java/com/plaid/client/model/ConsumerReportUserIdentity.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * This field is only used by integrations created before December 10, 2025. All other integrations must use the `identity` object instead. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis). To create a Plaid Check Consumer Report for a user when using a `user_token`, this field must be present. If this field is not provided during user token creation, you can add it to the user later by calling `/user/update`. Once the field has been added to the user, you will be able to call `/link/token/create` with a non-empty `consumer_report_permissible_purpose` (which will automatically create a Plaid Check Consumer Report), or call `/cra/check_report/create` for that user. */ @ApiModel(description = "This field is only used by integrations created before December 10, 2025. All other integrations must use the `identity` object instead. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis). To create a Plaid Check Consumer Report for a user when using a `user_token`, this field must be present. If this field is not provided during user token creation, you can add it to the user later by calling `/user/update`. Once the field has been added to the user, you will be able to call `/link/token/create` with a non-empty `consumer_report_permissible_purpose` (which will automatically create a Plaid Check Consumer Report), or call `/cra/check_report/create` for that user.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ConsumerReportUserIdentity { public static final String SERIALIZED_NAME_FIRST_NAME = "first_name"; @SerializedName(SERIALIZED_NAME_FIRST_NAME) diff --git a/src/main/java/com/plaid/client/model/Counterparty.java b/src/main/java/com/plaid/client/model/Counterparty.java index 0d7f2efa7..c819864a5 100644 --- a/src/main/java/com/plaid/client/model/Counterparty.java +++ b/src/main/java/com/plaid/client/model/Counterparty.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The counterparty, such as the merchant or financial institution, is extracted by Plaid from the raw description. */ @ApiModel(description = "The counterparty, such as the merchant or financial institution, is extracted by Plaid from the raw description.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Counterparty { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/CounterpartyInsights.java b/src/main/java/com/plaid/client/model/CounterpartyInsights.java index 8fb96836f..d0361bd96 100644 --- a/src/main/java/com/plaid/client/model/CounterpartyInsights.java +++ b/src/main/java/com/plaid/client/model/CounterpartyInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Insights around a user's counterparties */ @ApiModel(description = "Insights around a user's counterparties") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CounterpartyInsights { public static final String SERIALIZED_NAME_FINANCIAL_INSTITUTION_INSIGHTS = "financial_institution_insights"; @SerializedName(SERIALIZED_NAME_FINANCIAL_INSTITUTION_INSIGHTS) diff --git a/src/main/java/com/plaid/client/model/CounterpartyNumbers.java b/src/main/java/com/plaid/client/model/CounterpartyNumbers.java index 0b6050746..046859aed 100644 --- a/src/main/java/com/plaid/client/model/CounterpartyNumbers.java +++ b/src/main/java/com/plaid/client/model/CounterpartyNumbers.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Account numbers associated with the counterparty, when available. This field is currently only filled in for select financial institutions in Europe. */ @ApiModel(description = "Account numbers associated with the counterparty, when available. This field is currently only filled in for select financial institutions in Europe.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CounterpartyNumbers { public static final String SERIALIZED_NAME_BACS = "bacs"; @SerializedName(SERIALIZED_NAME_BACS) diff --git a/src/main/java/com/plaid/client/model/CounterpartyNumbersBACS.java b/src/main/java/com/plaid/client/model/CounterpartyNumbersBACS.java index e2d0b3548..3949098d3 100644 --- a/src/main/java/com/plaid/client/model/CounterpartyNumbersBACS.java +++ b/src/main/java/com/plaid/client/model/CounterpartyNumbersBACS.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Identifying information for a UK bank account via BACS. */ @ApiModel(description = "Identifying information for a UK bank account via BACS.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CounterpartyNumbersBACS { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) diff --git a/src/main/java/com/plaid/client/model/CounterpartyNumbersInternational.java b/src/main/java/com/plaid/client/model/CounterpartyNumbersInternational.java index ba40996dd..645b61e23 100644 --- a/src/main/java/com/plaid/client/model/CounterpartyNumbersInternational.java +++ b/src/main/java/com/plaid/client/model/CounterpartyNumbersInternational.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Account numbers using the International Bank Account Number and BIC/SWIFT code format. */ @ApiModel(description = "Account numbers using the International Bank Account Number and BIC/SWIFT code format.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CounterpartyNumbersInternational { public static final String SERIALIZED_NAME_IBAN = "iban"; @SerializedName(SERIALIZED_NAME_IBAN) diff --git a/src/main/java/com/plaid/client/model/CounterpartyType.java b/src/main/java/com/plaid/client/model/CounterpartyType.java index cf8c26fba..7ab04ed55 100644 --- a/src/main/java/com/plaid/client/model/CounterpartyType.java +++ b/src/main/java/com/plaid/client/model/CounterpartyType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CountryCode.java b/src/main/java/com/plaid/client/model/CountryCode.java index 2f4c21225..8501b306e 100644 --- a/src/main/java/com/plaid/client/model/CountryCode.java +++ b/src/main/java/com/plaid/client/model/CountryCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeAccount.java b/src/main/java/com/plaid/client/model/CraBankIncomeAccount.java index 9f3b3fbeb..4f7e11989 100644 --- a/src/main/java/com/plaid/client/model/CraBankIncomeAccount.java +++ b/src/main/java/com/plaid/client/model/CraBankIncomeAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * The Item's bank accounts that have the selected data. */ @ApiModel(description = "The Item's bank accounts that have the selected data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraBankIncomeAccount { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeAccountMetadata.java b/src/main/java/com/plaid/client/model/CraBankIncomeAccountMetadata.java index 0e827c9fd..baaf8c6c2 100644 --- a/src/main/java/com/plaid/client/model/CraBankIncomeAccountMetadata.java +++ b/src/main/java/com/plaid/client/model/CraBankIncomeAccountMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object containing metadata about the extracted account. */ @ApiModel(description = "An object containing metadata about the extracted account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraBankIncomeAccountMetadata { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeBonusType.java b/src/main/java/com/plaid/client/model/CraBankIncomeBonusType.java index 539555b35..e08e97bb1 100644 --- a/src/main/java/com/plaid/client/model/CraBankIncomeBonusType.java +++ b/src/main/java/com/plaid/client/model/CraBankIncomeBonusType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeCause.java b/src/main/java/com/plaid/client/model/CraBankIncomeCause.java index b8a1e4aca..fe9fc09a2 100644 --- a/src/main/java/com/plaid/client/model/CraBankIncomeCause.java +++ b/src/main/java/com/plaid/client/model/CraBankIncomeCause.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An error object and associated `item_id` used to identify a specific Item and error when a batch operation operating on multiple Items has encountered an error in one of the Items. */ @ApiModel(description = "An error object and associated `item_id` used to identify a specific Item and error when a batch operation operating on multiple Items has encountered an error in one of the Items.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraBankIncomeCause { public static final String SERIALIZED_NAME_ERROR_TYPE = "error_type"; @SerializedName(SERIALIZED_NAME_ERROR_TYPE) diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeCompleteResult.java b/src/main/java/com/plaid/client/model/CraBankIncomeCompleteResult.java index b67cea131..53ccd24f2 100644 --- a/src/main/java/com/plaid/client/model/CraBankIncomeCompleteResult.java +++ b/src/main/java/com/plaid/client/model/CraBankIncomeCompleteResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeCompleteWebhook.java b/src/main/java/com/plaid/client/model/CraBankIncomeCompleteWebhook.java index 68535ee0d..65f7610e4 100644 --- a/src/main/java/com/plaid/client/model/CraBankIncomeCompleteWebhook.java +++ b/src/main/java/com/plaid/client/model/CraBankIncomeCompleteWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Fired when a bank income report has finished generating or failed to generate, triggered by calling `/cra/bank_income/get`. */ @ApiModel(description = "Fired when a bank income report has finished generating or failed to generate, triggered by calling `/cra/bank_income/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraBankIncomeCompleteWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeEmployer.java b/src/main/java/com/plaid/client/model/CraBankIncomeEmployer.java index e9d56c0d5..8f321f82d 100644 --- a/src/main/java/com/plaid/client/model/CraBankIncomeEmployer.java +++ b/src/main/java/com/plaid/client/model/CraBankIncomeEmployer.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The object containing employer data. */ @ApiModel(description = "The object containing employer data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraBankIncomeEmployer { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeErrorWebhook.java b/src/main/java/com/plaid/client/model/CraBankIncomeErrorWebhook.java index 9b0cf444c..e3be947f1 100644 --- a/src/main/java/com/plaid/client/model/CraBankIncomeErrorWebhook.java +++ b/src/main/java/com/plaid/client/model/CraBankIncomeErrorWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraBankIncomeErrorWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeHistoricalSummary.java b/src/main/java/com/plaid/client/model/CraBankIncomeHistoricalSummary.java index 459d150bb..a0e13ae59 100644 --- a/src/main/java/com/plaid/client/model/CraBankIncomeHistoricalSummary.java +++ b/src/main/java/com/plaid/client/model/CraBankIncomeHistoricalSummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * The end user's monthly summary for the income source(s). */ @ApiModel(description = "The end user's monthly summary for the income source(s).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraBankIncomeHistoricalSummary { public static final String SERIALIZED_NAME_TOTAL_AMOUNTS = "total_amounts"; @SerializedName(SERIALIZED_NAME_TOTAL_AMOUNTS) diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeIncomeProvider.java b/src/main/java/com/plaid/client/model/CraBankIncomeIncomeProvider.java index cd6464535..8bb2d5984 100644 --- a/src/main/java/com/plaid/client/model/CraBankIncomeIncomeProvider.java +++ b/src/main/java/com/plaid/client/model/CraBankIncomeIncomeProvider.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The object containing data about the income provider. */ @ApiModel(description = "The object containing data about the income provider.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraBankIncomeIncomeProvider { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeItem.java b/src/main/java/com/plaid/client/model/CraBankIncomeItem.java index 83bf4eb44..fa09e17d1 100644 --- a/src/main/java/com/plaid/client/model/CraBankIncomeItem.java +++ b/src/main/java/com/plaid/client/model/CraBankIncomeItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * The details and metadata for an end user's Item. */ @ApiModel(description = "The details and metadata for an end user's Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraBankIncomeItem { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeSource.java b/src/main/java/com/plaid/client/model/CraBankIncomeSource.java index b35350d36..28d3a8e2b 100644 --- a/src/main/java/com/plaid/client/model/CraBankIncomeSource.java +++ b/src/main/java/com/plaid/client/model/CraBankIncomeSource.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -39,7 +39,7 @@ * Detailed information for the income source. */ @ApiModel(description = "Detailed information for the income source.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraBankIncomeSource { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeStatus.java b/src/main/java/com/plaid/client/model/CraBankIncomeStatus.java index 6d48c4031..bdc90d029 100644 --- a/src/main/java/com/plaid/client/model/CraBankIncomeStatus.java +++ b/src/main/java/com/plaid/client/model/CraBankIncomeStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeSummary.java b/src/main/java/com/plaid/client/model/CraBankIncomeSummary.java index 41b2673ca..64a5ac53f 100644 --- a/src/main/java/com/plaid/client/model/CraBankIncomeSummary.java +++ b/src/main/java/com/plaid/client/model/CraBankIncomeSummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Summary for income across all income sources and items (max history of 730 days). */ @ApiModel(description = "Summary for income across all income sources and items (max history of 730 days).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraBankIncomeSummary { public static final String SERIALIZED_NAME_TOTAL_AMOUNTS = "total_amounts"; @SerializedName(SERIALIZED_NAME_TOTAL_AMOUNTS) diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeTransaction.java b/src/main/java/com/plaid/client/model/CraBankIncomeTransaction.java index a7c5f35e6..a1c28cf4d 100644 --- a/src/main/java/com/plaid/client/model/CraBankIncomeTransaction.java +++ b/src/main/java/com/plaid/client/model/CraBankIncomeTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The transactions data for the end user's income source(s). */ @ApiModel(description = "The transactions data for the end user's income source(s).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraBankIncomeTransaction { public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id"; @SerializedName(SERIALIZED_NAME_TRANSACTION_ID) diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeWarning.java b/src/main/java/com/plaid/client/model/CraBankIncomeWarning.java index 1ff1614e7..ccae7ba32 100644 --- a/src/main/java/com/plaid/client/model/CraBankIncomeWarning.java +++ b/src/main/java/com/plaid/client/model/CraBankIncomeWarning.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The warning associated with the data that was unavailable. */ @ApiModel(description = "The warning associated with the data that was unavailable.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraBankIncomeWarning { public static final String SERIALIZED_NAME_WARNING_TYPE = "warning_type"; @SerializedName(SERIALIZED_NAME_WARNING_TYPE) diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeWarningCode.java b/src/main/java/com/plaid/client/model/CraBankIncomeWarningCode.java index 72ab72db9..698456416 100644 --- a/src/main/java/com/plaid/client/model/CraBankIncomeWarningCode.java +++ b/src/main/java/com/plaid/client/model/CraBankIncomeWarningCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CraCashflowInsightsReport.java b/src/main/java/com/plaid/client/model/CraCashflowInsightsReport.java index e29be00f7..2305b2a39 100644 --- a/src/main/java/com/plaid/client/model/CraCashflowInsightsReport.java +++ b/src/main/java/com/plaid/client/model/CraCashflowInsightsReport.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Contains data for the CRA Cashflow Insights Report. */ @ApiModel(description = "Contains data for the CRA Cashflow Insights Report.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCashflowInsightsReport { public static final String SERIALIZED_NAME_REPORT_ID = "report_id"; @SerializedName(SERIALIZED_NAME_REPORT_ID) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportBaseReportGetRequest.java b/src/main/java/com/plaid/client/model/CraCheckReportBaseReportGetRequest.java index d7c6ac542..34e5ab685 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportBaseReportGetRequest.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportBaseReportGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * BaseReportGetRequest defines the request schema for `/cra/check_report/base_report/get` */ @ApiModel(description = "BaseReportGetRequest defines the request schema for `/cra/check_report/base_report/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportBaseReportGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportBaseReportGetResponse.java b/src/main/java/com/plaid/client/model/CraCheckReportBaseReportGetResponse.java index 99ba5717b..9dd042e5b 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportBaseReportGetResponse.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportBaseReportGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * CraCheckReportBaseReportGetResponse defines the response schema for `/cra/check_report/base_report/get` */ @ApiModel(description = "CraCheckReportBaseReportGetResponse defines the response schema for `/cra/check_report/base_report/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportBaseReportGetResponse { public static final String SERIALIZED_NAME_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetOptions.java b/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetOptions.java index 2bfb4cdfd..c3e5d5a65 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetOptions.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Defines configuration options to generate Cashflow Insights */ @ApiModel(description = "Defines configuration options to generate Cashflow Insights") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportCashflowInsightsGetOptions { public static final String SERIALIZED_NAME_PLAID_CHECK_SCORE_VERSION = "plaid_check_score_version"; @SerializedName(SERIALIZED_NAME_PLAID_CHECK_SCORE_VERSION) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetRequest.java b/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetRequest.java index f83a651df..d6f8caaf4 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetRequest.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * CraCheckReportCashflowInsightsGetRequest defines the request schema for `/cra/check_report/cashflow_insights/get`. */ @ApiModel(description = "CraCheckReportCashflowInsightsGetRequest defines the request schema for `/cra/check_report/cashflow_insights/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportCashflowInsightsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetResponse.java b/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetResponse.java index 10290c06f..3d09d1255 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetResponse.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * CraCheckReportCashflowInsightsGetResponse defines the response schema for `/cra/check_report/cashflow_insights/get`. */ @ApiModel(description = "CraCheckReportCashflowInsightsGetResponse defines the response schema for `/cra/check_report/cashflow_insights/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportCashflowInsightsGetResponse { public static final String SERIALIZED_NAME_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportCreateBaseReportOptions.java b/src/main/java/com/plaid/client/model/CraCheckReportCreateBaseReportOptions.java index f8366a1b8..e3cd92bde 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportCreateBaseReportOptions.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportCreateBaseReportOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines configuration options to generate a Base Report */ @ApiModel(description = "Defines configuration options to generate a Base Report") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportCreateBaseReportOptions { public static final String SERIALIZED_NAME_CLIENT_REPORT_ID = "client_report_id"; @SerializedName(SERIALIZED_NAME_CLIENT_REPORT_ID) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportCreatePartnerInsightsOptions.java b/src/main/java/com/plaid/client/model/CraCheckReportCreatePartnerInsightsOptions.java index 12445379c..19b5a8b2d 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportCreatePartnerInsightsOptions.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportCreatePartnerInsightsOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -20,6 +20,7 @@ import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; +import com.plaid.client.model.CraPartnerInsightsFicoInput; import com.plaid.client.model.PrismProduct; import com.plaid.client.model.PrismVersions; import io.swagger.annotations.ApiModel; @@ -32,7 +33,7 @@ * Defines configuration to generate Partner Insights. */ @ApiModel(description = "Defines configuration to generate Partner Insights.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportCreatePartnerInsightsOptions { public static final String SERIALIZED_NAME_PRISM_PRODUCTS = "prism_products"; @SerializedName(SERIALIZED_NAME_PRISM_PRODUCTS) @@ -42,6 +43,10 @@ public class CraCheckReportCreatePartnerInsightsOptions { @SerializedName(SERIALIZED_NAME_PRISM_VERSIONS) private PrismVersions prismVersions; + public static final String SERIALIZED_NAME_FICO = "fico"; + @SerializedName(SERIALIZED_NAME_FICO) + private CraPartnerInsightsFicoInput fico; + public CraCheckReportCreatePartnerInsightsOptions prismProducts(List prismProducts) { @@ -97,6 +102,29 @@ public void setPrismVersions(PrismVersions prismVersions) { } + public CraCheckReportCreatePartnerInsightsOptions fico(CraPartnerInsightsFicoInput fico) { + + this.fico = fico; + return this; + } + + /** + * Get fico + * @return fico + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public CraPartnerInsightsFicoInput getFico() { + return fico; + } + + + public void setFico(CraPartnerInsightsFicoInput fico) { + this.fico = fico; + } + + @Override public boolean equals(Object o) { if (this == o) { @@ -107,12 +135,13 @@ public boolean equals(Object o) { } CraCheckReportCreatePartnerInsightsOptions craCheckReportCreatePartnerInsightsOptions = (CraCheckReportCreatePartnerInsightsOptions) o; return Objects.equals(this.prismProducts, craCheckReportCreatePartnerInsightsOptions.prismProducts) && - Objects.equals(this.prismVersions, craCheckReportCreatePartnerInsightsOptions.prismVersions); + Objects.equals(this.prismVersions, craCheckReportCreatePartnerInsightsOptions.prismVersions) && + Objects.equals(this.fico, craCheckReportCreatePartnerInsightsOptions.fico); } @Override public int hashCode() { - return Objects.hash(prismProducts, prismVersions); + return Objects.hash(prismProducts, prismVersions, fico); } @Override @@ -121,6 +150,7 @@ public String toString() { sb.append("class CraCheckReportCreatePartnerInsightsOptions {\n"); sb.append(" prismProducts: ").append(toIndentedString(prismProducts)).append("\n"); sb.append(" prismVersions: ").append(toIndentedString(prismVersions)).append("\n"); + sb.append(" fico: ").append(toIndentedString(fico)).append("\n"); sb.append("}"); return sb.toString(); } diff --git a/src/main/java/com/plaid/client/model/CraCheckReportCreateRequest.java b/src/main/java/com/plaid/client/model/CraCheckReportCreateRequest.java index b2f1d6859..9055393c2 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportCreateRequest.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -37,7 +37,7 @@ * CraCheckReportCreateRequest defines the request schema for `/cra/check_report/create`. */ @ApiModel(description = "CraCheckReportCreateRequest defines the request schema for `/cra/check_report/create`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportCreateResponse.java b/src/main/java/com/plaid/client/model/CraCheckReportCreateResponse.java index 17eb06c6d..62413d7be 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportCreateResponse.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CraCheckReportCreateResponse defines the response schema for `/cra/check_report/create`. */ @ApiModel(description = "CraCheckReportCreateResponse defines the response schema for `/cra/check_report/create`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportCreateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportFailedWebhook.java b/src/main/java/com/plaid/client/model/CraCheckReportFailedWebhook.java index d90ea4bb8..ef8545b5c 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportFailedWebhook.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportFailedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when a Check Report has failed to generate. To get more details, call `/user/items/get` and check for non-null `error` objects on the associated Items in the response. These `error` objects will contain more details on why the Item is in an error state and how to resolve it. After resolving the errors, you can try to re-generate the report. */ @ApiModel(description = "Fired when a Check Report has failed to generate. To get more details, call `/user/items/get` and check for non-null `error` objects on the associated Items in the response. These `error` objects will contain more details on why the Item is in an error state and how to resolve it. After resolving the errors, you can try to re-generate the report.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportFailedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportFreddieMacGetRequest.java b/src/main/java/com/plaid/client/model/CraCheckReportFreddieMacGetRequest.java index b2b6fd39b..312e8e2a8 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportFreddieMacGetRequest.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportFreddieMacGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CraCheckReportFreddieMacGetRequest defines the request schema for `/cra/check_report/freddie_mac/get` */ @ApiModel(description = "CraCheckReportFreddieMacGetRequest defines the request schema for `/cra/check_report/freddie_mac/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportFreddieMacGetRequest { public static final String SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN = "third_party_user_token"; @SerializedName(SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportFreddieMacGetResponse.java b/src/main/java/com/plaid/client/model/CraCheckReportFreddieMacGetResponse.java index 5c12fa1f9..cd4a610af 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportFreddieMacGetResponse.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportFreddieMacGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * CraCheckReportFreddieMacGetResponse defines the response schema for `/cra/check_report/freddie_mac/get` */ @ApiModel(description = "CraCheckReportFreddieMacGetResponse defines the response schema for `/cra/check_report/freddie_mac/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportFreddieMacGetResponse { public static final String SERIALIZED_NAME_D_E_A_L = "DEAL"; @SerializedName(SERIALIZED_NAME_D_E_A_L) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportFreddieMacVerificationOfAssetsDeal.java b/src/main/java/com/plaid/client/model/CraCheckReportFreddieMacVerificationOfAssetsDeal.java index b92d8e36f..38362741b 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportFreddieMacVerificationOfAssetsDeal.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportFreddieMacVerificationOfAssetsDeal.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * An object representing a Base Report with Freddie Mac schema. */ @ApiModel(description = "An object representing a Base Report with Freddie Mac schema.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportFreddieMacVerificationOfAssetsDeal { public static final String SERIALIZED_NAME_L_O_A_N_S = "LOANS"; @SerializedName(SERIALIZED_NAME_L_O_A_N_S) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportGSEOptions.java b/src/main/java/com/plaid/client/model/CraCheckReportGSEOptions.java index 9e5250700..ae2ff4431 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportGSEOptions.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportGSEOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Specifies options for creating reports that can be shared with GSEs for mortgage verification. */ @ApiModel(description = "Specifies options for creating reports that can be shared with GSEs for mortgage verification.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportGSEOptions { public static final String SERIALIZED_NAME_REPORT_TYPES = "report_types"; @SerializedName(SERIALIZED_NAME_REPORT_TYPES) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportIncomeInsightsGetRequest.java b/src/main/java/com/plaid/client/model/CraCheckReportIncomeInsightsGetRequest.java index 0e0963d7c..14e493081 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportIncomeInsightsGetRequest.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportIncomeInsightsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/cra/check_report/income_insights/get`. */ @ApiModel(description = "Defines the request schema for `/cra/check_report/income_insights/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportIncomeInsightsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportIncomeInsightsGetResponse.java b/src/main/java/com/plaid/client/model/CraCheckReportIncomeInsightsGetResponse.java index 498706c1e..beec3cce1 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportIncomeInsightsGetResponse.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportIncomeInsightsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * CraCheckReportIncomeInsightsGetResponse defines the response schema for `/cra/check_report/income_insights/get`. */ @ApiModel(description = "CraCheckReportIncomeInsightsGetResponse defines the response schema for `/cra/check_report/income_insights/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportIncomeInsightsGetResponse { public static final String SERIALIZED_NAME_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportLendScoreGetOptions.java b/src/main/java/com/plaid/client/model/CraCheckReportLendScoreGetOptions.java index 4f1a0f068..68593f6bd 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportLendScoreGetOptions.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportLendScoreGetOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines configuration options to generate the LendScore */ @ApiModel(description = "Defines configuration options to generate the LendScore") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportLendScoreGetOptions { public static final String SERIALIZED_NAME_LEND_SCORE_VERSION = "lend_score_version"; @SerializedName(SERIALIZED_NAME_LEND_SCORE_VERSION) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportLendScoreGetRequest.java b/src/main/java/com/plaid/client/model/CraCheckReportLendScoreGetRequest.java index ee0f9f49a..a752725ad 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportLendScoreGetRequest.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportLendScoreGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * CraCheckReportLendScoreGetRequest defines the request schema for `/cra/check_report/lend_score/get`. */ @ApiModel(description = "CraCheckReportLendScoreGetRequest defines the request schema for `/cra/check_report/lend_score/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportLendScoreGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportLendScoreGetResponse.java b/src/main/java/com/plaid/client/model/CraCheckReportLendScoreGetResponse.java index 3bc23c54f..fdef3020d 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportLendScoreGetResponse.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportLendScoreGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * CraCheckReportLendScoreGetResponse defines the response schema for `/cra/check_report/lend_score/get`. */ @ApiModel(description = "CraCheckReportLendScoreGetResponse defines the response schema for `/cra/check_report/lend_score/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportLendScoreGetResponse { public static final String SERIALIZED_NAME_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportNetworkInsightsGetOptions.java b/src/main/java/com/plaid/client/model/CraCheckReportNetworkInsightsGetOptions.java index 5f97a5afc..318a84b17 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportNetworkInsightsGetOptions.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportNetworkInsightsGetOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines configuration options to generate Network Insights */ @ApiModel(description = "Defines configuration options to generate Network Insights") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportNetworkInsightsGetOptions { public static final String SERIALIZED_NAME_NETWORK_INSIGHTS_VERSION = "network_insights_version"; @SerializedName(SERIALIZED_NAME_NETWORK_INSIGHTS_VERSION) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportNetworkInsightsGetRequest.java b/src/main/java/com/plaid/client/model/CraCheckReportNetworkInsightsGetRequest.java index 212b10fd2..139b7b6e3 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportNetworkInsightsGetRequest.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportNetworkInsightsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * CraCheckReportNetworkInsightsGetRequest defines the request schema for `/cra/check_report/network_insights/get`. */ @ApiModel(description = "CraCheckReportNetworkInsightsGetRequest defines the request schema for `/cra/check_report/network_insights/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportNetworkInsightsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportNetworkInsightsGetResponse.java b/src/main/java/com/plaid/client/model/CraCheckReportNetworkInsightsGetResponse.java index 29d4d0528..ecd3cd06d 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportNetworkInsightsGetResponse.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportNetworkInsightsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * CraCheckReportNetworkInsightsGetResponse defines the response schema for `/cra/check_report/network_attributes/get`. */ @ApiModel(description = "CraCheckReportNetworkInsightsGetResponse defines the response schema for `/cra/check_report/network_attributes/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportNetworkInsightsGetResponse { public static final String SERIALIZED_NAME_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportPDFGetRequest.java b/src/main/java/com/plaid/client/model/CraCheckReportPDFGetRequest.java index d97d40550..179a7d279 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportPDFGetRequest.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportPDFGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * CraCheckReportPDFGetRequest defines the request schema for `/cra/check_report/pdf/get`. */ @ApiModel(description = "CraCheckReportPDFGetRequest defines the request schema for `/cra/check_report/pdf/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportPDFGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetOptions.java b/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetOptions.java index 94984422b..d55b56c56 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetOptions.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Deprecated, specify `partner_insights.prism_versions` instead. */ @ApiModel(description = "Deprecated, specify `partner_insights.prism_versions` instead.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportPartnerInsightsGetOptions { public static final String SERIALIZED_NAME_PRISM_PRODUCTS = "prism_products"; @SerializedName(SERIALIZED_NAME_PRISM_PRODUCTS) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetPartnerInsights.java b/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetPartnerInsights.java index b22b00e25..3e26d428d 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetPartnerInsights.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetPartnerInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -20,6 +20,7 @@ import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; +import com.plaid.client.model.CraPartnerInsightsFicoInput; import com.plaid.client.model.PrismVersions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; @@ -29,12 +30,16 @@ * Defines configuration to generate Partner Insights */ @ApiModel(description = "Defines configuration to generate Partner Insights") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportPartnerInsightsGetPartnerInsights { public static final String SERIALIZED_NAME_PRISM_VERSIONS = "prism_versions"; @SerializedName(SERIALIZED_NAME_PRISM_VERSIONS) private PrismVersions prismVersions; + public static final String SERIALIZED_NAME_FICO = "fico"; + @SerializedName(SERIALIZED_NAME_FICO) + private CraPartnerInsightsFicoInput fico; + public CraCheckReportPartnerInsightsGetPartnerInsights prismVersions(PrismVersions prismVersions) { @@ -59,6 +64,29 @@ public void setPrismVersions(PrismVersions prismVersions) { } + public CraCheckReportPartnerInsightsGetPartnerInsights fico(CraPartnerInsightsFicoInput fico) { + + this.fico = fico; + return this; + } + + /** + * Get fico + * @return fico + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public CraPartnerInsightsFicoInput getFico() { + return fico; + } + + + public void setFico(CraPartnerInsightsFicoInput fico) { + this.fico = fico; + } + + @Override public boolean equals(Object o) { if (this == o) { @@ -68,12 +96,13 @@ public boolean equals(Object o) { return false; } CraCheckReportPartnerInsightsGetPartnerInsights craCheckReportPartnerInsightsGetPartnerInsights = (CraCheckReportPartnerInsightsGetPartnerInsights) o; - return Objects.equals(this.prismVersions, craCheckReportPartnerInsightsGetPartnerInsights.prismVersions); + return Objects.equals(this.prismVersions, craCheckReportPartnerInsightsGetPartnerInsights.prismVersions) && + Objects.equals(this.fico, craCheckReportPartnerInsightsGetPartnerInsights.fico); } @Override public int hashCode() { - return Objects.hash(prismVersions); + return Objects.hash(prismVersions, fico); } @Override @@ -81,6 +110,7 @@ public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportPartnerInsightsGetPartnerInsights {\n"); sb.append(" prismVersions: ").append(toIndentedString(prismVersions)).append("\n"); + sb.append(" fico: ").append(toIndentedString(fico)).append("\n"); sb.append("}"); return sb.toString(); } diff --git a/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetRequest.java b/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetRequest.java index af42f1b9f..867db24c4 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetRequest.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * CraPartnerInsightsGetRequest defines the request schema for `/cra/partner_insights/get`. */ @ApiModel(description = "CraPartnerInsightsGetRequest defines the request schema for `/cra/partner_insights/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportPartnerInsightsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetResponse.java b/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetResponse.java index caf86f545..d06c2f9bb 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetResponse.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * CraPartnerInsightsGetResponse defines the response schema for `/cra/partner_insights/get`. */ @ApiModel(description = "CraPartnerInsightsGetResponse defines the response schema for `/cra/partner_insights/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportPartnerInsightsGetResponse { public static final String SERIALIZED_NAME_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportReadyWebhook.java b/src/main/java/com/plaid/client/model/CraCheckReportReadyWebhook.java index 69f74430c..04dbd52eb 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportReadyWebhook.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportReadyWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Fired when the Check Report are ready to be retrieved. Once this webhook has fired, the report will be available to retrieve for 24 hours. */ @ApiModel(description = "Fired when the Check Report are ready to be retrieved. Once this webhook has fired, the report will be available to retrieve for 24 hours.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportReadyWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetEmploymentRefreshOptions.java b/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetEmploymentRefreshOptions.java index 59607ec71..011c214e1 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetEmploymentRefreshOptions.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetEmploymentRefreshOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportVerificationGetEmploymentRefreshOptions { public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetReportType.java b/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetReportType.java index bf88a4e4c..6015cc9b0 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetReportType.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetReportType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetRequest.java b/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetRequest.java index e2d874126..92c6d1a91 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetRequest.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * CraCheckReportVerificationGetRequest defines the request schema for `/cra/check_report/verification/get`. */ @ApiModel(description = "CraCheckReportVerificationGetRequest defines the request schema for `/cra/check_report/verification/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportVerificationGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetResponse.java b/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetResponse.java index 6051dbf67..0694b42f3 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetResponse.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * CraCheckReportVerificationGetResponse defines the response schema for `/cra/check_report/verification/get`. */ @ApiModel(description = "CraCheckReportVerificationGetResponse defines the response schema for `/cra/check_report/verification/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportVerificationGetResponse { public static final String SERIALIZED_NAME_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportVerificationPdfGetRequest.java b/src/main/java/com/plaid/client/model/CraCheckReportVerificationPdfGetRequest.java index dc7f33426..096a86d77 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportVerificationPdfGetRequest.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportVerificationPdfGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * CraCheckReportVerificationPdfGetRequest defines the request schema for `/cra/check_report/verification/pdf/get`. */ @ApiModel(description = "CraCheckReportVerificationPdfGetRequest defines the request schema for `/cra/check_report/verification/pdf/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraCheckReportVerificationPdfGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CraCheckReportVerificationPdfReportType.java b/src/main/java/com/plaid/client/model/CraCheckReportVerificationPdfReportType.java index db686b7ae..caacb67a1 100644 --- a/src/main/java/com/plaid/client/model/CraCheckReportVerificationPdfReportType.java +++ b/src/main/java/com/plaid/client/model/CraCheckReportVerificationPdfReportType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CraEmploymentRefreshReport.java b/src/main/java/com/plaid/client/model/CraEmploymentRefreshReport.java index 5f76a902b..0b57614f8 100644 --- a/src/main/java/com/plaid/client/model/CraEmploymentRefreshReport.java +++ b/src/main/java/com/plaid/client/model/CraEmploymentRefreshReport.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * An object representing an Employment Refresh Report. */ @ApiModel(description = "An object representing an Employment Refresh Report.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraEmploymentRefreshReport { public static final String SERIALIZED_NAME_GENERATED_TIME = "generated_time"; @SerializedName(SERIALIZED_NAME_GENERATED_TIME) diff --git a/src/main/java/com/plaid/client/model/CraEmploymentRefreshReportAccount.java b/src/main/java/com/plaid/client/model/CraEmploymentRefreshReportAccount.java index aafe96b2e..422670879 100644 --- a/src/main/java/com/plaid/client/model/CraEmploymentRefreshReportAccount.java +++ b/src/main/java/com/plaid/client/model/CraEmploymentRefreshReportAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Employment Refresh Report information about an account. */ @ApiModel(description = "Employment Refresh Report information about an account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraEmploymentRefreshReportAccount { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/CraEmploymentRefreshReportItem.java b/src/main/java/com/plaid/client/model/CraEmploymentRefreshReportItem.java index 5ad16a4cf..88ccb0106 100644 --- a/src/main/java/com/plaid/client/model/CraEmploymentRefreshReportItem.java +++ b/src/main/java/com/plaid/client/model/CraEmploymentRefreshReportItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * A representation of an Item within an Employment Refresh Report. */ @ApiModel(description = "A representation of an Item within an Employment Refresh Report.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraEmploymentRefreshReportItem { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) diff --git a/src/main/java/com/plaid/client/model/CraEmploymentRefreshReportTransaction.java b/src/main/java/com/plaid/client/model/CraEmploymentRefreshReportTransaction.java index 6e7a6762c..e07279311 100644 --- a/src/main/java/com/plaid/client/model/CraEmploymentRefreshReportTransaction.java +++ b/src/main/java/com/plaid/client/model/CraEmploymentRefreshReportTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A transaction on the Employment Refresh Report. Note that this transaction differs from a Base Report transaction in that it will only be deposits, and the amounts will be omitted. */ @ApiModel(description = "A transaction on the Employment Refresh Report. Note that this transaction differs from a Base Report transaction in that it will only be deposits, and the amounts will be omitted.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraEmploymentRefreshReportTransaction { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/CraIncomeInsights.java b/src/main/java/com/plaid/client/model/CraIncomeInsights.java index 36cc52cfd..9d150d121 100644 --- a/src/main/java/com/plaid/client/model/CraIncomeInsights.java +++ b/src/main/java/com/plaid/client/model/CraIncomeInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * The Check Income Insights Report for an end user. */ @ApiModel(description = "The Check Income Insights Report for an end user.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraIncomeInsights { public static final String SERIALIZED_NAME_REPORT_ID = "report_id"; @SerializedName(SERIALIZED_NAME_REPORT_ID) diff --git a/src/main/java/com/plaid/client/model/CraLendScoreReport.java b/src/main/java/com/plaid/client/model/CraLendScoreReport.java index 657b43503..ab4819bc7 100644 --- a/src/main/java/com/plaid/client/model/CraLendScoreReport.java +++ b/src/main/java/com/plaid/client/model/CraLendScoreReport.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Contains data for the CRA LendScore Report. */ @ApiModel(description = "Contains data for the CRA LendScore Report.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraLendScoreReport { public static final String SERIALIZED_NAME_REPORT_ID = "report_id"; @SerializedName(SERIALIZED_NAME_REPORT_ID) diff --git a/src/main/java/com/plaid/client/model/CraLoanApplication.java b/src/main/java/com/plaid/client/model/CraLoanApplication.java index 6adab871e..74e116400 100644 --- a/src/main/java/com/plaid/client/model/CraLoanApplication.java +++ b/src/main/java/com/plaid/client/model/CraLoanApplication.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Contains loan application data. */ @ApiModel(description = "Contains loan application data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraLoanApplication { public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) diff --git a/src/main/java/com/plaid/client/model/CraLoanApplicationDecision.java b/src/main/java/com/plaid/client/model/CraLoanApplicationDecision.java index a2424ec99..7981cf26a 100644 --- a/src/main/java/com/plaid/client/model/CraLoanApplicationDecision.java +++ b/src/main/java/com/plaid/client/model/CraLoanApplicationDecision.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CraLoanClosedStatus.java b/src/main/java/com/plaid/client/model/CraLoanClosedStatus.java index fe6eafc79..55cc14e66 100644 --- a/src/main/java/com/plaid/client/model/CraLoanClosedStatus.java +++ b/src/main/java/com/plaid/client/model/CraLoanClosedStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Contains the status and date information of the loan when unregistering. */ @ApiModel(description = "Contains the status and date information of the loan when unregistering.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraLoanClosedStatus { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/CraLoanOpenedStatus.java b/src/main/java/com/plaid/client/model/CraLoanOpenedStatus.java index e37f190f8..f2fd68016 100644 --- a/src/main/java/com/plaid/client/model/CraLoanOpenedStatus.java +++ b/src/main/java/com/plaid/client/model/CraLoanOpenedStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Contains the status and date information of the loan when registering. */ @ApiModel(description = "Contains the status and date information of the loan when registering.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraLoanOpenedStatus { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/CraLoanPaymentHistory.java b/src/main/java/com/plaid/client/model/CraLoanPaymentHistory.java index b379bb1c6..212bec6bd 100644 --- a/src/main/java/com/plaid/client/model/CraLoanPaymentHistory.java +++ b/src/main/java/com/plaid/client/model/CraLoanPaymentHistory.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Contains the payment information for a loan payment period. */ @ApiModel(description = "Contains the payment information for a loan payment period.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraLoanPaymentHistory { public static final String SERIALIZED_NAME_PERIOD = "period"; @SerializedName(SERIALIZED_NAME_PERIOD) diff --git a/src/main/java/com/plaid/client/model/CraLoanPaymentSchedule.java b/src/main/java/com/plaid/client/model/CraLoanPaymentSchedule.java index e5232469e..6502d77c4 100644 --- a/src/main/java/com/plaid/client/model/CraLoanPaymentSchedule.java +++ b/src/main/java/com/plaid/client/model/CraLoanPaymentSchedule.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CraLoanRegister.java b/src/main/java/com/plaid/client/model/CraLoanRegister.java index d1665a771..7500608bb 100644 --- a/src/main/java/com/plaid/client/model/CraLoanRegister.java +++ b/src/main/java/com/plaid/client/model/CraLoanRegister.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * Contains loan data to register. */ @ApiModel(description = "Contains loan data to register.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraLoanRegister { public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) diff --git a/src/main/java/com/plaid/client/model/CraLoanRegisterApplication.java b/src/main/java/com/plaid/client/model/CraLoanRegisterApplication.java index e3af36b94..faad6e3cc 100644 --- a/src/main/java/com/plaid/client/model/CraLoanRegisterApplication.java +++ b/src/main/java/com/plaid/client/model/CraLoanRegisterApplication.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Contains loan application data to register. */ @ApiModel(description = "Contains loan application data to register.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraLoanRegisterApplication { public static final String SERIALIZED_NAME_APPLICATION_ID = "application_id"; @SerializedName(SERIALIZED_NAME_APPLICATION_ID) diff --git a/src/main/java/com/plaid/client/model/CraLoanStatus.java b/src/main/java/com/plaid/client/model/CraLoanStatus.java index f4bbd0ccd..52cb68eb6 100644 --- a/src/main/java/com/plaid/client/model/CraLoanStatus.java +++ b/src/main/java/com/plaid/client/model/CraLoanStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CraLoanStatusHistoryUpdate.java b/src/main/java/com/plaid/client/model/CraLoanStatusHistoryUpdate.java index ac1c234b0..93b07cf2f 100644 --- a/src/main/java/com/plaid/client/model/CraLoanStatusHistoryUpdate.java +++ b/src/main/java/com/plaid/client/model/CraLoanStatusHistoryUpdate.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Contains the status and date of an update to the loan. */ @ApiModel(description = "Contains the status and date of an update to the loan.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraLoanStatusHistoryUpdate { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/CraLoanType.java b/src/main/java/com/plaid/client/model/CraLoanType.java index 173417d8a..0efaeabd2 100644 --- a/src/main/java/com/plaid/client/model/CraLoanType.java +++ b/src/main/java/com/plaid/client/model/CraLoanType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CraLoanUnregister.java b/src/main/java/com/plaid/client/model/CraLoanUnregister.java index ad82cc775..05edbcd32 100644 --- a/src/main/java/com/plaid/client/model/CraLoanUnregister.java +++ b/src/main/java/com/plaid/client/model/CraLoanUnregister.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Contains loan data for the loan being unregistered. */ @ApiModel(description = "Contains loan data for the loan being unregistered.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraLoanUnregister { public static final String SERIALIZED_NAME_LOAN_ID = "loan_id"; @SerializedName(SERIALIZED_NAME_LOAN_ID) diff --git a/src/main/java/com/plaid/client/model/CraLoanUnregisterResponse.java b/src/main/java/com/plaid/client/model/CraLoanUnregisterResponse.java index 71c9a27da..0d5db39fa 100644 --- a/src/main/java/com/plaid/client/model/CraLoanUnregisterResponse.java +++ b/src/main/java/com/plaid/client/model/CraLoanUnregisterResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CraLoanUnregisterResponse defines the response schema for `/cra/loans/unregister`. */ @ApiModel(description = "CraLoanUnregisterResponse defines the response schema for `/cra/loans/unregister`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraLoanUnregisterResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/CraLoanUpdate.java b/src/main/java/com/plaid/client/model/CraLoanUpdate.java index 14f482aae..4198b93ed 100644 --- a/src/main/java/com/plaid/client/model/CraLoanUpdate.java +++ b/src/main/java/com/plaid/client/model/CraLoanUpdate.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Contains loan data to update. */ @ApiModel(description = "Contains loan data to update.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraLoanUpdate { public static final String SERIALIZED_NAME_LOAN_ID = "loan_id"; @SerializedName(SERIALIZED_NAME_LOAN_ID) diff --git a/src/main/java/com/plaid/client/model/CraLoansApplicationsRegisterRequest.java b/src/main/java/com/plaid/client/model/CraLoansApplicationsRegisterRequest.java index c79101ef2..8a3b7f69a 100644 --- a/src/main/java/com/plaid/client/model/CraLoansApplicationsRegisterRequest.java +++ b/src/main/java/com/plaid/client/model/CraLoansApplicationsRegisterRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * CraLoansApplicationsRegisterRequest defines the request schema for `/cra/loans/applications/register`. */ @ApiModel(description = "CraLoansApplicationsRegisterRequest defines the request schema for `/cra/loans/applications/register`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraLoansApplicationsRegisterRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CraLoansApplicationsRegisterResponse.java b/src/main/java/com/plaid/client/model/CraLoansApplicationsRegisterResponse.java index 21c3f86f4..a12230df9 100644 --- a/src/main/java/com/plaid/client/model/CraLoansApplicationsRegisterResponse.java +++ b/src/main/java/com/plaid/client/model/CraLoansApplicationsRegisterResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CraLoansApplicationsRegisterResponse defines the response schema for `/cra/loans/applications/register`. */ @ApiModel(description = "CraLoansApplicationsRegisterResponse defines the response schema for `/cra/loans/applications/register`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraLoansApplicationsRegisterResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/CraLoansRegisterResponse.java b/src/main/java/com/plaid/client/model/CraLoansRegisterResponse.java index 0034979f5..be0b91654 100644 --- a/src/main/java/com/plaid/client/model/CraLoansRegisterResponse.java +++ b/src/main/java/com/plaid/client/model/CraLoansRegisterResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CraLoansRegisterResponse defines the response schema for `/cra/loans/register`. */ @ApiModel(description = "CraLoansRegisterResponse defines the response schema for `/cra/loans/register`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraLoansRegisterResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/CraLoansUnregisterRequest.java b/src/main/java/com/plaid/client/model/CraLoansUnregisterRequest.java index 6d3198aeb..ada620df9 100644 --- a/src/main/java/com/plaid/client/model/CraLoansUnregisterRequest.java +++ b/src/main/java/com/plaid/client/model/CraLoansUnregisterRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * CraLoansUnregisterRequest defines the request schema for `/cra/loans/unregister` */ @ApiModel(description = "CraLoansUnregisterRequest defines the request schema for `/cra/loans/unregister`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraLoansUnregisterRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CraLoansUpdateRequest.java b/src/main/java/com/plaid/client/model/CraLoansUpdateRequest.java index 225cda41d..a922c80ab 100644 --- a/src/main/java/com/plaid/client/model/CraLoansUpdateRequest.java +++ b/src/main/java/com/plaid/client/model/CraLoansUpdateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * CraLoansUpdateRequest defines the request schema for `/cra/loans/update` */ @ApiModel(description = "CraLoansUpdateRequest defines the request schema for `/cra/loans/update`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraLoansUpdateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CraLoansUpdateResponse.java b/src/main/java/com/plaid/client/model/CraLoansUpdateResponse.java index 2a2e15fd2..e5870b019 100644 --- a/src/main/java/com/plaid/client/model/CraLoansUpdateResponse.java +++ b/src/main/java/com/plaid/client/model/CraLoansUpdateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CraLoansUpdateResponse defines the response schema for `/cra/loans/update`. */ @ApiModel(description = "CraLoansUpdateResponse defines the response schema for `/cra/loans/update`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraLoansUpdateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/CraMonitoringInsightsGetRequest.java b/src/main/java/com/plaid/client/model/CraMonitoringInsightsGetRequest.java index a18b31c76..b3ef4e0bf 100644 --- a/src/main/java/com/plaid/client/model/CraMonitoringInsightsGetRequest.java +++ b/src/main/java/com/plaid/client/model/CraMonitoringInsightsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * CraMonitoringInsightsGetRequest defines the request schema for `/cra/monitoring_insights/get` */ @ApiModel(description = "CraMonitoringInsightsGetRequest defines the request schema for `/cra/monitoring_insights/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraMonitoringInsightsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CraMonitoringInsightsGetResponse.java b/src/main/java/com/plaid/client/model/CraMonitoringInsightsGetResponse.java index c1b451261..307260f53 100644 --- a/src/main/java/com/plaid/client/model/CraMonitoringInsightsGetResponse.java +++ b/src/main/java/com/plaid/client/model/CraMonitoringInsightsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * CraMonitoringInsightsGetResponse defines the response schema for `cra/monitoring_insights/get` */ @ApiModel(description = "CraMonitoringInsightsGetResponse defines the response schema for `cra/monitoring_insights/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraMonitoringInsightsGetResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/CraMonitoringInsightsItem.java b/src/main/java/com/plaid/client/model/CraMonitoringInsightsItem.java index 3c55de000..23cbebf6b 100644 --- a/src/main/java/com/plaid/client/model/CraMonitoringInsightsItem.java +++ b/src/main/java/com/plaid/client/model/CraMonitoringInsightsItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * An object representing a Monitoring Insights Item */ @ApiModel(description = "An object representing a Monitoring Insights Item") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraMonitoringInsightsItem { public static final String SERIALIZED_NAME_DATE_GENERATED = "date_generated"; @SerializedName(SERIALIZED_NAME_DATE_GENERATED) diff --git a/src/main/java/com/plaid/client/model/CraMonitoringInsightsSubscribeRequest.java b/src/main/java/com/plaid/client/model/CraMonitoringInsightsSubscribeRequest.java index 1ff93236d..be0a17e10 100644 --- a/src/main/java/com/plaid/client/model/CraMonitoringInsightsSubscribeRequest.java +++ b/src/main/java/com/plaid/client/model/CraMonitoringInsightsSubscribeRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * CraMonitoringInsightsSubscribeRequest defines the request schema for `/cra/monitoring_insights/subscribe` */ @ApiModel(description = "CraMonitoringInsightsSubscribeRequest defines the request schema for `/cra/monitoring_insights/subscribe`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraMonitoringInsightsSubscribeRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CraMonitoringInsightsSubscribeResponse.java b/src/main/java/com/plaid/client/model/CraMonitoringInsightsSubscribeResponse.java index 63b2f9e74..cf9f7ce25 100644 --- a/src/main/java/com/plaid/client/model/CraMonitoringInsightsSubscribeResponse.java +++ b/src/main/java/com/plaid/client/model/CraMonitoringInsightsSubscribeResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CraMonitoringInsightsSubscribeResponse defines the response schema for `cra/monitoring_insights/subscribe` */ @ApiModel(description = "CraMonitoringInsightsSubscribeResponse defines the response schema for `cra/monitoring_insights/subscribe`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraMonitoringInsightsSubscribeResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/CraMonitoringInsightsUnsubscribeRequest.java b/src/main/java/com/plaid/client/model/CraMonitoringInsightsUnsubscribeRequest.java index 88e6f51b4..a0e3ebb48 100644 --- a/src/main/java/com/plaid/client/model/CraMonitoringInsightsUnsubscribeRequest.java +++ b/src/main/java/com/plaid/client/model/CraMonitoringInsightsUnsubscribeRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CraMonitoringInsightsUnsubscribeRequest defines the request schema for `/cra/monitoring_insights/unsubscribe` */ @ApiModel(description = "CraMonitoringInsightsUnsubscribeRequest defines the request schema for `/cra/monitoring_insights/unsubscribe`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraMonitoringInsightsUnsubscribeRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CraMonitoringInsightsUnsubscribeResponse.java b/src/main/java/com/plaid/client/model/CraMonitoringInsightsUnsubscribeResponse.java index 274d53683..6c7b24d8c 100644 --- a/src/main/java/com/plaid/client/model/CraMonitoringInsightsUnsubscribeResponse.java +++ b/src/main/java/com/plaid/client/model/CraMonitoringInsightsUnsubscribeResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CraMonitoringInsightsUnsubscribeResponse defines the response schema for `cra/monitoring_insights/unsubscribe` */ @ApiModel(description = "CraMonitoringInsightsUnsubscribeResponse defines the response schema for `cra/monitoring_insights/unsubscribe`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraMonitoringInsightsUnsubscribeResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/CraNetworkInsightsItem.java b/src/main/java/com/plaid/client/model/CraNetworkInsightsItem.java index aa62b0eb1..02eeb4868 100644 --- a/src/main/java/com/plaid/client/model/CraNetworkInsightsItem.java +++ b/src/main/java/com/plaid/client/model/CraNetworkInsightsItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Contains data about the connected Item. */ @ApiModel(description = "Contains data about the connected Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraNetworkInsightsItem { public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) diff --git a/src/main/java/com/plaid/client/model/CraNetworkInsightsReport.java b/src/main/java/com/plaid/client/model/CraNetworkInsightsReport.java index ea6de28b0..f2ee7cd61 100644 --- a/src/main/java/com/plaid/client/model/CraNetworkInsightsReport.java +++ b/src/main/java/com/plaid/client/model/CraNetworkInsightsReport.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Contains data for the CRA Network Attributes Report. */ @ApiModel(description = "Contains data for the CRA Network Attributes Report.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraNetworkInsightsReport { public static final String SERIALIZED_NAME_REPORT_ID = "report_id"; @SerializedName(SERIALIZED_NAME_REPORT_ID) diff --git a/src/main/java/com/plaid/client/model/CraPDFAddOns.java b/src/main/java/com/plaid/client/model/CraPDFAddOns.java index ce48a4302..1e46d30b1 100644 --- a/src/main/java/com/plaid/client/model/CraPDFAddOns.java +++ b/src/main/java/com/plaid/client/model/CraPDFAddOns.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsights.java b/src/main/java/com/plaid/client/model/CraPartnerInsights.java index 5619e251e..f1129338f 100644 --- a/src/main/java/com/plaid/client/model/CraPartnerInsights.java +++ b/src/main/java/com/plaid/client/model/CraPartnerInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -20,6 +20,7 @@ import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; +import com.plaid.client.model.CraPartnerInsightsFicoResults; import com.plaid.client.model.CraPartnerInsightsItem; import com.plaid.client.model.CraPartnerInsightsPrism; import io.swagger.annotations.ApiModel; @@ -33,7 +34,7 @@ * The Partner Insights report of the bank data for an end user. */ @ApiModel(description = "The Partner Insights report of the bank data for an end user.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraPartnerInsights { public static final String SERIALIZED_NAME_REPORT_ID = "report_id"; @SerializedName(SERIALIZED_NAME_REPORT_ID) @@ -47,6 +48,10 @@ public class CraPartnerInsights { @SerializedName(SERIALIZED_NAME_CLIENT_REPORT_ID) private String clientReportId; + public static final String SERIALIZED_NAME_FICO = "fico"; + @SerializedName(SERIALIZED_NAME_FICO) + private CraPartnerInsightsFicoResults fico; + public static final String SERIALIZED_NAME_PRISM = "prism"; @SerializedName(SERIALIZED_NAME_PRISM) private CraPartnerInsightsPrism prism; @@ -125,6 +130,29 @@ public void setClientReportId(String clientReportId) { } + public CraPartnerInsights fico(CraPartnerInsightsFicoResults fico) { + + this.fico = fico; + return this; + } + + /** + * Get fico + * @return fico + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public CraPartnerInsightsFicoResults getFico() { + return fico; + } + + + public void setFico(CraPartnerInsightsFicoResults fico) { + this.fico = fico; + } + + public CraPartnerInsights prism(CraPartnerInsightsPrism prism) { this.prism = prism; @@ -191,13 +219,14 @@ public boolean equals(Object o) { return Objects.equals(this.reportId, craPartnerInsights.reportId) && Objects.equals(this.generatedTime, craPartnerInsights.generatedTime) && Objects.equals(this.clientReportId, craPartnerInsights.clientReportId) && + Objects.equals(this.fico, craPartnerInsights.fico) && Objects.equals(this.prism, craPartnerInsights.prism) && Objects.equals(this.items, craPartnerInsights.items); } @Override public int hashCode() { - return Objects.hash(reportId, generatedTime, clientReportId, prism, items); + return Objects.hash(reportId, generatedTime, clientReportId, fico, prism, items); } @Override @@ -207,6 +236,7 @@ public String toString() { sb.append(" reportId: ").append(toIndentedString(reportId)).append("\n"); sb.append(" generatedTime: ").append(toIndentedString(generatedTime)).append("\n"); sb.append(" clientReportId: ").append(toIndentedString(clientReportId)).append("\n"); + sb.append(" fico: ").append(toIndentedString(fico)).append("\n"); sb.append(" prism: ").append(toIndentedString(prism)).append("\n"); sb.append(" items: ").append(toIndentedString(items)).append("\n"); sb.append("}"); diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsightsBaseFicoScore.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsBaseFicoScore.java new file mode 100644 index 000000000..c6a349b5c --- /dev/null +++ b/src/main/java/com/plaid/client/model/CraPartnerInsightsBaseFicoScore.java @@ -0,0 +1,301 @@ +/* + * 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.682.2 + * + * + * 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.CraPartnerInsightsBaseFicoScoreVersion; +import com.plaid.client.model.CraPartnerInsightsBureau; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; + +/** + * Details about the base FICO score associated with an UltraFICO scoring request. + */ +@ApiModel(description = "Details about the base FICO score associated with an UltraFICO scoring request.") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") +public class CraPartnerInsightsBaseFicoScore { + public static final String SERIALIZED_NAME_BUREAU = "bureau"; + @SerializedName(SERIALIZED_NAME_BUREAU) + private CraPartnerInsightsBureau bureau; + + public static final String SERIALIZED_NAME_SCORE = "score"; + @SerializedName(SERIALIZED_NAME_SCORE) + private Integer score; + + public static final String SERIALIZED_NAME_REASON_CODE1 = "reason_code_1"; + @SerializedName(SERIALIZED_NAME_REASON_CODE1) + private String reasonCode1; + + public static final String SERIALIZED_NAME_REASON_CODE2 = "reason_code_2"; + @SerializedName(SERIALIZED_NAME_REASON_CODE2) + private String reasonCode2; + + public static final String SERIALIZED_NAME_REASON_CODE3 = "reason_code_3"; + @SerializedName(SERIALIZED_NAME_REASON_CODE3) + private String reasonCode3; + + public static final String SERIALIZED_NAME_REASON_CODE4 = "reason_code_4"; + @SerializedName(SERIALIZED_NAME_REASON_CODE4) + private String reasonCode4; + + public static final String SERIALIZED_NAME_DID_INQUIRIES_ADVERSELY_AFFECT_SCORE = "did_inquiries_adversely_affect_score"; + @SerializedName(SERIALIZED_NAME_DID_INQUIRIES_ADVERSELY_AFFECT_SCORE) + private Boolean didInquiriesAdverselyAffectScore; + + public static final String SERIALIZED_NAME_BASE_FICO_SCORE_VERSION = "base_fico_score_version"; + @SerializedName(SERIALIZED_NAME_BASE_FICO_SCORE_VERSION) + private CraPartnerInsightsBaseFicoScoreVersion baseFicoScoreVersion; + + + public CraPartnerInsightsBaseFicoScore bureau(CraPartnerInsightsBureau bureau) { + + this.bureau = bureau; + return this; + } + + /** + * Get bureau + * @return bureau + **/ + @ApiModelProperty(required = true, value = "") + + public CraPartnerInsightsBureau getBureau() { + return bureau; + } + + + public void setBureau(CraPartnerInsightsBureau bureau) { + this.bureau = bureau; + } + + + public CraPartnerInsightsBaseFicoScore score(Integer score) { + + this.score = score; + return this; + } + + /** + * Numeric value of the base FICO score. + * @return score + **/ + @ApiModelProperty(required = true, value = "Numeric value of the base FICO score.") + + public Integer getScore() { + return score; + } + + + public void setScore(Integer score) { + this.score = score; + } + + + public CraPartnerInsightsBaseFicoScore reasonCode1(String reasonCode1) { + + this.reasonCode1 = reasonCode1; + return this; + } + + /** + * The first reason code associated with the score. + * @return reasonCode1 + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "The first reason code associated with the score.") + + public String getReasonCode1() { + return reasonCode1; + } + + + public void setReasonCode1(String reasonCode1) { + this.reasonCode1 = reasonCode1; + } + + + public CraPartnerInsightsBaseFicoScore reasonCode2(String reasonCode2) { + + this.reasonCode2 = reasonCode2; + return this; + } + + /** + * The second reason code associated with the score. + * @return reasonCode2 + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "The second reason code associated with the score.") + + public String getReasonCode2() { + return reasonCode2; + } + + + public void setReasonCode2(String reasonCode2) { + this.reasonCode2 = reasonCode2; + } + + + public CraPartnerInsightsBaseFicoScore reasonCode3(String reasonCode3) { + + this.reasonCode3 = reasonCode3; + return this; + } + + /** + * The third reason code associated with the score. + * @return reasonCode3 + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "The third reason code associated with the score.") + + public String getReasonCode3() { + return reasonCode3; + } + + + public void setReasonCode3(String reasonCode3) { + this.reasonCode3 = reasonCode3; + } + + + public CraPartnerInsightsBaseFicoScore reasonCode4(String reasonCode4) { + + this.reasonCode4 = reasonCode4; + return this; + } + + /** + * The fourth reason code associated with the score. + * @return reasonCode4 + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "The fourth reason code associated with the score.") + + public String getReasonCode4() { + return reasonCode4; + } + + + public void setReasonCode4(String reasonCode4) { + this.reasonCode4 = reasonCode4; + } + + + public CraPartnerInsightsBaseFicoScore didInquiriesAdverselyAffectScore(Boolean didInquiriesAdverselyAffectScore) { + + this.didInquiriesAdverselyAffectScore = didInquiriesAdverselyAffectScore; + return this; + } + + /** + * Whether inquiries adversely affected this score but were not represented in one of the four reason codes. Sometimes referred to as the FACTA Flag. + * @return didInquiriesAdverselyAffectScore + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Whether inquiries adversely affected this score but were not represented in one of the four reason codes. Sometimes referred to as the FACTA Flag.") + + public Boolean getDidInquiriesAdverselyAffectScore() { + return didInquiriesAdverselyAffectScore; + } + + + public void setDidInquiriesAdverselyAffectScore(Boolean didInquiriesAdverselyAffectScore) { + this.didInquiriesAdverselyAffectScore = didInquiriesAdverselyAffectScore; + } + + + public CraPartnerInsightsBaseFicoScore baseFicoScoreVersion(CraPartnerInsightsBaseFicoScoreVersion baseFicoScoreVersion) { + + this.baseFicoScoreVersion = baseFicoScoreVersion; + return this; + } + + /** + * Get baseFicoScoreVersion + * @return baseFicoScoreVersion + **/ + @ApiModelProperty(required = true, value = "") + + public CraPartnerInsightsBaseFicoScoreVersion getBaseFicoScoreVersion() { + return baseFicoScoreVersion; + } + + + public void setBaseFicoScoreVersion(CraPartnerInsightsBaseFicoScoreVersion baseFicoScoreVersion) { + this.baseFicoScoreVersion = baseFicoScoreVersion; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + CraPartnerInsightsBaseFicoScore craPartnerInsightsBaseFicoScore = (CraPartnerInsightsBaseFicoScore) o; + return Objects.equals(this.bureau, craPartnerInsightsBaseFicoScore.bureau) && + Objects.equals(this.score, craPartnerInsightsBaseFicoScore.score) && + Objects.equals(this.reasonCode1, craPartnerInsightsBaseFicoScore.reasonCode1) && + Objects.equals(this.reasonCode2, craPartnerInsightsBaseFicoScore.reasonCode2) && + Objects.equals(this.reasonCode3, craPartnerInsightsBaseFicoScore.reasonCode3) && + Objects.equals(this.reasonCode4, craPartnerInsightsBaseFicoScore.reasonCode4) && + Objects.equals(this.didInquiriesAdverselyAffectScore, craPartnerInsightsBaseFicoScore.didInquiriesAdverselyAffectScore) && + Objects.equals(this.baseFicoScoreVersion, craPartnerInsightsBaseFicoScore.baseFicoScoreVersion); + } + + @Override + public int hashCode() { + return Objects.hash(bureau, score, reasonCode1, reasonCode2, reasonCode3, reasonCode4, didInquiriesAdverselyAffectScore, baseFicoScoreVersion); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class CraPartnerInsightsBaseFicoScore {\n"); + sb.append(" bureau: ").append(toIndentedString(bureau)).append("\n"); + sb.append(" score: ").append(toIndentedString(score)).append("\n"); + sb.append(" reasonCode1: ").append(toIndentedString(reasonCode1)).append("\n"); + sb.append(" reasonCode2: ").append(toIndentedString(reasonCode2)).append("\n"); + sb.append(" reasonCode3: ").append(toIndentedString(reasonCode3)).append("\n"); + sb.append(" reasonCode4: ").append(toIndentedString(reasonCode4)).append("\n"); + sb.append(" didInquiriesAdverselyAffectScore: ").append(toIndentedString(didInquiriesAdverselyAffectScore)).append("\n"); + sb.append(" baseFicoScoreVersion: ").append(toIndentedString(baseFicoScoreVersion)).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 "); + } + +} + diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsightsBaseFicoScoreVersion.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsBaseFicoScoreVersion.java new file mode 100644 index 000000000..1b31ec8fb --- /dev/null +++ b/src/main/java/com/plaid/client/model/CraPartnerInsightsBaseFicoScoreVersion.java @@ -0,0 +1,81 @@ +/* + * 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.682.2 + * + * + * 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 version of the base FICO score model. + */ +@JsonAdapter(CraPartnerInsightsBaseFicoScoreVersion.Adapter.class) +public enum CraPartnerInsightsBaseFicoScoreVersion { + + _8("8"), + + _9("9"), + + _10T("10T"), + + // 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; + + CraPartnerInsightsBaseFicoScoreVersion(String value) { + this.value = value; + } + + public String getValue() { + return value; + } + + @Override + public String toString() { + return String.valueOf(value); + } + + public static CraPartnerInsightsBaseFicoScoreVersion fromValue(String value) { + for (CraPartnerInsightsBaseFicoScoreVersion b : CraPartnerInsightsBaseFicoScoreVersion.values()) { + if (b.value.equals(value)) { + return b; + } + } + + return CraPartnerInsightsBaseFicoScoreVersion.ENUM_UNKNOWN; + } + + public static class Adapter extends TypeAdapter { + @Override + public void write(final JsonWriter jsonWriter, final CraPartnerInsightsBaseFicoScoreVersion enumeration) throws IOException { + jsonWriter.value(enumeration.getValue()); + } + + @Override + public CraPartnerInsightsBaseFicoScoreVersion read(final JsonReader jsonReader) throws IOException { + String value = jsonReader.nextString(); + return CraPartnerInsightsBaseFicoScoreVersion.fromValue(value); + } + } +} + diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsightsBureau.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsBureau.java new file mode 100644 index 000000000..9e43ee5da --- /dev/null +++ b/src/main/java/com/plaid/client/model/CraPartnerInsightsBureau.java @@ -0,0 +1,81 @@ +/* + * 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.682.2 + * + * + * 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 credit bureau that provided the base FICO score. + */ +@JsonAdapter(CraPartnerInsightsBureau.Adapter.class) +public enum CraPartnerInsightsBureau { + + EQUIFAX("EQUIFAX"), + + EXPERIAN("EXPERIAN"), + + TRANSUNION("TRANSUNION"), + + // 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; + + CraPartnerInsightsBureau(String value) { + this.value = value; + } + + public String getValue() { + return value; + } + + @Override + public String toString() { + return String.valueOf(value); + } + + public static CraPartnerInsightsBureau fromValue(String value) { + for (CraPartnerInsightsBureau b : CraPartnerInsightsBureau.values()) { + if (b.value.equals(value)) { + return b; + } + } + + return CraPartnerInsightsBureau.ENUM_UNKNOWN; + } + + public static class Adapter extends TypeAdapter { + @Override + public void write(final JsonWriter jsonWriter, final CraPartnerInsightsBureau enumeration) throws IOException { + jsonWriter.value(enumeration.getValue()); + } + + @Override + public CraPartnerInsightsBureau read(final JsonReader jsonReader) throws IOException { + String value = jsonReader.nextString(); + return CraPartnerInsightsBureau.fromValue(value); + } + } +} + diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsightsCompleteWebhook.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsCompleteWebhook.java index 82eea6751..dc0866e0b 100644 --- a/src/main/java/com/plaid/client/model/CraPartnerInsightsCompleteWebhook.java +++ b/src/main/java/com/plaid/client/model/CraPartnerInsightsCompleteWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when a partner insights report has finished generating and results are available */ @ApiModel(description = "Fired when a partner insights report has finished generating and results are available") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraPartnerInsightsCompleteWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsightsErrorWebhook.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsErrorWebhook.java index 4b729f59c..db8c24425 100644 --- a/src/main/java/com/plaid/client/model/CraPartnerInsightsErrorWebhook.java +++ b/src/main/java/com/plaid/client/model/CraPartnerInsightsErrorWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when a partner insights report has failed to generate */ @ApiModel(description = "Fired when a partner insights report has failed to generate") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraPartnerInsightsErrorWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsightsFicoInput.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsFicoInput.java new file mode 100644 index 000000000..ae1244673 --- /dev/null +++ b/src/main/java/com/plaid/client/model/CraPartnerInsightsFicoInput.java @@ -0,0 +1,162 @@ +/* + * 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.682.2 + * + * + * 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.CraPartnerInsightsUltraFicoScoreRequest; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; + +/** + * Configurations for FICO products used in the Partner Insights flow. + */ +@ApiModel(description = "Configurations for FICO products used in the Partner Insights flow.") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") +public class CraPartnerInsightsFicoInput { + public static final String SERIALIZED_NAME_FICO_LENDER_ID = "fico_lender_id"; + @SerializedName(SERIALIZED_NAME_FICO_LENDER_ID) + private String ficoLenderId; + + public static final String SERIALIZED_NAME_LENDER_APPLICATION_ID = "lender_application_id"; + @SerializedName(SERIALIZED_NAME_LENDER_APPLICATION_ID) + private String lenderApplicationId; + + public static final String SERIALIZED_NAME_ULTRAFICO_SCORE_REQUESTS = "ultrafico_score_requests"; + @SerializedName(SERIALIZED_NAME_ULTRAFICO_SCORE_REQUESTS) + private List ultraficoScoreRequests = new ArrayList<>(); + + + public CraPartnerInsightsFicoInput ficoLenderId(String ficoLenderId) { + + this.ficoLenderId = ficoLenderId; + return this; + } + + /** + * ID provided by FICO that uniquely identifies the lender. Required for UltraFICO score generation. Sometimes referred to as Lender Org ID. + * @return ficoLenderId + **/ + @ApiModelProperty(required = true, value = "ID provided by FICO that uniquely identifies the lender. Required for UltraFICO score generation. Sometimes referred to as Lender Org ID.") + + public String getFicoLenderId() { + return ficoLenderId; + } + + + public void setFicoLenderId(String ficoLenderId) { + this.ficoLenderId = ficoLenderId; + } + + + public CraPartnerInsightsFicoInput lenderApplicationId(String lenderApplicationId) { + + this.lenderApplicationId = lenderApplicationId; + return this; + } + + /** + * Client-generated identifier that uniquely identifies the FICO Application ID across FICO systems. + * @return lenderApplicationId + **/ + @ApiModelProperty(required = true, value = "Client-generated identifier that uniquely identifies the FICO Application ID across FICO systems.") + + public String getLenderApplicationId() { + return lenderApplicationId; + } + + + public void setLenderApplicationId(String lenderApplicationId) { + this.lenderApplicationId = lenderApplicationId; + } + + + public CraPartnerInsightsFicoInput ultraficoScoreRequests(List ultraficoScoreRequests) { + + this.ultraficoScoreRequests = ultraficoScoreRequests; + return this; + } + + public CraPartnerInsightsFicoInput addUltraficoScoreRequestsItem(CraPartnerInsightsUltraFicoScoreRequest ultraficoScoreRequestsItem) { + this.ultraficoScoreRequests.add(ultraficoScoreRequestsItem); + return this; + } + + /** + * A list of UltraFICO scoring requests. Each request contains all configuration required to generate an UltraFICO score. + * @return ultraficoScoreRequests + **/ + @ApiModelProperty(required = true, value = "A list of UltraFICO scoring requests. Each request contains all configuration required to generate an UltraFICO score.") + + public List getUltraficoScoreRequests() { + return ultraficoScoreRequests; + } + + + public void setUltraficoScoreRequests(List ultraficoScoreRequests) { + this.ultraficoScoreRequests = ultraficoScoreRequests; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + CraPartnerInsightsFicoInput craPartnerInsightsFicoInput = (CraPartnerInsightsFicoInput) o; + return Objects.equals(this.ficoLenderId, craPartnerInsightsFicoInput.ficoLenderId) && + Objects.equals(this.lenderApplicationId, craPartnerInsightsFicoInput.lenderApplicationId) && + Objects.equals(this.ultraficoScoreRequests, craPartnerInsightsFicoInput.ultraficoScoreRequests); + } + + @Override + public int hashCode() { + return Objects.hash(ficoLenderId, lenderApplicationId, ultraficoScoreRequests); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class CraPartnerInsightsFicoInput {\n"); + sb.append(" ficoLenderId: ").append(toIndentedString(ficoLenderId)).append("\n"); + sb.append(" lenderApplicationId: ").append(toIndentedString(lenderApplicationId)).append("\n"); + sb.append(" ultraficoScoreRequests: ").append(toIndentedString(ultraficoScoreRequests)).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 "); + } + +} + diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsightsFicoResults.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsFicoResults.java new file mode 100644 index 000000000..ded01243a --- /dev/null +++ b/src/main/java/com/plaid/client/model/CraPartnerInsightsFicoResults.java @@ -0,0 +1,134 @@ +/* + * 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.682.2 + * + * + * 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.CraPartnerInsightsUltraFicoScoreResult; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; + +/** + * The calculated UltraFICO scores returned as part of the Partner Insights report. + */ +@ApiModel(description = "The calculated UltraFICO scores returned as part of the Partner Insights report.") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") +public class CraPartnerInsightsFicoResults { + public static final String SERIALIZED_NAME_LENDER_APPLICATION_ID = "lender_application_id"; + @SerializedName(SERIALIZED_NAME_LENDER_APPLICATION_ID) + private String lenderApplicationId; + + public static final String SERIALIZED_NAME_ULTRAFICO_SCORE_RESULTS = "ultrafico_score_results"; + @SerializedName(SERIALIZED_NAME_ULTRAFICO_SCORE_RESULTS) + private List ultraficoScoreResults = new ArrayList<>(); + + + public CraPartnerInsightsFicoResults lenderApplicationId(String lenderApplicationId) { + + this.lenderApplicationId = lenderApplicationId; + return this; + } + + /** + * Client-generated identifier that uniquely identifies the FICO Application across FICO systems. + * @return lenderApplicationId + **/ + @ApiModelProperty(required = true, value = "Client-generated identifier that uniquely identifies the FICO Application across FICO systems.") + + public String getLenderApplicationId() { + return lenderApplicationId; + } + + + public void setLenderApplicationId(String lenderApplicationId) { + this.lenderApplicationId = lenderApplicationId; + } + + + public CraPartnerInsightsFicoResults ultraficoScoreResults(List ultraficoScoreResults) { + + this.ultraficoScoreResults = ultraficoScoreResults; + return this; + } + + public CraPartnerInsightsFicoResults addUltraficoScoreResultsItem(CraPartnerInsightsUltraFicoScoreResult ultraficoScoreResultsItem) { + this.ultraficoScoreResults.add(ultraficoScoreResultsItem); + return this; + } + + /** + * UltraFICO scoring results, one per provided base FICO score request. + * @return ultraficoScoreResults + **/ + @ApiModelProperty(required = true, value = "UltraFICO scoring results, one per provided base FICO score request.") + + public List getUltraficoScoreResults() { + return ultraficoScoreResults; + } + + + public void setUltraficoScoreResults(List ultraficoScoreResults) { + this.ultraficoScoreResults = ultraficoScoreResults; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + CraPartnerInsightsFicoResults craPartnerInsightsFicoResults = (CraPartnerInsightsFicoResults) o; + return Objects.equals(this.lenderApplicationId, craPartnerInsightsFicoResults.lenderApplicationId) && + Objects.equals(this.ultraficoScoreResults, craPartnerInsightsFicoResults.ultraficoScoreResults); + } + + @Override + public int hashCode() { + return Objects.hash(lenderApplicationId, ultraficoScoreResults); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class CraPartnerInsightsFicoResults {\n"); + sb.append(" lenderApplicationId: ").append(toIndentedString(lenderApplicationId)).append("\n"); + sb.append(" ultraficoScoreResults: ").append(toIndentedString(ultraficoScoreResults)).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 "); + } + +} + diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsightsGetRequest.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsGetRequest.java index 294d6ffc4..64a484e92 100644 --- a/src/main/java/com/plaid/client/model/CraPartnerInsightsGetRequest.java +++ b/src/main/java/com/plaid/client/model/CraPartnerInsightsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CraPartnerInsightsGetRequest defines the request schema for `/cra/partner_insights/get`. */ @ApiModel(description = "CraPartnerInsightsGetRequest defines the request schema for `/cra/partner_insights/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraPartnerInsightsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsightsGetResponse.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsGetResponse.java index d69f46802..dbdfbab09 100644 --- a/src/main/java/com/plaid/client/model/CraPartnerInsightsGetResponse.java +++ b/src/main/java/com/plaid/client/model/CraPartnerInsightsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * CraPartnerInsightsGetResponse defines the response schema for `/cra/partner_insights/get`. */ @ApiModel(description = "CraPartnerInsightsGetResponse defines the response schema for `/cra/partner_insights/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraPartnerInsightsGetResponse { public static final String SERIALIZED_NAME_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsightsItem.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsItem.java index e1621769d..18549e88d 100644 --- a/src/main/java/com/plaid/client/model/CraPartnerInsightsItem.java +++ b/src/main/java/com/plaid/client/model/CraPartnerInsightsItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The details and metadata for an end user's Item. */ @ApiModel(description = "The details and metadata for an end user's Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraPartnerInsightsItem { public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsightsItemAccount.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsItemAccount.java index 26549ac70..e675ea16a 100644 --- a/src/main/java/com/plaid/client/model/CraPartnerInsightsItemAccount.java +++ b/src/main/java/com/plaid/client/model/CraPartnerInsightsItemAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * Account data corresponding to the item from which Partner Insights were generated from */ @ApiModel(description = "Account data corresponding to the item from which Partner Insights were generated from") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraPartnerInsightsItemAccount { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsightsItemAccountMetadata.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsItemAccountMetadata.java index a05806c51..6ca9064bb 100644 --- a/src/main/java/com/plaid/client/model/CraPartnerInsightsItemAccountMetadata.java +++ b/src/main/java/com/plaid/client/model/CraPartnerInsightsItemAccountMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object containing metadata about the extracted account. */ @ApiModel(description = "An object containing metadata about the extracted account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraPartnerInsightsItemAccountMetadata { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsightsPrism.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsPrism.java index 18f21a63a..de70ae8f7 100644 --- a/src/main/java/com/plaid/client/model/CraPartnerInsightsPrism.java +++ b/src/main/java/com/plaid/client/model/CraPartnerInsightsPrism.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * The Prism Data insights for the user. */ @ApiModel(description = "The Prism Data insights for the user.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraPartnerInsightsPrism { public static final String SERIALIZED_NAME_INSIGHTS = "insights"; @SerializedName(SERIALIZED_NAME_INSIGHTS) diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsightsUltraFicoScore.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsUltraFicoScore.java new file mode 100644 index 000000000..1abcc644b --- /dev/null +++ b/src/main/java/com/plaid/client/model/CraPartnerInsightsUltraFicoScore.java @@ -0,0 +1,272 @@ +/* + * 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.682.2 + * + * + * 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.CraPartnerInsightsUltraFicoScoreVersion; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; + +/** + * The calculated UltraFICO score. + */ +@ApiModel(description = "The calculated UltraFICO score.") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") +public class CraPartnerInsightsUltraFicoScore { + public static final String SERIALIZED_NAME_ULTRAFICO_SCORE_VERSION = "ultrafico_score_version"; + @SerializedName(SERIALIZED_NAME_ULTRAFICO_SCORE_VERSION) + private CraPartnerInsightsUltraFicoScoreVersion ultraficoScoreVersion; + + public static final String SERIALIZED_NAME_SCORE = "score"; + @SerializedName(SERIALIZED_NAME_SCORE) + private Integer score; + + public static final String SERIALIZED_NAME_REASON_CODE1 = "reason_code_1"; + @SerializedName(SERIALIZED_NAME_REASON_CODE1) + private String reasonCode1; + + public static final String SERIALIZED_NAME_REASON_CODE2 = "reason_code_2"; + @SerializedName(SERIALIZED_NAME_REASON_CODE2) + private String reasonCode2; + + public static final String SERIALIZED_NAME_REASON_CODE3 = "reason_code_3"; + @SerializedName(SERIALIZED_NAME_REASON_CODE3) + private String reasonCode3; + + public static final String SERIALIZED_NAME_REASON_CODE4 = "reason_code_4"; + @SerializedName(SERIALIZED_NAME_REASON_CODE4) + private String reasonCode4; + + public static final String SERIALIZED_NAME_DID_INQUIRIES_ADVERSELY_AFFECT_SCORE = "did_inquiries_adversely_affect_score"; + @SerializedName(SERIALIZED_NAME_DID_INQUIRIES_ADVERSELY_AFFECT_SCORE) + private Boolean didInquiriesAdverselyAffectScore; + + + public CraPartnerInsightsUltraFicoScore ultraficoScoreVersion(CraPartnerInsightsUltraFicoScoreVersion ultraficoScoreVersion) { + + this.ultraficoScoreVersion = ultraficoScoreVersion; + return this; + } + + /** + * Get ultraficoScoreVersion + * @return ultraficoScoreVersion + **/ + @ApiModelProperty(required = true, value = "") + + public CraPartnerInsightsUltraFicoScoreVersion getUltraficoScoreVersion() { + return ultraficoScoreVersion; + } + + + public void setUltraficoScoreVersion(CraPartnerInsightsUltraFicoScoreVersion ultraficoScoreVersion) { + this.ultraficoScoreVersion = ultraficoScoreVersion; + } + + + public CraPartnerInsightsUltraFicoScore score(Integer score) { + + this.score = score; + return this; + } + + /** + * Numeric value of the UltraFICO score. + * @return score + **/ + @ApiModelProperty(required = true, value = "Numeric value of the UltraFICO score.") + + public Integer getScore() { + return score; + } + + + public void setScore(Integer score) { + this.score = score; + } + + + public CraPartnerInsightsUltraFicoScore reasonCode1(String reasonCode1) { + + this.reasonCode1 = reasonCode1; + return this; + } + + /** + * The first reason code associated with the score. + * @return reasonCode1 + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "The first reason code associated with the score.") + + public String getReasonCode1() { + return reasonCode1; + } + + + public void setReasonCode1(String reasonCode1) { + this.reasonCode1 = reasonCode1; + } + + + public CraPartnerInsightsUltraFicoScore reasonCode2(String reasonCode2) { + + this.reasonCode2 = reasonCode2; + return this; + } + + /** + * The second reason code associated with the score. + * @return reasonCode2 + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "The second reason code associated with the score.") + + public String getReasonCode2() { + return reasonCode2; + } + + + public void setReasonCode2(String reasonCode2) { + this.reasonCode2 = reasonCode2; + } + + + public CraPartnerInsightsUltraFicoScore reasonCode3(String reasonCode3) { + + this.reasonCode3 = reasonCode3; + return this; + } + + /** + * The third reason code associated with the score. + * @return reasonCode3 + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "The third reason code associated with the score.") + + public String getReasonCode3() { + return reasonCode3; + } + + + public void setReasonCode3(String reasonCode3) { + this.reasonCode3 = reasonCode3; + } + + + public CraPartnerInsightsUltraFicoScore reasonCode4(String reasonCode4) { + + this.reasonCode4 = reasonCode4; + return this; + } + + /** + * The fourth reason code associated with the score. + * @return reasonCode4 + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "The fourth reason code associated with the score.") + + public String getReasonCode4() { + return reasonCode4; + } + + + public void setReasonCode4(String reasonCode4) { + this.reasonCode4 = reasonCode4; + } + + + public CraPartnerInsightsUltraFicoScore didInquiriesAdverselyAffectScore(Boolean didInquiriesAdverselyAffectScore) { + + this.didInquiriesAdverselyAffectScore = didInquiriesAdverselyAffectScore; + return this; + } + + /** + * Whether inquiries adversely affected the score but were not represented in one of the four reason codes. Sometimes referred to as the FACTA Flag. + * @return didInquiriesAdverselyAffectScore + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Whether inquiries adversely affected the score but were not represented in one of the four reason codes. Sometimes referred to as the FACTA Flag.") + + public Boolean getDidInquiriesAdverselyAffectScore() { + return didInquiriesAdverselyAffectScore; + } + + + public void setDidInquiriesAdverselyAffectScore(Boolean didInquiriesAdverselyAffectScore) { + this.didInquiriesAdverselyAffectScore = didInquiriesAdverselyAffectScore; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + CraPartnerInsightsUltraFicoScore craPartnerInsightsUltraFicoScore = (CraPartnerInsightsUltraFicoScore) o; + return Objects.equals(this.ultraficoScoreVersion, craPartnerInsightsUltraFicoScore.ultraficoScoreVersion) && + Objects.equals(this.score, craPartnerInsightsUltraFicoScore.score) && + Objects.equals(this.reasonCode1, craPartnerInsightsUltraFicoScore.reasonCode1) && + Objects.equals(this.reasonCode2, craPartnerInsightsUltraFicoScore.reasonCode2) && + Objects.equals(this.reasonCode3, craPartnerInsightsUltraFicoScore.reasonCode3) && + Objects.equals(this.reasonCode4, craPartnerInsightsUltraFicoScore.reasonCode4) && + Objects.equals(this.didInquiriesAdverselyAffectScore, craPartnerInsightsUltraFicoScore.didInquiriesAdverselyAffectScore); + } + + @Override + public int hashCode() { + return Objects.hash(ultraficoScoreVersion, score, reasonCode1, reasonCode2, reasonCode3, reasonCode4, didInquiriesAdverselyAffectScore); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class CraPartnerInsightsUltraFicoScore {\n"); + sb.append(" ultraficoScoreVersion: ").append(toIndentedString(ultraficoScoreVersion)).append("\n"); + sb.append(" score: ").append(toIndentedString(score)).append("\n"); + sb.append(" reasonCode1: ").append(toIndentedString(reasonCode1)).append("\n"); + sb.append(" reasonCode2: ").append(toIndentedString(reasonCode2)).append("\n"); + sb.append(" reasonCode3: ").append(toIndentedString(reasonCode3)).append("\n"); + sb.append(" reasonCode4: ").append(toIndentedString(reasonCode4)).append("\n"); + sb.append(" didInquiriesAdverselyAffectScore: ").append(toIndentedString(didInquiriesAdverselyAffectScore)).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 "); + } + +} + diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsightsUltraFicoScoreRequest.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsUltraFicoScoreRequest.java new file mode 100644 index 000000000..c811a8b22 --- /dev/null +++ b/src/main/java/com/plaid/client/model/CraPartnerInsightsUltraFicoScoreRequest.java @@ -0,0 +1,186 @@ +/* + * 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.682.2 + * + * + * 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.CraPartnerInsightsBaseFicoScore; +import com.plaid.client.model.CraPartnerInsightsUltraFicoScoreVersion; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; + +/** + * Configuration required to generate a single UltraFICO score. + */ +@ApiModel(description = "Configuration required to generate a single UltraFICO score.") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") +public class CraPartnerInsightsUltraFicoScoreRequest { + public static final String SERIALIZED_NAME_ULTRAFICO_SCORE_VERSION = "ultrafico_score_version"; + @SerializedName(SERIALIZED_NAME_ULTRAFICO_SCORE_VERSION) + private CraPartnerInsightsUltraFicoScoreVersion ultraficoScoreVersion; + + public static final String SERIALIZED_NAME_FICO_SCORING_REQUEST_ID = "fico_scoring_request_id"; + @SerializedName(SERIALIZED_NAME_FICO_SCORING_REQUEST_ID) + private String ficoScoringRequestId; + + public static final String SERIALIZED_NAME_REQUEST_CORRELATION_ID = "request_correlation_id"; + @SerializedName(SERIALIZED_NAME_REQUEST_CORRELATION_ID) + private String requestCorrelationId; + + public static final String SERIALIZED_NAME_BASE_FICO_SCORE = "base_fico_score"; + @SerializedName(SERIALIZED_NAME_BASE_FICO_SCORE) + private CraPartnerInsightsBaseFicoScore baseFicoScore; + + + public CraPartnerInsightsUltraFicoScoreRequest ultraficoScoreVersion(CraPartnerInsightsUltraFicoScoreVersion ultraficoScoreVersion) { + + this.ultraficoScoreVersion = ultraficoScoreVersion; + return this; + } + + /** + * Get ultraficoScoreVersion + * @return ultraficoScoreVersion + **/ + @ApiModelProperty(required = true, value = "") + + public CraPartnerInsightsUltraFicoScoreVersion getUltraficoScoreVersion() { + return ultraficoScoreVersion; + } + + + public void setUltraficoScoreVersion(CraPartnerInsightsUltraFicoScoreVersion ultraficoScoreVersion) { + this.ultraficoScoreVersion = ultraficoScoreVersion; + } + + + public CraPartnerInsightsUltraFicoScoreRequest ficoScoringRequestId(String ficoScoringRequestId) { + + this.ficoScoringRequestId = ficoScoringRequestId; + return this; + } + + /** + * FICO identifier for a particular scoring request. Should only be provided by UltraFICO as part of the FICO-led Flow. + * @return ficoScoringRequestId + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "FICO identifier for a particular scoring request. Should only be provided by UltraFICO as part of the FICO-led Flow.") + + public String getFicoScoringRequestId() { + return ficoScoringRequestId; + } + + + public void setFicoScoringRequestId(String ficoScoringRequestId) { + this.ficoScoringRequestId = ficoScoringRequestId; + } + + + public CraPartnerInsightsUltraFicoScoreRequest requestCorrelationId(String requestCorrelationId) { + + this.requestCorrelationId = requestCorrelationId; + return this; + } + + /** + * Client-generated identifier that can be used to correlate scoring requests and scoring results. + * @return requestCorrelationId + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Client-generated identifier that can be used to correlate scoring requests and scoring results.") + + public String getRequestCorrelationId() { + return requestCorrelationId; + } + + + public void setRequestCorrelationId(String requestCorrelationId) { + this.requestCorrelationId = requestCorrelationId; + } + + + public CraPartnerInsightsUltraFicoScoreRequest baseFicoScore(CraPartnerInsightsBaseFicoScore baseFicoScore) { + + this.baseFicoScore = baseFicoScore; + return this; + } + + /** + * Get baseFicoScore + * @return baseFicoScore + **/ + @ApiModelProperty(required = true, value = "") + + public CraPartnerInsightsBaseFicoScore getBaseFicoScore() { + return baseFicoScore; + } + + + public void setBaseFicoScore(CraPartnerInsightsBaseFicoScore baseFicoScore) { + this.baseFicoScore = baseFicoScore; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + CraPartnerInsightsUltraFicoScoreRequest craPartnerInsightsUltraFicoScoreRequest = (CraPartnerInsightsUltraFicoScoreRequest) o; + return Objects.equals(this.ultraficoScoreVersion, craPartnerInsightsUltraFicoScoreRequest.ultraficoScoreVersion) && + Objects.equals(this.ficoScoringRequestId, craPartnerInsightsUltraFicoScoreRequest.ficoScoringRequestId) && + Objects.equals(this.requestCorrelationId, craPartnerInsightsUltraFicoScoreRequest.requestCorrelationId) && + Objects.equals(this.baseFicoScore, craPartnerInsightsUltraFicoScoreRequest.baseFicoScore); + } + + @Override + public int hashCode() { + return Objects.hash(ultraficoScoreVersion, ficoScoringRequestId, requestCorrelationId, baseFicoScore); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class CraPartnerInsightsUltraFicoScoreRequest {\n"); + sb.append(" ultraficoScoreVersion: ").append(toIndentedString(ultraficoScoreVersion)).append("\n"); + sb.append(" ficoScoringRequestId: ").append(toIndentedString(ficoScoringRequestId)).append("\n"); + sb.append(" requestCorrelationId: ").append(toIndentedString(requestCorrelationId)).append("\n"); + sb.append(" baseFicoScore: ").append(toIndentedString(baseFicoScore)).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 "); + } + +} + diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsightsUltraFicoScoreResult.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsUltraFicoScoreResult.java new file mode 100644 index 000000000..1781dcaf3 --- /dev/null +++ b/src/main/java/com/plaid/client/model/CraPartnerInsightsUltraFicoScoreResult.java @@ -0,0 +1,187 @@ +/* + * 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.682.2 + * + * + * 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.CraPartnerInsightsUltraFicoScore; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; + +/** + * The result of a single UltraFICO score generation request. + */ +@ApiModel(description = "The result of a single UltraFICO score generation request.") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") +public class CraPartnerInsightsUltraFicoScoreResult { + public static final String SERIALIZED_NAME_REQUEST_CORRELATION_ID = "request_correlation_id"; + @SerializedName(SERIALIZED_NAME_REQUEST_CORRELATION_ID) + private String requestCorrelationId; + + public static final String SERIALIZED_NAME_FICO_SCORING_REQUEST_ID = "fico_scoring_request_id"; + @SerializedName(SERIALIZED_NAME_FICO_SCORING_REQUEST_ID) + private String ficoScoringRequestId; + + public static final String SERIALIZED_NAME_ULTRAFICO_SCORE = "ultrafico_score"; + @SerializedName(SERIALIZED_NAME_ULTRAFICO_SCORE) + private CraPartnerInsightsUltraFicoScore ultraficoScore; + + public static final String SERIALIZED_NAME_ERROR_REASON = "error_reason"; + @SerializedName(SERIALIZED_NAME_ERROR_REASON) + private String errorReason; + + + public CraPartnerInsightsUltraFicoScoreResult requestCorrelationId(String requestCorrelationId) { + + this.requestCorrelationId = requestCorrelationId; + return this; + } + + /** + * Client-generated identifier that can be used to correlate between scoring requests and scoring results. + * @return requestCorrelationId + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Client-generated identifier that can be used to correlate between scoring requests and scoring results.") + + public String getRequestCorrelationId() { + return requestCorrelationId; + } + + + public void setRequestCorrelationId(String requestCorrelationId) { + this.requestCorrelationId = requestCorrelationId; + } + + + public CraPartnerInsightsUltraFicoScoreResult ficoScoringRequestId(String ficoScoringRequestId) { + + this.ficoScoringRequestId = ficoScoringRequestId; + return this; + } + + /** + * FICO-provided identifier that uniquely identifies this score generation request. + * @return ficoScoringRequestId + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "FICO-provided identifier that uniquely identifies this score generation request.") + + public String getFicoScoringRequestId() { + return ficoScoringRequestId; + } + + + public void setFicoScoringRequestId(String ficoScoringRequestId) { + this.ficoScoringRequestId = ficoScoringRequestId; + } + + + public CraPartnerInsightsUltraFicoScoreResult ultraficoScore(CraPartnerInsightsUltraFicoScore ultraficoScore) { + + this.ultraficoScore = ultraficoScore; + return this; + } + + /** + * Get ultraficoScore + * @return ultraficoScore + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public CraPartnerInsightsUltraFicoScore getUltraficoScore() { + return ultraficoScore; + } + + + public void setUltraficoScore(CraPartnerInsightsUltraFicoScore ultraficoScore) { + this.ultraficoScore = ultraficoScore; + } + + + public CraPartnerInsightsUltraFicoScoreResult errorReason(String errorReason) { + + this.errorReason = errorReason; + return this; + } + + /** + * Human-readable description of why the UltraFICO score could not be computed. + * @return errorReason + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Human-readable description of why the UltraFICO score could not be computed.") + + public String getErrorReason() { + return errorReason; + } + + + public void setErrorReason(String errorReason) { + this.errorReason = errorReason; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + CraPartnerInsightsUltraFicoScoreResult craPartnerInsightsUltraFicoScoreResult = (CraPartnerInsightsUltraFicoScoreResult) o; + return Objects.equals(this.requestCorrelationId, craPartnerInsightsUltraFicoScoreResult.requestCorrelationId) && + Objects.equals(this.ficoScoringRequestId, craPartnerInsightsUltraFicoScoreResult.ficoScoringRequestId) && + Objects.equals(this.ultraficoScore, craPartnerInsightsUltraFicoScoreResult.ultraficoScore) && + Objects.equals(this.errorReason, craPartnerInsightsUltraFicoScoreResult.errorReason); + } + + @Override + public int hashCode() { + return Objects.hash(requestCorrelationId, ficoScoringRequestId, ultraficoScore, errorReason); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class CraPartnerInsightsUltraFicoScoreResult {\n"); + sb.append(" requestCorrelationId: ").append(toIndentedString(requestCorrelationId)).append("\n"); + sb.append(" ficoScoringRequestId: ").append(toIndentedString(ficoScoringRequestId)).append("\n"); + sb.append(" ultraficoScore: ").append(toIndentedString(ultraficoScore)).append("\n"); + sb.append(" errorReason: ").append(toIndentedString(errorReason)).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 "); + } + +} + diff --git a/src/main/java/com/plaid/client/model/CraPartnerInsightsUltraFicoScoreVersion.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsUltraFicoScoreVersion.java new file mode 100644 index 000000000..2570aec82 --- /dev/null +++ b/src/main/java/com/plaid/client/model/CraPartnerInsightsUltraFicoScoreVersion.java @@ -0,0 +1,77 @@ +/* + * 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.682.2 + * + * + * 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 version of the UltraFICO score. + */ +@JsonAdapter(CraPartnerInsightsUltraFicoScoreVersion.Adapter.class) +public enum CraPartnerInsightsUltraFicoScoreVersion { + + _1_0("1.0"), + + // 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; + + CraPartnerInsightsUltraFicoScoreVersion(String value) { + this.value = value; + } + + public String getValue() { + return value; + } + + @Override + public String toString() { + return String.valueOf(value); + } + + public static CraPartnerInsightsUltraFicoScoreVersion fromValue(String value) { + for (CraPartnerInsightsUltraFicoScoreVersion b : CraPartnerInsightsUltraFicoScoreVersion.values()) { + if (b.value.equals(value)) { + return b; + } + } + + return CraPartnerInsightsUltraFicoScoreVersion.ENUM_UNKNOWN; + } + + public static class Adapter extends TypeAdapter { + @Override + public void write(final JsonWriter jsonWriter, final CraPartnerInsightsUltraFicoScoreVersion enumeration) throws IOException { + jsonWriter.value(enumeration.getValue()); + } + + @Override + public CraPartnerInsightsUltraFicoScoreVersion read(final JsonReader jsonReader) throws IOException { + String value = jsonReader.nextString(); + return CraPartnerInsightsUltraFicoScoreVersion.fromValue(value); + } + } +} + diff --git a/src/main/java/com/plaid/client/model/CraPredictionInterval.java b/src/main/java/com/plaid/client/model/CraPredictionInterval.java index a956c4a29..e8a50af8b 100644 --- a/src/main/java/com/plaid/client/model/CraPredictionInterval.java +++ b/src/main/java/com/plaid/client/model/CraPredictionInterval.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The object containing prediction interval data. */ @ApiModel(description = "The object containing prediction interval data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraPredictionInterval { public static final String SERIALIZED_NAME_LOWER_BOUND = "lower_bound"; @SerializedName(SERIALIZED_NAME_LOWER_BOUND) diff --git a/src/main/java/com/plaid/client/model/CraUpgradeFailedWebhook.java b/src/main/java/com/plaid/client/model/CraUpgradeFailedWebhook.java index 7a6babbf2..a2ae77948 100644 --- a/src/main/java/com/plaid/client/model/CraUpgradeFailedWebhook.java +++ b/src/main/java/com/plaid/client/model/CraUpgradeFailedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Fired when a Check Report upgrade attempt has failed */ @ApiModel(description = "Fired when a Check Report upgrade attempt has failed") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraUpgradeFailedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/CraUserCheckReportFailedWebhook.java b/src/main/java/com/plaid/client/model/CraUserCheckReportFailedWebhook.java index 3d059f2c2..80a9e13ee 100644 --- a/src/main/java/com/plaid/client/model/CraUserCheckReportFailedWebhook.java +++ b/src/main/java/com/plaid/client/model/CraUserCheckReportFailedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when a Check Report has failed to generate */ @ApiModel(description = "Fired when a Check Report has failed to generate") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraUserCheckReportFailedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/CraUserCheckReportReadyWebhook.java b/src/main/java/com/plaid/client/model/CraUserCheckReportReadyWebhook.java index 1c73d7257..be2c44381 100644 --- a/src/main/java/com/plaid/client/model/CraUserCheckReportReadyWebhook.java +++ b/src/main/java/com/plaid/client/model/CraUserCheckReportReadyWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Fired when the Check Report are ready to be retrieved. Once this webhook has fired, the report will be available to retrieve for 24 hours. */ @ApiModel(description = "Fired when the Check Report are ready to be retrieved. Once this webhook has fired, the report will be available to retrieve for 24 hours.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraUserCheckReportReadyWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/CraVerificationReport.java b/src/main/java/com/plaid/client/model/CraVerificationReport.java index 329c7ebb1..039f5e8ea 100644 --- a/src/main/java/com/plaid/client/model/CraVerificationReport.java +++ b/src/main/java/com/plaid/client/model/CraVerificationReport.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Contains data for the CRA Home Lending Report. */ @ApiModel(description = "Contains data for the CRA Home Lending Report.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraVerificationReport { public static final String SERIALIZED_NAME_REPORT_ID = "report_id"; @SerializedName(SERIALIZED_NAME_REPORT_ID) diff --git a/src/main/java/com/plaid/client/model/CraVoaReport.java b/src/main/java/com/plaid/client/model/CraVoaReport.java index 9faa0ddf4..f0506ce46 100644 --- a/src/main/java/com/plaid/client/model/CraVoaReport.java +++ b/src/main/java/com/plaid/client/model/CraVoaReport.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * An object representing a VOA report. */ @ApiModel(description = "An object representing a VOA report.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraVoaReport { public static final String SERIALIZED_NAME_GENERATED_TIME = "generated_time"; @SerializedName(SERIALIZED_NAME_GENERATED_TIME) diff --git a/src/main/java/com/plaid/client/model/CraVoaReportAccount.java b/src/main/java/com/plaid/client/model/CraVoaReportAccount.java index cd7c797c9..c3c753b27 100644 --- a/src/main/java/com/plaid/client/model/CraVoaReportAccount.java +++ b/src/main/java/com/plaid/client/model/CraVoaReportAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -39,7 +39,7 @@ * VOA Report information about an account. */ @ApiModel(description = "VOA Report information about an account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraVoaReportAccount { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/CraVoaReportAccountBalances.java b/src/main/java/com/plaid/client/model/CraVoaReportAccountBalances.java index 847d381cc..01fe815e7 100644 --- a/src/main/java/com/plaid/client/model/CraVoaReportAccountBalances.java +++ b/src/main/java/com/plaid/client/model/CraVoaReportAccountBalances.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * VOA Report information about an account's balances. */ @ApiModel(description = "VOA Report information about an account's balances.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraVoaReportAccountBalances { public static final String SERIALIZED_NAME_AVAILABLE = "available"; @SerializedName(SERIALIZED_NAME_AVAILABLE) diff --git a/src/main/java/com/plaid/client/model/CraVoaReportAccountHistoricalBalance.java b/src/main/java/com/plaid/client/model/CraVoaReportAccountHistoricalBalance.java index b3832cbc0..a0ab20459 100644 --- a/src/main/java/com/plaid/client/model/CraVoaReportAccountHistoricalBalance.java +++ b/src/main/java/com/plaid/client/model/CraVoaReportAccountHistoricalBalance.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object representing a balance held by an account in the past. */ @ApiModel(description = "An object representing a balance held by an account in the past.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraVoaReportAccountHistoricalBalance { public static final String SERIALIZED_NAME_CURRENT = "current"; @SerializedName(SERIALIZED_NAME_CURRENT) diff --git a/src/main/java/com/plaid/client/model/CraVoaReportAttributes.java b/src/main/java/com/plaid/client/model/CraVoaReportAttributes.java index 98117fde0..48866d5b1 100644 --- a/src/main/java/com/plaid/client/model/CraVoaReportAttributes.java +++ b/src/main/java/com/plaid/client/model/CraVoaReportAttributes.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Attributes for the VOA report. */ @ApiModel(description = "Attributes for the VOA report.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraVoaReportAttributes { public static final String SERIALIZED_NAME_TOTAL_INFLOW_AMOUNT = "total_inflow_amount"; @SerializedName(SERIALIZED_NAME_TOTAL_INFLOW_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/CraVoaReportItem.java b/src/main/java/com/plaid/client/model/CraVoaReportItem.java index cb2d7d67b..0925b28ec 100644 --- a/src/main/java/com/plaid/client/model/CraVoaReportItem.java +++ b/src/main/java/com/plaid/client/model/CraVoaReportItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * A representation of an Item within a VOA report. */ @ApiModel(description = "A representation of an Item within a VOA report.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraVoaReportItem { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) diff --git a/src/main/java/com/plaid/client/model/CraVoaReportTransactionsInsights.java b/src/main/java/com/plaid/client/model/CraVoaReportTransactionsInsights.java index 9ef6b6186..0e449a9d2 100644 --- a/src/main/java/com/plaid/client/model/CraVoaReportTransactionsInsights.java +++ b/src/main/java/com/plaid/client/model/CraVoaReportTransactionsInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Transaction data associated with the account. */ @ApiModel(description = "Transaction data associated with the account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CraVoaReportTransactionsInsights { public static final String SERIALIZED_NAME_ALL_TRANSACTIONS = "all_transactions"; @SerializedName(SERIALIZED_NAME_ALL_TRANSACTIONS) diff --git a/src/main/java/com/plaid/client/model/Credit1099.java b/src/main/java/com/plaid/client/model/Credit1099.java index 312fe633c..380b3619a 100644 --- a/src/main/java/com/plaid/client/model/Credit1099.java +++ b/src/main/java/com/plaid/client/model/Credit1099.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * An object representing an end user's 1099 tax form */ @ApiModel(description = "An object representing an end user's 1099 tax form") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Credit1099 { public static final String SERIALIZED_NAME_DOCUMENT_ID = "document_id"; @SerializedName(SERIALIZED_NAME_DOCUMENT_ID) diff --git a/src/main/java/com/plaid/client/model/Credit1099Filer.java b/src/main/java/com/plaid/client/model/Credit1099Filer.java index ca40362f6..351e80161 100644 --- a/src/main/java/com/plaid/client/model/Credit1099Filer.java +++ b/src/main/java/com/plaid/client/model/Credit1099Filer.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object representing a filer used by 1099-K tax documents. */ @ApiModel(description = "An object representing a filer used by 1099-K tax documents.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Credit1099Filer { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) diff --git a/src/main/java/com/plaid/client/model/Credit1099Payer.java b/src/main/java/com/plaid/client/model/Credit1099Payer.java index bbc119344..f5db293a2 100644 --- a/src/main/java/com/plaid/client/model/Credit1099Payer.java +++ b/src/main/java/com/plaid/client/model/Credit1099Payer.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Credit1099Payer { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) diff --git a/src/main/java/com/plaid/client/model/Credit1099Recipient.java b/src/main/java/com/plaid/client/model/Credit1099Recipient.java index 50c19a3ea..ccba1b876 100644 --- a/src/main/java/com/plaid/client/model/Credit1099Recipient.java +++ b/src/main/java/com/plaid/client/model/Credit1099Recipient.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object representing a recipient used in both 1099-K and 1099-MISC tax documents. */ @ApiModel(description = "An object representing a recipient used in both 1099-K and 1099-MISC tax documents.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Credit1099Recipient { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) diff --git a/src/main/java/com/plaid/client/model/CreditACHClass.java b/src/main/java/com/plaid/client/model/CreditACHClass.java index 5d728a95a..10b7d7a7e 100644 --- a/src/main/java/com/plaid/client/model/CreditACHClass.java +++ b/src/main/java/com/plaid/client/model/CreditACHClass.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CreditAccountSubtype.java b/src/main/java/com/plaid/client/model/CreditAccountSubtype.java index 48cf5f9bd..e1dffb617 100644 --- a/src/main/java/com/plaid/client/model/CreditAccountSubtype.java +++ b/src/main/java/com/plaid/client/model/CreditAccountSubtype.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CreditAmountWithCurrency.java b/src/main/java/com/plaid/client/model/CreditAmountWithCurrency.java index b7652c34f..8db6257e0 100644 --- a/src/main/java/com/plaid/client/model/CreditAmountWithCurrency.java +++ b/src/main/java/com/plaid/client/model/CreditAmountWithCurrency.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * This contains an amount, denominated in the currency specified by either `iso_currency_code` or `unofficial_currency_code` */ @ApiModel(description = "This contains an amount, denominated in the currency specified by either `iso_currency_code` or `unofficial_currency_code`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditAmountWithCurrency { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/CreditAuditCopyTokenCreateRequest.java b/src/main/java/com/plaid/client/model/CreditAuditCopyTokenCreateRequest.java index 8c5db592c..6f37c6b8a 100644 --- a/src/main/java/com/plaid/client/model/CreditAuditCopyTokenCreateRequest.java +++ b/src/main/java/com/plaid/client/model/CreditAuditCopyTokenCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * CreditAuditCopyTokenCreateRequest defines the request schema for `/credit/audit_copy_token/create` */ @ApiModel(description = "CreditAuditCopyTokenCreateRequest defines the request schema for `/credit/audit_copy_token/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditAuditCopyTokenCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditAuditCopyTokenCreateResponse.java b/src/main/java/com/plaid/client/model/CreditAuditCopyTokenCreateResponse.java index da2b36942..a131fbb96 100644 --- a/src/main/java/com/plaid/client/model/CreditAuditCopyTokenCreateResponse.java +++ b/src/main/java/com/plaid/client/model/CreditAuditCopyTokenCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditAuditCopyTokenCreateResponse defines the response schema for `/credit/audit_copy_token/get` */ @ApiModel(description = "CreditAuditCopyTokenCreateResponse defines the response schema for `/credit/audit_copy_token/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditAuditCopyTokenCreateResponse { public static final String SERIALIZED_NAME_AUDIT_COPY_TOKEN = "audit_copy_token"; @SerializedName(SERIALIZED_NAME_AUDIT_COPY_TOKEN) diff --git a/src/main/java/com/plaid/client/model/CreditAuditCopyTokenRemoveRequest.java b/src/main/java/com/plaid/client/model/CreditAuditCopyTokenRemoveRequest.java index 5f2ad7446..d4c084916 100644 --- a/src/main/java/com/plaid/client/model/CreditAuditCopyTokenRemoveRequest.java +++ b/src/main/java/com/plaid/client/model/CreditAuditCopyTokenRemoveRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditAuditCopyTokenRemoveRequest defines the request schema for `/credit/audit_copy_token/remove` */ @ApiModel(description = "CreditAuditCopyTokenRemoveRequest defines the request schema for `/credit/audit_copy_token/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditAuditCopyTokenRemoveRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditAuditCopyTokenRemoveResponse.java b/src/main/java/com/plaid/client/model/CreditAuditCopyTokenRemoveResponse.java index 00aa33d80..4eddb9468 100644 --- a/src/main/java/com/plaid/client/model/CreditAuditCopyTokenRemoveResponse.java +++ b/src/main/java/com/plaid/client/model/CreditAuditCopyTokenRemoveResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditAuditCopyTokenRemoveResponse defines the response schema for `/credit/audit_copy_token/remove` */ @ApiModel(description = "CreditAuditCopyTokenRemoveResponse defines the response schema for `/credit/audit_copy_token/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditAuditCopyTokenRemoveResponse { public static final String SERIALIZED_NAME_REMOVED = "removed"; @SerializedName(SERIALIZED_NAME_REMOVED) diff --git a/src/main/java/com/plaid/client/model/CreditAuditCopyTokenUpdateRequest.java b/src/main/java/com/plaid/client/model/CreditAuditCopyTokenUpdateRequest.java index 7a53a50ff..fd37e0f56 100644 --- a/src/main/java/com/plaid/client/model/CreditAuditCopyTokenUpdateRequest.java +++ b/src/main/java/com/plaid/client/model/CreditAuditCopyTokenUpdateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * CreditAuditCopyTokenUpdateRequest defines the request schema for `/credit/audit_copy_token/update` */ @ApiModel(description = "CreditAuditCopyTokenUpdateRequest defines the request schema for `/credit/audit_copy_token/update`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditAuditCopyTokenUpdateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditAuditCopyTokenUpdateResponse.java b/src/main/java/com/plaid/client/model/CreditAuditCopyTokenUpdateResponse.java index 754a13f33..b1c8eb4d8 100644 --- a/src/main/java/com/plaid/client/model/CreditAuditCopyTokenUpdateResponse.java +++ b/src/main/java/com/plaid/client/model/CreditAuditCopyTokenUpdateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/credit/audit_copy_token/update` */ @ApiModel(description = "Defines the response schema for `/credit/audit_copy_token/update`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditAuditCopyTokenUpdateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/CreditBankEmployer.java b/src/main/java/com/plaid/client/model/CreditBankEmployer.java index 2b2effcbc..bc2841299 100644 --- a/src/main/java/com/plaid/client/model/CreditBankEmployer.java +++ b/src/main/java/com/plaid/client/model/CreditBankEmployer.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Object containing employer data. */ @ApiModel(description = "Object containing employer data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankEmployer { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/CreditBankEmployment.java b/src/main/java/com/plaid/client/model/CreditBankEmployment.java index ea97c9ce0..85f76e55a 100644 --- a/src/main/java/com/plaid/client/model/CreditBankEmployment.java +++ b/src/main/java/com/plaid/client/model/CreditBankEmployment.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Detailed information for the bank employment. */ @ApiModel(description = "Detailed information for the bank employment.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankEmployment { public static final String SERIALIZED_NAME_BANK_EMPLOYMENT_ID = "bank_employment_id"; @SerializedName(SERIALIZED_NAME_BANK_EMPLOYMENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditBankEmploymentGetRequest.java b/src/main/java/com/plaid/client/model/CreditBankEmploymentGetRequest.java index 61c3d6c63..2e584827b 100644 --- a/src/main/java/com/plaid/client/model/CreditBankEmploymentGetRequest.java +++ b/src/main/java/com/plaid/client/model/CreditBankEmploymentGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditBankEmploymentGetRequest defines the request schema for `/beta/credit/v1/bank_employment/get`. */ @ApiModel(description = "CreditBankEmploymentGetRequest defines the request schema for `/beta/credit/v1/bank_employment/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankEmploymentGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditBankEmploymentGetResponse.java b/src/main/java/com/plaid/client/model/CreditBankEmploymentGetResponse.java index 1f81212ca..3efe7ecab 100644 --- a/src/main/java/com/plaid/client/model/CreditBankEmploymentGetResponse.java +++ b/src/main/java/com/plaid/client/model/CreditBankEmploymentGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * CreditBankEmploymentGetResponse defines the response schema for `/beta/credit/v1/bank_employment/get`. */ @ApiModel(description = "CreditBankEmploymentGetResponse defines the response schema for `/beta/credit/v1/bank_employment/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankEmploymentGetResponse { public static final String SERIALIZED_NAME_BANK_EMPLOYMENT_REPORTS = "bank_employment_reports"; @SerializedName(SERIALIZED_NAME_BANK_EMPLOYMENT_REPORTS) diff --git a/src/main/java/com/plaid/client/model/CreditBankEmploymentItem.java b/src/main/java/com/plaid/client/model/CreditBankEmploymentItem.java index 12e94919b..7f7ef9c65 100644 --- a/src/main/java/com/plaid/client/model/CreditBankEmploymentItem.java +++ b/src/main/java/com/plaid/client/model/CreditBankEmploymentItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * The details and metadata for an end user's Item. */ @ApiModel(description = "The details and metadata for an end user's Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankEmploymentItem { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) diff --git a/src/main/java/com/plaid/client/model/CreditBankEmploymentReport.java b/src/main/java/com/plaid/client/model/CreditBankEmploymentReport.java index 044e6e026..a564031dc 100644 --- a/src/main/java/com/plaid/client/model/CreditBankEmploymentReport.java +++ b/src/main/java/com/plaid/client/model/CreditBankEmploymentReport.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * The report of the Bank Employment data for an end user. */ @ApiModel(description = "The report of the Bank Employment data for an end user.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankEmploymentReport { public static final String SERIALIZED_NAME_BANK_EMPLOYMENT_REPORT_ID = "bank_employment_report_id"; @SerializedName(SERIALIZED_NAME_BANK_EMPLOYMENT_REPORT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditBankEmploymentWarning.java b/src/main/java/com/plaid/client/model/CreditBankEmploymentWarning.java index 6e1478bbd..2550e772d 100644 --- a/src/main/java/com/plaid/client/model/CreditBankEmploymentWarning.java +++ b/src/main/java/com/plaid/client/model/CreditBankEmploymentWarning.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The warning associated with the data that was unavailable for the Bank Employment Report. */ @ApiModel(description = "The warning associated with the data that was unavailable for the Bank Employment Report.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankEmploymentWarning { public static final String SERIALIZED_NAME_WARNING_TYPE = "warning_type"; @SerializedName(SERIALIZED_NAME_WARNING_TYPE) diff --git a/src/main/java/com/plaid/client/model/CreditBankEmploymentWarningType.java b/src/main/java/com/plaid/client/model/CreditBankEmploymentWarningType.java index 217123c43..d42e118f7 100644 --- a/src/main/java/com/plaid/client/model/CreditBankEmploymentWarningType.java +++ b/src/main/java/com/plaid/client/model/CreditBankEmploymentWarningType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CreditBankIncome.java b/src/main/java/com/plaid/client/model/CreditBankIncome.java index d62a70e5e..55e6ee56e 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncome.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncome.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * The report of the Bank Income data for an end user. */ @ApiModel(description = "The report of the Bank Income data for an end user.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncome { public static final String SERIALIZED_NAME_BANK_INCOME_ID = "bank_income_id"; @SerializedName(SERIALIZED_NAME_BANK_INCOME_ID) diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeAccount.java b/src/main/java/com/plaid/client/model/CreditBankIncomeAccount.java index 5cc359088..09c66787b 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeAccount.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * The Item's bank accounts that have the selected data. */ @ApiModel(description = "The Item's bank accounts that have the selected data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncomeAccount { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeAccountType.java b/src/main/java/com/plaid/client/model/CreditBankIncomeAccountType.java index 4a4439f50..e346ba5c9 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeAccountType.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeAccountType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeCategory.java b/src/main/java/com/plaid/client/model/CreditBankIncomeCategory.java index 43b6c58e0..2e0d7a2d5 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeCategory.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeCategory.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeCause.java b/src/main/java/com/plaid/client/model/CreditBankIncomeCause.java index 934ece39b..8fbbcaddb 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeCause.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeCause.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An error object and associated `item_id` used to identify a specific Item and error when a batch operation operating on multiple Items has encountered an error in one of the Items. */ @ApiModel(description = "An error object and associated `item_id` used to identify a specific Item and error when a batch operation operating on multiple Items has encountered an error in one of the Items.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncomeCause { public static final String SERIALIZED_NAME_ERROR_TYPE = "error_type"; @SerializedName(SERIALIZED_NAME_ERROR_TYPE) diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeErrorType.java b/src/main/java/com/plaid/client/model/CreditBankIncomeErrorType.java index 24bc9a267..3f61fb624 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeErrorType.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeErrorType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeGetRequest.java b/src/main/java/com/plaid/client/model/CreditBankIncomeGetRequest.java index 3e1494b27..673ad12c1 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeGetRequest.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * CreditBankIncomeGetRequest defines the request schema for `/credit/bank_income/get`. */ @ApiModel(description = "CreditBankIncomeGetRequest defines the request schema for `/credit/bank_income/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncomeGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeGetRequestOptions.java b/src/main/java/com/plaid/client/model/CreditBankIncomeGetRequestOptions.java index e4ddc1293..a9bdcf355 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An optional object for `/credit/bank_income/get` request options. */ @ApiModel(description = "An optional object for `/credit/bank_income/get` request options.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncomeGetRequestOptions { public static final String SERIALIZED_NAME_COUNT = "count"; @SerializedName(SERIALIZED_NAME_COUNT) diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeGetResponse.java b/src/main/java/com/plaid/client/model/CreditBankIncomeGetResponse.java index a07f35e2c..8cf93b226 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeGetResponse.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * CreditBankIncomeGetResponse defines the response schema for `/credit/bank_income/get` */ @ApiModel(description = "CreditBankIncomeGetResponse defines the response schema for `/credit/bank_income/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncomeGetResponse { public static final String SERIALIZED_NAME_BANK_INCOME = "bank_income"; @SerializedName(SERIALIZED_NAME_BANK_INCOME) diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeHistoricalSummary.java b/src/main/java/com/plaid/client/model/CreditBankIncomeHistoricalSummary.java index 9077f2f68..bd7a6c66b 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeHistoricalSummary.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeHistoricalSummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * The end user's monthly summary for the income source(s). */ @ApiModel(description = "The end user's monthly summary for the income source(s).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncomeHistoricalSummary { public static final String SERIALIZED_NAME_TOTAL_AMOUNT = "total_amount"; @SerializedName(SERIALIZED_NAME_TOTAL_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeItem.java b/src/main/java/com/plaid/client/model/CreditBankIncomeItem.java index 24afaeea4..93963a0db 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeItem.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * The details and metadata for an end user's Item. */ @ApiModel(description = "The details and metadata for an end user's Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncomeItem { public static final String SERIALIZED_NAME_BANK_INCOME_ACCOUNTS = "bank_income_accounts"; @SerializedName(SERIALIZED_NAME_BANK_INCOME_ACCOUNTS) diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomePDFGetRequest.java b/src/main/java/com/plaid/client/model/CreditBankIncomePDFGetRequest.java index a3fbda74f..7966e7ae1 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomePDFGetRequest.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomePDFGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditBankIncomePDFGetRequest defines the request schema for `/credit/bank_income/pdf/get` */ @ApiModel(description = "CreditBankIncomePDFGetRequest defines the request schema for `/credit/bank_income/pdf/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncomePDFGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomePayFrequency.java b/src/main/java/com/plaid/client/model/CreditBankIncomePayFrequency.java index f32b10457..c48dae1e7 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomePayFrequency.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomePayFrequency.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeRefreshRequest.java b/src/main/java/com/plaid/client/model/CreditBankIncomeRefreshRequest.java index 103f89e93..3e4258527 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeRefreshRequest.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeRefreshRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * CreditBankIncomeRefreshRequest defines the request schema for `/credit/bank_income/refresh`. */ @ApiModel(description = "CreditBankIncomeRefreshRequest defines the request schema for `/credit/bank_income/refresh`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncomeRefreshRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeRefreshRequestOptions.java b/src/main/java/com/plaid/client/model/CreditBankIncomeRefreshRequestOptions.java index 914ef6e6d..19360629a 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeRefreshRequestOptions.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeRefreshRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An optional object for `/credit/bank_income/refresh` request options. */ @ApiModel(description = "An optional object for `/credit/bank_income/refresh` request options.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncomeRefreshRequestOptions { public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeRefreshResponse.java b/src/main/java/com/plaid/client/model/CreditBankIncomeRefreshResponse.java index bd3c9635b..7d0c12097 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeRefreshResponse.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeRefreshResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditBankIncomeRefreshResponse defines the response schema for `/credit/bank_income/refresh`. */ @ApiModel(description = "CreditBankIncomeRefreshResponse defines the response schema for `/credit/bank_income/refresh`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncomeRefreshResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeSource.java b/src/main/java/com/plaid/client/model/CreditBankIncomeSource.java index a4a3578ed..01a72583b 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeSource.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeSource.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * Detailed information for the income source. */ @ApiModel(description = "Detailed information for the income source.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncomeSource { public static final String SERIALIZED_NAME_INCOME_SOURCE_ID = "income_source_id"; @SerializedName(SERIALIZED_NAME_INCOME_SOURCE_ID) diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeSummary.java b/src/main/java/com/plaid/client/model/CreditBankIncomeSummary.java index 858b54781..d4871976b 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeSummary.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeSummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * Summary for bank income across all income sources and items (max history of 730 days). */ @ApiModel(description = "Summary for bank income across all income sources and items (max history of 730 days).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncomeSummary { public static final String SERIALIZED_NAME_TOTAL_AMOUNT = "total_amount"; @SerializedName(SERIALIZED_NAME_TOTAL_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeTransaction.java b/src/main/java/com/plaid/client/model/CreditBankIncomeTransaction.java index 73b72c4f5..0fc573d40 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeTransaction.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The transactions data for the end user's income source(s). */ @ApiModel(description = "The transactions data for the end user's income source(s).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncomeTransaction { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeWarning.java b/src/main/java/com/plaid/client/model/CreditBankIncomeWarning.java index 2ebc75754..cf52b077e 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeWarning.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeWarning.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The warning associated with the data that was unavailable for the Bank Income Report. */ @ApiModel(description = "The warning associated with the data that was unavailable for the Bank Income Report.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncomeWarning { public static final String SERIALIZED_NAME_WARNING_TYPE = "warning_type"; @SerializedName(SERIALIZED_NAME_WARNING_TYPE) diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeWarningCode.java b/src/main/java/com/plaid/client/model/CreditBankIncomeWarningCode.java index e457e2cf2..228301655 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeWarningCode.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeWarningCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeWarningType.java b/src/main/java/com/plaid/client/model/CreditBankIncomeWarningType.java index 387968eaf..617d5dd08 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeWarningType.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeWarningType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeWebhookUpdateRequest.java b/src/main/java/com/plaid/client/model/CreditBankIncomeWebhookUpdateRequest.java index e322003dc..3ef4b2592 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeWebhookUpdateRequest.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeWebhookUpdateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditBankIncomeWebhookUpdateRequest defines the request schema for `/credit/bank_income/webhook/update`. */ @ApiModel(description = "CreditBankIncomeWebhookUpdateRequest defines the request schema for `/credit/bank_income/webhook/update`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncomeWebhookUpdateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditBankIncomeWebhookUpdateResponse.java b/src/main/java/com/plaid/client/model/CreditBankIncomeWebhookUpdateResponse.java index d2606aa35..e5714e288 100644 --- a/src/main/java/com/plaid/client/model/CreditBankIncomeWebhookUpdateResponse.java +++ b/src/main/java/com/plaid/client/model/CreditBankIncomeWebhookUpdateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditBankIncomeWebhookUpdateResponse defines the response schema for `/credit/bank_income/webhook/update`. */ @ApiModel(description = "CreditBankIncomeWebhookUpdateResponse defines the response schema for `/credit/bank_income/webhook/update`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankIncomeWebhookUpdateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/CreditBankStatementUploadAccountOwner.java b/src/main/java/com/plaid/client/model/CreditBankStatementUploadAccountOwner.java index 07c4e4634..d3ad61add 100644 --- a/src/main/java/com/plaid/client/model/CreditBankStatementUploadAccountOwner.java +++ b/src/main/java/com/plaid/client/model/CreditBankStatementUploadAccountOwner.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object containing data about the owner of the bank account for the uploaded bank statement. */ @ApiModel(description = "An object containing data about the owner of the bank account for the uploaded bank statement.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankStatementUploadAccountOwner { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/CreditBankStatementUploadAccountOwnerAddress.java b/src/main/java/com/plaid/client/model/CreditBankStatementUploadAccountOwnerAddress.java index 4d5dcf41b..6cb5de0a3 100644 --- a/src/main/java/com/plaid/client/model/CreditBankStatementUploadAccountOwnerAddress.java +++ b/src/main/java/com/plaid/client/model/CreditBankStatementUploadAccountOwnerAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Address on the uploaded bank statement */ @ApiModel(description = "Address on the uploaded bank statement") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankStatementUploadAccountOwnerAddress { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/CreditBankStatementUploadBankAccount.java b/src/main/java/com/plaid/client/model/CreditBankStatementUploadBankAccount.java index b14e1c5de..d078e1157 100644 --- a/src/main/java/com/plaid/client/model/CreditBankStatementUploadBankAccount.java +++ b/src/main/java/com/plaid/client/model/CreditBankStatementUploadBankAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * An object containing data about a user's bank account related to an uploaded bank statement. */ @ApiModel(description = "An object containing data about a user's bank account related to an uploaded bank statement.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankStatementUploadBankAccount { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/CreditBankStatementUploadBankAccountPeriod.java b/src/main/java/com/plaid/client/model/CreditBankStatementUploadBankAccountPeriod.java index 9976530ae..73f82552e 100644 --- a/src/main/java/com/plaid/client/model/CreditBankStatementUploadBankAccountPeriod.java +++ b/src/main/java/com/plaid/client/model/CreditBankStatementUploadBankAccountPeriod.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An object containing data on the overall period of the statement. */ @ApiModel(description = "An object containing data on the overall period of the statement.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankStatementUploadBankAccountPeriod { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) diff --git a/src/main/java/com/plaid/client/model/CreditBankStatementUploadItem.java b/src/main/java/com/plaid/client/model/CreditBankStatementUploadItem.java index dfe1389f1..8881cb768 100644 --- a/src/main/java/com/plaid/client/model/CreditBankStatementUploadItem.java +++ b/src/main/java/com/plaid/client/model/CreditBankStatementUploadItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * An object containing information about the bank statement upload Item. */ @ApiModel(description = "An object containing information about the bank statement upload Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankStatementUploadItem { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) diff --git a/src/main/java/com/plaid/client/model/CreditBankStatementUploadObject.java b/src/main/java/com/plaid/client/model/CreditBankStatementUploadObject.java index afa969d28..8e80775c3 100644 --- a/src/main/java/com/plaid/client/model/CreditBankStatementUploadObject.java +++ b/src/main/java/com/plaid/client/model/CreditBankStatementUploadObject.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * An object containing data that has been parsed from a user-uploaded bank statement. */ @ApiModel(description = "An object containing data that has been parsed from a user-uploaded bank statement.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankStatementUploadObject { public static final String SERIALIZED_NAME_TRANSACTIONS = "transactions"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS) diff --git a/src/main/java/com/plaid/client/model/CreditBankStatementUploadTransaction.java b/src/main/java/com/plaid/client/model/CreditBankStatementUploadTransaction.java index 178837665..65b1350af 100644 --- a/src/main/java/com/plaid/client/model/CreditBankStatementUploadTransaction.java +++ b/src/main/java/com/plaid/client/model/CreditBankStatementUploadTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An object containing data about a transaction appearing on a user-uploaded bank statement. */ @ApiModel(description = "An object containing data about a transaction appearing on a user-uploaded bank statement.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankStatementUploadTransaction { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/CreditBankStatementsUploadsGetRequest.java b/src/main/java/com/plaid/client/model/CreditBankStatementsUploadsGetRequest.java index 34b2f3236..5c2ba820b 100644 --- a/src/main/java/com/plaid/client/model/CreditBankStatementsUploadsGetRequest.java +++ b/src/main/java/com/plaid/client/model/CreditBankStatementsUploadsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * CreditBankStatementsUploadsGetRequest defines the request schema for `/credit/bank_statements/uploads/get` */ @ApiModel(description = "CreditBankStatementsUploadsGetRequest defines the request schema for `/credit/bank_statements/uploads/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankStatementsUploadsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditBankStatementsUploadsGetRequestOptions.java b/src/main/java/com/plaid/client/model/CreditBankStatementsUploadsGetRequestOptions.java index 1751fb6d1..595c63900 100644 --- a/src/main/java/com/plaid/client/model/CreditBankStatementsUploadsGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/CreditBankStatementsUploadsGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An optional object for `/credit/bank_statements/uploads/get` request options. */ @ApiModel(description = "An optional object for `/credit/bank_statements/uploads/get` request options.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankStatementsUploadsGetRequestOptions { public static final String SERIALIZED_NAME_ITEM_IDS = "item_ids"; @SerializedName(SERIALIZED_NAME_ITEM_IDS) diff --git a/src/main/java/com/plaid/client/model/CreditBankStatementsUploadsGetResponse.java b/src/main/java/com/plaid/client/model/CreditBankStatementsUploadsGetResponse.java index 22302d154..df31d580e 100644 --- a/src/main/java/com/plaid/client/model/CreditBankStatementsUploadsGetResponse.java +++ b/src/main/java/com/plaid/client/model/CreditBankStatementsUploadsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * CreditBankStatementsUploadsGetResponse defines the response schema for `/credit/bank_statements/uploads/get` */ @ApiModel(description = "CreditBankStatementsUploadsGetResponse defines the response schema for `/credit/bank_statements/uploads/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditBankStatementsUploadsGetResponse { public static final String SERIALIZED_NAME_ITEMS = "items"; @SerializedName(SERIALIZED_NAME_ITEMS) diff --git a/src/main/java/com/plaid/client/model/CreditCardLiability.java b/src/main/java/com/plaid/client/model/CreditCardLiability.java index 64f31a209..505e36f99 100644 --- a/src/main/java/com/plaid/client/model/CreditCardLiability.java +++ b/src/main/java/com/plaid/client/model/CreditCardLiability.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * An object representing a credit card account. */ @ApiModel(description = "An object representing a credit card account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditCardLiability { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditCategory.java b/src/main/java/com/plaid/client/model/CreditCategory.java index f3ea613b6..560b2c37a 100644 --- a/src/main/java/com/plaid/client/model/CreditCategory.java +++ b/src/main/java/com/plaid/client/model/CreditCategory.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Information describing the intent of the transaction. Most relevant for credit use cases, but not limited to such use cases. See the [`taxonomy csv file`](https://plaid.com/documents/credit-category-taxonomy.csv) for a full list of credit categories. */ @ApiModel(description = "Information describing the intent of the transaction. Most relevant for credit use cases, but not limited to such use cases. See the [`taxonomy csv file`](https://plaid.com/documents/credit-category-taxonomy.csv) for a full list of credit categories.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditCategory { public static final String SERIALIZED_NAME_PRIMARY = "primary"; @SerializedName(SERIALIZED_NAME_PRIMARY) diff --git a/src/main/java/com/plaid/client/model/CreditDocumentMetadata.java b/src/main/java/com/plaid/client/model/CreditDocumentMetadata.java index 3432bd77c..6e95cba9c 100644 --- a/src/main/java/com/plaid/client/model/CreditDocumentMetadata.java +++ b/src/main/java/com/plaid/client/model/CreditDocumentMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Object representing metadata pertaining to the document. */ @ApiModel(description = "Object representing metadata pertaining to the document.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditDocumentMetadata { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/CreditEmployerVerification.java b/src/main/java/com/plaid/client/model/CreditEmployerVerification.java index 3a8913359..3f598bcf8 100644 --- a/src/main/java/com/plaid/client/model/CreditEmployerVerification.java +++ b/src/main/java/com/plaid/client/model/CreditEmployerVerification.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object containing employer data. */ @ApiModel(description = "An object containing employer data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditEmployerVerification { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/CreditEmploymentGetRequest.java b/src/main/java/com/plaid/client/model/CreditEmploymentGetRequest.java index 6e78c3143..eabcbb129 100644 --- a/src/main/java/com/plaid/client/model/CreditEmploymentGetRequest.java +++ b/src/main/java/com/plaid/client/model/CreditEmploymentGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditEmploymentGetRequest defines the request schema for `/credit/employment/get`. */ @ApiModel(description = "CreditEmploymentGetRequest defines the request schema for `/credit/employment/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditEmploymentGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditEmploymentGetResponse.java b/src/main/java/com/plaid/client/model/CreditEmploymentGetResponse.java index 9530adb9d..010c277ef 100644 --- a/src/main/java/com/plaid/client/model/CreditEmploymentGetResponse.java +++ b/src/main/java/com/plaid/client/model/CreditEmploymentGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * CreditEmploymentGetResponse defines the response schema for `/credit/employment/get`. */ @ApiModel(description = "CreditEmploymentGetResponse defines the response schema for `/credit/employment/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditEmploymentGetResponse { public static final String SERIALIZED_NAME_ITEMS = "items"; @SerializedName(SERIALIZED_NAME_ITEMS) diff --git a/src/main/java/com/plaid/client/model/CreditEmploymentItem.java b/src/main/java/com/plaid/client/model/CreditEmploymentItem.java index 7e17d544b..eb0683cbc 100644 --- a/src/main/java/com/plaid/client/model/CreditEmploymentItem.java +++ b/src/main/java/com/plaid/client/model/CreditEmploymentItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The object containing employment items. */ @ApiModel(description = "The object containing employment items.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditEmploymentItem { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) diff --git a/src/main/java/com/plaid/client/model/CreditEmploymentVerification.java b/src/main/java/com/plaid/client/model/CreditEmploymentVerification.java index 488a0a5de..aa799569d 100644 --- a/src/main/java/com/plaid/client/model/CreditEmploymentVerification.java +++ b/src/main/java/com/plaid/client/model/CreditEmploymentVerification.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The object containing proof of employment data for an individual. */ @ApiModel(description = "The object containing proof of employment data for an individual.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditEmploymentVerification { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditFilter.java b/src/main/java/com/plaid/client/model/CreditFilter.java index c396f5d55..774aa10aa 100644 --- a/src/main/java/com/plaid/client/model/CreditFilter.java +++ b/src/main/java/com/plaid/client/model/CreditFilter.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A filter to apply to `credit`-type accounts */ @ApiModel(description = "A filter to apply to `credit`-type accounts") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFilter { public static final String SERIALIZED_NAME_ACCOUNT_SUBTYPES = "account_subtypes"; @SerializedName(SERIALIZED_NAME_ACCOUNT_SUBTYPES) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacAsset.java b/src/main/java/com/plaid/client/model/CreditFreddieMacAsset.java index 5a2d79e79..da4c1ba17 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacAsset.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacAsset.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacAsset { public static final String SERIALIZED_NAME_A_S_S_E_T_D_E_T_A_I_L = "ASSET_DETAIL"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_D_E_T_A_I_L) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacAssetTransaction.java b/src/main/java/com/plaid/client/model/CreditFreddieMacAssetTransaction.java index a5364e64e..20528af9e 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacAssetTransaction.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacAssetTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * An object representing... */ @ApiModel(description = "An object representing...") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacAssetTransaction { public static final String SERIALIZED_NAME_A_S_S_E_T_T_R_A_N_S_A_C_T_I_O_N_D_E_T_A_I_L = "ASSET_TRANSACTION_DETAIL"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_T_R_A_N_S_A_C_T_I_O_N_D_E_T_A_I_L) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacAssetTransactions.java b/src/main/java/com/plaid/client/model/CreditFreddieMacAssetTransactions.java index 64726ce7a..51de66569 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacAssetTransactions.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacAssetTransactions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacAssetTransactions { public static final String SERIALIZED_NAME_A_S_S_E_T_T_R_A_N_S_A_C_T_I_O_N = "ASSET_TRANSACTION"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_T_R_A_N_S_A_C_T_I_O_N) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacAssets.java b/src/main/java/com/plaid/client/model/CreditFreddieMacAssets.java index 1569abc34..eaeb18d6a 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacAssets.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacAssets.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacAssets { public static final String SERIALIZED_NAME_A_S_S_E_T = "ASSET"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacIndividualName.java b/src/main/java/com/plaid/client/model/CreditFreddieMacIndividualName.java index afbe756aa..5513b132d 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacIndividualName.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacIndividualName.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacIndividualName { public static final String SERIALIZED_NAME_FIRST_NAME = "FirstName"; @SerializedName(SERIALIZED_NAME_FIRST_NAME) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacLoan.java b/src/main/java/com/plaid/client/model/CreditFreddieMacLoan.java index 7343449aa..e8d8e6dd8 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacLoan.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacLoan.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Information specific to a mortgage loan agreement between one or more borrowers and a mortgage lender. */ @ApiModel(description = "Information specific to a mortgage loan agreement between one or more borrowers and a mortgage lender.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacLoan { public static final String SERIALIZED_NAME_L_O_A_N_I_D_E_N_T_I_F_I_E_R_S = "LOAN_IDENTIFIERS"; @SerializedName(SERIALIZED_NAME_L_O_A_N_I_D_E_N_T_I_F_I_E_R_S) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacLoanIdentifiers.java b/src/main/java/com/plaid/client/model/CreditFreddieMacLoanIdentifiers.java index 1cf57ae49..130bb2d8f 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacLoanIdentifiers.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacLoanIdentifiers.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Collection of current and previous identifiers for this loan. */ @ApiModel(description = "Collection of current and previous identifiers for this loan.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacLoanIdentifiers { public static final String SERIALIZED_NAME_L_O_A_N_I_D_E_N_T_I_F_I_E_R = "LOAN_IDENTIFIER"; @SerializedName(SERIALIZED_NAME_L_O_A_N_I_D_E_N_T_I_F_I_E_R) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacLoans.java b/src/main/java/com/plaid/client/model/CreditFreddieMacLoans.java index 8bf8f3d9c..2ed3c6841 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacLoans.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacLoans.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A collection of loans that are part of a single deal. */ @ApiModel(description = "A collection of loans that are part of a single deal.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacLoans { public static final String SERIALIZED_NAME_L_O_A_N = "LOAN"; @SerializedName(SERIALIZED_NAME_L_O_A_N) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacParties.java b/src/main/java/com/plaid/client/model/CreditFreddieMacParties.java index 3a35b19b4..6e5b5a912 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacParties.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacParties.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A collection of objects that define specific parties to a deal. This includes the direct participating parties, such as borrower and seller and the indirect parties such as the credit report provider. */ @ApiModel(description = "A collection of objects that define specific parties to a deal. This includes the direct participating parties, such as borrower and seller and the indirect parties such as the credit report provider.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacParties { public static final String SERIALIZED_NAME_P_A_R_T_Y = "PARTY"; @SerializedName(SERIALIZED_NAME_P_A_R_T_Y) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacParty.java b/src/main/java/com/plaid/client/model/CreditFreddieMacParty.java index c0e577ba7..95c8f57eb 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacParty.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacParty.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A collection of information about a single party to a transaction. Included direct participants like the borrower and seller as well as indirect participants such as the flood certificate provider. */ @ApiModel(description = "A collection of information about a single party to a transaction. Included direct participants like the borrower and seller as well as indirect participants such as the flood certificate provider.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacParty { public static final String SERIALIZED_NAME_I_N_D_I_V_I_D_U_A_L = "INDIVIDUAL"; @SerializedName(SERIALIZED_NAME_I_N_D_I_V_I_D_U_A_L) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacPartyIndividual.java b/src/main/java/com/plaid/client/model/CreditFreddieMacPartyIndividual.java index be55ce1c6..ae7b80873 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacPartyIndividual.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacPartyIndividual.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacPartyIndividual { public static final String SERIALIZED_NAME_N_A_M_E = "NAME"; @SerializedName(SERIALIZED_NAME_N_A_M_E) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacReportingInformation.java b/src/main/java/com/plaid/client/model/CreditFreddieMacReportingInformation.java index 65131fd94..a24e8870c 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacReportingInformation.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacReportingInformation.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Information about an report identifier and a report name. */ @ApiModel(description = "Information about an report identifier and a report name.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacReportingInformation { public static final String SERIALIZED_NAME_REPORT_DATE_TIME = "ReportDateTime"; @SerializedName(SERIALIZED_NAME_REPORT_DATE_TIME) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacReportsGetRequest.java b/src/main/java/com/plaid/client/model/CreditFreddieMacReportsGetRequest.java index 44d10a2c5..18674cb07 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacReportsGetRequest.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacReportsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditFreddieMacReportsGetRequest defines the request schema for `credit/asset_report/freddie_mac/get` */ @ApiModel(description = "CreditFreddieMacReportsGetRequest defines the request schema for `credit/asset_report/freddie_mac/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacReportsGetRequest { public static final String SERIALIZED_NAME_AUDIT_COPY_TOKEN = "audit_copy_token"; @SerializedName(SERIALIZED_NAME_AUDIT_COPY_TOKEN) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacReportsGetResponse.java b/src/main/java/com/plaid/client/model/CreditFreddieMacReportsGetResponse.java index 070218c48..ac98a79b5 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacReportsGetResponse.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacReportsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * CreditFreddieMacReportsGetResponse defines the response schema for `/credit/freddie_mac/reports/get` */ @ApiModel(description = "CreditFreddieMacReportsGetResponse defines the response schema for `/credit/freddie_mac/reports/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacReportsGetResponse { public static final String SERIALIZED_NAME_D_E_A_L = "DEAL"; @SerializedName(SERIALIZED_NAME_D_E_A_L) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacService.java b/src/main/java/com/plaid/client/model/CreditFreddieMacService.java index b8ff4c08c..cfce7f763 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacService.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacService.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacService { public static final String SERIALIZED_NAME_V_E_R_I_F_I_C_A_T_I_O_N_O_F_A_S_S_E_T = "VERIFICATION_OF_ASSET"; @SerializedName(SERIALIZED_NAME_V_E_R_I_F_I_C_A_T_I_O_N_O_F_A_S_S_E_T) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacServices.java b/src/main/java/com/plaid/client/model/CreditFreddieMacServices.java index 9987eec01..f92e7a4e3 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacServices.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacServices.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A collection of objects that describe requests and responses for services. */ @ApiModel(description = "A collection of objects that describe requests and responses for services.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacServices { public static final String SERIALIZED_NAME_S_E_R_V_I_C_E = "SERVICE"; @SerializedName(SERIALIZED_NAME_S_E_R_V_I_C_E) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacVerificationOfAsset.java b/src/main/java/com/plaid/client/model/CreditFreddieMacVerificationOfAsset.java index 22d451946..a2a8f7142 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacVerificationOfAsset.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacVerificationOfAsset.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacVerificationOfAsset { public static final String SERIALIZED_NAME_R_E_P_O_R_T_I_N_G_I_N_F_O_R_M_A_T_I_O_N = "REPORTING_INFORMATION"; @SerializedName(SERIALIZED_NAME_R_E_P_O_R_T_I_N_G_I_N_F_O_R_M_A_T_I_O_N) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacVerificationOfAssetResponse.java b/src/main/java/com/plaid/client/model/CreditFreddieMacVerificationOfAssetResponse.java index d52cebd20..7492927bc 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacVerificationOfAssetResponse.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacVerificationOfAssetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[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) diff --git a/src/main/java/com/plaid/client/model/CreditFreddieMacVerificationOfAssetsDeal.java b/src/main/java/com/plaid/client/model/CreditFreddieMacVerificationOfAssetsDeal.java index 67e271f31..ad536354a 100644 --- a/src/main/java/com/plaid/client/model/CreditFreddieMacVerificationOfAssetsDeal.java +++ b/src/main/java/com/plaid/client/model/CreditFreddieMacVerificationOfAssetsDeal.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * An object representing an Asset Report with Freddie Mac schema. */ @ApiModel(description = "An object representing an Asset Report with Freddie Mac schema.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditFreddieMacVerificationOfAssetsDeal { public static final String SERIALIZED_NAME_L_O_A_N_S = "LOANS"; @SerializedName(SERIALIZED_NAME_L_O_A_N_S) diff --git a/src/main/java/com/plaid/client/model/CreditPayStub.java b/src/main/java/com/plaid/client/model/CreditPayStub.java index 3044a060d..73295014a 100644 --- a/src/main/java/com/plaid/client/model/CreditPayStub.java +++ b/src/main/java/com/plaid/client/model/CreditPayStub.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * An object representing an end user's pay stub. */ @ApiModel(description = "An object representing an end user's pay stub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayStub { public static final String SERIALIZED_NAME_DEDUCTIONS = "deductions"; @SerializedName(SERIALIZED_NAME_DEDUCTIONS) diff --git a/src/main/java/com/plaid/client/model/CreditPayStubAddress.java b/src/main/java/com/plaid/client/model/CreditPayStubAddress.java index f4412d3bf..3b9420a37 100644 --- a/src/main/java/com/plaid/client/model/CreditPayStubAddress.java +++ b/src/main/java/com/plaid/client/model/CreditPayStubAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Address on the pay stub. */ @ApiModel(description = "Address on the pay stub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayStubAddress { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/CreditPayStubDeductions.java b/src/main/java/com/plaid/client/model/CreditPayStubDeductions.java index ee8c86a12..f9c305d0e 100644 --- a/src/main/java/com/plaid/client/model/CreditPayStubDeductions.java +++ b/src/main/java/com/plaid/client/model/CreditPayStubDeductions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * An object with the deduction information found on a pay stub. */ @ApiModel(description = "An object with the deduction information found on a pay stub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayStubDeductions { public static final String SERIALIZED_NAME_BREAKDOWN = "breakdown"; @SerializedName(SERIALIZED_NAME_BREAKDOWN) diff --git a/src/main/java/com/plaid/client/model/CreditPayStubEarnings.java b/src/main/java/com/plaid/client/model/CreditPayStubEarnings.java index 91c6344a7..bcfedfb1b 100644 --- a/src/main/java/com/plaid/client/model/CreditPayStubEarnings.java +++ b/src/main/java/com/plaid/client/model/CreditPayStubEarnings.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * An object representing both a breakdown of earnings on a pay stub and the total earnings. */ @ApiModel(description = "An object representing both a breakdown of earnings on a pay stub and the total earnings.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayStubEarnings { public static final String SERIALIZED_NAME_BREAKDOWN = "breakdown"; @SerializedName(SERIALIZED_NAME_BREAKDOWN) diff --git a/src/main/java/com/plaid/client/model/CreditPayStubEmployee.java b/src/main/java/com/plaid/client/model/CreditPayStubEmployee.java index a868a90ad..d4bb204d7 100644 --- a/src/main/java/com/plaid/client/model/CreditPayStubEmployee.java +++ b/src/main/java/com/plaid/client/model/CreditPayStubEmployee.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Data about the employee. */ @ApiModel(description = "Data about the employee.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayStubEmployee { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) diff --git a/src/main/java/com/plaid/client/model/CreditPayStubEmployer.java b/src/main/java/com/plaid/client/model/CreditPayStubEmployer.java index 34f7f290d..dbd378609 100644 --- a/src/main/java/com/plaid/client/model/CreditPayStubEmployer.java +++ b/src/main/java/com/plaid/client/model/CreditPayStubEmployer.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayStubEmployer { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) diff --git a/src/main/java/com/plaid/client/model/CreditPayStubNetPay.java b/src/main/java/com/plaid/client/model/CreditPayStubNetPay.java index 9f4326ada..6d04b4b20 100644 --- a/src/main/java/com/plaid/client/model/CreditPayStubNetPay.java +++ b/src/main/java/com/plaid/client/model/CreditPayStubNetPay.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object representing information about the net pay amount on the pay stub. */ @ApiModel(description = "An object representing information about the net pay amount on the pay stub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayStubNetPay { public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount"; @SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/CreditPayStubPayBasisType.java b/src/main/java/com/plaid/client/model/CreditPayStubPayBasisType.java index 3209b7c46..087428add 100644 --- a/src/main/java/com/plaid/client/model/CreditPayStubPayBasisType.java +++ b/src/main/java/com/plaid/client/model/CreditPayStubPayBasisType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CreditPayrollIncomeGetRequest.java b/src/main/java/com/plaid/client/model/CreditPayrollIncomeGetRequest.java index 9ff4125e9..322444e3a 100644 --- a/src/main/java/com/plaid/client/model/CreditPayrollIncomeGetRequest.java +++ b/src/main/java/com/plaid/client/model/CreditPayrollIncomeGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * CreditPayrollIncomeGetRequest defines the request schema for `/credit/payroll_income/get`. */ @ApiModel(description = "CreditPayrollIncomeGetRequest defines the request schema for `/credit/payroll_income/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayrollIncomeGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditPayrollIncomeGetRequestOptions.java b/src/main/java/com/plaid/client/model/CreditPayrollIncomeGetRequestOptions.java index 9bff8dd5f..aa323346b 100644 --- a/src/main/java/com/plaid/client/model/CreditPayrollIncomeGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/CreditPayrollIncomeGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An optional object for `/credit/payroll_income/get` request options. */ @ApiModel(description = "An optional object for `/credit/payroll_income/get` request options.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayrollIncomeGetRequestOptions { public static final String SERIALIZED_NAME_ITEM_IDS = "item_ids"; @SerializedName(SERIALIZED_NAME_ITEM_IDS) diff --git a/src/main/java/com/plaid/client/model/CreditPayrollIncomeGetResponse.java b/src/main/java/com/plaid/client/model/CreditPayrollIncomeGetResponse.java index 713e331e1..19997fa12 100644 --- a/src/main/java/com/plaid/client/model/CreditPayrollIncomeGetResponse.java +++ b/src/main/java/com/plaid/client/model/CreditPayrollIncomeGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Defines the response body for `/credit/payroll_income/get`. */ @ApiModel(description = "Defines the response body for `/credit/payroll_income/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayrollIncomeGetResponse { public static final String SERIALIZED_NAME_ITEMS = "items"; @SerializedName(SERIALIZED_NAME_ITEMS) diff --git a/src/main/java/com/plaid/client/model/CreditPayrollIncomeParsingConfigUpdateRequest.java b/src/main/java/com/plaid/client/model/CreditPayrollIncomeParsingConfigUpdateRequest.java index 56b626290..1bea315d2 100644 --- a/src/main/java/com/plaid/client/model/CreditPayrollIncomeParsingConfigUpdateRequest.java +++ b/src/main/java/com/plaid/client/model/CreditPayrollIncomeParsingConfigUpdateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * CreditPayrollIncomeParsingConfigUpdateRequest defines the request schema for `/credit/payroll_income/documents/update`. */ @ApiModel(description = "CreditPayrollIncomeParsingConfigUpdateRequest defines the request schema for `/credit/payroll_income/documents/update`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayrollIncomeParsingConfigUpdateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditPayrollIncomeParsingConfigUpdateResponse.java b/src/main/java/com/plaid/client/model/CreditPayrollIncomeParsingConfigUpdateResponse.java index b169694bf..a97c9c6c9 100644 --- a/src/main/java/com/plaid/client/model/CreditPayrollIncomeParsingConfigUpdateResponse.java +++ b/src/main/java/com/plaid/client/model/CreditPayrollIncomeParsingConfigUpdateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditPayrollIncomeParsingConfigUpdateResponse defines the response schema for `/credit/payroll_income/documents/update`. */ @ApiModel(description = "CreditPayrollIncomeParsingConfigUpdateResponse defines the response schema for `/credit/payroll_income/documents/update`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayrollIncomeParsingConfigUpdateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/CreditPayrollIncomePrecheckRequest.java b/src/main/java/com/plaid/client/model/CreditPayrollIncomePrecheckRequest.java index 656be4194..c420c4fdd 100644 --- a/src/main/java/com/plaid/client/model/CreditPayrollIncomePrecheckRequest.java +++ b/src/main/java/com/plaid/client/model/CreditPayrollIncomePrecheckRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Defines the request schema for `/credit/payroll_income/precheck`. */ @ApiModel(description = "Defines the request schema for `/credit/payroll_income/precheck`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayrollIncomePrecheckRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditPayrollIncomePrecheckResponse.java b/src/main/java/com/plaid/client/model/CreditPayrollIncomePrecheckResponse.java index c36583887..9b35b7f0c 100644 --- a/src/main/java/com/plaid/client/model/CreditPayrollIncomePrecheckResponse.java +++ b/src/main/java/com/plaid/client/model/CreditPayrollIncomePrecheckResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/credit/payroll_income/precheck`. */ @ApiModel(description = "Defines the response schema for `/credit/payroll_income/precheck`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayrollIncomePrecheckResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/CreditPayrollIncomeRefreshRequest.java b/src/main/java/com/plaid/client/model/CreditPayrollIncomeRefreshRequest.java index 2ba546b33..696978f94 100644 --- a/src/main/java/com/plaid/client/model/CreditPayrollIncomeRefreshRequest.java +++ b/src/main/java/com/plaid/client/model/CreditPayrollIncomeRefreshRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * CreditPayrollIncomeRefreshRequest defines the request schema for `/credit/payroll_income/refresh` */ @ApiModel(description = "CreditPayrollIncomeRefreshRequest defines the request schema for `/credit/payroll_income/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayrollIncomeRefreshRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditPayrollIncomeRefreshRequestOptions.java b/src/main/java/com/plaid/client/model/CreditPayrollIncomeRefreshRequestOptions.java index 065aae329..3ae7e1a56 100644 --- a/src/main/java/com/plaid/client/model/CreditPayrollIncomeRefreshRequestOptions.java +++ b/src/main/java/com/plaid/client/model/CreditPayrollIncomeRefreshRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An optional object for `/credit/payroll_income/refresh` request options. */ @ApiModel(description = "An optional object for `/credit/payroll_income/refresh` request options.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayrollIncomeRefreshRequestOptions { public static final String SERIALIZED_NAME_ITEM_IDS = "item_ids"; @SerializedName(SERIALIZED_NAME_ITEM_IDS) diff --git a/src/main/java/com/plaid/client/model/CreditPayrollIncomeRefreshResponse.java b/src/main/java/com/plaid/client/model/CreditPayrollIncomeRefreshResponse.java index c2a34591c..a890f5673 100644 --- a/src/main/java/com/plaid/client/model/CreditPayrollIncomeRefreshResponse.java +++ b/src/main/java/com/plaid/client/model/CreditPayrollIncomeRefreshResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditPayrollIncomeRefreshResponse defines the response schema for `/credit/payroll_income/refresh` */ @ApiModel(description = "CreditPayrollIncomeRefreshResponse defines the response schema for `/credit/payroll_income/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayrollIncomeRefreshResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/CreditPayrollIncomeRiskSignalsGetRequest.java b/src/main/java/com/plaid/client/model/CreditPayrollIncomeRiskSignalsGetRequest.java index 3718359f2..5250575e5 100644 --- a/src/main/java/com/plaid/client/model/CreditPayrollIncomeRiskSignalsGetRequest.java +++ b/src/main/java/com/plaid/client/model/CreditPayrollIncomeRiskSignalsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditPayrollIncomeRiskSignalsGetRequest defines the request schema for `/credit/payroll_income/risk_signals/get` */ @ApiModel(description = "CreditPayrollIncomeRiskSignalsGetRequest defines the request schema for `/credit/payroll_income/risk_signals/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayrollIncomeRiskSignalsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditPayrollIncomeRiskSignalsGetResponse.java b/src/main/java/com/plaid/client/model/CreditPayrollIncomeRiskSignalsGetResponse.java index e326a01b1..f0c3bfa89 100644 --- a/src/main/java/com/plaid/client/model/CreditPayrollIncomeRiskSignalsGetResponse.java +++ b/src/main/java/com/plaid/client/model/CreditPayrollIncomeRiskSignalsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * CreditPayrollIncomeRiskSignalsGetRequest defines the response schema for `/credit/payroll_income/risk_signals/get` */ @ApiModel(description = "CreditPayrollIncomeRiskSignalsGetRequest defines the response schema for `/credit/payroll_income/risk_signals/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPayrollIncomeRiskSignalsGetResponse { public static final String SERIALIZED_NAME_ITEMS = "items"; @SerializedName(SERIALIZED_NAME_ITEMS) diff --git a/src/main/java/com/plaid/client/model/CreditPlatformIds.java b/src/main/java/com/plaid/client/model/CreditPlatformIds.java index 2e7e70abb..74ffae800 100644 --- a/src/main/java/com/plaid/client/model/CreditPlatformIds.java +++ b/src/main/java/com/plaid/client/model/CreditPlatformIds.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The object containing a set of ids related to an employee. */ @ApiModel(description = "The object containing a set of ids related to an employee.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditPlatformIds { public static final String SERIALIZED_NAME_EMPLOYEE_ID = "employee_id"; @SerializedName(SERIALIZED_NAME_EMPLOYEE_ID) diff --git a/src/main/java/com/plaid/client/model/CreditRelayCreateRequest.java b/src/main/java/com/plaid/client/model/CreditRelayCreateRequest.java index 01ce9c309..1b523a433 100644 --- a/src/main/java/com/plaid/client/model/CreditRelayCreateRequest.java +++ b/src/main/java/com/plaid/client/model/CreditRelayCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * CreditRelayCreateRequest defines the request schema for `/credit/relay/create` */ @ApiModel(description = "CreditRelayCreateRequest defines the request schema for `/credit/relay/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditRelayCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditRelayCreateResponse.java b/src/main/java/com/plaid/client/model/CreditRelayCreateResponse.java index 2b002abda..a02cd8f5e 100644 --- a/src/main/java/com/plaid/client/model/CreditRelayCreateResponse.java +++ b/src/main/java/com/plaid/client/model/CreditRelayCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditRelayCreateResponse defines the response schema for `/credit/relay/create` */ @ApiModel(description = "CreditRelayCreateResponse defines the response schema for `/credit/relay/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditRelayCreateResponse { public static final String SERIALIZED_NAME_RELAY_TOKEN = "relay_token"; @SerializedName(SERIALIZED_NAME_RELAY_TOKEN) diff --git a/src/main/java/com/plaid/client/model/CreditRelayGetRequest.java b/src/main/java/com/plaid/client/model/CreditRelayGetRequest.java index 4ee5d95ed..36ef722ca 100644 --- a/src/main/java/com/plaid/client/model/CreditRelayGetRequest.java +++ b/src/main/java/com/plaid/client/model/CreditRelayGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * CreditRelayGetRequest defines the request schema for `/credit/relay/get` */ @ApiModel(description = "CreditRelayGetRequest defines the request schema for `/credit/relay/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditRelayGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditRelayPDFGetRequest.java b/src/main/java/com/plaid/client/model/CreditRelayPDFGetRequest.java index f23bfa27e..3d037e498 100644 --- a/src/main/java/com/plaid/client/model/CreditRelayPDFGetRequest.java +++ b/src/main/java/com/plaid/client/model/CreditRelayPDFGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * CreditRelayPDFGetRequest defines the request schema for `/credit/relay/pdf/get` */ @ApiModel(description = "CreditRelayPDFGetRequest defines the request schema for `/credit/relay/pdf/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditRelayPDFGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditRelayRefreshRequest.java b/src/main/java/com/plaid/client/model/CreditRelayRefreshRequest.java index 28884d41a..68ac406e8 100644 --- a/src/main/java/com/plaid/client/model/CreditRelayRefreshRequest.java +++ b/src/main/java/com/plaid/client/model/CreditRelayRefreshRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * CreditRelayRefreshRequest defines the request schema for `/credit/relay/refresh` */ @ApiModel(description = "CreditRelayRefreshRequest defines the request schema for `/credit/relay/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditRelayRefreshRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditRelayRefreshResponse.java b/src/main/java/com/plaid/client/model/CreditRelayRefreshResponse.java index cd4a85fe3..5bd08c340 100644 --- a/src/main/java/com/plaid/client/model/CreditRelayRefreshResponse.java +++ b/src/main/java/com/plaid/client/model/CreditRelayRefreshResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditRelayRefreshResponse defines the response schema for `/credit/relay/refresh` */ @ApiModel(description = "CreditRelayRefreshResponse defines the response schema for `/credit/relay/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditRelayRefreshResponse { public static final String SERIALIZED_NAME_RELAY_TOKEN = "relay_token"; @SerializedName(SERIALIZED_NAME_RELAY_TOKEN) diff --git a/src/main/java/com/plaid/client/model/CreditRelayRemoveRequest.java b/src/main/java/com/plaid/client/model/CreditRelayRemoveRequest.java index 8ede0b589..548493740 100644 --- a/src/main/java/com/plaid/client/model/CreditRelayRemoveRequest.java +++ b/src/main/java/com/plaid/client/model/CreditRelayRemoveRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditRelayRemoveRequest defines the request schema for `/credit/relay/remove` */ @ApiModel(description = "CreditRelayRemoveRequest defines the request schema for `/credit/relay/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditRelayRemoveRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditRelayRemoveResponse.java b/src/main/java/com/plaid/client/model/CreditRelayRemoveResponse.java index 48bf699aa..b0c76251c 100644 --- a/src/main/java/com/plaid/client/model/CreditRelayRemoveResponse.java +++ b/src/main/java/com/plaid/client/model/CreditRelayRemoveResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditRelayRemoveResponse defines the response schema for `/credit/relay/remove` */ @ApiModel(description = "CreditRelayRemoveResponse defines the response schema for `/credit/relay/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditRelayRemoveResponse { public static final String SERIALIZED_NAME_REMOVED = "removed"; @SerializedName(SERIALIZED_NAME_REMOVED) diff --git a/src/main/java/com/plaid/client/model/CreditSession.java b/src/main/java/com/plaid/client/model/CreditSession.java index 2401e8ca8..92f1fd8f2 100644 --- a/src/main/java/com/plaid/client/model/CreditSession.java +++ b/src/main/java/com/plaid/client/model/CreditSession.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Metadata and results for a Link session */ @ApiModel(description = "Metadata and results for a Link session") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditSession { public static final String SERIALIZED_NAME_LINK_SESSION_ID = "link_session_id"; @SerializedName(SERIALIZED_NAME_LINK_SESSION_ID) diff --git a/src/main/java/com/plaid/client/model/CreditSessionBankEmploymentResult.java b/src/main/java/com/plaid/client/model/CreditSessionBankEmploymentResult.java index 5f1638bb9..b48ee856c 100644 --- a/src/main/java/com/plaid/client/model/CreditSessionBankEmploymentResult.java +++ b/src/main/java/com/plaid/client/model/CreditSessionBankEmploymentResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The details of a bank employment verification in Link. */ @ApiModel(description = "The details of a bank employment verification in Link.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditSessionBankEmploymentResult { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/CreditSessionBankEmploymentStatus.java b/src/main/java/com/plaid/client/model/CreditSessionBankEmploymentStatus.java index 9a44f1cd4..69a5b57f6 100644 --- a/src/main/java/com/plaid/client/model/CreditSessionBankEmploymentStatus.java +++ b/src/main/java/com/plaid/client/model/CreditSessionBankEmploymentStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CreditSessionBankIncomeResult.java b/src/main/java/com/plaid/client/model/CreditSessionBankIncomeResult.java index 64c6ec967..817f7cd2a 100644 --- a/src/main/java/com/plaid/client/model/CreditSessionBankIncomeResult.java +++ b/src/main/java/com/plaid/client/model/CreditSessionBankIncomeResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditSessionBankIncomeResult { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/CreditSessionBankIncomeStatus.java b/src/main/java/com/plaid/client/model/CreditSessionBankIncomeStatus.java index 80d4ab74d..0cea23ea1 100644 --- a/src/main/java/com/plaid/client/model/CreditSessionBankIncomeStatus.java +++ b/src/main/java/com/plaid/client/model/CreditSessionBankIncomeStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/CreditSessionDocumentIncomeResult.java b/src/main/java/com/plaid/client/model/CreditSessionDocumentIncomeResult.java index d32208342..d3417d3b0 100644 --- a/src/main/java/com/plaid/client/model/CreditSessionDocumentIncomeResult.java +++ b/src/main/java/com/plaid/client/model/CreditSessionDocumentIncomeResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The details of a document income verification in Link */ @ApiModel(description = "The details of a document income verification in Link") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditSessionDocumentIncomeResult { public static final String SERIALIZED_NAME_NUM_PAYSTUBS_UPLOADED = "num_paystubs_uploaded"; @SerializedName(SERIALIZED_NAME_NUM_PAYSTUBS_UPLOADED) diff --git a/src/main/java/com/plaid/client/model/CreditSessionError.java b/src/main/java/com/plaid/client/model/CreditSessionError.java index 31582ea31..bf75cf270 100644 --- a/src/main/java/com/plaid/client/model/CreditSessionError.java +++ b/src/main/java/com/plaid/client/model/CreditSessionError.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The details of a Link error. */ @ApiModel(description = "The details of a Link error.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditSessionError { public static final String SERIALIZED_NAME_ERROR_TYPE = "error_type"; @SerializedName(SERIALIZED_NAME_ERROR_TYPE) diff --git a/src/main/java/com/plaid/client/model/CreditSessionItemAddResult.java b/src/main/java/com/plaid/client/model/CreditSessionItemAddResult.java index 0c410b218..2615a0e8f 100644 --- a/src/main/java/com/plaid/client/model/CreditSessionItemAddResult.java +++ b/src/main/java/com/plaid/client/model/CreditSessionItemAddResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditSessionItemAddResult { public static final String SERIALIZED_NAME_PUBLIC_TOKEN = "public_token"; @SerializedName(SERIALIZED_NAME_PUBLIC_TOKEN) diff --git a/src/main/java/com/plaid/client/model/CreditSessionPayrollIncomeResult.java b/src/main/java/com/plaid/client/model/CreditSessionPayrollIncomeResult.java index 230c61c04..cf2fb3028 100644 --- a/src/main/java/com/plaid/client/model/CreditSessionPayrollIncomeResult.java +++ b/src/main/java/com/plaid/client/model/CreditSessionPayrollIncomeResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The details of a digital payroll income verification in Link */ @ApiModel(description = "The details of a digital payroll income verification in Link") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditSessionPayrollIncomeResult { public static final String SERIALIZED_NAME_NUM_PAYSTUBS_RETRIEVED = "num_paystubs_retrieved"; @SerializedName(SERIALIZED_NAME_NUM_PAYSTUBS_RETRIEVED) diff --git a/src/main/java/com/plaid/client/model/CreditSessionResults.java b/src/main/java/com/plaid/client/model/CreditSessionResults.java index bd5e8d128..b5a0531be 100644 --- a/src/main/java/com/plaid/client/model/CreditSessionResults.java +++ b/src/main/java/com/plaid/client/model/CreditSessionResults.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * The set of results for a Link session. */ @ApiModel(description = "The set of results for a Link session.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditSessionResults { public static final String SERIALIZED_NAME_ITEM_ADD_RESULTS = "item_add_results"; @SerializedName(SERIALIZED_NAME_ITEM_ADD_RESULTS) diff --git a/src/main/java/com/plaid/client/model/CreditSessionsGetRequest.java b/src/main/java/com/plaid/client/model/CreditSessionsGetRequest.java index 05fceaa86..bf676f2e9 100644 --- a/src/main/java/com/plaid/client/model/CreditSessionsGetRequest.java +++ b/src/main/java/com/plaid/client/model/CreditSessionsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * CreditSessionsGetRequest defines the request schema for `/credit/sessions/get` */ @ApiModel(description = "CreditSessionsGetRequest defines the request schema for `/credit/sessions/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditSessionsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/CreditSessionsGetResponse.java b/src/main/java/com/plaid/client/model/CreditSessionsGetResponse.java index afe06770f..09b2287fa 100644 --- a/src/main/java/com/plaid/client/model/CreditSessionsGetResponse.java +++ b/src/main/java/com/plaid/client/model/CreditSessionsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * CreditSessionsGetResponse defines the response schema for `/credit/sessions/get` */ @ApiModel(description = "CreditSessionsGetResponse defines the response schema for `/credit/sessions/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditSessionsGetResponse { public static final String SERIALIZED_NAME_SESSIONS = "sessions"; @SerializedName(SERIALIZED_NAME_SESSIONS) diff --git a/src/main/java/com/plaid/client/model/CreditW2.java b/src/main/java/com/plaid/client/model/CreditW2.java index 17c652c7c..e79b5f6c9 100644 --- a/src/main/java/com/plaid/client/model/CreditW2.java +++ b/src/main/java/com/plaid/client/model/CreditW2.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * W2 is an object that represents income data taken from a W2 tax document. */ @ApiModel(description = "W2 is an object that represents income data taken from a W2 tax document.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CreditW2 { public static final String SERIALIZED_NAME_DOCUMENT_METADATA = "document_metadata"; @SerializedName(SERIALIZED_NAME_DOCUMENT_METADATA) diff --git a/src/main/java/com/plaid/client/model/CustomSandboxTransaction.java b/src/main/java/com/plaid/client/model/CustomSandboxTransaction.java index 8aaf289e1..8b7728e28 100644 --- a/src/main/java/com/plaid/client/model/CustomSandboxTransaction.java +++ b/src/main/java/com/plaid/client/model/CustomSandboxTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Data to populate as test transaction data. */ @ApiModel(description = "Data to populate as test transaction data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CustomSandboxTransaction { public static final String SERIALIZED_NAME_DATE_TRANSACTED = "date_transacted"; @SerializedName(SERIALIZED_NAME_DATE_TRANSACTED) diff --git a/src/main/java/com/plaid/client/model/CustomerInitiatedReturnRisk.java b/src/main/java/com/plaid/client/model/CustomerInitiatedReturnRisk.java index ab61cc905..4453f6da2 100644 --- a/src/main/java/com/plaid/client/model/CustomerInitiatedReturnRisk.java +++ b/src/main/java/com/plaid/client/model/CustomerInitiatedReturnRisk.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The object contains a risk score and a risk tier that evaluate the transaction return risk of an unauthorized debit. Common return codes in this category include: \"R05\", \"R07\", \"R10\", \"R11\", \"R29\". These returns typically have a return time frame of up to 60 calendar days. During this period, the customer of financial institutions can dispute a transaction as unauthorized. */ @ApiModel(description = "The object contains a risk score and a risk tier that evaluate the transaction return risk of an unauthorized debit. Common return codes in this category include: \"R05\", \"R07\", \"R10\", \"R11\", \"R29\". These returns typically have a return time frame of up to 60 calendar days. During this period, the customer of financial institutions can dispute a transaction as unauthorized.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class CustomerInitiatedReturnRisk { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) diff --git a/src/main/java/com/plaid/client/model/DashboardUser.java b/src/main/java/com/plaid/client/model/DashboardUser.java index b08a32bb2..266cd19aa 100644 --- a/src/main/java/com/plaid/client/model/DashboardUser.java +++ b/src/main/java/com/plaid/client/model/DashboardUser.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Account information associated with a team member with access to the Plaid dashboard. */ @ApiModel(description = "Account information associated with a team member with access to the Plaid dashboard.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DashboardUser { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/DashboardUserGetRequest.java b/src/main/java/com/plaid/client/model/DashboardUserGetRequest.java index 8101435a2..b747849a2 100644 --- a/src/main/java/com/plaid/client/model/DashboardUserGetRequest.java +++ b/src/main/java/com/plaid/client/model/DashboardUserGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for fetching a dashboard user */ @ApiModel(description = "Request input for fetching a dashboard user") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DashboardUserGetRequest { public static final String SERIALIZED_NAME_DASHBOARD_USER_ID = "dashboard_user_id"; @SerializedName(SERIALIZED_NAME_DASHBOARD_USER_ID) diff --git a/src/main/java/com/plaid/client/model/DashboardUserGetResponse.java b/src/main/java/com/plaid/client/model/DashboardUserGetResponse.java index 06ec47738..4820df72b 100644 --- a/src/main/java/com/plaid/client/model/DashboardUserGetResponse.java +++ b/src/main/java/com/plaid/client/model/DashboardUserGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Account information associated with a team member with access to the Plaid dashboard. */ @ApiModel(description = "Account information associated with a team member with access to the Plaid dashboard.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DashboardUserGetResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/DashboardUserListRequest.java b/src/main/java/com/plaid/client/model/DashboardUserListRequest.java index a5f5d940f..d725fa591 100644 --- a/src/main/java/com/plaid/client/model/DashboardUserListRequest.java +++ b/src/main/java/com/plaid/client/model/DashboardUserListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for listing dashboard users */ @ApiModel(description = "Request input for listing dashboard users") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DashboardUserListRequest { public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) diff --git a/src/main/java/com/plaid/client/model/DashboardUserListResponse.java b/src/main/java/com/plaid/client/model/DashboardUserListResponse.java index bfb131fbf..6930bb61c 100644 --- a/src/main/java/com/plaid/client/model/DashboardUserListResponse.java +++ b/src/main/java/com/plaid/client/model/DashboardUserListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Paginated list of dashboard users */ @ApiModel(description = "Paginated list of dashboard users") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DashboardUserListResponse { public static final String SERIALIZED_NAME_DASHBOARD_USERS = "dashboard_users"; @SerializedName(SERIALIZED_NAME_DASHBOARD_USERS) diff --git a/src/main/java/com/plaid/client/model/DashboardUserStatus.java b/src/main/java/com/plaid/client/model/DashboardUserStatus.java index 8ca7444a8..82378f366 100644 --- a/src/main/java/com/plaid/client/model/DashboardUserStatus.java +++ b/src/main/java/com/plaid/client/model/DashboardUserStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/DataSources.java b/src/main/java/com/plaid/client/model/DataSources.java index a2c2289d6..8c6a295e1 100644 --- a/src/main/java/com/plaid/client/model/DataSources.java +++ b/src/main/java/com/plaid/client/model/DataSources.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/DateRange.java b/src/main/java/com/plaid/client/model/DateRange.java index 87281d94c..fdb3acfa8 100644 --- a/src/main/java/com/plaid/client/model/DateRange.java +++ b/src/main/java/com/plaid/client/model/DateRange.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A date range with a start and end date */ @ApiModel(description = "A date range with a start and end date") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DateRange { public static final String SERIALIZED_NAME_BEGINNING = "beginning"; @SerializedName(SERIALIZED_NAME_BEGINNING) diff --git a/src/main/java/com/plaid/client/model/Deductions.java b/src/main/java/com/plaid/client/model/Deductions.java index d7567c053..b723eafc4 100644 --- a/src/main/java/com/plaid/client/model/Deductions.java +++ b/src/main/java/com/plaid/client/model/Deductions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * An object with the deduction information found on a paystub. */ @ApiModel(description = "An object with the deduction information found on a paystub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Deductions { public static final String SERIALIZED_NAME_SUBTOTALS = "subtotals"; @SerializedName(SERIALIZED_NAME_SUBTOTALS) diff --git a/src/main/java/com/plaid/client/model/DeductionsBreakdown.java b/src/main/java/com/plaid/client/model/DeductionsBreakdown.java index 896b1b61d..8a9e14428 100644 --- a/src/main/java/com/plaid/client/model/DeductionsBreakdown.java +++ b/src/main/java/com/plaid/client/model/DeductionsBreakdown.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object representing the deduction line items for the pay period */ @ApiModel(description = "An object representing the deduction line items for the pay period") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DeductionsBreakdown { public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount"; @SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/DeductionsTotal.java b/src/main/java/com/plaid/client/model/DeductionsTotal.java index 27c9682b2..1a3374f61 100644 --- a/src/main/java/com/plaid/client/model/DeductionsTotal.java +++ b/src/main/java/com/plaid/client/model/DeductionsTotal.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object representing the total deductions for the pay period */ @ApiModel(description = "An object representing the total deductions for the pay period") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DeductionsTotal { public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount"; @SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/DefaultUpdateWebhook.java b/src/main/java/com/plaid/client/model/DefaultUpdateWebhook.java index 2f126136d..b360b3160 100644 --- a/src/main/java/com/plaid/client/model/DefaultUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/DefaultUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Fired when new transaction data is available for an Item. Plaid will typically check for new transaction data several times a day. This webhook is intended for use with `/transactions/get`; if you are using the newer `/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead. */ @ApiModel(description = "Fired when new transaction data is available for an Item. Plaid will typically check for new transaction data several times a day. This webhook is intended for use with `/transactions/get`; if you are using the newer `/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead. ") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DefaultUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/DepositoryAccountSubtype.java b/src/main/java/com/plaid/client/model/DepositoryAccountSubtype.java index d066c8e63..44441d15d 100644 --- a/src/main/java/com/plaid/client/model/DepositoryAccountSubtype.java +++ b/src/main/java/com/plaid/client/model/DepositoryAccountSubtype.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/DepositoryFilter.java b/src/main/java/com/plaid/client/model/DepositoryFilter.java index e7f67ae89..2a8e68cd6 100644 --- a/src/main/java/com/plaid/client/model/DepositoryFilter.java +++ b/src/main/java/com/plaid/client/model/DepositoryFilter.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A filter to apply to `depository`-type accounts */ @ApiModel(description = "A filter to apply to `depository`-type accounts") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DepositoryFilter { public static final String SERIALIZED_NAME_ACCOUNT_SUBTYPES = "account_subtypes"; @SerializedName(SERIALIZED_NAME_ACCOUNT_SUBTYPES) diff --git a/src/main/java/com/plaid/client/model/DetailedOriginator.java b/src/main/java/com/plaid/client/model/DetailedOriginator.java index b5d5c57c1..395814d1d 100644 --- a/src/main/java/com/plaid/client/model/DetailedOriginator.java +++ b/src/main/java/com/plaid/client/model/DetailedOriginator.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Originator and their status. */ @ApiModel(description = "Originator and their status.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DetailedOriginator { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/DetectedAccount.java b/src/main/java/com/plaid/client/model/DetectedAccount.java index e2faeff41..e2d4d0af1 100644 --- a/src/main/java/com/plaid/client/model/DetectedAccount.java +++ b/src/main/java/com/plaid/client/model/DetectedAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A possible account detected to be associated with a transaction user. */ @ApiModel(description = "A possible account detected to be associated with a transaction user.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DetectedAccount { public static final String SERIALIZED_NAME_ACCOUNT_TYPE = "account_type"; @SerializedName(SERIALIZED_NAME_ACCOUNT_TYPE) diff --git a/src/main/java/com/plaid/client/model/DeviceId.java b/src/main/java/com/plaid/client/model/DeviceId.java index 8d200c7f4..ebf5ec3f9 100644 --- a/src/main/java/com/plaid/client/model/DeviceId.java +++ b/src/main/java/com/plaid/client/model/DeviceId.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Device Id associated with the device used during the previous link session */ @ApiModel(description = "Device Id associated with the device used during the previous link session") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DeviceId { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) diff --git a/src/main/java/com/plaid/client/model/DistributionBreakdown.java b/src/main/java/com/plaid/client/model/DistributionBreakdown.java index d7cfebe74..fb4bbc8ca 100644 --- a/src/main/java/com/plaid/client/model/DistributionBreakdown.java +++ b/src/main/java/com/plaid/client/model/DistributionBreakdown.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Information about the accounts that the payment was distributed to. */ @ApiModel(description = "Information about the accounts that the payment was distributed to.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DistributionBreakdown { public static final String SERIALIZED_NAME_ACCOUNT_NAME = "account_name"; @SerializedName(SERIALIZED_NAME_ACCOUNT_NAME) diff --git a/src/main/java/com/plaid/client/model/DocType.java b/src/main/java/com/plaid/client/model/DocType.java index 5205d46b1..0ba142dc3 100644 --- a/src/main/java/com/plaid/client/model/DocType.java +++ b/src/main/java/com/plaid/client/model/DocType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/DocumentAnalysis.java b/src/main/java/com/plaid/client/model/DocumentAnalysis.java index 6bc6d729d..c1e4be333 100644 --- a/src/main/java/com/plaid/client/model/DocumentAnalysis.java +++ b/src/main/java/com/plaid/client/model/DocumentAnalysis.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * High level descriptions of how the associated document was processed. If a document fails verification, the details in the `analysis` object should help clarify why the document was rejected. */ @ApiModel(description = "High level descriptions of how the associated document was processed. If a document fails verification, the details in the `analysis` object should help clarify why the document was rejected.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DocumentAnalysis { public static final String SERIALIZED_NAME_AUTHENTICITY = "authenticity"; @SerializedName(SERIALIZED_NAME_AUTHENTICITY) diff --git a/src/main/java/com/plaid/client/model/DocumentAuthenticityMatchCode.java b/src/main/java/com/plaid/client/model/DocumentAuthenticityMatchCode.java index 67f03876e..bd5d912f4 100644 --- a/src/main/java/com/plaid/client/model/DocumentAuthenticityMatchCode.java +++ b/src/main/java/com/plaid/client/model/DocumentAuthenticityMatchCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/DocumentDateOfBirthMatchCode.java b/src/main/java/com/plaid/client/model/DocumentDateOfBirthMatchCode.java index 950ea5aaa..5da7d27e0 100644 --- a/src/main/java/com/plaid/client/model/DocumentDateOfBirthMatchCode.java +++ b/src/main/java/com/plaid/client/model/DocumentDateOfBirthMatchCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/DocumentMetadata.java b/src/main/java/com/plaid/client/model/DocumentMetadata.java index 1390b05a6..d9a7da670 100644 --- a/src/main/java/com/plaid/client/model/DocumentMetadata.java +++ b/src/main/java/com/plaid/client/model/DocumentMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object representing metadata from the end user's uploaded document. */ @ApiModel(description = "An object representing metadata from the end user's uploaded document.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DocumentMetadata { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/DocumentNameMatchCode.java b/src/main/java/com/plaid/client/model/DocumentNameMatchCode.java index 5768882d1..8bd302ac5 100644 --- a/src/main/java/com/plaid/client/model/DocumentNameMatchCode.java +++ b/src/main/java/com/plaid/client/model/DocumentNameMatchCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/DocumentRiskSignal.java b/src/main/java/com/plaid/client/model/DocumentRiskSignal.java index 522c5525d..4d79a1c8c 100644 --- a/src/main/java/com/plaid/client/model/DocumentRiskSignal.java +++ b/src/main/java/com/plaid/client/model/DocumentRiskSignal.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Details about a certain reason as to why a document could potentially be fraudulent. */ @ApiModel(description = "Details about a certain reason as to why a document could potentially be fraudulent.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DocumentRiskSignal { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) diff --git a/src/main/java/com/plaid/client/model/DocumentRiskSignalInstitutionMetadata.java b/src/main/java/com/plaid/client/model/DocumentRiskSignalInstitutionMetadata.java index d1899a447..7a3b60856 100644 --- a/src/main/java/com/plaid/client/model/DocumentRiskSignalInstitutionMetadata.java +++ b/src/main/java/com/plaid/client/model/DocumentRiskSignalInstitutionMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object which contains additional metadata about the institution used to compute the verification attribute */ @ApiModel(description = "An object which contains additional metadata about the institution used to compute the verification attribute") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DocumentRiskSignalInstitutionMetadata { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) diff --git a/src/main/java/com/plaid/client/model/DocumentRiskSignalsObject.java b/src/main/java/com/plaid/client/model/DocumentRiskSignalsObject.java index 9c062af21..72314bbd1 100644 --- a/src/main/java/com/plaid/client/model/DocumentRiskSignalsObject.java +++ b/src/main/java/com/plaid/client/model/DocumentRiskSignalsObject.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Object containing fraud risk data for a set of income documents. */ @ApiModel(description = "Object containing fraud risk data for a set of income documents.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DocumentRiskSignalsObject { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/DocumentRiskSummary.java b/src/main/java/com/plaid/client/model/DocumentRiskSummary.java index 49c5c9a98..175a4732f 100644 --- a/src/main/java/com/plaid/client/model/DocumentRiskSummary.java +++ b/src/main/java/com/plaid/client/model/DocumentRiskSummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A summary across all risk signals associated with a document */ @ApiModel(description = "A summary across all risk signals associated with a document") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DocumentRiskSummary { public static final String SERIALIZED_NAME_RISK_SCORE = "risk_score"; @SerializedName(SERIALIZED_NAME_RISK_SCORE) diff --git a/src/main/java/com/plaid/client/model/DocumentStatus.java b/src/main/java/com/plaid/client/model/DocumentStatus.java index 49339c2d3..f1654ccba 100644 --- a/src/main/java/com/plaid/client/model/DocumentStatus.java +++ b/src/main/java/com/plaid/client/model/DocumentStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/DocumentaryVerification.java b/src/main/java/com/plaid/client/model/DocumentaryVerification.java index 58f8fcfea..bd1296c61 100644 --- a/src/main/java/com/plaid/client/model/DocumentaryVerification.java +++ b/src/main/java/com/plaid/client/model/DocumentaryVerification.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Data, images, analysis, and results from the `documentary_verification` step. This field will be `null` unless `steps.documentary_verification` has reached a terminal state of either `success` or `failed`. */ @ApiModel(description = "Data, images, analysis, and results from the `documentary_verification` step. This field will be `null` unless `steps.documentary_verification` has reached a terminal state of either `success` or `failed`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DocumentaryVerification { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/DocumentaryVerificationDocument.java b/src/main/java/com/plaid/client/model/DocumentaryVerificationDocument.java index 2169f8320..c64ab2b0d 100644 --- a/src/main/java/com/plaid/client/model/DocumentaryVerificationDocument.java +++ b/src/main/java/com/plaid/client/model/DocumentaryVerificationDocument.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Images, extracted data, and analysis from a user's identity document */ @ApiModel(description = "Images, extracted data, and analysis from a user's identity document") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class DocumentaryVerificationDocument { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/Earnings.java b/src/main/java/com/plaid/client/model/Earnings.java index 0cdd62a88..8c290e6c5 100644 --- a/src/main/java/com/plaid/client/model/Earnings.java +++ b/src/main/java/com/plaid/client/model/Earnings.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * An object representing both a breakdown of earnings on a paystub and the total earnings. */ @ApiModel(description = "An object representing both a breakdown of earnings on a paystub and the total earnings.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Earnings { public static final String SERIALIZED_NAME_SUBTOTALS = "subtotals"; @SerializedName(SERIALIZED_NAME_SUBTOTALS) diff --git a/src/main/java/com/plaid/client/model/EarningsBreakdown.java b/src/main/java/com/plaid/client/model/EarningsBreakdown.java index 1455a51bc..06167aacd 100644 --- a/src/main/java/com/plaid/client/model/EarningsBreakdown.java +++ b/src/main/java/com/plaid/client/model/EarningsBreakdown.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An object representing the earnings line items for the pay period. */ @ApiModel(description = "An object representing the earnings line items for the pay period.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EarningsBreakdown { public static final String SERIALIZED_NAME_CANONICAL_DESCRIPTION = "canonical_description"; @SerializedName(SERIALIZED_NAME_CANONICAL_DESCRIPTION) diff --git a/src/main/java/com/plaid/client/model/EarningsBreakdownCanonicalDescription.java b/src/main/java/com/plaid/client/model/EarningsBreakdownCanonicalDescription.java index f9971dbf8..c9f6a418d 100644 --- a/src/main/java/com/plaid/client/model/EarningsBreakdownCanonicalDescription.java +++ b/src/main/java/com/plaid/client/model/EarningsBreakdownCanonicalDescription.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/EarningsTotal.java b/src/main/java/com/plaid/client/model/EarningsTotal.java index daa93a21f..bad1c466b 100644 --- a/src/main/java/com/plaid/client/model/EarningsTotal.java +++ b/src/main/java/com/plaid/client/model/EarningsTotal.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An object representing both the current pay period and year to date amount for an earning category. */ @ApiModel(description = "An object representing both the current pay period and year to date amount for an earning category.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EarningsTotal { public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount"; @SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/Email.java b/src/main/java/com/plaid/client/model/Email.java index c01aeb73c..70fcbac17 100644 --- a/src/main/java/com/plaid/client/model/Email.java +++ b/src/main/java/com/plaid/client/model/Email.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object representing an email address */ @ApiModel(description = "An object representing an email address") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Email { public static final String SERIALIZED_NAME_DATA = "data"; @SerializedName(SERIALIZED_NAME_DATA) diff --git a/src/main/java/com/plaid/client/model/EmailAddressMatchScore.java b/src/main/java/com/plaid/client/model/EmailAddressMatchScore.java index 4e8513c96..d90367af9 100644 --- a/src/main/java/com/plaid/client/model/EmailAddressMatchScore.java +++ b/src/main/java/com/plaid/client/model/EmailAddressMatchScore.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Score found by matching email provided by the API with the email on the account at the financial institution. 100 is a perfect match and 0 is a no match. If the account contains multiple owners, the maximum match score is filled. */ @ApiModel(description = "Score found by matching email provided by the API with the email on the account at the financial institution. 100 is a perfect match and 0 is a no match. If the account contains multiple owners, the maximum match score is filled.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EmailAddressMatchScore { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) diff --git a/src/main/java/com/plaid/client/model/Employee.java b/src/main/java/com/plaid/client/model/Employee.java index 41f86c2dc..4e88b94c3 100644 --- a/src/main/java/com/plaid/client/model/Employee.java +++ b/src/main/java/com/plaid/client/model/Employee.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Data about the employee. */ @ApiModel(description = "Data about the employee.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Employee { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) diff --git a/src/main/java/com/plaid/client/model/EmployeeIncomeSummaryFieldString.java b/src/main/java/com/plaid/client/model/EmployeeIncomeSummaryFieldString.java index 61939b6ca..fe7496e7f 100644 --- a/src/main/java/com/plaid/client/model/EmployeeIncomeSummaryFieldString.java +++ b/src/main/java/com/plaid/client/model/EmployeeIncomeSummaryFieldString.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The name of the employee, as reported on the paystub. */ @ApiModel(description = "The name of the employee, as reported on the paystub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EmployeeIncomeSummaryFieldString { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) diff --git a/src/main/java/com/plaid/client/model/Employer.java b/src/main/java/com/plaid/client/model/Employer.java index 38bbdb8ea..588a38d75 100644 --- a/src/main/java/com/plaid/client/model/Employer.java +++ b/src/main/java/com/plaid/client/model/Employer.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Data about the employer. */ @ApiModel(description = "Data about the employer.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Employer { public static final String SERIALIZED_NAME_EMPLOYER_ID = "employer_id"; @SerializedName(SERIALIZED_NAME_EMPLOYER_ID) diff --git a/src/main/java/com/plaid/client/model/EmployerIncomeSummaryFieldString.java b/src/main/java/com/plaid/client/model/EmployerIncomeSummaryFieldString.java index 868fce408..03164ef82 100644 --- a/src/main/java/com/plaid/client/model/EmployerIncomeSummaryFieldString.java +++ b/src/main/java/com/plaid/client/model/EmployerIncomeSummaryFieldString.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The name of the employer, as reported on the paystub. */ @ApiModel(description = "The name of the employer, as reported on the paystub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EmployerIncomeSummaryFieldString { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) diff --git a/src/main/java/com/plaid/client/model/EmployerVerification.java b/src/main/java/com/plaid/client/model/EmployerVerification.java index e0e32e3df..b956d2c62 100644 --- a/src/main/java/com/plaid/client/model/EmployerVerification.java +++ b/src/main/java/com/plaid/client/model/EmployerVerification.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object containing employer data. */ @ApiModel(description = "An object containing employer data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EmployerVerification { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/EmployersSearchRequest.java b/src/main/java/com/plaid/client/model/EmployersSearchRequest.java index a4bb3a32a..b830a2cc4 100644 --- a/src/main/java/com/plaid/client/model/EmployersSearchRequest.java +++ b/src/main/java/com/plaid/client/model/EmployersSearchRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * EmployersSearchRequest defines the request schema for `/employers/search`. */ @ApiModel(description = "EmployersSearchRequest defines the request schema for `/employers/search`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EmployersSearchRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/EmployersSearchResponse.java b/src/main/java/com/plaid/client/model/EmployersSearchResponse.java index fe5d6294c..391f49af3 100644 --- a/src/main/java/com/plaid/client/model/EmployersSearchResponse.java +++ b/src/main/java/com/plaid/client/model/EmployersSearchResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * EmployersSearchResponse defines the response schema for `/employers/search`. */ @ApiModel(description = "EmployersSearchResponse defines the response schema for `/employers/search`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EmployersSearchResponse { public static final String SERIALIZED_NAME_EMPLOYERS = "employers"; @SerializedName(SERIALIZED_NAME_EMPLOYERS) diff --git a/src/main/java/com/plaid/client/model/EmploymentDetails.java b/src/main/java/com/plaid/client/model/EmploymentDetails.java index 9c307a26c..7927b3e49 100644 --- a/src/main/java/com/plaid/client/model/EmploymentDetails.java +++ b/src/main/java/com/plaid/client/model/EmploymentDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An object representing employment details found on a paystub. */ @ApiModel(description = "An object representing employment details found on a paystub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EmploymentDetails { public static final String SERIALIZED_NAME_ANNUAL_SALARY = "annual_salary"; @SerializedName(SERIALIZED_NAME_ANNUAL_SALARY) diff --git a/src/main/java/com/plaid/client/model/EmploymentSourceType.java b/src/main/java/com/plaid/client/model/EmploymentSourceType.java index 7ada04d4b..914c94c53 100644 --- a/src/main/java/com/plaid/client/model/EmploymentSourceType.java +++ b/src/main/java/com/plaid/client/model/EmploymentSourceType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/EmploymentVerification.java b/src/main/java/com/plaid/client/model/EmploymentVerification.java index 144040406..281a18905 100644 --- a/src/main/java/com/plaid/client/model/EmploymentVerification.java +++ b/src/main/java/com/plaid/client/model/EmploymentVerification.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * An object containing proof of employment data for an individual */ @ApiModel(description = "An object containing proof of employment data for an individual") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EmploymentVerification { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/EmploymentVerificationGetRequest.java b/src/main/java/com/plaid/client/model/EmploymentVerificationGetRequest.java index f6f928f63..644615b2a 100644 --- a/src/main/java/com/plaid/client/model/EmploymentVerificationGetRequest.java +++ b/src/main/java/com/plaid/client/model/EmploymentVerificationGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * EmploymentVerificationGetRequest defines the request schema for `/employment/verification/get`. */ @ApiModel(description = "EmploymentVerificationGetRequest defines the request schema for `/employment/verification/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EmploymentVerificationGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/EmploymentVerificationGetResponse.java b/src/main/java/com/plaid/client/model/EmploymentVerificationGetResponse.java index d674f7dd4..556c4b879 100644 --- a/src/main/java/com/plaid/client/model/EmploymentVerificationGetResponse.java +++ b/src/main/java/com/plaid/client/model/EmploymentVerificationGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * EmploymentVerificationGetResponse defines the response schema for `/employment/verification/get`. */ @ApiModel(description = "EmploymentVerificationGetResponse defines the response schema for `/employment/verification/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EmploymentVerificationGetResponse { public static final String SERIALIZED_NAME_EMPLOYMENTS = "employments"; @SerializedName(SERIALIZED_NAME_EMPLOYMENTS) diff --git a/src/main/java/com/plaid/client/model/EmploymentVerificationStatus.java b/src/main/java/com/plaid/client/model/EmploymentVerificationStatus.java index e92af8a85..fcee1069c 100644 --- a/src/main/java/com/plaid/client/model/EmploymentVerificationStatus.java +++ b/src/main/java/com/plaid/client/model/EmploymentVerificationStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/Enhancements.java b/src/main/java/com/plaid/client/model/Enhancements.java index e452eb358..a336418ad 100644 --- a/src/main/java/com/plaid/client/model/Enhancements.java +++ b/src/main/java/com/plaid/client/model/Enhancements.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * A grouping of the Plaid produced transaction enhancement fields. */ @ApiModel(description = "A grouping of the Plaid produced transaction enhancement fields.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Enhancements { public static final String SERIALIZED_NAME_MERCHANT_NAME = "merchant_name"; @SerializedName(SERIALIZED_NAME_MERCHANT_NAME) diff --git a/src/main/java/com/plaid/client/model/EnrichTransactionDirection.java b/src/main/java/com/plaid/client/model/EnrichTransactionDirection.java index 1dfce6509..a3bc8ba37 100644 --- a/src/main/java/com/plaid/client/model/EnrichTransactionDirection.java +++ b/src/main/java/com/plaid/client/model/EnrichTransactionDirection.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/Enrichments.java b/src/main/java/com/plaid/client/model/Enrichments.java index 292f20751..c51c85688 100644 --- a/src/main/java/com/plaid/client/model/Enrichments.java +++ b/src/main/java/com/plaid/client/model/Enrichments.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * A grouping of the Plaid produced transaction enrichment fields. */ @ApiModel(description = "A grouping of the Plaid produced transaction enrichment fields.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Enrichments { public static final String SERIALIZED_NAME_CHECK_NUMBER = "check_number"; @SerializedName(SERIALIZED_NAME_CHECK_NUMBER) diff --git a/src/main/java/com/plaid/client/model/EntityDocument.java b/src/main/java/com/plaid/client/model/EntityDocument.java index ca486cf8d..233a55a1d 100644 --- a/src/main/java/com/plaid/client/model/EntityDocument.java +++ b/src/main/java/com/plaid/client/model/EntityDocument.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An official document, usually issued by a governing body or institution, with an associated identifier. */ @ApiModel(description = "An official document, usually issued by a governing body or institution, with an associated identifier.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityDocument { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) diff --git a/src/main/java/com/plaid/client/model/EntityDocumentType.java b/src/main/java/com/plaid/client/model/EntityDocumentType.java index dd572905e..386b14348 100644 --- a/src/main/java/com/plaid/client/model/EntityDocumentType.java +++ b/src/main/java/com/plaid/client/model/EntityDocumentType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/EntityScreeningHitAnalysis.java b/src/main/java/com/plaid/client/model/EntityScreeningHitAnalysis.java index e405d5594..864d9cce5 100644 --- a/src/main/java/com/plaid/client/model/EntityScreeningHitAnalysis.java +++ b/src/main/java/com/plaid/client/model/EntityScreeningHitAnalysis.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Analysis information describing why a screening hit matched the provided entity information */ @ApiModel(description = "Analysis information describing why a screening hit matched the provided entity information") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityScreeningHitAnalysis { public static final String SERIALIZED_NAME_DOCUMENTS = "documents"; @SerializedName(SERIALIZED_NAME_DOCUMENTS) diff --git a/src/main/java/com/plaid/client/model/EntityScreeningHitData.java b/src/main/java/com/plaid/client/model/EntityScreeningHitData.java index 2ac9341a5..c6ac128da 100644 --- a/src/main/java/com/plaid/client/model/EntityScreeningHitData.java +++ b/src/main/java/com/plaid/client/model/EntityScreeningHitData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -36,7 +36,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityScreeningHitData { public static final String SERIALIZED_NAME_DOCUMENTS = "documents"; @SerializedName(SERIALIZED_NAME_DOCUMENTS) diff --git a/src/main/java/com/plaid/client/model/EntityScreeningHitDocumentsItems.java b/src/main/java/com/plaid/client/model/EntityScreeningHitDocumentsItems.java index 8d34360af..9d2c4a690 100644 --- a/src/main/java/com/plaid/client/model/EntityScreeningHitDocumentsItems.java +++ b/src/main/java/com/plaid/client/model/EntityScreeningHitDocumentsItems.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Analyzed documents for the associated hit */ @ApiModel(description = "Analyzed documents for the associated hit") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityScreeningHitDocumentsItems { public static final String SERIALIZED_NAME_ANALYSIS = "analysis"; @SerializedName(SERIALIZED_NAME_ANALYSIS) diff --git a/src/main/java/com/plaid/client/model/EntityScreeningHitEmails.java b/src/main/java/com/plaid/client/model/EntityScreeningHitEmails.java index 878d9851e..5b2535e3c 100644 --- a/src/main/java/com/plaid/client/model/EntityScreeningHitEmails.java +++ b/src/main/java/com/plaid/client/model/EntityScreeningHitEmails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Email address information for the associated entity watchlist hit */ @ApiModel(description = "Email address information for the associated entity watchlist hit") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityScreeningHitEmails { public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) diff --git a/src/main/java/com/plaid/client/model/EntityScreeningHitEmailsItems.java b/src/main/java/com/plaid/client/model/EntityScreeningHitEmailsItems.java index f1fed1557..9cb9a8bab 100644 --- a/src/main/java/com/plaid/client/model/EntityScreeningHitEmailsItems.java +++ b/src/main/java/com/plaid/client/model/EntityScreeningHitEmailsItems.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Analyzed emails for the associated hit */ @ApiModel(description = "Analyzed emails for the associated hit") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityScreeningHitEmailsItems { public static final String SERIALIZED_NAME_ANALYSIS = "analysis"; @SerializedName(SERIALIZED_NAME_ANALYSIS) diff --git a/src/main/java/com/plaid/client/model/EntityScreeningHitNames.java b/src/main/java/com/plaid/client/model/EntityScreeningHitNames.java index 37efc37d6..e95eaa8cf 100644 --- a/src/main/java/com/plaid/client/model/EntityScreeningHitNames.java +++ b/src/main/java/com/plaid/client/model/EntityScreeningHitNames.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Name information for the associated entity watchlist hit */ @ApiModel(description = "Name information for the associated entity watchlist hit") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityScreeningHitNames { public static final String SERIALIZED_NAME_FULL = "full"; @SerializedName(SERIALIZED_NAME_FULL) diff --git a/src/main/java/com/plaid/client/model/EntityScreeningHitNamesItems.java b/src/main/java/com/plaid/client/model/EntityScreeningHitNamesItems.java index d1a788b9e..157c843c7 100644 --- a/src/main/java/com/plaid/client/model/EntityScreeningHitNamesItems.java +++ b/src/main/java/com/plaid/client/model/EntityScreeningHitNamesItems.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Analyzed names for the associated hit */ @ApiModel(description = "Analyzed names for the associated hit") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityScreeningHitNamesItems { public static final String SERIALIZED_NAME_ANALYSIS = "analysis"; @SerializedName(SERIALIZED_NAME_ANALYSIS) diff --git a/src/main/java/com/plaid/client/model/EntityScreeningHitPhoneNumbers.java b/src/main/java/com/plaid/client/model/EntityScreeningHitPhoneNumbers.java index d479c5a76..335328677 100644 --- a/src/main/java/com/plaid/client/model/EntityScreeningHitPhoneNumbers.java +++ b/src/main/java/com/plaid/client/model/EntityScreeningHitPhoneNumbers.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Phone number information associated with the entity screening hit */ @ApiModel(description = "Phone number information associated with the entity screening hit") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityScreeningHitPhoneNumbers { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) diff --git a/src/main/java/com/plaid/client/model/EntityScreeningHitUrls.java b/src/main/java/com/plaid/client/model/EntityScreeningHitUrls.java index 61abe56ff..ea91e9b87 100644 --- a/src/main/java/com/plaid/client/model/EntityScreeningHitUrls.java +++ b/src/main/java/com/plaid/client/model/EntityScreeningHitUrls.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * URLs associated with the entity screening hit */ @ApiModel(description = "URLs associated with the entity screening hit") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityScreeningHitUrls { public static final String SERIALIZED_NAME_URL = "url"; @SerializedName(SERIALIZED_NAME_URL) diff --git a/src/main/java/com/plaid/client/model/EntityScreeningHitUrlsItems.java b/src/main/java/com/plaid/client/model/EntityScreeningHitUrlsItems.java index 062d9d7e6..bb8cbe999 100644 --- a/src/main/java/com/plaid/client/model/EntityScreeningHitUrlsItems.java +++ b/src/main/java/com/plaid/client/model/EntityScreeningHitUrlsItems.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Analyzed URLs for the associated hit */ @ApiModel(description = "Analyzed URLs for the associated hit") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityScreeningHitUrlsItems { public static final String SERIALIZED_NAME_ANALYSIS = "analysis"; @SerializedName(SERIALIZED_NAME_ANALYSIS) diff --git a/src/main/java/com/plaid/client/model/EntityScreeningHitsPhoneNumberItems.java b/src/main/java/com/plaid/client/model/EntityScreeningHitsPhoneNumberItems.java index e2dd14fa2..489277dc3 100644 --- a/src/main/java/com/plaid/client/model/EntityScreeningHitsPhoneNumberItems.java +++ b/src/main/java/com/plaid/client/model/EntityScreeningHitsPhoneNumberItems.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Analyzed phone numbers for the associated hit */ @ApiModel(description = "Analyzed phone numbers for the associated hit") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityScreeningHitsPhoneNumberItems { public static final String SERIALIZED_NAME_ANALYSIS = "analysis"; @SerializedName(SERIALIZED_NAME_ANALYSIS) diff --git a/src/main/java/com/plaid/client/model/EntityScreeningStatusUpdatedWebhook.java b/src/main/java/com/plaid/client/model/EntityScreeningStatusUpdatedWebhook.java index 81f348ae9..227aaa14b 100644 --- a/src/main/java/com/plaid/client/model/EntityScreeningStatusUpdatedWebhook.java +++ b/src/main/java/com/plaid/client/model/EntityScreeningStatusUpdatedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when an entity screening status has changed, which can occur manually via the dashboard or during ongoing monitoring. */ @ApiModel(description = "Fired when an entity screening status has changed, which can occur manually via the dashboard or during ongoing monitoring.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityScreeningStatusUpdatedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/EntityWatchlistCode.java b/src/main/java/com/plaid/client/model/EntityWatchlistCode.java index 33e9938f6..db4a68864 100644 --- a/src/main/java/com/plaid/client/model/EntityWatchlistCode.java +++ b/src/main/java/com/plaid/client/model/EntityWatchlistCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/EntityWatchlistProgram.java b/src/main/java/com/plaid/client/model/EntityWatchlistProgram.java index 08cf31117..7de51fb5a 100644 --- a/src/main/java/com/plaid/client/model/EntityWatchlistProgram.java +++ b/src/main/java/com/plaid/client/model/EntityWatchlistProgram.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * A program that configures the active lists, search parameters, and other behavior for initial and ongoing screening of entities. */ @ApiModel(description = "A program that configures the active lists, search parameters, and other behavior for initial and ongoing screening of entities.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityWatchlistProgram { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/EntityWatchlistScreening.java b/src/main/java/com/plaid/client/model/EntityWatchlistScreening.java index 3751df25e..022b9b248 100644 --- a/src/main/java/com/plaid/client/model/EntityWatchlistScreening.java +++ b/src/main/java/com/plaid/client/model/EntityWatchlistScreening.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The entity screening object allows you to represent an entity in your system, update its profile, and search for it on various watchlists. Note: Rejected entity screenings will not receive new hits, regardless of entity program configuration. */ @ApiModel(description = "The entity screening object allows you to represent an entity in your system, update its profile, and search for it on various watchlists. Note: Rejected entity screenings will not receive new hits, regardless of entity program configuration.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityWatchlistScreening { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/EntityWatchlistScreeningHit.java b/src/main/java/com/plaid/client/model/EntityWatchlistScreeningHit.java index f4599549e..581d25d58 100644 --- a/src/main/java/com/plaid/client/model/EntityWatchlistScreeningHit.java +++ b/src/main/java/com/plaid/client/model/EntityWatchlistScreeningHit.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Data from a government watchlist that has been attached to the screening. */ @ApiModel(description = "Data from a government watchlist that has been attached to the screening.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityWatchlistScreeningHit { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/EntityWatchlistScreeningReview.java b/src/main/java/com/plaid/client/model/EntityWatchlistScreeningReview.java index 3b47998d2..5b73410d5 100644 --- a/src/main/java/com/plaid/client/model/EntityWatchlistScreeningReview.java +++ b/src/main/java/com/plaid/client/model/EntityWatchlistScreeningReview.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A review submitted by a team member for an entity watchlist screening. A review can be either a comment on the current screening state, actions taken against hits attached to the watchlist screening, or both. */ @ApiModel(description = "A review submitted by a team member for an entity watchlist screening. A review can be either a comment on the current screening state, actions taken against hits attached to the watchlist screening, or both.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityWatchlistScreeningReview { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/EntityWatchlistScreeningSearchTerms.java b/src/main/java/com/plaid/client/model/EntityWatchlistScreeningSearchTerms.java index 815b30f7f..3b4dda413 100644 --- a/src/main/java/com/plaid/client/model/EntityWatchlistScreeningSearchTerms.java +++ b/src/main/java/com/plaid/client/model/EntityWatchlistScreeningSearchTerms.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Search terms associated with an entity used for searching against watchlists */ @ApiModel(description = "Search terms associated with an entity used for searching against watchlists") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityWatchlistScreeningSearchTerms { public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_PROGRAM_ID = "entity_watchlist_program_id"; @SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_PROGRAM_ID) diff --git a/src/main/java/com/plaid/client/model/EntityWatchlistSearchTerms.java b/src/main/java/com/plaid/client/model/EntityWatchlistSearchTerms.java index 748d85225..c060a84ed 100644 --- a/src/main/java/com/plaid/client/model/EntityWatchlistSearchTerms.java +++ b/src/main/java/com/plaid/client/model/EntityWatchlistSearchTerms.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Search inputs for creating an entity watchlist screening */ @ApiModel(description = "Search inputs for creating an entity watchlist screening") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EntityWatchlistSearchTerms { public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_PROGRAM_ID = "entity_watchlist_program_id"; @SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_PROGRAM_ID) diff --git a/src/main/java/com/plaid/client/model/EwaScore.java b/src/main/java/com/plaid/client/model/EwaScore.java index c6409e984..08ac3c112 100644 --- a/src/main/java/com/plaid/client/model/EwaScore.java +++ b/src/main/java/com/plaid/client/model/EwaScore.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * EwaScore represents an earned wage access score for a specific advance amount range. */ @ApiModel(description = "EwaScore represents an earned wage access score for a specific advance amount range.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class EwaScore { public static final String SERIALIZED_NAME_LOWEST_AMOUNT = "lowest_amount"; @SerializedName(SERIALIZED_NAME_LOWEST_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/ExpenditureInsights.java b/src/main/java/com/plaid/client/model/ExpenditureInsights.java index 69eba40e8..b3f6ec56a 100644 --- a/src/main/java/com/plaid/client/model/ExpenditureInsights.java +++ b/src/main/java/com/plaid/client/model/ExpenditureInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Comprehensive analysis of spending patterns, categorizing expenses into essential, non-essential, and other categories. */ @ApiModel(description = "Comprehensive analysis of spending patterns, categorizing expenses into essential, non-essential, and other categories.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ExpenditureInsights { public static final String SERIALIZED_NAME_CASH_FLOW = "cash_flow"; @SerializedName(SERIALIZED_NAME_CASH_FLOW) diff --git a/src/main/java/com/plaid/client/model/ExpenditureSummary.java b/src/main/java/com/plaid/client/model/ExpenditureSummary.java index 225087fae..8d64b7516 100644 --- a/src/main/java/com/plaid/client/model/ExpenditureSummary.java +++ b/src/main/java/com/plaid/client/model/ExpenditureSummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Summary statistics for a specific expenditure category, including total amount, monthly average, and percentage of income. */ @ApiModel(description = "Summary statistics for a specific expenditure category, including total amount, monthly average, and percentage of income.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ExpenditureSummary { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/ExpirationDate.java b/src/main/java/com/plaid/client/model/ExpirationDate.java index 81da30812..e2d096fbc 100644 --- a/src/main/java/com/plaid/client/model/ExpirationDate.java +++ b/src/main/java/com/plaid/client/model/ExpirationDate.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ExtendedRecipientMetadata.java b/src/main/java/com/plaid/client/model/ExtendedRecipientMetadata.java index 47bd6479b..dd2844023 100644 --- a/src/main/java/com/plaid/client/model/ExtendedRecipientMetadata.java +++ b/src/main/java/com/plaid/client/model/ExtendedRecipientMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ExtendedRecipientMetadata { public static final String SERIALIZED_NAME_RECIPIENT_ID = "recipient_id"; @SerializedName(SERIALIZED_NAME_RECIPIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ExtendedRecipientMetadataAllOf.java b/src/main/java/com/plaid/client/model/ExtendedRecipientMetadataAllOf.java index a4516ea6f..37cb3723e 100644 --- a/src/main/java/com/plaid/client/model/ExtendedRecipientMetadataAllOf.java +++ b/src/main/java/com/plaid/client/model/ExtendedRecipientMetadataAllOf.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ /** * ExtendedRecipientMetadataAllOf */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ExtendedRecipientMetadataAllOf { public static final String SERIALIZED_NAME_CATEGORY = "category"; @SerializedName(SERIALIZED_NAME_CATEGORY) diff --git a/src/main/java/com/plaid/client/model/ExternalPaymentInitiationConsentOptions.java b/src/main/java/com/plaid/client/model/ExternalPaymentInitiationConsentOptions.java index 4d1428aa2..9859dd39a 100644 --- a/src/main/java/com/plaid/client/model/ExternalPaymentInitiationConsentOptions.java +++ b/src/main/java/com/plaid/client/model/ExternalPaymentInitiationConsentOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * (Deprecated) Additional payment consent options. Please use `payer_details` to specify the account. */ @ApiModel(description = "(Deprecated) Additional payment consent options. Please use `payer_details` to specify the account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ExternalPaymentInitiationConsentOptions { public static final String SERIALIZED_NAME_REQUEST_REFUND_DETAILS = "request_refund_details"; @SerializedName(SERIALIZED_NAME_REQUEST_REFUND_DETAILS) diff --git a/src/main/java/com/plaid/client/model/ExternalPaymentOptions.java b/src/main/java/com/plaid/client/model/ExternalPaymentOptions.java index a07e09e43..9d803a5a7 100644 --- a/src/main/java/com/plaid/client/model/ExternalPaymentOptions.java +++ b/src/main/java/com/plaid/client/model/ExternalPaymentOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Additional payment options */ @ApiModel(description = "Additional payment options") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ExternalPaymentOptions { public static final String SERIALIZED_NAME_REQUEST_REFUND_DETAILS = "request_refund_details"; @SerializedName(SERIALIZED_NAME_REQUEST_REFUND_DETAILS) diff --git a/src/main/java/com/plaid/client/model/ExternalPaymentRefundDetails.java b/src/main/java/com/plaid/client/model/ExternalPaymentRefundDetails.java index 41b88f5df..2eaed871f 100644 --- a/src/main/java/com/plaid/client/model/ExternalPaymentRefundDetails.java +++ b/src/main/java/com/plaid/client/model/ExternalPaymentRefundDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Details about external payment refund */ @ApiModel(description = "Details about external payment refund") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ExternalPaymentRefundDetails { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/ExternalPaymentScheduleBase.java b/src/main/java/com/plaid/client/model/ExternalPaymentScheduleBase.java index 507287c02..0bc5cd745 100644 --- a/src/main/java/com/plaid/client/model/ExternalPaymentScheduleBase.java +++ b/src/main/java/com/plaid/client/model/ExternalPaymentScheduleBase.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The schedule that the payment will be executed on. If a schedule is provided, the payment is automatically set up as a standing order. If no schedule is specified, the payment will be executed only once. */ @ApiModel(description = "The schedule that the payment will be executed on. If a schedule is provided, the payment is automatically set up as a standing order. If no schedule is specified, the payment will be executed only once.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ExternalPaymentScheduleBase { public static final String SERIALIZED_NAME_INTERVAL = "interval"; @SerializedName(SERIALIZED_NAME_INTERVAL) diff --git a/src/main/java/com/plaid/client/model/ExternalPaymentScheduleGet.java b/src/main/java/com/plaid/client/model/ExternalPaymentScheduleGet.java index d68f47d4f..58e4ca175 100644 --- a/src/main/java/com/plaid/client/model/ExternalPaymentScheduleGet.java +++ b/src/main/java/com/plaid/client/model/ExternalPaymentScheduleGet.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The schedule that the payment will be executed on. If a schedule is provided, the payment is automatically set up as a standing order. If no schedule is specified, the payment will be executed only once. */ @ApiModel(description = "The schedule that the payment will be executed on. If a schedule is provided, the payment is automatically set up as a standing order. If no schedule is specified, the payment will be executed only once.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ExternalPaymentScheduleGet { public static final String SERIALIZED_NAME_INTERVAL = "interval"; @SerializedName(SERIALIZED_NAME_INTERVAL) diff --git a/src/main/java/com/plaid/client/model/ExternalPaymentScheduleRequest.java b/src/main/java/com/plaid/client/model/ExternalPaymentScheduleRequest.java index 04b0e9569..5edbc7734 100644 --- a/src/main/java/com/plaid/client/model/ExternalPaymentScheduleRequest.java +++ b/src/main/java/com/plaid/client/model/ExternalPaymentScheduleRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The schedule that the payment will be executed on. If a schedule is provided, the payment is automatically set up as a standing order. If no schedule is specified, the payment will be executed only once. */ @ApiModel(description = "The schedule that the payment will be executed on. If a schedule is provided, the payment is automatically set up as a standing order. If no schedule is specified, the payment will be executed only once.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ExternalPaymentScheduleRequest { public static final String SERIALIZED_NAME_INTERVAL = "interval"; @SerializedName(SERIALIZED_NAME_INTERVAL) diff --git a/src/main/java/com/plaid/client/model/FDXContentTypes.java b/src/main/java/com/plaid/client/model/FDXContentTypes.java index fdadbcdc5..426cb6a66 100644 --- a/src/main/java/com/plaid/client/model/FDXContentTypes.java +++ b/src/main/java/com/plaid/client/model/FDXContentTypes.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/FDXEventStatus.java b/src/main/java/com/plaid/client/model/FDXEventStatus.java index 8e8bff93a..fffeb45fd 100644 --- a/src/main/java/com/plaid/client/model/FDXEventStatus.java +++ b/src/main/java/com/plaid/client/model/FDXEventStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/FDXFiAttribute.java b/src/main/java/com/plaid/client/model/FDXFiAttribute.java index c9e6a1cb1..6f442a685 100644 --- a/src/main/java/com/plaid/client/model/FDXFiAttribute.java +++ b/src/main/java/com/plaid/client/model/FDXFiAttribute.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Financial Institution provider-specific attribute */ @ApiModel(description = "Financial Institution provider-specific attribute") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class FDXFiAttribute { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/FDXHateoasLink.java b/src/main/java/com/plaid/client/model/FDXHateoasLink.java index c5ba7d42f..14067d40c 100644 --- a/src/main/java/com/plaid/client/model/FDXHateoasLink.java +++ b/src/main/java/com/plaid/client/model/FDXHateoasLink.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * REST application constraint (Hypermedia As The Engine Of Application State) */ @ApiModel(description = "REST application constraint (Hypermedia As The Engine Of Application State)") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class FDXHateoasLink { public static final String SERIALIZED_NAME_HREF = "href"; @SerializedName(SERIALIZED_NAME_HREF) diff --git a/src/main/java/com/plaid/client/model/FDXHateoasLinkAction.java b/src/main/java/com/plaid/client/model/FDXHateoasLinkAction.java index c51b69c59..8924839b3 100644 --- a/src/main/java/com/plaid/client/model/FDXHateoasLinkAction.java +++ b/src/main/java/com/plaid/client/model/FDXHateoasLinkAction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/FDXInitiatorFiAttribute.java b/src/main/java/com/plaid/client/model/FDXInitiatorFiAttribute.java index 7c880bc7b..a4a48e9ea 100644 --- a/src/main/java/com/plaid/client/model/FDXInitiatorFiAttribute.java +++ b/src/main/java/com/plaid/client/model/FDXInitiatorFiAttribute.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Initiator Fi Attribute */ @ApiModel(description = "Initiator Fi Attribute") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class FDXInitiatorFiAttribute { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/FDXLifecycleEvent.java b/src/main/java/com/plaid/client/model/FDXLifecycleEvent.java index caa501431..a544ebaa9 100644 --- a/src/main/java/com/plaid/client/model/FDXLifecycleEvent.java +++ b/src/main/java/com/plaid/client/model/FDXLifecycleEvent.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Details of consent or payment network identifier or other entity's revocation request or other lifecycle status change event */ @ApiModel(description = "Details of consent or payment network identifier or other entity's revocation request or other lifecycle status change event") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class FDXLifecycleEvent { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/FDXNotification.java b/src/main/java/com/plaid/client/model/FDXNotification.java index fc7998a10..6d90ad4d2 100644 --- a/src/main/java/com/plaid/client/model/FDXNotification.java +++ b/src/main/java/com/plaid/client/model/FDXNotification.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -36,7 +36,7 @@ * Provides the base fields of a notification. Clients will read the `type` property to determine the expected notification payload */ @ApiModel(description = "Provides the base fields of a notification. Clients will read the `type` property to determine the expected notification payload") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class FDXNotification { public static final String SERIALIZED_NAME_NOTIFICATION_ID = "notificationId"; @SerializedName(SERIALIZED_NAME_NOTIFICATION_ID) diff --git a/src/main/java/com/plaid/client/model/FDXNotificationCategory.java b/src/main/java/com/plaid/client/model/FDXNotificationCategory.java index 70c05cc02..aea7e7be6 100644 --- a/src/main/java/com/plaid/client/model/FDXNotificationCategory.java +++ b/src/main/java/com/plaid/client/model/FDXNotificationCategory.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/FDXNotificationPayload.java b/src/main/java/com/plaid/client/model/FDXNotificationPayload.java index bf7da4b7d..d66cb49f8 100644 --- a/src/main/java/com/plaid/client/model/FDXNotificationPayload.java +++ b/src/main/java/com/plaid/client/model/FDXNotificationPayload.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Custom key-value pairs payload for a notification */ @ApiModel(description = "Custom key-value pairs payload for a notification") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class FDXNotificationPayload { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/FDXNotificationPayloadIdType.java b/src/main/java/com/plaid/client/model/FDXNotificationPayloadIdType.java index 66049418d..f86061869 100644 --- a/src/main/java/com/plaid/client/model/FDXNotificationPayloadIdType.java +++ b/src/main/java/com/plaid/client/model/FDXNotificationPayloadIdType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/FDXNotificationPriority.java b/src/main/java/com/plaid/client/model/FDXNotificationPriority.java index 5b16bd50c..2eb5b050e 100644 --- a/src/main/java/com/plaid/client/model/FDXNotificationPriority.java +++ b/src/main/java/com/plaid/client/model/FDXNotificationPriority.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/FDXNotificationSeverity.java b/src/main/java/com/plaid/client/model/FDXNotificationSeverity.java index acc0a4fa6..fe73ee587 100644 --- a/src/main/java/com/plaid/client/model/FDXNotificationSeverity.java +++ b/src/main/java/com/plaid/client/model/FDXNotificationSeverity.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/FDXNotificationType.java b/src/main/java/com/plaid/client/model/FDXNotificationType.java index 716862cfe..e59ab4930 100644 --- a/src/main/java/com/plaid/client/model/FDXNotificationType.java +++ b/src/main/java/com/plaid/client/model/FDXNotificationType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/FDXParty.java b/src/main/java/com/plaid/client/model/FDXParty.java index 417d7acd5..49dd157d3 100644 --- a/src/main/java/com/plaid/client/model/FDXParty.java +++ b/src/main/java/com/plaid/client/model/FDXParty.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * FDX Participant - an entity or person that is a part of a FDX API transaction */ @ApiModel(description = "FDX Participant - an entity or person that is a part of a FDX API transaction") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class FDXParty { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/FDXPartyRegistry.java b/src/main/java/com/plaid/client/model/FDXPartyRegistry.java index f2a831b0b..16cfefc9a 100644 --- a/src/main/java/com/plaid/client/model/FDXPartyRegistry.java +++ b/src/main/java/com/plaid/client/model/FDXPartyRegistry.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/FDXPartyType.java b/src/main/java/com/plaid/client/model/FDXPartyType.java index 9c3e906de..2be6c2d46 100644 --- a/src/main/java/com/plaid/client/model/FDXPartyType.java +++ b/src/main/java/com/plaid/client/model/FDXPartyType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/FDXRecipientMetadata.java b/src/main/java/com/plaid/client/model/FDXRecipientMetadata.java index 5dd5d8897..5dbc749ba 100644 --- a/src/main/java/com/plaid/client/model/FDXRecipientMetadata.java +++ b/src/main/java/com/plaid/client/model/FDXRecipientMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Recipient metadata fields that are defined by FDX */ @ApiModel(description = "Recipient metadata fields that are defined by FDX") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class FDXRecipientMetadata { public static final String SERIALIZED_NAME_RECIPIENT_ID = "recipient_id"; @SerializedName(SERIALIZED_NAME_RECIPIENT_ID) diff --git a/src/main/java/com/plaid/client/model/FDXUpdateReason.java b/src/main/java/com/plaid/client/model/FDXUpdateReason.java index 99339fae6..d20ff7ab2 100644 --- a/src/main/java/com/plaid/client/model/FDXUpdateReason.java +++ b/src/main/java/com/plaid/client/model/FDXUpdateReason.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/FallbackAuthMicrodepositAutoVerifiedWebhook.java b/src/main/java/com/plaid/client/model/FallbackAuthMicrodepositAutoVerifiedWebhook.java index c59051872..7a0d166b1 100644 --- a/src/main/java/com/plaid/client/model/FallbackAuthMicrodepositAutoVerifiedWebhook.java +++ b/src/main/java/com/plaid/client/model/FallbackAuthMicrodepositAutoVerifiedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fires when an account is automatically verified using micro-deposits */ @ApiModel(description = "Fires when an account is automatically verified using micro-deposits") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class FallbackAuthMicrodepositAutoVerifiedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/FallbackAuthMicrodepositVerificationExpiredWebhook.java b/src/main/java/com/plaid/client/model/FallbackAuthMicrodepositVerificationExpiredWebhook.java index c99cb55fb..6af830ac5 100644 --- a/src/main/java/com/plaid/client/model/FallbackAuthMicrodepositVerificationExpiredWebhook.java +++ b/src/main/java/com/plaid/client/model/FallbackAuthMicrodepositVerificationExpiredWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fires when an account has an expired verification when using micro-deposits */ @ApiModel(description = "Fires when an account has an expired verification when using micro-deposits") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class FallbackAuthMicrodepositVerificationExpiredWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/FinancialInstitutionInsights.java b/src/main/java/com/plaid/client/model/FinancialInstitutionInsights.java index 5cd3e1b4c..78577cbd4 100644 --- a/src/main/java/com/plaid/client/model/FinancialInstitutionInsights.java +++ b/src/main/java/com/plaid/client/model/FinancialInstitutionInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Insights surrounding external financial institution counterparties associated with a user. */ @ApiModel(description = "Insights surrounding external financial institution counterparties associated with a user.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class FinancialInstitutionInsights { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/FixedIncome.java b/src/main/java/com/plaid/client/model/FixedIncome.java index f2ebc19ec..80c9f1b56 100644 --- a/src/main/java/com/plaid/client/model/FixedIncome.java +++ b/src/main/java/com/plaid/client/model/FixedIncome.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Details about the fixed income security. */ @ApiModel(description = "Details about the fixed income security.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class FixedIncome { public static final String SERIALIZED_NAME_YIELD_RATE = "yield_rate"; @SerializedName(SERIALIZED_NAME_YIELD_RATE) diff --git a/src/main/java/com/plaid/client/model/ForecastedMonthlyIncome.java b/src/main/java/com/plaid/client/model/ForecastedMonthlyIncome.java index da878a14c..56cd1a9f6 100644 --- a/src/main/java/com/plaid/client/model/ForecastedMonthlyIncome.java +++ b/src/main/java/com/plaid/client/model/ForecastedMonthlyIncome.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object representing the predicted average monthly net income amount. This amount reflects the funds deposited into the account and may not include any withheld income such as taxes or other payroll deductions */ @ApiModel(description = "An object representing the predicted average monthly net income amount. This amount reflects the funds deposited into the account and may not include any withheld income such as taxes or other payroll deductions") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ForecastedMonthlyIncome { public static final String SERIALIZED_NAME_BASELINE_AMOUNT = "baseline_amount"; @SerializedName(SERIALIZED_NAME_BASELINE_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/Form1099Type.java b/src/main/java/com/plaid/client/model/Form1099Type.java index c7c7a7fe9..c3c374682 100644 --- a/src/main/java/com/plaid/client/model/Form1099Type.java +++ b/src/main/java/com/plaid/client/model/Form1099Type.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ForwardedJSONResponse.java b/src/main/java/com/plaid/client/model/ForwardedJSONResponse.java index 0b8ee71cd..834a744a9 100644 --- a/src/main/java/com/plaid/client/model/ForwardedJSONResponse.java +++ b/src/main/java/com/plaid/client/model/ForwardedJSONResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An arbitrary JSON payload sent to or received from the Plaid server. Internal use only. */ @ApiModel(description = "An arbitrary JSON payload sent to or received from the Plaid server. Internal use only.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ForwardedJSONResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/FraudAmount.java b/src/main/java/com/plaid/client/model/FraudAmount.java index 65fc3c1be..8165809ac 100644 --- a/src/main/java/com/plaid/client/model/FraudAmount.java +++ b/src/main/java/com/plaid/client/model/FraudAmount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The amount and currency of the fraud or attempted fraud. `fraud_amount` should be omitted to indicate an unknown fraud amount. */ @ApiModel(description = "The amount and currency of the fraud or attempted fraud. `fraud_amount` should be omitted to indicate an unknown fraud amount.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class FraudAmount { public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code"; @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE) diff --git a/src/main/java/com/plaid/client/model/FraudAnalysisDetails.java b/src/main/java/com/plaid/client/model/FraudAnalysisDetails.java index c1666b38a..2f9ce05d5 100644 --- a/src/main/java/com/plaid/client/model/FraudAnalysisDetails.java +++ b/src/main/java/com/plaid/client/model/FraudAnalysisDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Details about the fraud analysis performed on the document. */ @ApiModel(description = "Details about the fraud analysis performed on the document.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class FraudAnalysisDetails { public static final String SERIALIZED_NAME_TYPE_SUPPORTED = "type_supported"; @SerializedName(SERIALIZED_NAME_TYPE_SUPPORTED) diff --git a/src/main/java/com/plaid/client/model/FraudCheckOutcome.java b/src/main/java/com/plaid/client/model/FraudCheckOutcome.java index 6c0516b1a..a3bbb536e 100644 --- a/src/main/java/com/plaid/client/model/FraudCheckOutcome.java +++ b/src/main/java/com/plaid/client/model/FraudCheckOutcome.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/FraudCheckOutcomeWithNoData.java b/src/main/java/com/plaid/client/model/FraudCheckOutcomeWithNoData.java index b744629b0..9d5b02825 100644 --- a/src/main/java/com/plaid/client/model/FraudCheckOutcomeWithNoData.java +++ b/src/main/java/com/plaid/client/model/FraudCheckOutcomeWithNoData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/GSEReportType.java b/src/main/java/com/plaid/client/model/GSEReportType.java index 8c10562b3..0afd8cea4 100644 --- a/src/main/java/com/plaid/client/model/GSEReportType.java +++ b/src/main/java/com/plaid/client/model/GSEReportType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/GamblingIndicators.java b/src/main/java/com/plaid/client/model/GamblingIndicators.java index 671e4ead5..5f6087784 100644 --- a/src/main/java/com/plaid/client/model/GamblingIndicators.java +++ b/src/main/java/com/plaid/client/model/GamblingIndicators.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Insights into gambling-related transactions, including frequency, amounts, and top merchants. */ @ApiModel(description = "Insights into gambling-related transactions, including frequency, amounts, and top merchants.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class GamblingIndicators { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/GenericScreeningHitLocationItems.java b/src/main/java/com/plaid/client/model/GenericScreeningHitLocationItems.java index fe6016275..79883ecbe 100644 --- a/src/main/java/com/plaid/client/model/GenericScreeningHitLocationItems.java +++ b/src/main/java/com/plaid/client/model/GenericScreeningHitLocationItems.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Analyzed location information for the associated hit */ @ApiModel(description = "Analyzed location information for the associated hit") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class GenericScreeningHitLocationItems { public static final String SERIALIZED_NAME_ANALYSIS = "analysis"; @SerializedName(SERIALIZED_NAME_ANALYSIS) diff --git a/src/main/java/com/plaid/client/model/GetRecipientResponse.java b/src/main/java/com/plaid/client/model/GetRecipientResponse.java index 8f8706405..d75c263a9 100644 --- a/src/main/java/com/plaid/client/model/GetRecipientResponse.java +++ b/src/main/java/com/plaid/client/model/GetRecipientResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * GetRecipientResponse defines the response schema for `/fdx/recipient/{recipientId}` */ @ApiModel(description = "GetRecipientResponse defines the response schema for `/fdx/recipient/{recipientId}`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class GetRecipientResponse { public static final String SERIALIZED_NAME_RECIPIENT_ID = "recipient_id"; @SerializedName(SERIALIZED_NAME_RECIPIENT_ID) diff --git a/src/main/java/com/plaid/client/model/GetRecipientsResponse.java b/src/main/java/com/plaid/client/model/GetRecipientsResponse.java index ead216f5c..210761e94 100644 --- a/src/main/java/com/plaid/client/model/GetRecipientsResponse.java +++ b/src/main/java/com/plaid/client/model/GetRecipientsResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * GetRecipientsResponse defines the response schema for `/fdx/recipients` */ @ApiModel(description = "GetRecipientsResponse defines the response schema for `/fdx/recipients`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class GetRecipientsResponse { public static final String SERIALIZED_NAME_RECIPIENTS = "recipients"; @SerializedName(SERIALIZED_NAME_RECIPIENTS) diff --git a/src/main/java/com/plaid/client/model/HealthIncident.java b/src/main/java/com/plaid/client/model/HealthIncident.java index 4d0b1c02a..d6c67f88a 100644 --- a/src/main/java/com/plaid/client/model/HealthIncident.java +++ b/src/main/java/com/plaid/client/model/HealthIncident.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * A status health incident */ @ApiModel(description = "A status health incident") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class HealthIncident { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) diff --git a/src/main/java/com/plaid/client/model/HiddenMatchSummaryCode.java b/src/main/java/com/plaid/client/model/HiddenMatchSummaryCode.java index e20585442..c15910a54 100644 --- a/src/main/java/com/plaid/client/model/HiddenMatchSummaryCode.java +++ b/src/main/java/com/plaid/client/model/HiddenMatchSummaryCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/HistoricalAnnualIncome.java b/src/main/java/com/plaid/client/model/HistoricalAnnualIncome.java index e2692bb22..2706acb1f 100644 --- a/src/main/java/com/plaid/client/model/HistoricalAnnualIncome.java +++ b/src/main/java/com/plaid/client/model/HistoricalAnnualIncome.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object representing the historical annual income amount. */ @ApiModel(description = "An object representing the historical annual income amount.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class HistoricalAnnualIncome { public static final String SERIALIZED_NAME_BASELINE_AMOUNT = "baseline_amount"; @SerializedName(SERIALIZED_NAME_BASELINE_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/HistoricalBalance.java b/src/main/java/com/plaid/client/model/HistoricalBalance.java index c73d6a77f..f34aa0b24 100644 --- a/src/main/java/com/plaid/client/model/HistoricalBalance.java +++ b/src/main/java/com/plaid/client/model/HistoricalBalance.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object representing a balance held by an account in the past */ @ApiModel(description = "An object representing a balance held by an account in the past") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class HistoricalBalance { public static final String SERIALIZED_NAME_DATE = "date"; @SerializedName(SERIALIZED_NAME_DATE) diff --git a/src/main/java/com/plaid/client/model/HistoricalUpdateWebhook.java b/src/main/java/com/plaid/client/model/HistoricalUpdateWebhook.java index 7ef1401de..b97beb063 100644 --- a/src/main/java/com/plaid/client/model/HistoricalUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/HistoricalUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Fired when an Item's historical transaction pull is completed and Plaid has prepared as much historical transaction data as possible for the Item. Once this webhook has been fired, transaction data beyond the most recent 30 days can be fetched for the Item. This webhook will also be fired if account selections for the Item are updated, with `new_transactions` set to the number of net new transactions pulled after the account selection update. This webhook is intended for use with `/transactions/get`; if you are using the newer `/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead. */ @ApiModel(description = "Fired when an Item's historical transaction pull is completed and Plaid has prepared as much historical transaction data as possible for the Item. Once this webhook has been fired, transaction data beyond the most recent 30 days can be fetched for the Item. This webhook will also be fired if account selections for the Item are updated, with `new_transactions` set to the number of net new transactions pulled after the account selection update. This webhook is intended for use with `/transactions/get`; if you are using the newer `/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class HistoricalUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/Holding.java b/src/main/java/com/plaid/client/model/Holding.java index 30be2d89a..be63f19cd 100644 --- a/src/main/java/com/plaid/client/model/Holding.java +++ b/src/main/java/com/plaid/client/model/Holding.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * A securities holding at an institution. */ @ApiModel(description = "A securities holding at an institution.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Holding { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/HoldingsDefaultUpdateWebhook.java b/src/main/java/com/plaid/client/model/HoldingsDefaultUpdateWebhook.java index 2fea19028..dbb3dbdfc 100644 --- a/src/main/java/com/plaid/client/model/HoldingsDefaultUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/HoldingsDefaultUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Fired when new or updated holdings have been detected on an investment account. The webhook typically fires in response to any newly added holdings or price changes to existing holdings, most commonly after market close. */ @ApiModel(description = "Fired when new or updated holdings have been detected on an investment account. The webhook typically fires in response to any newly added holdings or price changes to existing holdings, most commonly after market close.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class HoldingsDefaultUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/HoldingsOverride.java b/src/main/java/com/plaid/client/model/HoldingsOverride.java index aa90dbdce..107f45133 100644 --- a/src/main/java/com/plaid/client/model/HoldingsOverride.java +++ b/src/main/java/com/plaid/client/model/HoldingsOverride.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Specify the holdings on the account. */ @ApiModel(description = "Specify the holdings on the account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class HoldingsOverride { public static final String SERIALIZED_NAME_INSTITUTION_PRICE = "institution_price"; @SerializedName(SERIALIZED_NAME_INSTITUTION_PRICE) diff --git a/src/main/java/com/plaid/client/model/HostedLinkDeliveryMethod.java b/src/main/java/com/plaid/client/model/HostedLinkDeliveryMethod.java index b82f1532f..defd711ae 100644 --- a/src/main/java/com/plaid/client/model/HostedLinkDeliveryMethod.java +++ b/src/main/java/com/plaid/client/model/HostedLinkDeliveryMethod.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/HostedMMDVerificationWebhook.java b/src/main/java/com/plaid/client/model/HostedMMDVerificationWebhook.java index 8892c664b..93571404d 100644 --- a/src/main/java/com/plaid/client/model/HostedMMDVerificationWebhook.java +++ b/src/main/java/com/plaid/client/model/HostedMMDVerificationWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Contains the state of a SMS same-day microdeposits verification session. */ @ApiModel(description = "Contains the state of a SMS same-day microdeposits verification session.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class HostedMMDVerificationWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/HumanReview.java b/src/main/java/com/plaid/client/model/HumanReview.java index 8fee4c336..9c7b8ee47 100644 --- a/src/main/java/com/plaid/client/model/HumanReview.java +++ b/src/main/java/com/plaid/client/model/HumanReview.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Details about the human review check, which refers to a check that is performed by a document specialist. */ @ApiModel(description = "Details about the human review check, which refers to a check that is performed by a document specialist.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class HumanReview { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/HumanReviewStatus.java b/src/main/java/com/plaid/client/model/HumanReviewStatus.java index d064dd462..251ed578c 100644 --- a/src/main/java/com/plaid/client/model/HumanReviewStatus.java +++ b/src/main/java/com/plaid/client/model/HumanReviewStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/IDNumberType.java b/src/main/java/com/plaid/client/model/IDNumberType.java index 6d13dcabd..16d0e110e 100644 --- a/src/main/java/com/plaid/client/model/IDNumberType.java +++ b/src/main/java/com/plaid/client/model/IDNumberType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/IDVProtectEvent.java b/src/main/java/com/plaid/client/model/IDVProtectEvent.java index 56ad65530..b8fc8b0cd 100644 --- a/src/main/java/com/plaid/client/model/IDVProtectEvent.java +++ b/src/main/java/com/plaid/client/model/IDVProtectEvent.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Information about a Protect event including Trust Index score and fraud attributes. */ @ApiModel(description = "Information about a Protect event including Trust Index score and fraud attributes.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IDVProtectEvent { public static final String SERIALIZED_NAME_EVENT_ID = "event_id"; @SerializedName(SERIALIZED_NAME_EVENT_ID) diff --git a/src/main/java/com/plaid/client/model/ISOCurrencyCode.java b/src/main/java/com/plaid/client/model/ISOCurrencyCode.java index 496d7b17a..a1935777b 100644 --- a/src/main/java/com/plaid/client/model/ISOCurrencyCode.java +++ b/src/main/java/com/plaid/client/model/ISOCurrencyCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/IdentityDefaultUpdateWebhook.java b/src/main/java/com/plaid/client/model/IdentityDefaultUpdateWebhook.java index 07a90ffea..14ff936b0 100644 --- a/src/main/java/com/plaid/client/model/IdentityDefaultUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/IdentityDefaultUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * Fired when a change to identity data has been detected on an Item. Items are checked for identity updates every 30-90 days. We recommend that upon receiving this webhook you make another call to `/identity/get` to fetch the user's latest identity data. */ @ApiModel(description = "Fired when a change to identity data has been detected on an Item. Items are checked for identity updates every 30-90 days. We recommend that upon receiving this webhook you make another call to `/identity/get` to fetch the user's latest identity data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityDefaultUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/IdentityDocumentMetadata.java b/src/main/java/com/plaid/client/model/IdentityDocumentMetadata.java index b3cfe567f..d94b7848e 100644 --- a/src/main/java/com/plaid/client/model/IdentityDocumentMetadata.java +++ b/src/main/java/com/plaid/client/model/IdentityDocumentMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * In closed beta. Object representing metadata pertaining to the document. */ @ApiModel(description = "In closed beta. Object representing metadata pertaining to the document.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityDocumentMetadata { public static final String SERIALIZED_NAME_IS_ACCOUNT_NUMBER_MATCH = "is_account_number_match"; @SerializedName(SERIALIZED_NAME_IS_ACCOUNT_NUMBER_MATCH) diff --git a/src/main/java/com/plaid/client/model/IdentityDocumentUpload.java b/src/main/java/com/plaid/client/model/IdentityDocumentUpload.java index 15f6e68e5..dd4419b28 100644 --- a/src/main/java/com/plaid/client/model/IdentityDocumentUpload.java +++ b/src/main/java/com/plaid/client/model/IdentityDocumentUpload.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Document object with metadata of the uploaded document */ @ApiModel(description = "Document object with metadata of the uploaded document") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityDocumentUpload { public static final String SERIALIZED_NAME_DOCUMENT_ID = "document_id"; @SerializedName(SERIALIZED_NAME_DOCUMENT_ID) diff --git a/src/main/java/com/plaid/client/model/IdentityDocumentUploadMetadata.java b/src/main/java/com/plaid/client/model/IdentityDocumentUploadMetadata.java index 727b3676f..bc6cdccd7 100644 --- a/src/main/java/com/plaid/client/model/IdentityDocumentUploadMetadata.java +++ b/src/main/java/com/plaid/client/model/IdentityDocumentUploadMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Metadata pertaining to the document. */ @ApiModel(description = "Metadata pertaining to the document.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityDocumentUploadMetadata { public static final String SERIALIZED_NAME_DOCUMENT_TYPE = "document_type"; @SerializedName(SERIALIZED_NAME_DOCUMENT_TYPE) diff --git a/src/main/java/com/plaid/client/model/IdentityDocumentUploadRiskInsights.java b/src/main/java/com/plaid/client/model/IdentityDocumentUploadRiskInsights.java index 0970bc05e..b39935d98 100644 --- a/src/main/java/com/plaid/client/model/IdentityDocumentUploadRiskInsights.java +++ b/src/main/java/com/plaid/client/model/IdentityDocumentUploadRiskInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Object representing fraud risk data of the uploaded document. Only provided when using Identity Document Upload with Fraud Risk enabled. */ @ApiModel(description = "Object representing fraud risk data of the uploaded document. Only provided when using Identity Document Upload with Fraud Risk enabled.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityDocumentUploadRiskInsights { public static final String SERIALIZED_NAME_RISK_SUMMARY = "risk_summary"; @SerializedName(SERIALIZED_NAME_RISK_SUMMARY) diff --git a/src/main/java/com/plaid/client/model/IdentityDocumentUploadRiskSignal.java b/src/main/java/com/plaid/client/model/IdentityDocumentUploadRiskSignal.java index 7333c153d..a963b591d 100644 --- a/src/main/java/com/plaid/client/model/IdentityDocumentUploadRiskSignal.java +++ b/src/main/java/com/plaid/client/model/IdentityDocumentUploadRiskSignal.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Risk signals tied to the document */ @ApiModel(description = "Risk signals tied to the document") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityDocumentUploadRiskSignal { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) diff --git a/src/main/java/com/plaid/client/model/IdentityDocumentUploadRiskSummary.java b/src/main/java/com/plaid/client/model/IdentityDocumentUploadRiskSummary.java index 8a3296fb7..baffeb376 100644 --- a/src/main/java/com/plaid/client/model/IdentityDocumentUploadRiskSummary.java +++ b/src/main/java/com/plaid/client/model/IdentityDocumentUploadRiskSummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Risk summary of an uploaded document. */ @ApiModel(description = "Risk summary of an uploaded document.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityDocumentUploadRiskSummary { public static final String SERIALIZED_NAME_RISK_SCORE = "risk_score"; @SerializedName(SERIALIZED_NAME_RISK_SCORE) diff --git a/src/main/java/com/plaid/client/model/IdentityDocumentsUploadsGetRequest.java b/src/main/java/com/plaid/client/model/IdentityDocumentsUploadsGetRequest.java index eded2d76e..2d8f56469 100644 --- a/src/main/java/com/plaid/client/model/IdentityDocumentsUploadsGetRequest.java +++ b/src/main/java/com/plaid/client/model/IdentityDocumentsUploadsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * IdentityDocumentsUploadsGetRequest defines the request schema for `/identity/documents/uploads/get` */ @ApiModel(description = "IdentityDocumentsUploadsGetRequest defines the request schema for `/identity/documents/uploads/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityDocumentsUploadsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/IdentityDocumentsUploadsGetRequestOptions.java b/src/main/java/com/plaid/client/model/IdentityDocumentsUploadsGetRequestOptions.java index 426bd4ed0..4af23c4c1 100644 --- a/src/main/java/com/plaid/client/model/IdentityDocumentsUploadsGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/IdentityDocumentsUploadsGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An optional object to filter `/identity/documents/uploads/get` results. */ @ApiModel(description = "An optional object to filter `/identity/documents/uploads/get` results.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityDocumentsUploadsGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) diff --git a/src/main/java/com/plaid/client/model/IdentityDocumentsUploadsGetResponse.java b/src/main/java/com/plaid/client/model/IdentityDocumentsUploadsGetResponse.java index 5b4b99e25..483d97896 100644 --- a/src/main/java/com/plaid/client/model/IdentityDocumentsUploadsGetResponse.java +++ b/src/main/java/com/plaid/client/model/IdentityDocumentsUploadsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * IdentityDocumentsUploadsGetResponse defines the response schema for `/identity/documents/uploads/get` */ @ApiModel(description = "IdentityDocumentsUploadsGetResponse defines the response schema for `/identity/documents/uploads/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityDocumentsUploadsGetResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) diff --git a/src/main/java/com/plaid/client/model/IdentityGetRequest.java b/src/main/java/com/plaid/client/model/IdentityGetRequest.java index 298d3049f..58833a83f 100644 --- a/src/main/java/com/plaid/client/model/IdentityGetRequest.java +++ b/src/main/java/com/plaid/client/model/IdentityGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * IdentityGetRequest defines the request schema for `/identity/get` */ @ApiModel(description = "IdentityGetRequest defines the request schema for `/identity/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/IdentityGetRequestOptions.java b/src/main/java/com/plaid/client/model/IdentityGetRequestOptions.java index 6a5797808..2eb528218 100644 --- a/src/main/java/com/plaid/client/model/IdentityGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/IdentityGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An optional object to filter `/identity/get` results. */ @ApiModel(description = "An optional object to filter `/identity/get` results.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) diff --git a/src/main/java/com/plaid/client/model/IdentityGetResponse.java b/src/main/java/com/plaid/client/model/IdentityGetResponse.java index 1a4c6008f..bff20bfe5 100644 --- a/src/main/java/com/plaid/client/model/IdentityGetResponse.java +++ b/src/main/java/com/plaid/client/model/IdentityGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * IdentityGetResponse defines the response schema for `/identity/get` */ @ApiModel(description = "IdentityGetResponse defines the response schema for `/identity/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityGetResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) diff --git a/src/main/java/com/plaid/client/model/IdentityMatchRequest.java b/src/main/java/com/plaid/client/model/IdentityMatchRequest.java index 3cdfdad3c..78d6104ab 100644 --- a/src/main/java/com/plaid/client/model/IdentityMatchRequest.java +++ b/src/main/java/com/plaid/client/model/IdentityMatchRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * IdentityMatchRequest defines the request schema for `/identity/match` */ @ApiModel(description = "IdentityMatchRequest defines the request schema for `/identity/match`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityMatchRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/IdentityMatchRequestOptions.java b/src/main/java/com/plaid/client/model/IdentityMatchRequestOptions.java index 1c9b80aad..345998f95 100644 --- a/src/main/java/com/plaid/client/model/IdentityMatchRequestOptions.java +++ b/src/main/java/com/plaid/client/model/IdentityMatchRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An optional object to filter /identity/match results */ @ApiModel(description = "An optional object to filter /identity/match results") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityMatchRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) diff --git a/src/main/java/com/plaid/client/model/IdentityMatchResponse.java b/src/main/java/com/plaid/client/model/IdentityMatchResponse.java index 537d6ff14..1a005ea35 100644 --- a/src/main/java/com/plaid/client/model/IdentityMatchResponse.java +++ b/src/main/java/com/plaid/client/model/IdentityMatchResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * IdentityMatchResponse defines the response schema for `/identity/match` */ @ApiModel(description = "IdentityMatchResponse defines the response schema for `/identity/match`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityMatchResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) diff --git a/src/main/java/com/plaid/client/model/IdentityMatchUser.java b/src/main/java/com/plaid/client/model/IdentityMatchUser.java index 005687fc3..6ed6e096e 100644 --- a/src/main/java/com/plaid/client/model/IdentityMatchUser.java +++ b/src/main/java/com/plaid/client/model/IdentityMatchUser.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The user's legal name, phone number, email address and address used to perform fuzzy match. If Financial Account Matching is enabled in the Identity Verification product, leave this field empty to automatically match against PII collected from the Identity Verification checks. */ @ApiModel(description = "The user's legal name, phone number, email address and address used to perform fuzzy match. If Financial Account Matching is enabled in the Identity Verification product, leave this field empty to automatically match against PII collected from the Identity Verification checks.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityMatchUser { public static final String SERIALIZED_NAME_LEGAL_NAME = "legal_name"; @SerializedName(SERIALIZED_NAME_LEGAL_NAME) diff --git a/src/main/java/com/plaid/client/model/IdentityRefreshRequest.java b/src/main/java/com/plaid/client/model/IdentityRefreshRequest.java index 0befbdd7d..031f9d382 100644 --- a/src/main/java/com/plaid/client/model/IdentityRefreshRequest.java +++ b/src/main/java/com/plaid/client/model/IdentityRefreshRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * IdentityRefreshRequest defines the request schema for `/identity/refresh` */ @ApiModel(description = "IdentityRefreshRequest defines the request schema for `/identity/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityRefreshRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/IdentityRefreshResponse.java b/src/main/java/com/plaid/client/model/IdentityRefreshResponse.java index 4420590c6..2a8fbcbff 100644 --- a/src/main/java/com/plaid/client/model/IdentityRefreshResponse.java +++ b/src/main/java/com/plaid/client/model/IdentityRefreshResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * IdentityRefreshResponse defines the response schema for `/identity/refresh` */ @ApiModel(description = "IdentityRefreshResponse defines the response schema for `/identity/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityRefreshResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/IdentityUpdateTypes.java b/src/main/java/com/plaid/client/model/IdentityUpdateTypes.java index 3b47186d6..1da97aa0d 100644 --- a/src/main/java/com/plaid/client/model/IdentityUpdateTypes.java +++ b/src/main/java/com/plaid/client/model/IdentityUpdateTypes.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/IdentityVerification.java b/src/main/java/com/plaid/client/model/IdentityVerification.java index 551eff100..05a3f1c1a 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerification.java +++ b/src/main/java/com/plaid/client/model/IdentityVerification.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -39,7 +39,7 @@ * A identity verification attempt represents a customer's attempt to verify their identity, reflecting the required steps for completing the session, the results for each step, and information collected in the process. */ @ApiModel(description = "A identity verification attempt represents a customer's attempt to verify their identity, reflecting the required steps for completing the session, the results for each step, and information collected in the process.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerification { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationAutofillAddress.java b/src/main/java/com/plaid/client/model/IdentityVerificationAutofillAddress.java index 7317ebc21..df557eb1d 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationAutofillAddress.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationAutofillAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Even if an address has been autofilled, some fields may be null depending on the region's addressing system. For example: Addresses from the United Kingdom will not include a region Addresses from Hong Kong will not include postal code */ @ApiModel(description = "Even if an address has been autofilled, some fields may be null depending on the region's addressing system. For example: Addresses from the United Kingdom will not include a region Addresses from Hong Kong will not include postal code") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationAutofillAddress { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationAutofillCreateRequest.java b/src/main/java/com/plaid/client/model/IdentityVerificationAutofillCreateRequest.java index 2b448276d..e7b97b6d4 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationAutofillCreateRequest.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationAutofillCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input to autofill an Identity Verification */ @ApiModel(description = "Request input to autofill an Identity Verification") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationAutofillCreateRequest { public static final String SERIALIZED_NAME_IDENTITY_VERIFICATION_ID = "identity_verification_id"; @SerializedName(SERIALIZED_NAME_IDENTITY_VERIFICATION_ID) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationAutofillCreateResponse.java b/src/main/java/com/plaid/client/model/IdentityVerificationAutofillCreateResponse.java index 0a7c1eaa8..cc8628dc9 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationAutofillCreateResponse.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationAutofillCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Autofill represents unverified customer information. This needs to be confirmed by the customer before using. */ @ApiModel(description = "Autofill represents unverified customer information. This needs to be confirmed by the customer before using.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationAutofillCreateResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationAutofillStatus.java b/src/main/java/com/plaid/client/model/IdentityVerificationAutofillStatus.java index d6c0488b0..5ea4b1307 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationAutofillStatus.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationAutofillStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationAutofillUserData.java b/src/main/java/com/plaid/client/model/IdentityVerificationAutofillUserData.java index 160eedc95..43af09144 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationAutofillUserData.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationAutofillUserData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * User information that was autofilled. All this information should be confirmed by the user before using. */ @ApiModel(description = "User information that was autofilled. All this information should be confirmed by the user before using.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationAutofillUserData { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationCreateRequest.java b/src/main/java/com/plaid/client/model/IdentityVerificationCreateRequest.java index 047c950bb..0e1f4f8b7 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationCreateRequest.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Request schema for `/identity_verification/create` */ @ApiModel(description = "Request schema for `/identity_verification/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationCreateRequest { public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id"; @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationCreateRequestUser.java b/src/main/java/com/plaid/client/model/IdentityVerificationCreateRequestUser.java index af5cec710..b97dc190f 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationCreateRequestUser.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationCreateRequestUser.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * User information collected outside of Link, most likely via your own onboarding process. Each of the following identity fields are optional: `email_address` `phone_number` `date_of_birth` `name` `address` `id_number` Specifically, these fields are optional in that they can either be fully provided (satisfying every required field in their subschema) or omitted from the request entirely by not providing the key or value. Providing these fields via the API will result in Link skipping the data collection process for the associated user. All verification steps enabled in the associated Identity Verification Template will still be run. Verification steps will either be run immediately, or once the user completes the `accept_tos` step, depending on the value provided to the `gave_consent` field. If you are not using the shareable URL feature, you can optionally provide these fields via `/link/token/create` instead; both `/identity_verification/create` and `/link/token/create` are valid ways to provide this information. Note that if you provide a non-`null` user data object via `/identity_verification/create`, any user data fields entered via `/link/token/create` for the same `client_user_id` will be ignored when prefilling Link. */ @ApiModel(description = "User information collected outside of Link, most likely via your own onboarding process. Each of the following identity fields are optional: `email_address` `phone_number` `date_of_birth` `name` `address` `id_number` Specifically, these fields are optional in that they can either be fully provided (satisfying every required field in their subschema) or omitted from the request entirely by not providing the key or value. Providing these fields via the API will result in Link skipping the data collection process for the associated user. All verification steps enabled in the associated Identity Verification Template will still be run. Verification steps will either be run immediately, or once the user completes the `accept_tos` step, depending on the value provided to the `gave_consent` field. If you are not using the shareable URL feature, you can optionally provide these fields via `/link/token/create` instead; both `/identity_verification/create` and `/link/token/create` are valid ways to provide this information. Note that if you provide a non-`null` user data object via `/identity_verification/create`, any user data fields entered via `/link/token/create` for the same `client_user_id` will be ignored when prefilling Link.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationCreateRequestUser { public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationCreateResponse.java b/src/main/java/com/plaid/client/model/IdentityVerificationCreateResponse.java index d7d62ddf2..5f7661014 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationCreateResponse.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -39,7 +39,7 @@ * A identity verification attempt represents a customer's attempt to verify their identity, reflecting the required steps for completing the session, the results for each step, and information collected in the process. */ @ApiModel(description = "A identity verification attempt represents a customer's attempt to verify their identity, reflecting the required steps for completing the session, the results for each step, and information collected in the process.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationCreateResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationDocumentAddressResponse.java b/src/main/java/com/plaid/client/model/IdentityVerificationDocumentAddressResponse.java index 2be4aefc9..a0680b9b3 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationDocumentAddressResponse.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationDocumentAddressResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The address extracted from the document. The address must at least contain the following fields to be a valid address: `street`, `city`, `country`. If any are missing or unable to be extracted, the address will be null. `region`, and `postal_code` may be null based on the addressing system. For example: Addresses from the United Kingdom will not include a region Addresses from Hong Kong will not include postal code Note: Optical Character Recognition (OCR) technology may sometimes extract incorrect data from a document. */ @ApiModel(description = "The address extracted from the document. The address must at least contain the following fields to be a valid address: `street`, `city`, `country`. If any are missing or unable to be extracted, the address will be null. `region`, and `postal_code` may be null based on the addressing system. For example: Addresses from the United Kingdom will not include a region Addresses from Hong Kong will not include postal code Note: Optical Character Recognition (OCR) technology may sometimes extract incorrect data from a document.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationDocumentAddressResponse { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationDocumentNameResponse.java b/src/main/java/com/plaid/client/model/IdentityVerificationDocumentNameResponse.java index c88c7f2d5..9b808d58b 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationDocumentNameResponse.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationDocumentNameResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The individual's name extracted from the document. */ @ApiModel(description = "The individual's name extracted from the document.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationDocumentNameResponse { public static final String SERIALIZED_NAME_GIVEN_NAME = "given_name"; @SerializedName(SERIALIZED_NAME_GIVEN_NAME) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationGetRequest.java b/src/main/java/com/plaid/client/model/IdentityVerificationGetRequest.java index 397cf8b15..4cef15c84 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationGetRequest.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for fetching an Identity Verification */ @ApiModel(description = "Request input for fetching an Identity Verification") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationGetRequest { public static final String SERIALIZED_NAME_IDENTITY_VERIFICATION_ID = "identity_verification_id"; @SerializedName(SERIALIZED_NAME_IDENTITY_VERIFICATION_ID) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationGetResponse.java b/src/main/java/com/plaid/client/model/IdentityVerificationGetResponse.java index dd0f7ed48..8bb5ddf11 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationGetResponse.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -39,7 +39,7 @@ * A identity verification attempt represents a customer's attempt to verify their identity, reflecting the required steps for completing the session, the results for each step, and information collected in the process. */ @ApiModel(description = "A identity verification attempt represents a customer's attempt to verify their identity, reflecting the required steps for completing the session, the results for each step, and information collected in the process.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationGetResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationListRequest.java b/src/main/java/com/plaid/client/model/IdentityVerificationListRequest.java index d93f3e038..40ba5c298 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationListRequest.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for listing Identity Verifications */ @ApiModel(description = "Request input for listing Identity Verifications") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationListRequest { public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationListResponse.java b/src/main/java/com/plaid/client/model/IdentityVerificationListResponse.java index 592e752ba..81623235e 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationListResponse.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Paginated list of Plaid sessions. */ @ApiModel(description = "Paginated list of Plaid sessions.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationListResponse { public static final String SERIALIZED_NAME_IDENTITY_VERIFICATIONS = "identity_verifications"; @SerializedName(SERIALIZED_NAME_IDENTITY_VERIFICATIONS) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationRequestUser.java b/src/main/java/com/plaid/client/model/IdentityVerificationRequestUser.java index ce236a3e7..f611d3ad6 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationRequestUser.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationRequestUser.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * User information collected outside of Link, most likely via your own onboarding process. Each of the following identity fields are optional: `email_address` `phone_number` `date_of_birth` `name` `address` `id_number` Specifically, these fields are optional in that they can either be fully provided (satisfying every required field in their subschema) or omitted from the request entirely by not providing the key or value. Providing these fields via the API will result in Link skipping the data collection process for the associated user. All verification steps enabled in the associated Identity Verification Template will still be run. Verification steps will either be run immediately, or once the user completes the `accept_tos` step, depending on the value provided to the `gave_consent` field. */ @ApiModel(description = "User information collected outside of Link, most likely via your own onboarding process. Each of the following identity fields are optional: `email_address` `phone_number` `date_of_birth` `name` `address` `id_number` Specifically, these fields are optional in that they can either be fully provided (satisfying every required field in their subschema) or omitted from the request entirely by not providing the key or value. Providing these fields via the API will result in Link skipping the data collection process for the associated user. All verification steps enabled in the associated Identity Verification Template will still be run. Verification steps will either be run immediately, or once the user completes the `accept_tos` step, depending on the value provided to the `gave_consent` field.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationRequestUser { public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationRequestUserName.java b/src/main/java/com/plaid/client/model/IdentityVerificationRequestUserName.java index 8def04271..ae6a3e516 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationRequestUserName.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationRequestUserName.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * You can use this field to pre-populate the user's legal name; if it is provided here, they will not be prompted to enter their name in the identity verification attempt. */ @ApiModel(description = "You can use this field to pre-populate the user's legal name; if it is provided here, they will not be prompted to enter their name in the identity verification attempt.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationRequestUserName { public static final String SERIALIZED_NAME_GIVEN_NAME = "given_name"; @SerializedName(SERIALIZED_NAME_GIVEN_NAME) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationResponseUserName.java b/src/main/java/com/plaid/client/model/IdentityVerificationResponseUserName.java index ab9a97d0f..28d7a8068 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationResponseUserName.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationResponseUserName.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The full name provided by the user. If the user has not submitted their name, this field will be null. Otherwise, both fields are guaranteed to be filled. */ @ApiModel(description = "The full name provided by the user. If the user has not submitted their name, this field will be null. Otherwise, both fields are guaranteed to be filled.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationResponseUserName { public static final String SERIALIZED_NAME_GIVEN_NAME = "given_name"; @SerializedName(SERIALIZED_NAME_GIVEN_NAME) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationRetriedWebhook.java b/src/main/java/com/plaid/client/model/IdentityVerificationRetriedWebhook.java index 12e03c19c..0325e5f80 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationRetriedWebhook.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationRetriedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationRetriedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationRetryRequest.java b/src/main/java/com/plaid/client/model/IdentityVerificationRetryRequest.java index 145e4def0..8f4ca6447 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationRetryRequest.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationRetryRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Request input for retrying an identity verification attempt */ @ApiModel(description = "Request input for retrying an identity verification attempt") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationRetryRequest { public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id"; @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationRetryRequestStepsObject.java b/src/main/java/com/plaid/client/model/IdentityVerificationRetryRequestStepsObject.java index 2282b838c..00e88412c 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationRetryRequestStepsObject.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationRetryRequestStepsObject.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Instructions for the `custom` retry strategy specifying which steps should be required or skipped. Note: This field must be provided when the retry strategy is `custom` and must be omitted otherwise. Custom retries override settings in your Plaid Template. For example, if your Plaid Template has `verify_sms` disabled, a custom retry with `verify_sms` enabled will still require the step. The `selfie_check` step is currently not supported on the sandbox server. Sandbox requests will silently disable the `selfie_check` step when provided. */ @ApiModel(description = "Instructions for the `custom` retry strategy specifying which steps should be required or skipped. Note: This field must be provided when the retry strategy is `custom` and must be omitted otherwise. Custom retries override settings in your Plaid Template. For example, if your Plaid Template has `verify_sms` disabled, a custom retry with `verify_sms` enabled will still require the step. The `selfie_check` step is currently not supported on the sandbox server. Sandbox requests will silently disable the `selfie_check` step when provided.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationRetryRequestStepsObject { public static final String SERIALIZED_NAME_VERIFY_SMS = "verify_sms"; @SerializedName(SERIALIZED_NAME_VERIFY_SMS) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationRetryResponse.java b/src/main/java/com/plaid/client/model/IdentityVerificationRetryResponse.java index 9829c541f..705bc3eb5 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationRetryResponse.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationRetryResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -39,7 +39,7 @@ * A identity verification attempt represents a customer's attempt to verify their identity, reflecting the required steps for completing the session, the results for each step, and information collected in the process. */ @ApiModel(description = "A identity verification attempt represents a customer's attempt to verify their identity, reflecting the required steps for completing the session, the results for each step, and information collected in the process.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationRetryResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationStatus.java b/src/main/java/com/plaid/client/model/IdentityVerificationStatus.java index f389b161d..6a36ed767 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationStatus.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationStatusUpdatedWebhook.java b/src/main/java/com/plaid/client/model/IdentityVerificationStatusUpdatedWebhook.java index 8b7ac66cc..ff2323331 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationStatusUpdatedWebhook.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationStatusUpdatedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when the status of an identity verification has been updated, which can be triggered via the dashboard or the API. */ @ApiModel(description = "Fired when the status of an identity verification has been updated, which can be triggered via the dashboard or the API.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationStatusUpdatedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationStepStatus.java b/src/main/java/com/plaid/client/model/IdentityVerificationStepStatus.java index 1e842220c..e0de70db5 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationStepStatus.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationStepStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationStepSummary.java b/src/main/java/com/plaid/client/model/IdentityVerificationStepSummary.java index 63b92de47..e5ee7955f 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationStepSummary.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationStepSummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Each step will be one of the following values: `active` - This step is the user's current step. They are either in the process of completing this step, or they recently closed their Identity Verification attempt while in the middle of this step. Only one step will be marked as `active` at any given point. `success` - The Identity Verification attempt has completed this step. `failed` - The user failed this step. This can either call the user to fail the session as a whole, or cause them to fallback to another step depending on how the Identity Verification template is configured. A failed step does not imply a failed session. `waiting_for_prerequisite` - The user needs to complete another step first, before they progress to this step. This step may never run, depending on if the user fails an earlier step or if the step is only run as a fallback. `not_applicable` - This step will not be run for this session. `skipped` - The retry instructions that created this Identity Verification attempt specified that this step should be skipped. `expired` - This step had not yet been completed when the Identity Verification attempt as a whole expired. `canceled` - The Identity Verification attempt was canceled before the user completed this step. `pending_review` - The Identity Verification attempt template was configured to perform a screening that had one or more hits needing review. `manually_approved` - The step was manually overridden to pass by a team member in the dashboard. `manually_rejected` - The step was manually overridden to fail by a team member in the dashboard. */ @ApiModel(description = "Each step will be one of the following values: `active` - This step is the user's current step. They are either in the process of completing this step, or they recently closed their Identity Verification attempt while in the middle of this step. Only one step will be marked as `active` at any given point. `success` - The Identity Verification attempt has completed this step. `failed` - The user failed this step. This can either call the user to fail the session as a whole, or cause them to fallback to another step depending on how the Identity Verification template is configured. A failed step does not imply a failed session. `waiting_for_prerequisite` - The user needs to complete another step first, before they progress to this step. This step may never run, depending on if the user fails an earlier step or if the step is only run as a fallback. `not_applicable` - This step will not be run for this session. `skipped` - The retry instructions that created this Identity Verification attempt specified that this step should be skipped. `expired` - This step had not yet been completed when the Identity Verification attempt as a whole expired. `canceled` - The Identity Verification attempt was canceled before the user completed this step. `pending_review` - The Identity Verification attempt template was configured to perform a screening that had one or more hits needing review. `manually_approved` - The step was manually overridden to pass by a team member in the dashboard. `manually_rejected` - The step was manually overridden to fail by a team member in the dashboard.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationStepSummary { public static final String SERIALIZED_NAME_ACCEPT_TOS = "accept_tos"; @SerializedName(SERIALIZED_NAME_ACCEPT_TOS) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationStepUpdatedWebhook.java b/src/main/java/com/plaid/client/model/IdentityVerificationStepUpdatedWebhook.java index 4ae8f0411..28b12182e 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationStepUpdatedWebhook.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationStepUpdatedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when an end user has completed a step of the Identity Verification process. */ @ApiModel(description = "Fired when an end user has completed a step of the Identity Verification process.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationStepUpdatedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationTemplateReference.java b/src/main/java/com/plaid/client/model/IdentityVerificationTemplateReference.java index 9a8b328fe..2df3f073c 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationTemplateReference.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationTemplateReference.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The resource ID and version number of the template configuring the behavior of a given Identity Verification. */ @ApiModel(description = "The resource ID and version number of the template configuring the behavior of a given Identity Verification.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationTemplateReference { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationUserAddress.java b/src/main/java/com/plaid/client/model/IdentityVerificationUserAddress.java index ff11bcabc..bdfff0e08 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationUserAddress.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationUserAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Even if an address has been collected, some fields may be null depending on the region's addressing system. For example: Addresses from the United Kingdom will not include a region Addresses from Hong Kong will not include postal code */ @ApiModel(description = "Even if an address has been collected, some fields may be null depending on the region's addressing system. For example: Addresses from the United Kingdom will not include a region Addresses from Hong Kong will not include postal code") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationUserAddress { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationUserData.java b/src/main/java/com/plaid/client/model/IdentityVerificationUserData.java index 767827d26..e5a6ced79 100644 --- a/src/main/java/com/plaid/client/model/IdentityVerificationUserData.java +++ b/src/main/java/com/plaid/client/model/IdentityVerificationUserData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * The identity data that was either collected from the user or provided via API in order to perform an Identity Verification. */ @ApiModel(description = "The identity data that was either collected from the user or provided via API in order to perform an Identity Verification.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IdentityVerificationUserData { public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) diff --git a/src/main/java/com/plaid/client/model/ImageQuality.java b/src/main/java/com/plaid/client/model/ImageQuality.java index 568903203..173f772d2 100644 --- a/src/main/java/com/plaid/client/model/ImageQuality.java +++ b/src/main/java/com/plaid/client/model/ImageQuality.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ImageQualityDetails.java b/src/main/java/com/plaid/client/model/ImageQualityDetails.java index 0172f2a76..3310339be 100644 --- a/src/main/java/com/plaid/client/model/ImageQualityDetails.java +++ b/src/main/java/com/plaid/client/model/ImageQualityDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Details about the image quality of the document. */ @ApiModel(description = "Details about the image quality of the document.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ImageQualityDetails { public static final String SERIALIZED_NAME_GLARE_CHECK = "glare_check"; @SerializedName(SERIALIZED_NAME_GLARE_CHECK) diff --git a/src/main/java/com/plaid/client/model/ImageQualityOutcome.java b/src/main/java/com/plaid/client/model/ImageQualityOutcome.java index dcad1eb07..d39c4a2a1 100644 --- a/src/main/java/com/plaid/client/model/ImageQualityOutcome.java +++ b/src/main/java/com/plaid/client/model/ImageQualityOutcome.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/IncidentUpdate.java b/src/main/java/com/plaid/client/model/IncidentUpdate.java index 615c64b36..9a8ae6b3f 100644 --- a/src/main/java/com/plaid/client/model/IncidentUpdate.java +++ b/src/main/java/com/plaid/client/model/IncidentUpdate.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An update on the health incident */ @ApiModel(description = "An update on the health incident") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncidentUpdate { public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) diff --git a/src/main/java/com/plaid/client/model/IncomeBreakdown.java b/src/main/java/com/plaid/client/model/IncomeBreakdown.java index b5af5e489..49d892a3e 100644 --- a/src/main/java/com/plaid/client/model/IncomeBreakdown.java +++ b/src/main/java/com/plaid/client/model/IncomeBreakdown.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An object representing a breakdown of the different income types on the paystub. */ @ApiModel(description = "An object representing a breakdown of the different income types on the paystub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeBreakdown { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) diff --git a/src/main/java/com/plaid/client/model/IncomeBreakdownType.java b/src/main/java/com/plaid/client/model/IncomeBreakdownType.java index c3165479b..4034ae9b4 100644 --- a/src/main/java/com/plaid/client/model/IncomeBreakdownType.java +++ b/src/main/java/com/plaid/client/model/IncomeBreakdownType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/IncomeInsights.java b/src/main/java/com/plaid/client/model/IncomeInsights.java index 4366e936f..9a5830e88 100644 --- a/src/main/java/com/plaid/client/model/IncomeInsights.java +++ b/src/main/java/com/plaid/client/model/IncomeInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Comprehensive income analysis including total income, income excluding transfers, and inbound transfer amounts. */ @ApiModel(description = "Comprehensive income analysis including total income, income excluding transfers, and inbound transfer amounts.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeInsights { public static final String SERIALIZED_NAME_TOTAL_INCOME = "total_income"; @SerializedName(SERIALIZED_NAME_TOTAL_INCOME) diff --git a/src/main/java/com/plaid/client/model/IncomeOverride.java b/src/main/java/com/plaid/client/model/IncomeOverride.java index 93e54e9d2..845f5cb0c 100644 --- a/src/main/java/com/plaid/client/model/IncomeOverride.java +++ b/src/main/java/com/plaid/client/model/IncomeOverride.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Specify payroll data on the account. */ @ApiModel(description = "Specify payroll data on the account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeOverride { public static final String SERIALIZED_NAME_PAYSTUBS = "paystubs"; @SerializedName(SERIALIZED_NAME_PAYSTUBS) diff --git a/src/main/java/com/plaid/client/model/IncomeSourcesCounts.java b/src/main/java/com/plaid/client/model/IncomeSourcesCounts.java index b715854fb..b3976828d 100644 --- a/src/main/java/com/plaid/client/model/IncomeSourcesCounts.java +++ b/src/main/java/com/plaid/client/model/IncomeSourcesCounts.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Details about the number of income sources */ @ApiModel(description = "Details about the number of income sources") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeSourcesCounts { public static final String SERIALIZED_NAME_BASELINE_COUNT = "baseline_count"; @SerializedName(SERIALIZED_NAME_BASELINE_COUNT) diff --git a/src/main/java/com/plaid/client/model/IncomeSummary.java b/src/main/java/com/plaid/client/model/IncomeSummary.java index 9882b849b..baf10a682 100644 --- a/src/main/java/com/plaid/client/model/IncomeSummary.java +++ b/src/main/java/com/plaid/client/model/IncomeSummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * The verified fields from a paystub verification. All fields are provided as reported on the paystub. */ @ApiModel(description = "The verified fields from a paystub verification. All fields are provided as reported on the paystub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeSummary { public static final String SERIALIZED_NAME_EMPLOYER_NAME = "employer_name"; @SerializedName(SERIALIZED_NAME_EMPLOYER_NAME) diff --git a/src/main/java/com/plaid/client/model/IncomeSummaryFieldNumber.java b/src/main/java/com/plaid/client/model/IncomeSummaryFieldNumber.java index 7ae00848c..01d4a4880 100644 --- a/src/main/java/com/plaid/client/model/IncomeSummaryFieldNumber.java +++ b/src/main/java/com/plaid/client/model/IncomeSummaryFieldNumber.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Field number for income summary */ @ApiModel(description = "Field number for income summary") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeSummaryFieldNumber { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) diff --git a/src/main/java/com/plaid/client/model/IncomeSummaryFieldString.java b/src/main/java/com/plaid/client/model/IncomeSummaryFieldString.java index 24554cb64..4a99a67f3 100644 --- a/src/main/java/com/plaid/client/model/IncomeSummaryFieldString.java +++ b/src/main/java/com/plaid/client/model/IncomeSummaryFieldString.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Data about the income summary */ @ApiModel(description = "Data about the income summary") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeSummaryFieldString { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationCreateRequest.java b/src/main/java/com/plaid/client/model/IncomeVerificationCreateRequest.java index cbd5cb67a..0ca02298b 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationCreateRequest.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * IncomeVerificationCreateRequest defines the request schema for `/income/verification/create` */ @ApiModel(description = "IncomeVerificationCreateRequest defines the request schema for `/income/verification/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationCreateRequestOptions.java b/src/main/java/com/plaid/client/model/IncomeVerificationCreateRequestOptions.java index 2e5dd7dec..56a248a08 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationCreateRequestOptions.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationCreateRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Optional arguments for `/income/verification/create` */ @ApiModel(description = "Optional arguments for `/income/verification/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationCreateRequestOptions { public static final String SERIALIZED_NAME_ACCESS_TOKENS = "access_tokens"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKENS) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationCreateResponse.java b/src/main/java/com/plaid/client/model/IncomeVerificationCreateResponse.java index e77e56f1f..40c703dea 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationCreateResponse.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * IncomeVerificationCreateResponse defines the response schema for `/income/verification/create`. */ @ApiModel(description = "IncomeVerificationCreateResponse defines the response schema for `/income/verification/create`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationCreateResponse { public static final String SERIALIZED_NAME_INCOME_VERIFICATION_ID = "income_verification_id"; @SerializedName(SERIALIZED_NAME_INCOME_VERIFICATION_ID) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationDocParsingConfig.java b/src/main/java/com/plaid/client/model/IncomeVerificationDocParsingConfig.java index 683022f76..793061577 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationDocParsingConfig.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationDocParsingConfig.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationDocumentsDownloadRequest.java b/src/main/java/com/plaid/client/model/IncomeVerificationDocumentsDownloadRequest.java index 2f030fe2d..67e931d7c 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationDocumentsDownloadRequest.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationDocumentsDownloadRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * IncomeVerificationDocumentsDownloadRequest defines the request schema for `/income/verification/documents/download`. */ @ApiModel(description = "IncomeVerificationDocumentsDownloadRequest defines the request schema for `/income/verification/documents/download`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationDocumentsDownloadRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationPayrollFlowType.java b/src/main/java/com/plaid/client/model/IncomeVerificationPayrollFlowType.java index da83611f2..7d15b2c61 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationPayrollFlowType.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationPayrollFlowType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationPaystubsGetRequest.java b/src/main/java/com/plaid/client/model/IncomeVerificationPaystubsGetRequest.java index bc3e2a590..fe27487cc 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationPaystubsGetRequest.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationPaystubsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * IncomeVerificationPaystubsGetRequest defines the request schema for `/income/verification/paystubs/get`. */ @ApiModel(description = "IncomeVerificationPaystubsGetRequest defines the request schema for `/income/verification/paystubs/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationPaystubsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationPaystubsGetResponse.java b/src/main/java/com/plaid/client/model/IncomeVerificationPaystubsGetResponse.java index f9269dcfa..a00c896db 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationPaystubsGetResponse.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationPaystubsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * IncomeVerificationPaystubsGetResponse defines the response schema for `/income/verification/paystubs/get`. */ @ApiModel(description = "IncomeVerificationPaystubsGetResponse defines the response schema for `/income/verification/paystubs/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationPaystubsGetResponse { public static final String SERIALIZED_NAME_DOCUMENT_METADATA = "document_metadata"; @SerializedName(SERIALIZED_NAME_DOCUMENT_METADATA) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckConfidence.java b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckConfidence.java index e8de17c7f..5f72665a5 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckConfidence.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckConfidence.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckEmployer.java b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckEmployer.java index 09de4071d..2e15acdfa 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckEmployer.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckEmployer.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Information about the end user's employer */ @ApiModel(description = "Information about the end user's employer") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationPrecheckEmployer { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckEmployerAddress.java b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckEmployerAddress.java index 6e94ff98d..b34b08653 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckEmployerAddress.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckEmployerAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The address of the employer */ @ApiModel(description = "The address of the employer") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationPrecheckEmployerAddress { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckEmployerAddressData.java b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckEmployerAddressData.java index 7de17981f..94891c76d 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckEmployerAddressData.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckEmployerAddressData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationPrecheckEmployerAddressData { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckMilitaryInfo.java b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckMilitaryInfo.java index 5c53a685f..b4aa7b222 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckMilitaryInfo.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckMilitaryInfo.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Data about military info in the income verification precheck. */ @ApiModel(description = "Data about military info in the income verification precheck.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationPrecheckMilitaryInfo { public static final String SERIALIZED_NAME_IS_ACTIVE_DUTY = "is_active_duty"; @SerializedName(SERIALIZED_NAME_IS_ACTIVE_DUTY) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckPayrollInstitution.java b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckPayrollInstitution.java index 8570856ff..cc58f9b9d 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckPayrollInstitution.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckPayrollInstitution.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Information about the end user's payroll institution */ @ApiModel(description = "Information about the end user's payroll institution") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationPrecheckPayrollInstitution { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckRequest.java b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckRequest.java index b2d2b2154..917dcfa68 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckRequest.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * IncomeVerificationPrecheckRequest defines the request schema for `/income/verification/precheck` */ @ApiModel(description = "IncomeVerificationPrecheckRequest defines the request schema for `/income/verification/precheck`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationPrecheckRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckResponse.java b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckResponse.java index 8d50279ad..bdfdc0918 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckResponse.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * IncomeVerificationPrecheckResponse defines the response schema for `/income/verification/precheck`. */ @ApiModel(description = "IncomeVerificationPrecheckResponse defines the response schema for `/income/verification/precheck`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationPrecheckResponse { public static final String SERIALIZED_NAME_PRECHECK_ID = "precheck_id"; @SerializedName(SERIALIZED_NAME_PRECHECK_ID) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckUser.java b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckUser.java index cd362ef2e..510a76ce1 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckUser.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckUser.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Information about the user whose eligibility is being evaluated. */ @ApiModel(description = "Information about the user whose eligibility is being evaluated.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationPrecheckUser { public static final String SERIALIZED_NAME_FIRST_NAME = "first_name"; @SerializedName(SERIALIZED_NAME_FIRST_NAME) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationRefreshReconnectNeededWebhook.java b/src/main/java/com/plaid/client/model/IncomeVerificationRefreshReconnectNeededWebhook.java index 37fbee4df..151423470 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationRefreshReconnectNeededWebhook.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationRefreshReconnectNeededWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when the attempt to refresh Payroll Income data for a user via `/credit/payroll_income/refresh` failed because the user must re-connect their payroll account. */ @ApiModel(description = "Fired when the attempt to refresh Payroll Income data for a user via `/credit/payroll_income/refresh` failed because the user must re-connect their payroll account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationRefreshReconnectNeededWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationRiskSignalsStatusWebhook.java b/src/main/java/com/plaid/client/model/IncomeVerificationRiskSignalsStatusWebhook.java index a0046ca0e..8f101bf76 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationRiskSignalsStatusWebhook.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationRiskSignalsStatusWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when risk signals have been processed for documents uploaded via Document Income. It will typically take a minute or two for this webhook to fire after the end user has uploaded their documents in the Document Income flow. Once this webhook has fired, `/credit/payroll_income/risk_signals/get` may then be called to determine whether the documents were successfully processed and to retrieve risk data. */ @ApiModel(description = "Fired when risk signals have been processed for documents uploaded via Document Income. It will typically take a minute or two for this webhook to fire after the end user has uploaded their documents in the Document Income flow. Once this webhook has fired, `/credit/payroll_income/risk_signals/get` may then be called to determine whether the documents were successfully processed and to retrieve risk data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationRiskSignalsStatusWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationSourceType.java b/src/main/java/com/plaid/client/model/IncomeVerificationSourceType.java index 1ee172781..3ece3ba7a 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationSourceType.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationSourceType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationStatusWebhook.java b/src/main/java/com/plaid/client/model/IncomeVerificationStatusWebhook.java index 524c87106..c2ffb4d8f 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationStatusWebhook.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationStatusWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when the status of an income verification instance has changed. This webhook is fired for both the Document and Payroll Income flows, but not the Bank Income flow. It will typically take several minutes for this webhook to fire after the end user has uploaded their documents in the Document Income flow. */ @ApiModel(description = "Fired when the status of an income verification instance has changed. This webhook is fired for both the Document and Payroll Income flows, but not the Bank Income flow. It will typically take several minutes for this webhook to fire after the end user has uploaded their documents in the Document Income flow.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationStatusWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationTaxformsGetRequest.java b/src/main/java/com/plaid/client/model/IncomeVerificationTaxformsGetRequest.java index b071671bf..dfae5041e 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationTaxformsGetRequest.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationTaxformsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * IncomeVerificationTaxformsGetRequest defines the request schema for `/income/verification/taxforms/get` */ @ApiModel(description = "IncomeVerificationTaxformsGetRequest defines the request schema for `/income/verification/taxforms/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationTaxformsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationTaxformsGetResponse.java b/src/main/java/com/plaid/client/model/IncomeVerificationTaxformsGetResponse.java index 9f36c3b12..269d04d46 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationTaxformsGetResponse.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationTaxformsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * IncomeVerificationTaxformsGetResponse defines the response schema for `/income/verification/taxforms/get` */ @ApiModel(description = "IncomeVerificationTaxformsGetResponse defines the response schema for `/income/verification/taxforms/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationTaxformsGetResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/IncomeVerificationWebhookStatus.java b/src/main/java/com/plaid/client/model/IncomeVerificationWebhookStatus.java index 9c4e0f1df..b5aeb9bc3 100644 --- a/src/main/java/com/plaid/client/model/IncomeVerificationWebhookStatus.java +++ b/src/main/java/com/plaid/client/model/IncomeVerificationWebhookStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Status of the income verification webhook */ @ApiModel(description = "Status of the income verification webhook") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IncomeVerificationWebhookStatus { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/IndividualName.java b/src/main/java/com/plaid/client/model/IndividualName.java index dd201e1f0..0547cd52d 100644 --- a/src/main/java/com/plaid/client/model/IndividualName.java +++ b/src/main/java/com/plaid/client/model/IndividualName.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Parent container for name that allows for choice group between parsed and unparsed containers.Parent container for name that allows for choice group between parsed and unparsed containers. */ @ApiModel(description = "Parent container for name that allows for choice group between parsed and unparsed containers.Parent container for name that allows for choice group between parsed and unparsed containers.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IndividualName { public static final String SERIALIZED_NAME_FIRST_NAME = "FirstName"; @SerializedName(SERIALIZED_NAME_FIRST_NAME) diff --git a/src/main/java/com/plaid/client/model/IndividualScreeningHitNames.java b/src/main/java/com/plaid/client/model/IndividualScreeningHitNames.java index b7e8328a1..db9fa3581 100644 --- a/src/main/java/com/plaid/client/model/IndividualScreeningHitNames.java +++ b/src/main/java/com/plaid/client/model/IndividualScreeningHitNames.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Name information for the associated individual watchlist hit */ @ApiModel(description = "Name information for the associated individual watchlist hit") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IndividualScreeningHitNames { public static final String SERIALIZED_NAME_FULL = "full"; @SerializedName(SERIALIZED_NAME_FULL) diff --git a/src/main/java/com/plaid/client/model/IndividualWatchlistCode.java b/src/main/java/com/plaid/client/model/IndividualWatchlistCode.java index e76222c4b..7a0363cb0 100644 --- a/src/main/java/com/plaid/client/model/IndividualWatchlistCode.java +++ b/src/main/java/com/plaid/client/model/IndividualWatchlistCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/IndividualWatchlistProgram.java b/src/main/java/com/plaid/client/model/IndividualWatchlistProgram.java index 30f6cc1b1..d79f48245 100644 --- a/src/main/java/com/plaid/client/model/IndividualWatchlistProgram.java +++ b/src/main/java/com/plaid/client/model/IndividualWatchlistProgram.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * A program that configures the active lists, search parameters, and other behavior for initial and ongoing screening of individuals. */ @ApiModel(description = "A program that configures the active lists, search parameters, and other behavior for initial and ongoing screening of individuals.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IndividualWatchlistProgram { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/InflowModel.java b/src/main/java/com/plaid/client/model/InflowModel.java index 31cd1384a..8180d93e3 100644 --- a/src/main/java/com/plaid/client/model/InflowModel.java +++ b/src/main/java/com/plaid/client/model/InflowModel.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The `inflow_model` allows you to model a test account that receives regular income or make regular payments on a loan. Any transactions generated by the `inflow_model` will appear in addition to randomly generated test data or transactions specified by `override_accounts`. */ @ApiModel(description = "The `inflow_model` allows you to model a test account that receives regular income or make regular payments on a loan. Any transactions generated by the `inflow_model` will appear in addition to randomly generated test data or transactions specified by `override_accounts`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InflowModel { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) diff --git a/src/main/java/com/plaid/client/model/InitialUpdateWebhook.java b/src/main/java/com/plaid/client/model/InitialUpdateWebhook.java index 5237f9df6..29efa748d 100644 --- a/src/main/java/com/plaid/client/model/InitialUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/InitialUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Fired when an Item's initial transaction pull is completed. Once this webhook has been fired, transaction data for the most recent 30 days can be fetched for the Item. This webhook will also be fired if account selections for the Item are updated, with `new_transactions` set to the number of net new transactions pulled after the account selection update. This webhook is intended for use with `/transactions/get`; if you are using the newer `/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead. */ @ApiModel(description = "Fired when an Item's initial transaction pull is completed. Once this webhook has been fired, transaction data for the most recent 30 days can be fetched for the Item. This webhook will also be fired if account selections for the Item are updated, with `new_transactions` set to the number of net new transactions pulled after the account selection update. This webhook is intended for use with `/transactions/get`; if you are using the newer `/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InitialUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/Institution.java b/src/main/java/com/plaid/client/model/Institution.java index 32269748b..1b36db9c9 100644 --- a/src/main/java/com/plaid/client/model/Institution.java +++ b/src/main/java/com/plaid/client/model/Institution.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * Details relating to a specific financial institution */ @ApiModel(description = "Details relating to a specific financial institution") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Institution { public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) diff --git a/src/main/java/com/plaid/client/model/InstitutionStatus.java b/src/main/java/com/plaid/client/model/InstitutionStatus.java index 6b42e82bf..8717bbacd 100644 --- a/src/main/java/com/plaid/client/model/InstitutionStatus.java +++ b/src/main/java/com/plaid/client/model/InstitutionStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * The status of an institution is determined by the health of its Item logins, Transactions updates, Investments updates, Liabilities updates, Auth requests, Balance requests, Identity requests, Investments requests, and Liabilities requests. A login attempt is conducted during the initial Item add in Link. If there is not enough traffic to accurately calculate an institution's status, Plaid will return null rather than potentially inaccurate data. Institution status is accessible in the Dashboard and via the API using the `/institutions/get_by_id` endpoint with the `options.include_status` option set to true. Note that institution status is not available in the Sandbox environment. */ @ApiModel(description = "The status of an institution is determined by the health of its Item logins, Transactions updates, Investments updates, Liabilities updates, Auth requests, Balance requests, Identity requests, Investments requests, and Liabilities requests. A login attempt is conducted during the initial Item add in Link. If there is not enough traffic to accurately calculate an institution's status, Plaid will return null rather than potentially inaccurate data. Institution status is accessible in the Dashboard and via the API using the `/institutions/get_by_id` endpoint with the `options.include_status` option set to true. Note that institution status is not available in the Sandbox environment. ") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InstitutionStatus { public static final String SERIALIZED_NAME_ITEM_LOGINS = "item_logins"; @SerializedName(SERIALIZED_NAME_ITEM_LOGINS) diff --git a/src/main/java/com/plaid/client/model/InstitutionStatusAlertWebhook.java b/src/main/java/com/plaid/client/model/InstitutionStatusAlertWebhook.java index 45166eb65..14c7c95db 100644 --- a/src/main/java/com/plaid/client/model/InstitutionStatusAlertWebhook.java +++ b/src/main/java/com/plaid/client/model/InstitutionStatusAlertWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when institution status meets the conditions configured in the developer dashboard. */ @ApiModel(description = "Fired when institution status meets the conditions configured in the developer dashboard.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InstitutionStatusAlertWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/InstitutionSupportedNetworks.java b/src/main/java/com/plaid/client/model/InstitutionSupportedNetworks.java index 14cdcdc90..e05ec087e 100644 --- a/src/main/java/com/plaid/client/model/InstitutionSupportedNetworks.java +++ b/src/main/java/com/plaid/client/model/InstitutionSupportedNetworks.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Contains the RTP and RfP network and types supported by the linked Item's institution. */ @ApiModel(description = "Contains the RTP and RfP network and types supported by the linked Item's institution.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InstitutionSupportedNetworks { public static final String SERIALIZED_NAME_RTP = "rtp"; @SerializedName(SERIALIZED_NAME_RTP) diff --git a/src/main/java/com/plaid/client/model/InstitutionsGetByIdRequest.java b/src/main/java/com/plaid/client/model/InstitutionsGetByIdRequest.java index 222c1d628..6c6ef960c 100644 --- a/src/main/java/com/plaid/client/model/InstitutionsGetByIdRequest.java +++ b/src/main/java/com/plaid/client/model/InstitutionsGetByIdRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * InstitutionsGetByIdRequest defines the request schema for `/institutions/get_by_id` */ @ApiModel(description = "InstitutionsGetByIdRequest defines the request schema for `/institutions/get_by_id`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InstitutionsGetByIdRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/InstitutionsGetByIdRequestOptions.java b/src/main/java/com/plaid/client/model/InstitutionsGetByIdRequestOptions.java index 2f2170eb5..0dbc218de 100644 --- a/src/main/java/com/plaid/client/model/InstitutionsGetByIdRequestOptions.java +++ b/src/main/java/com/plaid/client/model/InstitutionsGetByIdRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Specifies optional parameters for `/institutions/get_by_id`. If provided, must not be `null`. */ @ApiModel(description = "Specifies optional parameters for `/institutions/get_by_id`. If provided, must not be `null`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InstitutionsGetByIdRequestOptions { public static final String SERIALIZED_NAME_INCLUDE_OPTIONAL_METADATA = "include_optional_metadata"; @SerializedName(SERIALIZED_NAME_INCLUDE_OPTIONAL_METADATA) diff --git a/src/main/java/com/plaid/client/model/InstitutionsGetByIdResponse.java b/src/main/java/com/plaid/client/model/InstitutionsGetByIdResponse.java index b5bdd94b2..8284c63dd 100644 --- a/src/main/java/com/plaid/client/model/InstitutionsGetByIdResponse.java +++ b/src/main/java/com/plaid/client/model/InstitutionsGetByIdResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * InstitutionsGetByIdResponse defines the response schema for `/institutions/get_by_id` */ @ApiModel(description = "InstitutionsGetByIdResponse defines the response schema for `/institutions/get_by_id`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InstitutionsGetByIdResponse { public static final String SERIALIZED_NAME_INSTITUTION = "institution"; @SerializedName(SERIALIZED_NAME_INSTITUTION) diff --git a/src/main/java/com/plaid/client/model/InstitutionsGetRequest.java b/src/main/java/com/plaid/client/model/InstitutionsGetRequest.java index 5e9dc052a..5e18874e6 100644 --- a/src/main/java/com/plaid/client/model/InstitutionsGetRequest.java +++ b/src/main/java/com/plaid/client/model/InstitutionsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * InstitutionsGetRequest defines the request schema for `/institutions/get` */ @ApiModel(description = "InstitutionsGetRequest defines the request schema for `/institutions/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InstitutionsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/InstitutionsGetRequestOptions.java b/src/main/java/com/plaid/client/model/InstitutionsGetRequestOptions.java index 8d930c59c..bbf8673a6 100644 --- a/src/main/java/com/plaid/client/model/InstitutionsGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/InstitutionsGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * An optional object to filter `/institutions/get` results. */ @ApiModel(description = "An optional object to filter `/institutions/get` results.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InstitutionsGetRequestOptions { public static final String SERIALIZED_NAME_PRODUCTS = "products"; @SerializedName(SERIALIZED_NAME_PRODUCTS) diff --git a/src/main/java/com/plaid/client/model/InstitutionsGetResponse.java b/src/main/java/com/plaid/client/model/InstitutionsGetResponse.java index 598cee094..5d223c3d5 100644 --- a/src/main/java/com/plaid/client/model/InstitutionsGetResponse.java +++ b/src/main/java/com/plaid/client/model/InstitutionsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * InstitutionsGetResponse defines the response schema for `/institutions/get` */ @ApiModel(description = "InstitutionsGetResponse defines the response schema for `/institutions/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InstitutionsGetResponse { public static final String SERIALIZED_NAME_INSTITUTIONS = "institutions"; @SerializedName(SERIALIZED_NAME_INSTITUTIONS) diff --git a/src/main/java/com/plaid/client/model/InstitutionsSearchAccountFilter.java b/src/main/java/com/plaid/client/model/InstitutionsSearchAccountFilter.java index 94465beb6..fe76f007c 100644 --- a/src/main/java/com/plaid/client/model/InstitutionsSearchAccountFilter.java +++ b/src/main/java/com/plaid/client/model/InstitutionsSearchAccountFilter.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * An account filter to apply to institutions search requests */ @ApiModel(description = "An account filter to apply to institutions search requests") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InstitutionsSearchAccountFilter { public static final String SERIALIZED_NAME_LOAN = "loan"; @SerializedName(SERIALIZED_NAME_LOAN) diff --git a/src/main/java/com/plaid/client/model/InstitutionsSearchPaymentInitiationOptions.java b/src/main/java/com/plaid/client/model/InstitutionsSearchPaymentInitiationOptions.java index cc3d5fab3..c1d025344 100644 --- a/src/main/java/com/plaid/client/model/InstitutionsSearchPaymentInitiationOptions.java +++ b/src/main/java/com/plaid/client/model/InstitutionsSearchPaymentInitiationOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Additional options that will be used to filter institutions by various Payment Initiation configurations. */ @ApiModel(description = "Additional options that will be used to filter institutions by various Payment Initiation configurations.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InstitutionsSearchPaymentInitiationOptions { public static final String SERIALIZED_NAME_PAYMENT_ID = "payment_id"; @SerializedName(SERIALIZED_NAME_PAYMENT_ID) diff --git a/src/main/java/com/plaid/client/model/InstitutionsSearchRequest.java b/src/main/java/com/plaid/client/model/InstitutionsSearchRequest.java index aa5cfcc7f..80e503bf3 100644 --- a/src/main/java/com/plaid/client/model/InstitutionsSearchRequest.java +++ b/src/main/java/com/plaid/client/model/InstitutionsSearchRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * InstitutionsSearchRequest defines the request schema for `/institutions/search` */ @ApiModel(description = "InstitutionsSearchRequest defines the request schema for `/institutions/search`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InstitutionsSearchRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/InstitutionsSearchRequestOptions.java b/src/main/java/com/plaid/client/model/InstitutionsSearchRequestOptions.java index 4f7ccc287..c829567e5 100644 --- a/src/main/java/com/plaid/client/model/InstitutionsSearchRequestOptions.java +++ b/src/main/java/com/plaid/client/model/InstitutionsSearchRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An optional object to filter `/institutions/search` results. */ @ApiModel(description = "An optional object to filter `/institutions/search` results.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InstitutionsSearchRequestOptions { public static final String SERIALIZED_NAME_OAUTH = "oauth"; @SerializedName(SERIALIZED_NAME_OAUTH) diff --git a/src/main/java/com/plaid/client/model/InstitutionsSearchResponse.java b/src/main/java/com/plaid/client/model/InstitutionsSearchResponse.java index c0aabaa32..f3510ce35 100644 --- a/src/main/java/com/plaid/client/model/InstitutionsSearchResponse.java +++ b/src/main/java/com/plaid/client/model/InstitutionsSearchResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * InstitutionsSearchResponse defines the response schema for `/institutions/search` */ @ApiModel(description = "InstitutionsSearchResponse defines the response schema for `/institutions/search`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InstitutionsSearchResponse { public static final String SERIALIZED_NAME_INSTITUTIONS = "institutions"; @SerializedName(SERIALIZED_NAME_INSTITUTIONS) diff --git a/src/main/java/com/plaid/client/model/InvestmentAccountSubtype.java b/src/main/java/com/plaid/client/model/InvestmentAccountSubtype.java index 6e3aef7e9..15bdd3091 100644 --- a/src/main/java/com/plaid/client/model/InvestmentAccountSubtype.java +++ b/src/main/java/com/plaid/client/model/InvestmentAccountSubtype.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/InvestmentFilter.java b/src/main/java/com/plaid/client/model/InvestmentFilter.java index 084e6878a..2886d6dc7 100644 --- a/src/main/java/com/plaid/client/model/InvestmentFilter.java +++ b/src/main/java/com/plaid/client/model/InvestmentFilter.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A filter to apply to `investment`-type accounts (or `brokerage`-type accounts for API versions 2018-05-22 and earlier). */ @ApiModel(description = "A filter to apply to `investment`-type accounts (or `brokerage`-type accounts for API versions 2018-05-22 and earlier).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentFilter { public static final String SERIALIZED_NAME_ACCOUNT_SUBTYPES = "account_subtypes"; @SerializedName(SERIALIZED_NAME_ACCOUNT_SUBTYPES) diff --git a/src/main/java/com/plaid/client/model/InvestmentHoldingsGetRequestOptions.java b/src/main/java/com/plaid/client/model/InvestmentHoldingsGetRequestOptions.java index 2f0a31a4e..d81796d9d 100644 --- a/src/main/java/com/plaid/client/model/InvestmentHoldingsGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/InvestmentHoldingsGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An optional object to filter `/investments/holdings/get` results. If provided, must not be `null`. */ @ApiModel(description = "An optional object to filter `/investments/holdings/get` results. If provided, must not be `null`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentHoldingsGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) diff --git a/src/main/java/com/plaid/client/model/InvestmentTransaction.java b/src/main/java/com/plaid/client/model/InvestmentTransaction.java index c6f2db26f..f54fbd1e4 100644 --- a/src/main/java/com/plaid/client/model/InvestmentTransaction.java +++ b/src/main/java/com/plaid/client/model/InvestmentTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * A transaction within an investment account. */ @ApiModel(description = "A transaction within an investment account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentTransaction { public static final String SERIALIZED_NAME_INVESTMENT_TRANSACTION_ID = "investment_transaction_id"; @SerializedName(SERIALIZED_NAME_INVESTMENT_TRANSACTION_ID) diff --git a/src/main/java/com/plaid/client/model/InvestmentTransactionSubtype.java b/src/main/java/com/plaid/client/model/InvestmentTransactionSubtype.java index a00e12b3e..933962f4a 100644 --- a/src/main/java/com/plaid/client/model/InvestmentTransactionSubtype.java +++ b/src/main/java/com/plaid/client/model/InvestmentTransactionSubtype.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/InvestmentTransactionType.java b/src/main/java/com/plaid/client/model/InvestmentTransactionType.java index 5b6099f03..8ccd8ce9a 100644 --- a/src/main/java/com/plaid/client/model/InvestmentTransactionType.java +++ b/src/main/java/com/plaid/client/model/InvestmentTransactionType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/InvestmentsAuth401kContributionDetails.java b/src/main/java/com/plaid/client/model/InvestmentsAuth401kContributionDetails.java index ea6ceee7a..b7e4b3b84 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsAuth401kContributionDetails.java +++ b/src/main/java/com/plaid/client/model/InvestmentsAuth401kContributionDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Object containing information on contribution transactions for the 401k account. Note that the sum fields in this object represent the total of absolute contribution values. */ @ApiModel(description = "Object containing information on contribution transactions for the 401k account. Note that the sum fields in this object represent the total of absolute contribution values.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsAuth401kContributionDetails { public static final String SERIALIZED_NAME_LAST_CONTRIBUTION_TRANSACTIONS = "last_contribution_transactions"; @SerializedName(SERIALIZED_NAME_LAST_CONTRIBUTION_TRANSACTIONS) diff --git a/src/main/java/com/plaid/client/model/InvestmentsAuth401kFeeDetails.java b/src/main/java/com/plaid/client/model/InvestmentsAuth401kFeeDetails.java index a87fdb591..e0f678bd5 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsAuth401kFeeDetails.java +++ b/src/main/java/com/plaid/client/model/InvestmentsAuth401kFeeDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Object containing information on account fee transactions for the 401k account. */ @ApiModel(description = "Object containing information on account fee transactions for the 401k account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsAuth401kFeeDetails { public static final String SERIALIZED_NAME_ACCOUNT_FEE_COUNT12M = "account_fee_count_12m"; @SerializedName(SERIALIZED_NAME_ACCOUNT_FEE_COUNT12M) diff --git a/src/main/java/com/plaid/client/model/InvestmentsAuthAccountDetails401k.java b/src/main/java/com/plaid/client/model/InvestmentsAuthAccountDetails401k.java index ceb0bcc66..9801c79cc 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsAuthAccountDetails401k.java +++ b/src/main/java/com/plaid/client/model/InvestmentsAuthAccountDetails401k.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Additional account fee and contribution information for 401k type accounts. */ @ApiModel(description = "Additional account fee and contribution information for 401k type accounts.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsAuthAccountDetails401k { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/InvestmentsAuthDataSources.java b/src/main/java/com/plaid/client/model/InvestmentsAuthDataSources.java index 669ad7d89..c32028e11 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsAuthDataSources.java +++ b/src/main/java/com/plaid/client/model/InvestmentsAuthDataSources.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Object with metadata pertaining to the source of data for the account numbers, owners, and holdings that are returned. */ @ApiModel(description = "Object with metadata pertaining to the source of data for the account numbers, owners, and holdings that are returned.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsAuthDataSources { public static final String SERIALIZED_NAME_NUMBERS = "numbers"; @SerializedName(SERIALIZED_NAME_NUMBERS) diff --git a/src/main/java/com/plaid/client/model/InvestmentsAuthGetNumbers.java b/src/main/java/com/plaid/client/model/InvestmentsAuthGetNumbers.java index a233e56eb..3c65ce8d1 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsAuthGetNumbers.java +++ b/src/main/java/com/plaid/client/model/InvestmentsAuthGetNumbers.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Identifying information for transferring holdings to an investments account. */ @ApiModel(description = "Identifying information for transferring holdings to an investments account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsAuthGetNumbers { public static final String SERIALIZED_NAME_ACATS = "acats"; @SerializedName(SERIALIZED_NAME_ACATS) diff --git a/src/main/java/com/plaid/client/model/InvestmentsAuthGetRequest.java b/src/main/java/com/plaid/client/model/InvestmentsAuthGetRequest.java index 8f0abc773..76ad3f96f 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsAuthGetRequest.java +++ b/src/main/java/com/plaid/client/model/InvestmentsAuthGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * InvestmentsAuthGetRequest defines the request schema for `/investments/auth/get` */ @ApiModel(description = "InvestmentsAuthGetRequest defines the request schema for `/investments/auth/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsAuthGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/InvestmentsAuthGetRequestOptions.java b/src/main/java/com/plaid/client/model/InvestmentsAuthGetRequestOptions.java index f5a92524b..8e8cd7155 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsAuthGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/InvestmentsAuthGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An optional object to filter `/investments/auth/get` results. */ @ApiModel(description = "An optional object to filter `/investments/auth/get` results.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsAuthGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) diff --git a/src/main/java/com/plaid/client/model/InvestmentsAuthGetResponse.java b/src/main/java/com/plaid/client/model/InvestmentsAuthGetResponse.java index bcb2fea8a..0e8632b27 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsAuthGetResponse.java +++ b/src/main/java/com/plaid/client/model/InvestmentsAuthGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -38,7 +38,7 @@ * InvestmentsAuthGetResponse defines the response schema for `/investments/auth/get` */ @ApiModel(description = "InvestmentsAuthGetResponse defines the response schema for `/investments/auth/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsAuthGetResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) diff --git a/src/main/java/com/plaid/client/model/InvestmentsAuthOwner.java b/src/main/java/com/plaid/client/model/InvestmentsAuthOwner.java index 82a8db453..ce9acd23e 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsAuthOwner.java +++ b/src/main/java/com/plaid/client/model/InvestmentsAuthOwner.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Information on the ownership of an investments account */ @ApiModel(description = "Information on the ownership of an investments account") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsAuthOwner { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/InvestmentsDefaultUpdateWebhook.java b/src/main/java/com/plaid/client/model/InvestmentsDefaultUpdateWebhook.java index 0e8ba7a12..ac68cf42c 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsDefaultUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/InvestmentsDefaultUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Fired when new transactions have been detected on an investment account. */ @ApiModel(description = "Fired when new transactions have been detected on an investment account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsDefaultUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/InvestmentsHistoricalUpdateWebhook.java b/src/main/java/com/plaid/client/model/InvestmentsHistoricalUpdateWebhook.java index 7bc41eade..3243efcb8 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsHistoricalUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/InvestmentsHistoricalUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Fired after an asynchronous extraction on an investments account. */ @ApiModel(description = "Fired after an asynchronous extraction on an investments account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsHistoricalUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/InvestmentsHoldingsGetRequest.java b/src/main/java/com/plaid/client/model/InvestmentsHoldingsGetRequest.java index 3b541562c..acf092fa0 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsHoldingsGetRequest.java +++ b/src/main/java/com/plaid/client/model/InvestmentsHoldingsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * InvestmentsHoldingsGetRequest defines the request schema for `/investments/holdings/get` */ @ApiModel(description = "InvestmentsHoldingsGetRequest defines the request schema for `/investments/holdings/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsHoldingsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/InvestmentsHoldingsGetResponse.java b/src/main/java/com/plaid/client/model/InvestmentsHoldingsGetResponse.java index d4664fe5a..bb902ce1a 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsHoldingsGetResponse.java +++ b/src/main/java/com/plaid/client/model/InvestmentsHoldingsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * InvestmentsHoldingsGetResponse defines the response schema for `/investments/holdings/get` */ @ApiModel(description = "InvestmentsHoldingsGetResponse defines the response schema for `/investments/holdings/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsHoldingsGetResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) diff --git a/src/main/java/com/plaid/client/model/InvestmentsRefreshRequest.java b/src/main/java/com/plaid/client/model/InvestmentsRefreshRequest.java index d04a9ce0f..29e504757 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsRefreshRequest.java +++ b/src/main/java/com/plaid/client/model/InvestmentsRefreshRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * InvestmentsRefreshRequest defines the request schema for `/investments/refresh` */ @ApiModel(description = "InvestmentsRefreshRequest defines the request schema for `/investments/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsRefreshRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/InvestmentsRefreshResponse.java b/src/main/java/com/plaid/client/model/InvestmentsRefreshResponse.java index 3aa8e573b..91acdb2d7 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsRefreshResponse.java +++ b/src/main/java/com/plaid/client/model/InvestmentsRefreshResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * InvestmentsRefreshResponse defines the response schema for `/investments/refresh` */ @ApiModel(description = "InvestmentsRefreshResponse defines the response schema for `/investments/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsRefreshResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/InvestmentsTransactionsGetRequest.java b/src/main/java/com/plaid/client/model/InvestmentsTransactionsGetRequest.java index 643827904..c0078fa3b 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsTransactionsGetRequest.java +++ b/src/main/java/com/plaid/client/model/InvestmentsTransactionsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * InvestmentsTransactionsGetRequest defines the request schema for `/investments/transactions/get` */ @ApiModel(description = "InvestmentsTransactionsGetRequest defines the request schema for `/investments/transactions/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsTransactionsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/InvestmentsTransactionsGetRequestOptions.java b/src/main/java/com/plaid/client/model/InvestmentsTransactionsGetRequestOptions.java index b7ee67f7c..b34ef402c 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsTransactionsGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/InvestmentsTransactionsGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An optional object to filter `/investments/transactions/get` results. If provided, must be non-`null`. */ @ApiModel(description = "An optional object to filter `/investments/transactions/get` results. If provided, must be non-`null`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsTransactionsGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) diff --git a/src/main/java/com/plaid/client/model/InvestmentsTransactionsGetResponse.java b/src/main/java/com/plaid/client/model/InvestmentsTransactionsGetResponse.java index d057af142..e2d75e4e1 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsTransactionsGetResponse.java +++ b/src/main/java/com/plaid/client/model/InvestmentsTransactionsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * InvestmentsTransactionsGetResponse defines the response schema for `/investments/transactions/get` */ @ApiModel(description = "InvestmentsTransactionsGetResponse defines the response schema for `/investments/transactions/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsTransactionsGetResponse { public static final String SERIALIZED_NAME_ITEM = "item"; @SerializedName(SERIALIZED_NAME_ITEM) diff --git a/src/main/java/com/plaid/client/model/InvestmentsTransactionsOverride.java b/src/main/java/com/plaid/client/model/InvestmentsTransactionsOverride.java index 0db108f5e..a9f36a463 100644 --- a/src/main/java/com/plaid/client/model/InvestmentsTransactionsOverride.java +++ b/src/main/java/com/plaid/client/model/InvestmentsTransactionsOverride.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Specify the list of investments transactions on the account. */ @ApiModel(description = "Specify the list of investments transactions on the account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class InvestmentsTransactionsOverride { public static final String SERIALIZED_NAME_DATE = "date"; @SerializedName(SERIALIZED_NAME_DATE) diff --git a/src/main/java/com/plaid/client/model/Issue.java b/src/main/java/com/plaid/client/model/Issue.java index 7238a1efa..273790e71 100644 --- a/src/main/java/com/plaid/client/model/Issue.java +++ b/src/main/java/com/plaid/client/model/Issue.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Information on an issue encountered with financial institutions interactions with financial institutions during Linking. */ @ApiModel(description = "Information on an issue encountered with financial institutions interactions with financial institutions during Linking.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Issue { public static final String SERIALIZED_NAME_ISSUE_ID = "issue_id"; @SerializedName(SERIALIZED_NAME_ISSUE_ID) diff --git a/src/main/java/com/plaid/client/model/IssueResolvedWebhook.java b/src/main/java/com/plaid/client/model/IssueResolvedWebhook.java index 5b250c711..a2ff4c66d 100644 --- a/src/main/java/com/plaid/client/model/IssueResolvedWebhook.java +++ b/src/main/java/com/plaid/client/model/IssueResolvedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Webhook notifications are sent only when a subscribed issue is marked as resolved. The payload contains details about the issue at the time of its resolution, focusing on the most essential information. */ @ApiModel(description = "Webhook notifications are sent only when a subscribed issue is marked as resolved. The payload contains details about the issue at the time of its resolution, focusing on the most essential information.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IssueResolvedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/IssuesGetRequest.java b/src/main/java/com/plaid/client/model/IssuesGetRequest.java index bd027a91e..c5b125426 100644 --- a/src/main/java/com/plaid/client/model/IssuesGetRequest.java +++ b/src/main/java/com/plaid/client/model/IssuesGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * IssuesGetRequest defines the request schema for `/issues/get`. */ @ApiModel(description = "IssuesGetRequest defines the request schema for `/issues/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IssuesGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/IssuesGetResponse.java b/src/main/java/com/plaid/client/model/IssuesGetResponse.java index 2bd15539d..164f4a83b 100644 --- a/src/main/java/com/plaid/client/model/IssuesGetResponse.java +++ b/src/main/java/com/plaid/client/model/IssuesGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * IssuesGetResponse defines the response schema for `/issues/get`. */ @ApiModel(description = "IssuesGetResponse defines the response schema for `/issues/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IssuesGetResponse { public static final String SERIALIZED_NAME_ISSUE = "issue"; @SerializedName(SERIALIZED_NAME_ISSUE) diff --git a/src/main/java/com/plaid/client/model/IssuesSearchRequest.java b/src/main/java/com/plaid/client/model/IssuesSearchRequest.java index 6638df123..fa774dcc1 100644 --- a/src/main/java/com/plaid/client/model/IssuesSearchRequest.java +++ b/src/main/java/com/plaid/client/model/IssuesSearchRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * IssuesSearchRequest defines the request schema for `/issues/search`. */ @ApiModel(description = "IssuesSearchRequest defines the request schema for `/issues/search`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IssuesSearchRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/IssuesSearchResponse.java b/src/main/java/com/plaid/client/model/IssuesSearchResponse.java index bc2f65c69..734926000 100644 --- a/src/main/java/com/plaid/client/model/IssuesSearchResponse.java +++ b/src/main/java/com/plaid/client/model/IssuesSearchResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * IssuesSearchResponse defines the response schema for `/issues/search`. */ @ApiModel(description = "IssuesSearchResponse defines the response schema for `/issues/search`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IssuesSearchResponse { public static final String SERIALIZED_NAME_ISSUES = "issues"; @SerializedName(SERIALIZED_NAME_ISSUES) diff --git a/src/main/java/com/plaid/client/model/IssuesStatus.java b/src/main/java/com/plaid/client/model/IssuesStatus.java index a74bae352..8837f0df2 100644 --- a/src/main/java/com/plaid/client/model/IssuesStatus.java +++ b/src/main/java/com/plaid/client/model/IssuesStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/IssuesSubscribeRequest.java b/src/main/java/com/plaid/client/model/IssuesSubscribeRequest.java index 9e57fe32a..115a6511f 100644 --- a/src/main/java/com/plaid/client/model/IssuesSubscribeRequest.java +++ b/src/main/java/com/plaid/client/model/IssuesSubscribeRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * IssuesSubscribeRequest defines the request schema for `/issues/subscribe`. */ @ApiModel(description = "IssuesSubscribeRequest defines the request schema for `/issues/subscribe`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IssuesSubscribeRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/IssuesSubscribeResponse.java b/src/main/java/com/plaid/client/model/IssuesSubscribeResponse.java index 76deb0710..4e8d7f067 100644 --- a/src/main/java/com/plaid/client/model/IssuesSubscribeResponse.java +++ b/src/main/java/com/plaid/client/model/IssuesSubscribeResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * IssuesSubscribeResponse defines the response schema for `/issues/subscribe`. */ @ApiModel(description = "IssuesSubscribeResponse defines the response schema for `/issues/subscribe`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class IssuesSubscribeResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/IssuingCountry.java b/src/main/java/com/plaid/client/model/IssuingCountry.java index b5e74048d..4e548d1c1 100644 --- a/src/main/java/com/plaid/client/model/IssuingCountry.java +++ b/src/main/java/com/plaid/client/model/IssuingCountry.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/Item.java b/src/main/java/com/plaid/client/model/Item.java index 56ff6b77b..03c73088f 100644 --- a/src/main/java/com/plaid/client/model/Item.java +++ b/src/main/java/com/plaid/client/model/Item.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * Metadata about the Item. */ @ApiModel(description = "Metadata about the Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Item { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) diff --git a/src/main/java/com/plaid/client/model/ItemAccessTokenInvalidateRequest.java b/src/main/java/com/plaid/client/model/ItemAccessTokenInvalidateRequest.java index 0344bba8c..9f218623b 100644 --- a/src/main/java/com/plaid/client/model/ItemAccessTokenInvalidateRequest.java +++ b/src/main/java/com/plaid/client/model/ItemAccessTokenInvalidateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ItemAccessTokenInvalidateRequest defines the request schema for `/item/access_token/invalidate` */ @ApiModel(description = "ItemAccessTokenInvalidateRequest defines the request schema for `/item/access_token/invalidate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemAccessTokenInvalidateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ItemAccessTokenInvalidateResponse.java b/src/main/java/com/plaid/client/model/ItemAccessTokenInvalidateResponse.java index b74b80a91..9ccc6f934 100644 --- a/src/main/java/com/plaid/client/model/ItemAccessTokenInvalidateResponse.java +++ b/src/main/java/com/plaid/client/model/ItemAccessTokenInvalidateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ItemAccessTokenInvalidateResponse defines the response schema for `/item/access_token/invalidate` */ @ApiModel(description = "ItemAccessTokenInvalidateResponse defines the response schema for `/item/access_token/invalidate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemAccessTokenInvalidateResponse { public static final String SERIALIZED_NAME_NEW_ACCESS_TOKEN = "new_access_token"; @SerializedName(SERIALIZED_NAME_NEW_ACCESS_TOKEN) diff --git a/src/main/java/com/plaid/client/model/ItemActivityListRequest.java b/src/main/java/com/plaid/client/model/ItemActivityListRequest.java index 72f9544e8..052409ae1 100644 --- a/src/main/java/com/plaid/client/model/ItemActivityListRequest.java +++ b/src/main/java/com/plaid/client/model/ItemActivityListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request to list a historical log of user consent events. */ @ApiModel(description = "Request to list a historical log of user consent events.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemActivityListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ItemActivityListResponse.java b/src/main/java/com/plaid/client/model/ItemActivityListResponse.java index 45484bf23..836dcb9ce 100644 --- a/src/main/java/com/plaid/client/model/ItemActivityListResponse.java +++ b/src/main/java/com/plaid/client/model/ItemActivityListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Describes a historical log of user consent events. */ @ApiModel(description = "Describes a historical log of user consent events.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemActivityListResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/ItemAddResultWebhook.java b/src/main/java/com/plaid/client/model/ItemAddResultWebhook.java index d15548972..1efedc6c5 100644 --- a/src/main/java/com/plaid/client/model/ItemAddResultWebhook.java +++ b/src/main/java/com/plaid/client/model/ItemAddResultWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when a user successfully adds a Plaid Item during a Link session when using Hosted Link or Multi-Item Link sessions. Contains the public token for the Item. */ @ApiModel(description = "Fired when a user successfully adds a Plaid Item during a Link session when using Hosted Link or Multi-Item Link sessions. Contains the public token for the Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemAddResultWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/ItemApplicationListRequest.java b/src/main/java/com/plaid/client/model/ItemApplicationListRequest.java index f7ff60cb0..271dbbb52 100644 --- a/src/main/java/com/plaid/client/model/ItemApplicationListRequest.java +++ b/src/main/java/com/plaid/client/model/ItemApplicationListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request to list connected applications for a user. */ @ApiModel(description = "Request to list connected applications for a user.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemApplicationListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ItemApplicationListResponse.java b/src/main/java/com/plaid/client/model/ItemApplicationListResponse.java index 8057b1f6d..0d4c9822b 100644 --- a/src/main/java/com/plaid/client/model/ItemApplicationListResponse.java +++ b/src/main/java/com/plaid/client/model/ItemApplicationListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Describes the connected application for a particular end user. */ @ApiModel(description = "Describes the connected application for a particular end user.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemApplicationListResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/ItemApplicationListUserAuth.java b/src/main/java/com/plaid/client/model/ItemApplicationListUserAuth.java index b1ee8c8e7..d6ac314ac 100644 --- a/src/main/java/com/plaid/client/model/ItemApplicationListUserAuth.java +++ b/src/main/java/com/plaid/client/model/ItemApplicationListUserAuth.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * User authentication parameters, for clients making a request without an `access_token`. This is only allowed for select clients and will not be supported in the future. Most clients should call /item/import to obtain an access token before making a request. */ @ApiModel(description = "User authentication parameters, for clients making a request without an `access_token`. This is only allowed for select clients and will not be supported in the future. Most clients should call /item/import to obtain an access token before making a request.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemApplicationListUserAuth { public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) diff --git a/src/main/java/com/plaid/client/model/ItemApplicationScopesUpdateRequest.java b/src/main/java/com/plaid/client/model/ItemApplicationScopesUpdateRequest.java index b4c0220a5..f030e3867 100644 --- a/src/main/java/com/plaid/client/model/ItemApplicationScopesUpdateRequest.java +++ b/src/main/java/com/plaid/client/model/ItemApplicationScopesUpdateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * ItemApplicationScopesUpdateRequest defines the request schema for `/item/application/scopes/update` */ @ApiModel(description = "ItemApplicationScopesUpdateRequest defines the request schema for `/item/application/scopes/update`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemApplicationScopesUpdateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ItemApplicationScopesUpdateResponse.java b/src/main/java/com/plaid/client/model/ItemApplicationScopesUpdateResponse.java index 3de9ec912..ce2e02d2a 100644 --- a/src/main/java/com/plaid/client/model/ItemApplicationScopesUpdateResponse.java +++ b/src/main/java/com/plaid/client/model/ItemApplicationScopesUpdateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ItemApplicationScopesUpdateResponse defines the response schema for `/item/application/scopes/update` */ @ApiModel(description = "ItemApplicationScopesUpdateResponse defines the response schema for `/item/application/scopes/update`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemApplicationScopesUpdateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/ItemApplicationUnlinkRequest.java b/src/main/java/com/plaid/client/model/ItemApplicationUnlinkRequest.java index 5514c31ad..478902642 100644 --- a/src/main/java/com/plaid/client/model/ItemApplicationUnlinkRequest.java +++ b/src/main/java/com/plaid/client/model/ItemApplicationUnlinkRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ItemApplicationUnlinkRequest defines the request schema for `/item/application/unlink/` */ @ApiModel(description = "ItemApplicationUnlinkRequest defines the request schema for `/item/application/unlink/`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemApplicationUnlinkRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ItemApplicationUnlinkResponse.java b/src/main/java/com/plaid/client/model/ItemApplicationUnlinkResponse.java index eabe9e4d8..0adbab467 100644 --- a/src/main/java/com/plaid/client/model/ItemApplicationUnlinkResponse.java +++ b/src/main/java/com/plaid/client/model/ItemApplicationUnlinkResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ItemApplicationUnlinkResponse defines the response schema for `/item/application/unlink` */ @ApiModel(description = "ItemApplicationUnlinkResponse defines the response schema for `/item/application/unlink`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemApplicationUnlinkResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/ItemAuthMethod.java b/src/main/java/com/plaid/client/model/ItemAuthMethod.java index cf347e23f..540b056cc 100644 --- a/src/main/java/com/plaid/client/model/ItemAuthMethod.java +++ b/src/main/java/com/plaid/client/model/ItemAuthMethod.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ItemConsentedDataScope.java b/src/main/java/com/plaid/client/model/ItemConsentedDataScope.java index c8782a052..1526cbacf 100644 --- a/src/main/java/com/plaid/client/model/ItemConsentedDataScope.java +++ b/src/main/java/com/plaid/client/model/ItemConsentedDataScope.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ItemCreateAuthentication.java b/src/main/java/com/plaid/client/model/ItemCreateAuthentication.java index c41556494..bb7914796 100644 --- a/src/main/java/com/plaid/client/model/ItemCreateAuthentication.java +++ b/src/main/java/com/plaid/client/model/ItemCreateAuthentication.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ItemErrorWebhook.java b/src/main/java/com/plaid/client/model/ItemErrorWebhook.java index 9680977e6..0562c506a 100644 --- a/src/main/java/com/plaid/client/model/ItemErrorWebhook.java +++ b/src/main/java/com/plaid/client/model/ItemErrorWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Fired when an error is encountered with an Item. The error can be resolved by having the user go through Link’s update mode. */ @ApiModel(description = "Fired when an error is encountered with an Item. The error can be resolved by having the user go through Link’s update mode.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemErrorWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/ItemGetRequest.java b/src/main/java/com/plaid/client/model/ItemGetRequest.java index 3e80b4910..d23492377 100644 --- a/src/main/java/com/plaid/client/model/ItemGetRequest.java +++ b/src/main/java/com/plaid/client/model/ItemGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ItemGetRequest defines the request schema for `/item/get` */ @ApiModel(description = "ItemGetRequest defines the request schema for `/item/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ItemGetResponse.java b/src/main/java/com/plaid/client/model/ItemGetResponse.java index dd35f34c8..9722797b5 100644 --- a/src/main/java/com/plaid/client/model/ItemGetResponse.java +++ b/src/main/java/com/plaid/client/model/ItemGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * ItemGetResponse defines the response schema for `/item/get` and `/item/webhook/update` */ @ApiModel(description = "ItemGetResponse defines the response schema for `/item/get` and `/item/webhook/update`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemGetResponse { public static final String SERIALIZED_NAME_ITEM = "item"; @SerializedName(SERIALIZED_NAME_ITEM) diff --git a/src/main/java/com/plaid/client/model/ItemImportRequest.java b/src/main/java/com/plaid/client/model/ItemImportRequest.java index 04f588a6d..5ee60b76b 100644 --- a/src/main/java/com/plaid/client/model/ItemImportRequest.java +++ b/src/main/java/com/plaid/client/model/ItemImportRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * ItemImportRequest defines the request schema for `/item/import` */ @ApiModel(description = "ItemImportRequest defines the request schema for `/item/import`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemImportRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ItemImportRequestOptions.java b/src/main/java/com/plaid/client/model/ItemImportRequestOptions.java index ce34aec5c..3c929db17 100644 --- a/src/main/java/com/plaid/client/model/ItemImportRequestOptions.java +++ b/src/main/java/com/plaid/client/model/ItemImportRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An optional object to configure `/item/import` request. */ @ApiModel(description = "An optional object to configure `/item/import` request.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemImportRequestOptions { public static final String SERIALIZED_NAME_WEBHOOK = "webhook"; @SerializedName(SERIALIZED_NAME_WEBHOOK) diff --git a/src/main/java/com/plaid/client/model/ItemImportRequestUserAuth.java b/src/main/java/com/plaid/client/model/ItemImportRequestUserAuth.java index 501c55ba3..114998d7f 100644 --- a/src/main/java/com/plaid/client/model/ItemImportRequestUserAuth.java +++ b/src/main/java/com/plaid/client/model/ItemImportRequestUserAuth.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Object of user ID and auth token pair, permitting Plaid to aggregate a user’s accounts */ @ApiModel(description = "Object of user ID and auth token pair, permitting Plaid to aggregate a user’s accounts") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemImportRequestUserAuth { public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) diff --git a/src/main/java/com/plaid/client/model/ItemImportResponse.java b/src/main/java/com/plaid/client/model/ItemImportResponse.java index 4b76caf89..f0e049a4e 100644 --- a/src/main/java/com/plaid/client/model/ItemImportResponse.java +++ b/src/main/java/com/plaid/client/model/ItemImportResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ItemImportResponse defines the response schema for `/item/import` */ @ApiModel(description = "ItemImportResponse defines the response schema for `/item/import`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemImportResponse { public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) diff --git a/src/main/java/com/plaid/client/model/ItemLoginRepairedWebhook.java b/src/main/java/com/plaid/client/model/ItemLoginRepairedWebhook.java index 1f57f2d21..520bb1656 100644 --- a/src/main/java/com/plaid/client/model/ItemLoginRepairedWebhook.java +++ b/src/main/java/com/plaid/client/model/ItemLoginRepairedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when an Item has exited the `ITEM_LOGIN_REQUIRED` state without the user having gone through the update mode flow in your app (this can happen if the user completed the update mode in a different app). If you have messaging that tells the user to complete the update mode flow, you should silence this messaging upon receiving the `LOGIN_REPAIRED` webhook. */ @ApiModel(description = "Fired when an Item has exited the `ITEM_LOGIN_REQUIRED` state without the user having gone through the update mode flow in your app (this can happen if the user completed the update mode in a different app). If you have messaging that tells the user to complete the update mode flow, you should silence this messaging upon receiving the `LOGIN_REPAIRED` webhook.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemLoginRepairedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/ItemProductReadyWebhook.java b/src/main/java/com/plaid/client/model/ItemProductReadyWebhook.java index cb22811c0..cfccfb5a8 100644 --- a/src/main/java/com/plaid/client/model/ItemProductReadyWebhook.java +++ b/src/main/java/com/plaid/client/model/ItemProductReadyWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Fired once Plaid calculates income from an Item. */ @ApiModel(description = "Fired once Plaid calculates income from an Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemProductReadyWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/ItemPublicTokenCreateRequest.java b/src/main/java/com/plaid/client/model/ItemPublicTokenCreateRequest.java index d1116575b..37cf655de 100644 --- a/src/main/java/com/plaid/client/model/ItemPublicTokenCreateRequest.java +++ b/src/main/java/com/plaid/client/model/ItemPublicTokenCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ItemPublicTokenCreateRequest defines the request schema for `/item/public_token/create` */ @ApiModel(description = "ItemPublicTokenCreateRequest defines the request schema for `/item/public_token/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemPublicTokenCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ItemPublicTokenCreateResponse.java b/src/main/java/com/plaid/client/model/ItemPublicTokenCreateResponse.java index 5946599a0..694eccca8 100644 --- a/src/main/java/com/plaid/client/model/ItemPublicTokenCreateResponse.java +++ b/src/main/java/com/plaid/client/model/ItemPublicTokenCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ItemPublicTokenCreateResponse defines the response schema for `/item/public_token/create` */ @ApiModel(description = "ItemPublicTokenCreateResponse defines the response schema for `/item/public_token/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemPublicTokenCreateResponse { public static final String SERIALIZED_NAME_PUBLIC_TOKEN = "public_token"; @SerializedName(SERIALIZED_NAME_PUBLIC_TOKEN) diff --git a/src/main/java/com/plaid/client/model/ItemPublicTokenExchangeRequest.java b/src/main/java/com/plaid/client/model/ItemPublicTokenExchangeRequest.java index 7576cdfe8..2a9d0c55e 100644 --- a/src/main/java/com/plaid/client/model/ItemPublicTokenExchangeRequest.java +++ b/src/main/java/com/plaid/client/model/ItemPublicTokenExchangeRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ItemPublicTokenExchangeRequest defines the request schema for `/item/public_token/exchange` */ @ApiModel(description = "ItemPublicTokenExchangeRequest defines the request schema for `/item/public_token/exchange`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemPublicTokenExchangeRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ItemPublicTokenExchangeResponse.java b/src/main/java/com/plaid/client/model/ItemPublicTokenExchangeResponse.java index 8d35a62de..e242ec501 100644 --- a/src/main/java/com/plaid/client/model/ItemPublicTokenExchangeResponse.java +++ b/src/main/java/com/plaid/client/model/ItemPublicTokenExchangeResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ItemPublicTokenExchangeResponse defines the response schema for `/item/public_token/exchange` */ @ApiModel(description = "ItemPublicTokenExchangeResponse defines the response schema for `/item/public_token/exchange`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemPublicTokenExchangeResponse { public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) diff --git a/src/main/java/com/plaid/client/model/ItemRemoveReasonCode.java b/src/main/java/com/plaid/client/model/ItemRemoveReasonCode.java index cf831c5a1..a74439646 100644 --- a/src/main/java/com/plaid/client/model/ItemRemoveReasonCode.java +++ b/src/main/java/com/plaid/client/model/ItemRemoveReasonCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ItemRemoveRequest.java b/src/main/java/com/plaid/client/model/ItemRemoveRequest.java index 2ffc75336..7319e5f56 100644 --- a/src/main/java/com/plaid/client/model/ItemRemoveRequest.java +++ b/src/main/java/com/plaid/client/model/ItemRemoveRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ItemRemoveRequest defines the request schema for `/item/remove` */ @ApiModel(description = "ItemRemoveRequest defines the request schema for `/item/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemRemoveRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ItemRemoveResponse.java b/src/main/java/com/plaid/client/model/ItemRemoveResponse.java index 0e96a1cd1..cd2ed4d41 100644 --- a/src/main/java/com/plaid/client/model/ItemRemoveResponse.java +++ b/src/main/java/com/plaid/client/model/ItemRemoveResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ItemRemoveResponse defines the response schema for `/item/remove` */ @ApiModel(description = "ItemRemoveResponse defines the response schema for `/item/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemRemoveResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/ItemStatus.java b/src/main/java/com/plaid/client/model/ItemStatus.java index 362ba68b9..9de33509c 100644 --- a/src/main/java/com/plaid/client/model/ItemStatus.java +++ b/src/main/java/com/plaid/client/model/ItemStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * An object with information about the status of the Item. */ @ApiModel(description = "An object with information about the status of the Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemStatus { public static final String SERIALIZED_NAME_INVESTMENTS = "investments"; @SerializedName(SERIALIZED_NAME_INVESTMENTS) diff --git a/src/main/java/com/plaid/client/model/ItemStatusInvestments.java b/src/main/java/com/plaid/client/model/ItemStatusInvestments.java index 05cf82c37..daccad7f1 100644 --- a/src/main/java/com/plaid/client/model/ItemStatusInvestments.java +++ b/src/main/java/com/plaid/client/model/ItemStatusInvestments.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Information about the last successful and failed investments update for the Item. */ @ApiModel(description = "Information about the last successful and failed investments update for the Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemStatusInvestments { public static final String SERIALIZED_NAME_LAST_SUCCESSFUL_UPDATE = "last_successful_update"; @SerializedName(SERIALIZED_NAME_LAST_SUCCESSFUL_UPDATE) diff --git a/src/main/java/com/plaid/client/model/ItemStatusLastWebhook.java b/src/main/java/com/plaid/client/model/ItemStatusLastWebhook.java index a31ccca73..5aafd162c 100644 --- a/src/main/java/com/plaid/client/model/ItemStatusLastWebhook.java +++ b/src/main/java/com/plaid/client/model/ItemStatusLastWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Information about the last webhook fired for the Item. */ @ApiModel(description = "Information about the last webhook fired for the Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemStatusLastWebhook { public static final String SERIALIZED_NAME_SENT_AT = "sent_at"; @SerializedName(SERIALIZED_NAME_SENT_AT) diff --git a/src/main/java/com/plaid/client/model/ItemStatusNullable.java b/src/main/java/com/plaid/client/model/ItemStatusNullable.java index 492dfa3ec..1bf97a7a6 100644 --- a/src/main/java/com/plaid/client/model/ItemStatusNullable.java +++ b/src/main/java/com/plaid/client/model/ItemStatusNullable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Information about the last successful and failed transactions update for the Item. */ @ApiModel(description = "Information about the last successful and failed transactions update for the Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemStatusNullable { public static final String SERIALIZED_NAME_INVESTMENTS = "investments"; @SerializedName(SERIALIZED_NAME_INVESTMENTS) diff --git a/src/main/java/com/plaid/client/model/ItemStatusTransactions.java b/src/main/java/com/plaid/client/model/ItemStatusTransactions.java index 9aa7774d6..fbf786b0e 100644 --- a/src/main/java/com/plaid/client/model/ItemStatusTransactions.java +++ b/src/main/java/com/plaid/client/model/ItemStatusTransactions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Information about the last successful and failed transactions update for the Item. */ @ApiModel(description = "Information about the last successful and failed transactions update for the Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemStatusTransactions { public static final String SERIALIZED_NAME_LAST_SUCCESSFUL_UPDATE = "last_successful_update"; @SerializedName(SERIALIZED_NAME_LAST_SUCCESSFUL_UPDATE) diff --git a/src/main/java/com/plaid/client/model/ItemWebhookUpdateRequest.java b/src/main/java/com/plaid/client/model/ItemWebhookUpdateRequest.java index a93b7ee24..38fdf8d7e 100644 --- a/src/main/java/com/plaid/client/model/ItemWebhookUpdateRequest.java +++ b/src/main/java/com/plaid/client/model/ItemWebhookUpdateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ItemWebhookUpdateRequest defines the request schema for `/item/webhook/update` */ @ApiModel(description = "ItemWebhookUpdateRequest defines the request schema for `/item/webhook/update`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemWebhookUpdateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ItemWebhookUpdateResponse.java b/src/main/java/com/plaid/client/model/ItemWebhookUpdateResponse.java index ea2314e42..4efa957ef 100644 --- a/src/main/java/com/plaid/client/model/ItemWebhookUpdateResponse.java +++ b/src/main/java/com/plaid/client/model/ItemWebhookUpdateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ItemWebhookUpdateResponse defines the response schema for `/item/webhook/update` */ @ApiModel(description = "ItemWebhookUpdateResponse defines the response schema for `/item/webhook/update`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemWebhookUpdateResponse { public static final String SERIALIZED_NAME_ITEM = "item"; @SerializedName(SERIALIZED_NAME_ITEM) diff --git a/src/main/java/com/plaid/client/model/ItemWithConsentFields.java b/src/main/java/com/plaid/client/model/ItemWithConsentFields.java index 77d19021c..558fd06db 100644 --- a/src/main/java/com/plaid/client/model/ItemWithConsentFields.java +++ b/src/main/java/com/plaid/client/model/ItemWithConsentFields.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -37,7 +37,7 @@ * Metadata about the Item */ @ApiModel(description = "Metadata about the Item") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemWithConsentFields { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) diff --git a/src/main/java/com/plaid/client/model/ItemWithConsentFieldsAllOf.java b/src/main/java/com/plaid/client/model/ItemWithConsentFieldsAllOf.java index d997a83d4..f56d5dc83 100644 --- a/src/main/java/com/plaid/client/model/ItemWithConsentFieldsAllOf.java +++ b/src/main/java/com/plaid/client/model/ItemWithConsentFieldsAllOf.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ /** * ItemWithConsentFieldsAllOf */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ItemWithConsentFieldsAllOf { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) diff --git a/src/main/java/com/plaid/client/model/JWKPublicKey.java b/src/main/java/com/plaid/client/model/JWKPublicKey.java index 2ca834a3a..cce1159a4 100644 --- a/src/main/java/com/plaid/client/model/JWKPublicKey.java +++ b/src/main/java/com/plaid/client/model/JWKPublicKey.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * A JSON Web Key (JWK) that can be used in conjunction with [JWT libraries](https://jwt.io/#libraries-io) to verify Plaid webhooks */ @ApiModel(description = "A JSON Web Key (JWK) that can be used in conjunction with [JWT libraries](https://jwt.io/#libraries-io) to verify Plaid webhooks") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class JWKPublicKey { public static final String SERIALIZED_NAME_ALG = "alg"; @SerializedName(SERIALIZED_NAME_ALG) diff --git a/src/main/java/com/plaid/client/model/JWTHeader.java b/src/main/java/com/plaid/client/model/JWTHeader.java index 41d340fa9..cfc3df5f7 100644 --- a/src/main/java/com/plaid/client/model/JWTHeader.java +++ b/src/main/java/com/plaid/client/model/JWTHeader.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * A JWT Header, used for webhook validation */ @ApiModel(description = "A JWT Header, used for webhook validation") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class JWTHeader { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/KYCCheckAddressSummary.java b/src/main/java/com/plaid/client/model/KYCCheckAddressSummary.java index 4deaba2ac..7846df8be 100644 --- a/src/main/java/com/plaid/client/model/KYCCheckAddressSummary.java +++ b/src/main/java/com/plaid/client/model/KYCCheckAddressSummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Result summary object specifying how the `address` field matched. */ @ApiModel(description = "Result summary object specifying how the `address` field matched.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class KYCCheckAddressSummary { public static final String SERIALIZED_NAME_SUMMARY = "summary"; @SerializedName(SERIALIZED_NAME_SUMMARY) diff --git a/src/main/java/com/plaid/client/model/KYCCheckDateOfBirthSummary.java b/src/main/java/com/plaid/client/model/KYCCheckDateOfBirthSummary.java index 32fbb10b7..18dd463a4 100644 --- a/src/main/java/com/plaid/client/model/KYCCheckDateOfBirthSummary.java +++ b/src/main/java/com/plaid/client/model/KYCCheckDateOfBirthSummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Result summary object specifying how the `date_of_birth` field matched. */ @ApiModel(description = "Result summary object specifying how the `date_of_birth` field matched.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class KYCCheckDateOfBirthSummary { public static final String SERIALIZED_NAME_SUMMARY = "summary"; @SerializedName(SERIALIZED_NAME_SUMMARY) diff --git a/src/main/java/com/plaid/client/model/KYCCheckDetails.java b/src/main/java/com/plaid/client/model/KYCCheckDetails.java index 1ad434adc..83ea97544 100644 --- a/src/main/java/com/plaid/client/model/KYCCheckDetails.java +++ b/src/main/java/com/plaid/client/model/KYCCheckDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Additional information for the `kyc_check` (Data Source Verification) step. This field will be `null` unless `steps.kyc_check` has reached a terminal state of either `success` or `failed`. */ @ApiModel(description = "Additional information for the `kyc_check` (Data Source Verification) step. This field will be `null` unless `steps.kyc_check` has reached a terminal state of either `success` or `failed`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class KYCCheckDetails { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/KYCCheckDetailsInternationalAddress.java b/src/main/java/com/plaid/client/model/KYCCheckDetailsInternationalAddress.java index bd2f924e6..d95df60eb 100644 --- a/src/main/java/com/plaid/client/model/KYCCheckDetailsInternationalAddress.java +++ b/src/main/java/com/plaid/client/model/KYCCheckDetailsInternationalAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Result summary object specifying how the `address` field matched for fields that are only present on an international KYC check. */ @ApiModel(description = "Result summary object specifying how the `address` field matched for fields that are only present on an international KYC check.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class KYCCheckDetailsInternationalAddress { public static final String SERIALIZED_NAME_BUILDING = "building"; @SerializedName(SERIALIZED_NAME_BUILDING) diff --git a/src/main/java/com/plaid/client/model/KYCCheckIDNumberSummary.java b/src/main/java/com/plaid/client/model/KYCCheckIDNumberSummary.java index e73c4330f..8edcf4619 100644 --- a/src/main/java/com/plaid/client/model/KYCCheckIDNumberSummary.java +++ b/src/main/java/com/plaid/client/model/KYCCheckIDNumberSummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Result summary object specifying how the `id_number` field matched. */ @ApiModel(description = "Result summary object specifying how the `id_number` field matched.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class KYCCheckIDNumberSummary { public static final String SERIALIZED_NAME_SUMMARY = "summary"; @SerializedName(SERIALIZED_NAME_SUMMARY) diff --git a/src/main/java/com/plaid/client/model/KYCCheckNameSummary.java b/src/main/java/com/plaid/client/model/KYCCheckNameSummary.java index 11564a067..34a49f495 100644 --- a/src/main/java/com/plaid/client/model/KYCCheckNameSummary.java +++ b/src/main/java/com/plaid/client/model/KYCCheckNameSummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Result summary object specifying how the `name` field matched. */ @ApiModel(description = "Result summary object specifying how the `name` field matched.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class KYCCheckNameSummary { public static final String SERIALIZED_NAME_SUMMARY = "summary"; @SerializedName(SERIALIZED_NAME_SUMMARY) diff --git a/src/main/java/com/plaid/client/model/KYCCheckPhoneSummary.java b/src/main/java/com/plaid/client/model/KYCCheckPhoneSummary.java index e0c82c8ea..a35d0cbeb 100644 --- a/src/main/java/com/plaid/client/model/KYCCheckPhoneSummary.java +++ b/src/main/java/com/plaid/client/model/KYCCheckPhoneSummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Result summary object specifying how the `phone` field matched. */ @ApiModel(description = "Result summary object specifying how the `phone` field matched.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class KYCCheckPhoneSummary { public static final String SERIALIZED_NAME_SUMMARY = "summary"; @SerializedName(SERIALIZED_NAME_SUMMARY) diff --git a/src/main/java/com/plaid/client/model/LastDataAccessTimes.java b/src/main/java/com/plaid/client/model/LastDataAccessTimes.java index f904516b8..41dfc5185 100644 --- a/src/main/java/com/plaid/client/model/LastDataAccessTimes.java +++ b/src/main/java/com/plaid/client/model/LastDataAccessTimes.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Describes the last time each datatype was accessed by an application. */ @ApiModel(description = "Describes the last time each datatype was accessed by an application.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LastDataAccessTimes { public static final String SERIALIZED_NAME_APPLICATION_ID = "application_id"; @SerializedName(SERIALIZED_NAME_APPLICATION_ID) diff --git a/src/main/java/com/plaid/client/model/LatestScoredEvent.java b/src/main/java/com/plaid/client/model/LatestScoredEvent.java index 6955cdc3d..42dac0464 100644 --- a/src/main/java/com/plaid/client/model/LatestScoredEvent.java +++ b/src/main/java/com/plaid/client/model/LatestScoredEvent.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The latest scored event for a user. */ @ApiModel(description = "The latest scored event for a user.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LatestScoredEvent { public static final String SERIALIZED_NAME_EVENT_ID = "event_id"; @SerializedName(SERIALIZED_NAME_EVENT_ID) diff --git a/src/main/java/com/plaid/client/model/LayerAuthenticationPassedWebhook.java b/src/main/java/com/plaid/client/model/LayerAuthenticationPassedWebhook.java index 9e5c75c33..b03e27a97 100644 --- a/src/main/java/com/plaid/client/model/LayerAuthenticationPassedWebhook.java +++ b/src/main/java/com/plaid/client/model/LayerAuthenticationPassedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Indicates that Plaid's authentication process has completed for a user and that Plaid has verified that the user owns their phone number. If you receive this webhook, you should skip your own OTP phone number verification flow for the user, even if the user does not complete the entire Link flow. If the user doesn't complete the full Link flow (as verified by your being able to successfully call `/user_account/session/get` using the `public_token` from the `onSuccess` callback) it is recommended that you implement [webhook verification](https://plaid.com/docs/api/webhooks/webhook-verification/) or another technique to avoid webhook spoofing attacks. */ @ApiModel(description = "Indicates that Plaid's authentication process has completed for a user and that Plaid has verified that the user owns their phone number. If you receive this webhook, you should skip your own OTP phone number verification flow for the user, even if the user does not complete the entire Link flow. If the user doesn't complete the full Link flow (as verified by your being able to successfully call `/user_account/session/get` using the `public_token` from the `onSuccess` callback) it is recommended that you implement [webhook verification](https://plaid.com/docs/api/webhooks/webhook-verification/) or another technique to avoid webhook spoofing attacks.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LayerAuthenticationPassedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/LedgerEventSourceType.java b/src/main/java/com/plaid/client/model/LedgerEventSourceType.java index 559d6c854..72cefb128 100644 --- a/src/main/java/com/plaid/client/model/LedgerEventSourceType.java +++ b/src/main/java/com/plaid/client/model/LedgerEventSourceType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/LendScore.java b/src/main/java/com/plaid/client/model/LendScore.java index f094e3392..ace2469d0 100644 --- a/src/main/java/com/plaid/client/model/LendScore.java +++ b/src/main/java/com/plaid/client/model/LendScore.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The results of the LendScore */ @ApiModel(description = "The results of the LendScore") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LendScore { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) diff --git a/src/main/java/com/plaid/client/model/LiabilitiesDefaultUpdateWebhook.java b/src/main/java/com/plaid/client/model/LiabilitiesDefaultUpdateWebhook.java index 5ec5ad545..17b7eafdd 100644 --- a/src/main/java/com/plaid/client/model/LiabilitiesDefaultUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/LiabilitiesDefaultUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * The webhook of type `LIABILITIES` and code `DEFAULT_UPDATE` will be fired when new or updated liabilities have been detected on a liabilities item. */ @ApiModel(description = "The webhook of type `LIABILITIES` and code `DEFAULT_UPDATE` will be fired when new or updated liabilities have been detected on a liabilities item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LiabilitiesDefaultUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/LiabilitiesGetRequest.java b/src/main/java/com/plaid/client/model/LiabilitiesGetRequest.java index 7e3c6b801..bd3089eb9 100644 --- a/src/main/java/com/plaid/client/model/LiabilitiesGetRequest.java +++ b/src/main/java/com/plaid/client/model/LiabilitiesGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * LiabilitiesGetRequest defines the request schema for `/liabilities/get` */ @ApiModel(description = "LiabilitiesGetRequest defines the request schema for `/liabilities/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LiabilitiesGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/LiabilitiesGetRequestOptions.java b/src/main/java/com/plaid/client/model/LiabilitiesGetRequestOptions.java index b7b0c8aa0..218d8f11d 100644 --- a/src/main/java/com/plaid/client/model/LiabilitiesGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/LiabilitiesGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An optional object to filter `/liabilities/get` results. If provided, `options` cannot be null. */ @ApiModel(description = "An optional object to filter `/liabilities/get` results. If provided, `options` cannot be null.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LiabilitiesGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) diff --git a/src/main/java/com/plaid/client/model/LiabilitiesGetResponse.java b/src/main/java/com/plaid/client/model/LiabilitiesGetResponse.java index cc0b8b2ce..a99bfc425 100644 --- a/src/main/java/com/plaid/client/model/LiabilitiesGetResponse.java +++ b/src/main/java/com/plaid/client/model/LiabilitiesGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * LiabilitiesGetResponse defines the response schema for `/liabilities/get` */ @ApiModel(description = "LiabilitiesGetResponse defines the response schema for `/liabilities/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LiabilitiesGetResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) diff --git a/src/main/java/com/plaid/client/model/LiabilitiesObject.java b/src/main/java/com/plaid/client/model/LiabilitiesObject.java index 28e51a202..72c6afbc0 100644 --- a/src/main/java/com/plaid/client/model/LiabilitiesObject.java +++ b/src/main/java/com/plaid/client/model/LiabilitiesObject.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * An object containing liability accounts */ @ApiModel(description = "An object containing liability accounts") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LiabilitiesObject { public static final String SERIALIZED_NAME_CREDIT = "credit"; @SerializedName(SERIALIZED_NAME_CREDIT) diff --git a/src/main/java/com/plaid/client/model/LiabilityOverride.java b/src/main/java/com/plaid/client/model/LiabilityOverride.java index b82db5167..4710da088 100644 --- a/src/main/java/com/plaid/client/model/LiabilityOverride.java +++ b/src/main/java/com/plaid/client/model/LiabilityOverride.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * Used to configure Sandbox test data for the Liabilities product */ @ApiModel(description = "Used to configure Sandbox test data for the Liabilities product") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LiabilityOverride { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) diff --git a/src/main/java/com/plaid/client/model/LinkCallbackMetadata.java b/src/main/java/com/plaid/client/model/LinkCallbackMetadata.java index 4a2778322..b7e8cbcc6 100644 --- a/src/main/java/com/plaid/client/model/LinkCallbackMetadata.java +++ b/src/main/java/com/plaid/client/model/LinkCallbackMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * Information related to the callback from the Hosted Link session. */ @ApiModel(description = "Information related to the callback from the Hosted Link session.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkCallbackMetadata { public static final String SERIALIZED_NAME_CALLBACK_TYPE = "callback_type"; @SerializedName(SERIALIZED_NAME_CALLBACK_TYPE) diff --git a/src/main/java/com/plaid/client/model/LinkDeliveryAccount.java b/src/main/java/com/plaid/client/model/LinkDeliveryAccount.java index a6c6ccf5f..251045a85 100644 --- a/src/main/java/com/plaid/client/model/LinkDeliveryAccount.java +++ b/src/main/java/com/plaid/client/model/LinkDeliveryAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Information related to account attached to the connected Item */ @ApiModel(description = "Information related to account attached to the connected Item") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkDeliveryAccount { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/LinkDeliveryCallbackWebhook.java b/src/main/java/com/plaid/client/model/LinkDeliveryCallbackWebhook.java index cf4c5797b..f01c95897 100644 --- a/src/main/java/com/plaid/client/model/LinkDeliveryCallbackWebhook.java +++ b/src/main/java/com/plaid/client/model/LinkDeliveryCallbackWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Webhook containing metadata proxied over from Link callback e.g `onEvent`, `onExit`, `onSuccess`. */ @ApiModel(description = "Webhook containing metadata proxied over from Link callback e.g `onEvent`, `onExit`, `onSuccess`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkDeliveryCallbackWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/LinkDeliveryCommunicationMethod.java b/src/main/java/com/plaid/client/model/LinkDeliveryCommunicationMethod.java index db9496a6c..c7246a11d 100644 --- a/src/main/java/com/plaid/client/model/LinkDeliveryCommunicationMethod.java +++ b/src/main/java/com/plaid/client/model/LinkDeliveryCommunicationMethod.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The communication method containing both the type and address to send the URL. */ @ApiModel(description = "The communication method containing both the type and address to send the URL.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkDeliveryCommunicationMethod { public static final String SERIALIZED_NAME_METHOD = "method"; @SerializedName(SERIALIZED_NAME_METHOD) diff --git a/src/main/java/com/plaid/client/model/LinkDeliveryCreateRequest.java b/src/main/java/com/plaid/client/model/LinkDeliveryCreateRequest.java index 6875f8a5d..4caadf780 100644 --- a/src/main/java/com/plaid/client/model/LinkDeliveryCreateRequest.java +++ b/src/main/java/com/plaid/client/model/LinkDeliveryCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * LinkDeliveryCreateRequest defines the request schema for `/link_delivery/create` */ @ApiModel(description = "LinkDeliveryCreateRequest defines the request schema for `/link_delivery/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkDeliveryCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/LinkDeliveryCreateResponse.java b/src/main/java/com/plaid/client/model/LinkDeliveryCreateResponse.java index 58acc2dc2..b93a2e9eb 100644 --- a/src/main/java/com/plaid/client/model/LinkDeliveryCreateResponse.java +++ b/src/main/java/com/plaid/client/model/LinkDeliveryCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * LinkDeliveryCreateResponse defines the response schema for `/link_delivery/create` */ @ApiModel(description = "LinkDeliveryCreateResponse defines the response schema for `/link_delivery/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkDeliveryCreateResponse { public static final String SERIALIZED_NAME_LINK_DELIVERY_URL = "link_delivery_url"; @SerializedName(SERIALIZED_NAME_LINK_DELIVERY_URL) diff --git a/src/main/java/com/plaid/client/model/LinkDeliveryDeliveryMethod.java b/src/main/java/com/plaid/client/model/LinkDeliveryDeliveryMethod.java index efd8520bb..7048a3634 100644 --- a/src/main/java/com/plaid/client/model/LinkDeliveryDeliveryMethod.java +++ b/src/main/java/com/plaid/client/model/LinkDeliveryDeliveryMethod.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/LinkDeliveryGetRequest.java b/src/main/java/com/plaid/client/model/LinkDeliveryGetRequest.java index f626fa56c..dc48c4592 100644 --- a/src/main/java/com/plaid/client/model/LinkDeliveryGetRequest.java +++ b/src/main/java/com/plaid/client/model/LinkDeliveryGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * LinkDeliveryGetRequest defines the request schema for `/link_delivery/get` */ @ApiModel(description = "LinkDeliveryGetRequest defines the request schema for `/link_delivery/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkDeliveryGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/LinkDeliveryGetResponse.java b/src/main/java/com/plaid/client/model/LinkDeliveryGetResponse.java index 9e3f339aa..78e985015 100644 --- a/src/main/java/com/plaid/client/model/LinkDeliveryGetResponse.java +++ b/src/main/java/com/plaid/client/model/LinkDeliveryGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * LinkDeliveryGetRequest defines the response schema for `/link_delivery/get` */ @ApiModel(description = "LinkDeliveryGetRequest defines the response schema for `/link_delivery/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkDeliveryGetResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/LinkDeliveryInstitution.java b/src/main/java/com/plaid/client/model/LinkDeliveryInstitution.java index 7603abdf4..67636520f 100644 --- a/src/main/java/com/plaid/client/model/LinkDeliveryInstitution.java +++ b/src/main/java/com/plaid/client/model/LinkDeliveryInstitution.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Information related to the financial institution. */ @ApiModel(description = "Information related to the financial institution.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkDeliveryInstitution { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/LinkDeliveryMetadata.java b/src/main/java/com/plaid/client/model/LinkDeliveryMetadata.java index e639ef9ba..4a671e08a 100644 --- a/src/main/java/com/plaid/client/model/LinkDeliveryMetadata.java +++ b/src/main/java/com/plaid/client/model/LinkDeliveryMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Information related to the related to the delivery of the link session to users */ @ApiModel(description = "Information related to the related to the delivery of the link session to users") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkDeliveryMetadata { public static final String SERIALIZED_NAME_COMMUNICATION_METHOD = "communication_method"; @SerializedName(SERIALIZED_NAME_COMMUNICATION_METHOD) diff --git a/src/main/java/com/plaid/client/model/LinkDeliveryOptions.java b/src/main/java/com/plaid/client/model/LinkDeliveryOptions.java index 4a4329373..09dbe6c3b 100644 --- a/src/main/java/com/plaid/client/model/LinkDeliveryOptions.java +++ b/src/main/java/com/plaid/client/model/LinkDeliveryOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Optional metadata related to the Hosted Link session */ @ApiModel(description = "Optional metadata related to the Hosted Link session") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkDeliveryOptions { public static final String SERIALIZED_NAME_RECIPIENT = "recipient"; @SerializedName(SERIALIZED_NAME_RECIPIENT) diff --git a/src/main/java/com/plaid/client/model/LinkDeliveryRecipient.java b/src/main/java/com/plaid/client/model/LinkDeliveryRecipient.java index 77090c18c..86aa4ab9e 100644 --- a/src/main/java/com/plaid/client/model/LinkDeliveryRecipient.java +++ b/src/main/java/com/plaid/client/model/LinkDeliveryRecipient.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkDeliveryRecipient { public static final String SERIALIZED_NAME_COMMUNICATION_METHODS = "communication_methods"; @SerializedName(SERIALIZED_NAME_COMMUNICATION_METHODS) diff --git a/src/main/java/com/plaid/client/model/LinkDeliverySessionStatus.java b/src/main/java/com/plaid/client/model/LinkDeliverySessionStatus.java index a5891dc98..66b8dd749 100644 --- a/src/main/java/com/plaid/client/model/LinkDeliverySessionStatus.java +++ b/src/main/java/com/plaid/client/model/LinkDeliverySessionStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/LinkDeliveryVerificationStatus.java b/src/main/java/com/plaid/client/model/LinkDeliveryVerificationStatus.java index 0bd8daeb1..2b811c2f4 100644 --- a/src/main/java/com/plaid/client/model/LinkDeliveryVerificationStatus.java +++ b/src/main/java/com/plaid/client/model/LinkDeliveryVerificationStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/LinkDeliveryWebhookCallbackType.java b/src/main/java/com/plaid/client/model/LinkDeliveryWebhookCallbackType.java index de3718968..39d535067 100644 --- a/src/main/java/com/plaid/client/model/LinkDeliveryWebhookCallbackType.java +++ b/src/main/java/com/plaid/client/model/LinkDeliveryWebhookCallbackType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/LinkDeliveryWebhookCommunicationMethod.java b/src/main/java/com/plaid/client/model/LinkDeliveryWebhookCommunicationMethod.java index 4b16e1283..fad84c309 100644 --- a/src/main/java/com/plaid/client/model/LinkDeliveryWebhookCommunicationMethod.java +++ b/src/main/java/com/plaid/client/model/LinkDeliveryWebhookCommunicationMethod.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/LinkDeliveryWebhookDeliveryStatus.java b/src/main/java/com/plaid/client/model/LinkDeliveryWebhookDeliveryStatus.java index 8a60d6cc3..ff0e40668 100644 --- a/src/main/java/com/plaid/client/model/LinkDeliveryWebhookDeliveryStatus.java +++ b/src/main/java/com/plaid/client/model/LinkDeliveryWebhookDeliveryStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/LinkEvent.java b/src/main/java/com/plaid/client/model/LinkEvent.java index 1d5ed0734..70b85e523 100644 --- a/src/main/java/com/plaid/client/model/LinkEvent.java +++ b/src/main/java/com/plaid/client/model/LinkEvent.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An event that occurred while the user was going through Link */ @ApiModel(description = "An event that occurred while the user was going through Link") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkEvent { public static final String SERIALIZED_NAME_EVENT_NAME = "event_name"; @SerializedName(SERIALIZED_NAME_EVENT_NAME) diff --git a/src/main/java/com/plaid/client/model/LinkEventMetadata.java b/src/main/java/com/plaid/client/model/LinkEventMetadata.java index 3e3b8c7a4..63c500422 100644 --- a/src/main/java/com/plaid/client/model/LinkEventMetadata.java +++ b/src/main/java/com/plaid/client/model/LinkEventMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Metadata about an event that occurred while the user was going through Link */ @ApiModel(description = "Metadata about an event that occurred while the user was going through Link") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkEventMetadata { public static final String SERIALIZED_NAME_ERROR_CODE = "error_code"; @SerializedName(SERIALIZED_NAME_ERROR_CODE) diff --git a/src/main/java/com/plaid/client/model/LinkEventName.java b/src/main/java/com/plaid/client/model/LinkEventName.java index ea6354278..20efc77e7 100644 --- a/src/main/java/com/plaid/client/model/LinkEventName.java +++ b/src/main/java/com/plaid/client/model/LinkEventName.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/LinkEventsWebhook.java b/src/main/java/com/plaid/client/model/LinkEventsWebhook.java index ef2c99c54..084b34821 100644 --- a/src/main/java/com/plaid/client/model/LinkEventsWebhook.java +++ b/src/main/java/com/plaid/client/model/LinkEventsWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * This webhook contains a summary of the events from a Link session and will be fired after the user finishes going through Link. If the user abandons the Link flow (i.e., closes the hosted link webpage or leaves Link open for too long without taking any action), the webhook will be fired 5-15 minutes after the last user interaction. A single Link session may occasionally generate multiple `EVENTS` webhooks. If this occurs, the new webhook will contain all previous events for the session, as well as new events that occurred since the previous `EVENTS` webhook was sent. If this occurs, events can be grouped using the `link_session_id` field and, if necessary, de-duplicated using the `event_id` field. By default, the `EVENTS` webhook is sent only for sessions where the end user goes through a Hosted Link flow (including Link Recovery flows). If you would like to receive this webhook for sessions not using Hosted Link, contact your Account Manager or Support. This enablement will also cause you to receive the `SESSION_FINISHED` webhook for non-Hosted-Link sessions and to be able to use `/link/token/get` to receive events data for non-Hosted Link sessions. */ @ApiModel(description = "This webhook contains a summary of the events from a Link session and will be fired after the user finishes going through Link. If the user abandons the Link flow (i.e., closes the hosted link webpage or leaves Link open for too long without taking any action), the webhook will be fired 5-15 minutes after the last user interaction. A single Link session may occasionally generate multiple `EVENTS` webhooks. If this occurs, the new webhook will contain all previous events for the session, as well as new events that occurred since the previous `EVENTS` webhook was sent. If this occurs, events can be grouped using the `link_session_id` field and, if necessary, de-duplicated using the `event_id` field. By default, the `EVENTS` webhook is sent only for sessions where the end user goes through a Hosted Link flow (including Link Recovery flows). If you would like to receive this webhook for sessions not using Hosted Link, contact your Account Manager or Support. This enablement will also cause you to receive the `SESSION_FINISHED` webhook for non-Hosted-Link sessions and to be able to use `/link/token/get` to receive events data for non-Hosted Link sessions.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkEventsWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/LinkOAuthCorrelationIdExchangeRequest.java b/src/main/java/com/plaid/client/model/LinkOAuthCorrelationIdExchangeRequest.java index 6446a00c4..e2ef7fc8f 100644 --- a/src/main/java/com/plaid/client/model/LinkOAuthCorrelationIdExchangeRequest.java +++ b/src/main/java/com/plaid/client/model/LinkOAuthCorrelationIdExchangeRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * LinkOAuthCorrelationIdExchangeRequest defines the request schema for `/link/oauth/correlation_id/exchange` */ @ApiModel(description = "LinkOAuthCorrelationIdExchangeRequest defines the request schema for `/link/oauth/correlation_id/exchange`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkOAuthCorrelationIdExchangeRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/LinkOAuthCorrelationIdExchangeResponse.java b/src/main/java/com/plaid/client/model/LinkOAuthCorrelationIdExchangeResponse.java index bdb15a6ba..f3ae6e9b1 100644 --- a/src/main/java/com/plaid/client/model/LinkOAuthCorrelationIdExchangeResponse.java +++ b/src/main/java/com/plaid/client/model/LinkOAuthCorrelationIdExchangeResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * LinkOAuthCorrelationIdExchangeResponse defines the response schema for `/link/oauth/correlation_id/exchange` */ @ApiModel(description = "LinkOAuthCorrelationIdExchangeResponse defines the response schema for `/link/oauth/correlation_id/exchange`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkOAuthCorrelationIdExchangeResponse { public static final String SERIALIZED_NAME_LINK_TOKEN = "link_token"; @SerializedName(SERIALIZED_NAME_LINK_TOKEN) diff --git a/src/main/java/com/plaid/client/model/LinkSessionBankEmploymentResult.java b/src/main/java/com/plaid/client/model/LinkSessionBankEmploymentResult.java index 8ac59b57c..9e26fc430 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionBankEmploymentResult.java +++ b/src/main/java/com/plaid/client/model/LinkSessionBankEmploymentResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The details of a bank employment verification in Link. */ @ApiModel(description = "The details of a bank employment verification in Link.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionBankEmploymentResult { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/LinkSessionBankIncomeResult.java b/src/main/java/com/plaid/client/model/LinkSessionBankIncomeResult.java index 09731e70d..b9776fb64 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionBankIncomeResult.java +++ b/src/main/java/com/plaid/client/model/LinkSessionBankIncomeResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionBankIncomeResult { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/LinkSessionCraDocumentUploadResult.java b/src/main/java/com/plaid/client/model/LinkSessionCraDocumentUploadResult.java index 9bbc6d7c1..ed8744f1b 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionCraDocumentUploadResult.java +++ b/src/main/java/com/plaid/client/model/LinkSessionCraDocumentUploadResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The details of a document upload CRA session in link */ @ApiModel(description = "The details of a document upload CRA session in link") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionCraDocumentUploadResult { public static final String SERIALIZED_NAME_NUM_BANK_STATEMENTS_UPLOADED = "num_bank_statements_uploaded"; @SerializedName(SERIALIZED_NAME_NUM_BANK_STATEMENTS_UPLOADED) diff --git a/src/main/java/com/plaid/client/model/LinkSessionCraItemAddResult.java b/src/main/java/com/plaid/client/model/LinkSessionCraItemAddResult.java index 8cc41a957..76cf4b510 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionCraItemAddResult.java +++ b/src/main/java/com/plaid/client/model/LinkSessionCraItemAddResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * The details of a Plaid Check Item add in Link. */ @ApiModel(description = "The details of a Plaid Check Item add in Link.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionCraItemAddResult { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) diff --git a/src/main/java/com/plaid/client/model/LinkSessionCraUpdateResult.java b/src/main/java/com/plaid/client/model/LinkSessionCraUpdateResult.java index 159d0bfdf..321ad2b57 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionCraUpdateResult.java +++ b/src/main/java/com/plaid/client/model/LinkSessionCraUpdateResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * The details of a Plaid Check Item update via Update Mode in Link. */ @ApiModel(description = "The details of a Plaid Check Item update via Update Mode in Link.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionCraUpdateResult { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) diff --git a/src/main/java/com/plaid/client/model/LinkSessionExit.java b/src/main/java/com/plaid/client/model/LinkSessionExit.java index 58b9aa0bd..de9aa7834 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionExit.java +++ b/src/main/java/com/plaid/client/model/LinkSessionExit.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An object representing an [onExit](https://plaid.com/docs/link/web/#onexit) callback from Link. If you are not receiving this field and are instead receiving the deprecated `on_exit` field, contact your Account Manager to update your integration. */ @ApiModel(description = "An object representing an [onExit](https://plaid.com/docs/link/web/#onexit) callback from Link. If you are not receiving this field and are instead receiving the deprecated `on_exit` field, contact your Account Manager to update your integration.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionExit { public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) diff --git a/src/main/java/com/plaid/client/model/LinkSessionExitDeprecated.java b/src/main/java/com/plaid/client/model/LinkSessionExitDeprecated.java index 002fdebb5..72a72a753 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionExitDeprecated.java +++ b/src/main/java/com/plaid/client/model/LinkSessionExitDeprecated.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * 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. */ @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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionExitDeprecated { public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) diff --git a/src/main/java/com/plaid/client/model/LinkSessionExitMetadata.java b/src/main/java/com/plaid/client/model/LinkSessionExitMetadata.java index 08e9f2008..af64dc7e8 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionExitMetadata.java +++ b/src/main/java/com/plaid/client/model/LinkSessionExitMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Displayed if a user exits Link without successfully linking an Item. */ @ApiModel(description = "Displayed if a user exits Link without successfully linking an Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionExitMetadata { public static final String SERIALIZED_NAME_INSTITUTION = "institution"; @SerializedName(SERIALIZED_NAME_INSTITUTION) diff --git a/src/main/java/com/plaid/client/model/LinkSessionExitMetadataInstitution.java b/src/main/java/com/plaid/client/model/LinkSessionExitMetadataInstitution.java index ec78d847d..29b64273c 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionExitMetadataInstitution.java +++ b/src/main/java/com/plaid/client/model/LinkSessionExitMetadataInstitution.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An institution object. If the Item was created via Same-Day or Instant micro-deposit verification, will be `null`. */ @ApiModel(description = "An institution object. If the Item was created via Same-Day or Instant micro-deposit verification, will be `null`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionExitMetadataInstitution { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/LinkSessionFinishedWebhook.java b/src/main/java/com/plaid/client/model/LinkSessionFinishedWebhook.java index b410546d2..29acd88c7 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionFinishedWebhook.java +++ b/src/main/java/com/plaid/client/model/LinkSessionFinishedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Contains the state of a completed Link session, along with the public token(s) if available. By default, this webhook is sent only for sessions enabled for the Hosted Link flow (including Link Recovery flows), a Multi-Item Link flow, or a Layer flow. If you would like to receive this webhook for other sessions, contact your Account Manager or Support. This enablement will also enable the `EVENTS` webhook for all Link sessions and the ability to use `/link/token/get` to retrieve events for non-Hosted-Link sessions. */ @ApiModel(description = "Contains the state of a completed Link session, along with the public token(s) if available. By default, this webhook is sent only for sessions enabled for the Hosted Link flow (including Link Recovery flows), a Multi-Item Link flow, or a Layer flow. If you would like to receive this webhook for other sessions, contact your Account Manager or Support. This enablement will also enable the `EVENTS` webhook for all Link sessions and the ability to use `/link/token/get` to retrieve events for non-Hosted-Link sessions.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionFinishedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/LinkSessionItemAddResult.java b/src/main/java/com/plaid/client/model/LinkSessionItemAddResult.java index 32314e0ef..50b2ded80 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionItemAddResult.java +++ b/src/main/java/com/plaid/client/model/LinkSessionItemAddResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionItemAddResult { public static final String SERIALIZED_NAME_PUBLIC_TOKEN = "public_token"; @SerializedName(SERIALIZED_NAME_PUBLIC_TOKEN) diff --git a/src/main/java/com/plaid/client/model/LinkSessionPayrollIncomeResult.java b/src/main/java/com/plaid/client/model/LinkSessionPayrollIncomeResult.java index 2d18be7d2..f5957ea78 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionPayrollIncomeResult.java +++ b/src/main/java/com/plaid/client/model/LinkSessionPayrollIncomeResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The details of a digital payroll income verification in Link. */ @ApiModel(description = "The details of a digital payroll income verification in Link.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionPayrollIncomeResult { public static final String SERIALIZED_NAME_NUM_PAYSTUBS_RETRIEVED = "num_paystubs_retrieved"; @SerializedName(SERIALIZED_NAME_NUM_PAYSTUBS_RETRIEVED) diff --git a/src/main/java/com/plaid/client/model/LinkSessionProtectResult.java b/src/main/java/com/plaid/client/model/LinkSessionProtectResult.java index e9035ad6f..b70d31a7f 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionProtectResult.java +++ b/src/main/java/com/plaid/client/model/LinkSessionProtectResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Plaid Protect details from the Link session */ @ApiModel(description = "Plaid Protect details from the Link session") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionProtectResult { public static final String SERIALIZED_NAME_EVENT_ID = "event_id"; @SerializedName(SERIALIZED_NAME_EVENT_ID) diff --git a/src/main/java/com/plaid/client/model/LinkSessionResults.java b/src/main/java/com/plaid/client/model/LinkSessionResults.java index 38ba9703c..0fdda6930 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionResults.java +++ b/src/main/java/com/plaid/client/model/LinkSessionResults.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -38,7 +38,7 @@ * The set of results for a Link session. */ @ApiModel(description = "The set of results for a Link session.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionResults { public static final String SERIALIZED_NAME_ITEM_ADD_RESULTS = "item_add_results"; @SerializedName(SERIALIZED_NAME_ITEM_ADD_RESULTS) diff --git a/src/main/java/com/plaid/client/model/LinkSessionSuccess.java b/src/main/java/com/plaid/client/model/LinkSessionSuccess.java index 2779fe5a2..dc8b626d5 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionSuccess.java +++ b/src/main/java/com/plaid/client/model/LinkSessionSuccess.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object representing an [onSuccess](https://plaid.com/docs/link/web/#onsuccess) callback from Link. This field is returned only for legacy integrations and is deprecated in favor of [`results.item_add_results`](https://plaid.com/docs/api/link/#link-token-get-response-link-sessions-results-item-add-results) which can support multiple public tokens in a single Link session, for flows such as multi-Item Link. If you are receiving `on_success`, contact your Account Manager to migrate to `results.item_add_results` instead. */ @ApiModel(description = "An object representing an [onSuccess](https://plaid.com/docs/link/web/#onsuccess) callback from Link. This field is returned only for legacy integrations and is deprecated in favor of [`results.item_add_results`](https://plaid.com/docs/api/link/#link-token-get-response-link-sessions-results-item-add-results) which can support multiple public tokens in a single Link session, for flows such as multi-Item Link. If you are receiving `on_success`, contact your Account Manager to migrate to `results.item_add_results` instead.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionSuccess { public static final String SERIALIZED_NAME_PUBLIC_TOKEN = "public_token"; @SerializedName(SERIALIZED_NAME_PUBLIC_TOKEN) diff --git a/src/main/java/com/plaid/client/model/LinkSessionSuccessMetadata.java b/src/main/java/com/plaid/client/model/LinkSessionSuccessMetadata.java index 11d7daf3b..ce4a75d5f 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionSuccessMetadata.java +++ b/src/main/java/com/plaid/client/model/LinkSessionSuccessMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Displayed once a user has successfully linked their Item. */ @ApiModel(description = "Displayed once a user has successfully linked their Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionSuccessMetadata { public static final String SERIALIZED_NAME_INSTITUTION = "institution"; @SerializedName(SERIALIZED_NAME_INSTITUTION) diff --git a/src/main/java/com/plaid/client/model/LinkSessionSuccessMetadataAccount.java b/src/main/java/com/plaid/client/model/LinkSessionSuccessMetadataAccount.java index 022b0df84..3f7fbb525 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionSuccessMetadataAccount.java +++ b/src/main/java/com/plaid/client/model/LinkSessionSuccessMetadataAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An account attached to the connected Item. */ @ApiModel(description = "An account attached to the connected Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionSuccessMetadataAccount { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/LinkSessionSuccessMetadataInstitution.java b/src/main/java/com/plaid/client/model/LinkSessionSuccessMetadataInstitution.java index 0038f2fe5..af1727af8 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionSuccessMetadataInstitution.java +++ b/src/main/java/com/plaid/client/model/LinkSessionSuccessMetadataInstitution.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An institution object. If the Item was created via Same-Day or Instant micro-deposit verification, will be `null`. */ @ApiModel(description = "An institution object. If the Item was created via Same-Day or Instant micro-deposit verification, will be `null`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkSessionSuccessMetadataInstitution { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/LinkSessionSuccessMetadataTransferStatus.java b/src/main/java/com/plaid/client/model/LinkSessionSuccessMetadataTransferStatus.java index 2aca1415c..65f5cce3b 100644 --- a/src/main/java/com/plaid/client/model/LinkSessionSuccessMetadataTransferStatus.java +++ b/src/main/java/com/plaid/client/model/LinkSessionSuccessMetadataTransferStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/LinkTokenAccountFilters.java b/src/main/java/com/plaid/client/model/LinkTokenAccountFilters.java index 69f6a62cd..0f3b65ec2 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenAccountFilters.java +++ b/src/main/java/com/plaid/client/model/LinkTokenAccountFilters.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * By default, Link will provide limited account filtering: it will only display Institutions that are compatible with all products supplied in the `products` parameter of `/link/token/create`, and, if `auth` is specified in the `products` array, will also filter out accounts other than `checking`, `savings`, and `cash management` accounts on the Account Select pane. You can further limit the accounts shown in Link by using `account_filters` to specify the account subtypes to be shown in Link. Only the specified subtypes will be shown. This filtering applies to both the Account Select view (if enabled) and the Institution Select view. Institutions that do not support the selected subtypes will be omitted from Link. To indicate that all subtypes should be shown, use the value `\"all\"`. If the `account_filters` filter is used, any account type for which a filter is not specified will be entirely omitted from Link. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema). The filter may or may not impact the list of accounts shown by the institution in the OAuth account selection flow, depending on the specific institution. If the user selects excluded account subtypes in the OAuth flow, these accounts will not be added to the Item. If the user selects only excluded account subtypes, the link attempt will fail and the user will be prompted to try again. */ @ApiModel(description = "By default, Link will provide limited account filtering: it will only display Institutions that are compatible with all products supplied in the `products` parameter of `/link/token/create`, and, if `auth` is specified in the `products` array, will also filter out accounts other than `checking`, `savings`, and `cash management` accounts on the Account Select pane. You can further limit the accounts shown in Link by using `account_filters` to specify the account subtypes to be shown in Link. Only the specified subtypes will be shown. This filtering applies to both the Account Select view (if enabled) and the Institution Select view. Institutions that do not support the selected subtypes will be omitted from Link. To indicate that all subtypes should be shown, use the value `\"all\"`. If the `account_filters` filter is used, any account type for which a filter is not specified will be entirely omitted from Link. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema). The filter may or may not impact the list of accounts shown by the institution in the OAuth account selection flow, depending on the specific institution. If the user selects excluded account subtypes in the OAuth flow, these accounts will not be added to the Item. If the user selects only excluded account subtypes, the link attempt will fail and the user will be prompted to try again. ") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenAccountFilters { public static final String SERIALIZED_NAME_DEPOSITORY = "depository"; @SerializedName(SERIALIZED_NAME_DEPOSITORY) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCashflowReport.java b/src/main/java/com/plaid/client/model/LinkTokenCashflowReport.java index 97b51c058..b3c3bc782 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCashflowReport.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCashflowReport.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Configuration parameters for the Cashflow Report product. Currently in closed beta. */ @ApiModel(description = "Configuration parameters for the Cashflow Report product. Currently in closed beta.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCashflowReport { public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateCardSwitch.java b/src/main/java/com/plaid/client/model/LinkTokenCreateCardSwitch.java index e404aaa11..276243c03 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateCardSwitch.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateCardSwitch.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * A map containing data to pass in for the Card Switch flow. */ @ApiModel(description = "A map containing data to pass in for the Card Switch flow.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateCardSwitch { public static final String SERIALIZED_NAME_CARD_BIN = "card_bin"; @SerializedName(SERIALIZED_NAME_CARD_BIN) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateCreditFilter.java b/src/main/java/com/plaid/client/model/LinkTokenCreateCreditFilter.java index 482f61666..f6825fa2d 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateCreditFilter.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateCreditFilter.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A filter to apply to `credit`-type accounts */ @ApiModel(description = "A filter to apply to `credit`-type accounts") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateCreditFilter { public static final String SERIALIZED_NAME_ACCOUNT_SUBTYPES = "account_subtypes"; @SerializedName(SERIALIZED_NAME_ACCOUNT_SUBTYPES) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateDepositoryFilter.java b/src/main/java/com/plaid/client/model/LinkTokenCreateDepositoryFilter.java index 07f450a61..aff55980f 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateDepositoryFilter.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateDepositoryFilter.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A filter to apply to `depository`-type accounts */ @ApiModel(description = "A filter to apply to `depository`-type accounts") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateDepositoryFilter { public static final String SERIALIZED_NAME_ACCOUNT_SUBTYPES = "account_subtypes"; @SerializedName(SERIALIZED_NAME_ACCOUNT_SUBTYPES) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateHostedLink.java b/src/main/java/com/plaid/client/model/LinkTokenCreateHostedLink.java index 8812ad979..f2d1e1908 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateHostedLink.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateHostedLink.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Configuration parameters for Hosted Link. To enable the session for Hosted Link, send this object in the request. It can be empty. */ @ApiModel(description = "Configuration parameters for Hosted Link. To enable the session for Hosted Link, send this object in the request. It can be empty.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateHostedLink { public static final String SERIALIZED_NAME_DELIVERY_METHOD = "delivery_method"; @SerializedName(SERIALIZED_NAME_DELIVERY_METHOD) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateIdentity.java b/src/main/java/com/plaid/client/model/LinkTokenCreateIdentity.java index f94fd343a..bce99a5c3 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateIdentity.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateIdentity.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Identity object used to specify document upload */ @ApiModel(description = "Identity object used to specify document upload") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateIdentity { public static final String SERIALIZED_NAME_IS_DOCUMENT_UPLOAD = "is_document_upload"; @SerializedName(SERIALIZED_NAME_IS_DOCUMENT_UPLOAD) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateInstitutionData.java b/src/main/java/com/plaid/client/model/LinkTokenCreateInstitutionData.java index cc54c06d1..f57f1672d 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateInstitutionData.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateInstitutionData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * A map containing data used to highlight institutions in Link. */ @ApiModel(description = "A map containing data used to highlight institutions in Link.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateInstitutionData { public static final String SERIALIZED_NAME_ROUTING_NUMBER = "routing_number"; @SerializedName(SERIALIZED_NAME_ROUTING_NUMBER) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateInvestmentFilter.java b/src/main/java/com/plaid/client/model/LinkTokenCreateInvestmentFilter.java index cea7737dd..4905ffd55 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateInvestmentFilter.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateInvestmentFilter.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A filter to apply to `investment`-type accounts (or `brokerage`-type accounts for API versions 2018-05-22 and earlier). */ @ApiModel(description = "A filter to apply to `investment`-type accounts (or `brokerage`-type accounts for API versions 2018-05-22 and earlier).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateInvestmentFilter { public static final String SERIALIZED_NAME_ACCOUNT_SUBTYPES = "account_subtypes"; @SerializedName(SERIALIZED_NAME_ACCOUNT_SUBTYPES) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateLoanFilter.java b/src/main/java/com/plaid/client/model/LinkTokenCreateLoanFilter.java index 3515daaf4..6ad06a903 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateLoanFilter.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateLoanFilter.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A filter to apply to `loan`-type accounts */ @ApiModel(description = "A filter to apply to `loan`-type accounts") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateLoanFilter { public static final String SERIALIZED_NAME_ACCOUNT_SUBTYPES = "account_subtypes"; @SerializedName(SERIALIZED_NAME_ACCOUNT_SUBTYPES) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequest.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequest.java index 94a3b79f7..9b2ff5e42 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequest.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -57,7 +57,7 @@ * LinkTokenCreateRequest defines the request schema for `/link/token/create` */ @ApiModel(description = "LinkTokenCreateRequest defines the request schema for `/link/token/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) @@ -350,10 +350,10 @@ public LinkTokenCreateRequest addCountryCodesItem(CountryCode countryCodesItem) } /** - * Specify an array of Plaid-supported country codes using the ISO-3166-1 alpha-2 country code standard. Institutions from all listed countries will be shown. For a complete mapping of supported products by country, see https://plaid.com/global/. By default, access is granted to US and CA. For Production or Limited Production access to other countries, [contact Sales](https://plaid.com/contact/) or your account manager. If using Identity Verification, `country_codes` should be set to the country where your company is based, not the country where your user is located. For all other products, `country_codes` represents the location of your user's financial institution. If Link is launched with multiple country codes, only products that you are enabled for in all countries will be used by Link. While all countries are enabled by default in Sandbox, in Production only the countries you have requested access for are shown. To request access to additional countries, [file a product access Support ticket](https://dashboard.plaid.com/support/new/product-and-development/product-troubleshooting/request-product-access) via the Plaid dashboard. If using a Link customization, make sure the country codes in the customization match those specified in `country_codes`, or the customization may not be applied. If using the Auth features Instant Match, Instant Micro-deposits, Same-day Micro-deposits, Automated Micro-deposits, or Database Auth, `country_codes` must be set to `['US']`. + * Specify an array of Plaid-supported country codes using the ISO-3166-1 alpha-2 country code standard. Institutions from all listed countries will be shown. For a complete mapping of supported products by country, see https://plaid.com/global/. For access to additional countries beyond what you have been approved for, [contact Sales](https://plaid.com/contact/), your account manager, or support. If using Identity Verification, `country_codes` should be set to the country where your company is based, not the country where your user is located. For all other products, `country_codes` represents the location of your user's financial institution. If Link is launched with multiple country codes, only products that you are enabled for in all countries will be used by Link. While all countries are enabled by default in Sandbox, in Production only the countries you have requested access for are shown. To request access to additional countries, [file a product access Support ticket](https://dashboard.plaid.com/support/new/product-and-development/product-troubleshooting/request-product-access) via the Plaid dashboard. If using a Link customization, make sure the country codes in the customization match those specified in `country_codes`, or the customization may not be applied. If using the Auth features Instant Match, Instant Micro-deposits, Same-day Micro-deposits, Automated Micro-deposits, or Database Auth, `country_codes` must be set to `['US']`. * @return countryCodes **/ - @ApiModelProperty(required = true, value = "Specify an array of Plaid-supported country codes using the ISO-3166-1 alpha-2 country code standard. Institutions from all listed countries will be shown. For a complete mapping of supported products by country, see https://plaid.com/global/. By default, access is granted to US and CA. For Production or Limited Production access to other countries, [contact Sales](https://plaid.com/contact/) or your account manager. If using Identity Verification, `country_codes` should be set to the country where your company is based, not the country where your user is located. For all other products, `country_codes` represents the location of your user's financial institution. If Link is launched with multiple country codes, only products that you are enabled for in all countries will be used by Link. While all countries are enabled by default in Sandbox, in Production only the countries you have requested access for are shown. To request access to additional countries, [file a product access Support ticket](https://dashboard.plaid.com/support/new/product-and-development/product-troubleshooting/request-product-access) via the Plaid dashboard. If using a Link customization, make sure the country codes in the customization match those specified in `country_codes`, or the customization may not be applied. If using the Auth features Instant Match, Instant Micro-deposits, Same-day Micro-deposits, Automated Micro-deposits, or Database Auth, `country_codes` must be set to `['US']`.") + @ApiModelProperty(required = true, value = "Specify an array of Plaid-supported country codes using the ISO-3166-1 alpha-2 country code standard. Institutions from all listed countries will be shown. For a complete mapping of supported products by country, see https://plaid.com/global/. For access to additional countries beyond what you have been approved for, [contact Sales](https://plaid.com/contact/), your account manager, or support. If using Identity Verification, `country_codes` should be set to the country where your company is based, not the country where your user is located. For all other products, `country_codes` represents the location of your user's financial institution. If Link is launched with multiple country codes, only products that you are enabled for in all countries will be used by Link. While all countries are enabled by default in Sandbox, in Production only the countries you have requested access for are shown. To request access to additional countries, [file a product access Support ticket](https://dashboard.plaid.com/support/new/product-and-development/product-troubleshooting/request-product-access) via the Plaid dashboard. If using a Link customization, make sure the country codes in the customization match those specified in `country_codes`, or the customization may not be applied. If using the Auth features Instant Match, Instant Micro-deposits, Same-day Micro-deposits, Automated Micro-deposits, or Database Auth, `country_codes` must be set to `['US']`.") public List getCountryCodes() { return countryCodes; diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestAccountSubtypes.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestAccountSubtypes.java index bb2020130..fdfea6efe 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestAccountSubtypes.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestAccountSubtypes.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * By default, Link will only display account types that are compatible with all products supplied in the `products` parameter of `/link/token/create`. You can further limit the accounts shown in Link by using `account_filters` to specify the account subtypes to be shown in Link. Only the specified subtypes will be shown. This filtering applies to both the Account Select view (if enabled) and the Institution Select view. Institutions that do not support the selected subtypes will be omitted from Link. To indicate that all subtypes should be shown, use the value `\"all\"`. If the `account_filters` filter is used, any account type for which a filter is not specified will be entirely omitted from Link. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema). For institutions using OAuth, the filter will not affect the list of institutions or accounts shown by the bank in the OAuth window. */ @ApiModel(description = "By default, Link will only display account types that are compatible with all products supplied in the `products` parameter of `/link/token/create`. You can further limit the accounts shown in Link by using `account_filters` to specify the account subtypes to be shown in Link. Only the specified subtypes will be shown. This filtering applies to both the Account Select view (if enabled) and the Institution Select view. Institutions that do not support the selected subtypes will be omitted from Link. To indicate that all subtypes should be shown, use the value `\"all\"`. If the `account_filters` filter is used, any account type for which a filter is not specified will be entirely omitted from Link. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema). For institutions using OAuth, the filter will not affect the list of institutions or accounts shown by the bank in the OAuth window. ") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestAccountSubtypes { public static final String SERIALIZED_NAME_DEPOSITORY = "depository"; @SerializedName(SERIALIZED_NAME_DEPOSITORY) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestAppearanceMode.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestAppearanceMode.java index b958e64a1..0dd407bd6 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestAppearanceMode.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestAppearanceMode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestAuth.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestAuth.java index 9a60a213c..51e31f9e7 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestAuth.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestAuth.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Specifies options for initializing Link for use with the Auth product. This field can be used to enable or disable extended Auth flows for the resulting Link session. Omitting any field will result in a default that can be configured by your account manager. The default behavior described in the documentation is the default behavior that will apply if you have not requested your account manager to apply a different default. If you have enabled the [Dashboard Account Verification pane](https://dashboard.plaid.com/account-verification), the settings enabled there will override any settings in this object. */ @ApiModel(description = "Specifies options for initializing Link for use with the Auth product. This field can be used to enable or disable extended Auth flows for the resulting Link session. Omitting any field will result in a default that can be configured by your account manager. The default behavior described in the documentation is the default behavior that will apply if you have not requested your account manager to apply a different default. If you have enabled the [Dashboard Account Verification pane](https://dashboard.plaid.com/account-verification), the settings enabled there will override any settings in this object.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestAuth { public static final String SERIALIZED_NAME_AUTH_TYPE_SELECT_ENABLED = "auth_type_select_enabled"; @SerializedName(SERIALIZED_NAME_AUTH_TYPE_SELECT_ENABLED) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestBaseReport.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestBaseReport.java index 397e1c778..e3143773d 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestBaseReport.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestBaseReport.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Specifies options for initializing Link for use with the Base Report product. This field is required if `assets` is included in the `products` array and the client is CRA-enabled. */ @ApiModel(description = "Specifies options for initializing Link for use with the Base Report product. This field is required if `assets` is included in the `products` array and the client is CRA-enabled.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestBaseReport { public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptions.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptions.java index f09c46dd5..8df21e544 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptions.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Specifies options for initializing Link for use with Plaid Check products */ @ApiModel(description = "Specifies options for initializing Link for use with Plaid Check products") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestCraOptions { public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsBaseReport.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsBaseReport.java index b6610d852..4c68e452e 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsBaseReport.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsBaseReport.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Specifies options for initializing Link for use with the Base Report product, specifically the `client_report_id`. */ @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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestCraOptionsBaseReport { public static final String SERIALIZED_NAME_CLIENT_REPORT_ID = "client_report_id"; @SerializedName(SERIALIZED_NAME_CLIENT_REPORT_ID) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsBaseReportGSEOptions.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsBaseReportGSEOptions.java index c5ace4bbe..b7f2a59be 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsBaseReportGSEOptions.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsBaseReportGSEOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Specifies options for initializing Link to create reports that can be shared with GSEs for mortgage verification. */ @ApiModel(description = "Specifies options for initializing Link to create reports that can be shared with GSEs for mortgage verification.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestCraOptionsBaseReportGSEOptions { public static final String SERIALIZED_NAME_REPORT_TYPES = "report_types"; @SerializedName(SERIALIZED_NAME_REPORT_TYPES) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsCashflowInsights.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsCashflowInsights.java index afb3b9b3a..d910a019e 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsCashflowInsights.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsCashflowInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Specifies options for initializing Link for use with the Cashflow Insights product. */ @ApiModel(description = "Specifies options for initializing Link for use with the Cashflow Insights product.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestCraOptionsCashflowInsights { public static final String SERIALIZED_NAME_PLAID_CHECK_SCORE_VERSION = "plaid_check_score_version"; @SerializedName(SERIALIZED_NAME_PLAID_CHECK_SCORE_VERSION) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsLendScore.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsLendScore.java index 630fa843b..a43174c24 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsLendScore.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsLendScore.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Specifies options for initializing Link for use with the CRA LendScore product. */ @ApiModel(description = "Specifies options for initializing Link for use with the CRA LendScore product.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestCraOptionsLendScore { public static final String SERIALIZED_NAME_LEND_SCORE_VERSION = "lend_score_version"; @SerializedName(SERIALIZED_NAME_LEND_SCORE_VERSION) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsNetworkInsights.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsNetworkInsights.java index ec51bd9bc..4b59d4d81 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsNetworkInsights.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsNetworkInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Specifies options for initializing Link for use with the CRA Network Insights product. */ @ApiModel(description = "Specifies options for initializing Link for use with the CRA Network Insights product.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestCraOptionsNetworkInsights { public static final String SERIALIZED_NAME_NETWORK_INSIGHTS_VERSION = "network_insights_version"; @SerializedName(SERIALIZED_NAME_NETWORK_INSIGHTS_VERSION) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsPartnerInsights.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsPartnerInsights.java index ef5b7550c..a91b1123f 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsPartnerInsights.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsPartnerInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -20,6 +20,7 @@ import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; +import com.plaid.client.model.CraPartnerInsightsFicoInput; import com.plaid.client.model.PrismProduct; import com.plaid.client.model.PrismVersions; import io.swagger.annotations.ApiModel; @@ -32,7 +33,7 @@ * Specifies options for initializing Link for use with the Credit Partner Insights product. */ @ApiModel(description = "Specifies options for initializing Link for use with the Credit Partner Insights product.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestCraOptionsPartnerInsights { public static final String SERIALIZED_NAME_PRISM_PRODUCTS = "prism_products"; @SerializedName(SERIALIZED_NAME_PRISM_PRODUCTS) @@ -42,6 +43,10 @@ public class LinkTokenCreateRequestCraOptionsPartnerInsights { @SerializedName(SERIALIZED_NAME_PRISM_VERSIONS) private PrismVersions prismVersions; + public static final String SERIALIZED_NAME_FICO = "fico"; + @SerializedName(SERIALIZED_NAME_FICO) + private CraPartnerInsightsFicoInput fico; + public LinkTokenCreateRequestCraOptionsPartnerInsights prismProducts(List prismProducts) { @@ -97,6 +102,29 @@ public void setPrismVersions(PrismVersions prismVersions) { } + public LinkTokenCreateRequestCraOptionsPartnerInsights fico(CraPartnerInsightsFicoInput fico) { + + this.fico = fico; + return this; + } + + /** + * Get fico + * @return fico + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public CraPartnerInsightsFicoInput getFico() { + return fico; + } + + + public void setFico(CraPartnerInsightsFicoInput fico) { + this.fico = fico; + } + + @Override public boolean equals(Object o) { if (this == o) { @@ -107,12 +135,13 @@ public boolean equals(Object o) { } LinkTokenCreateRequestCraOptionsPartnerInsights linkTokenCreateRequestCraOptionsPartnerInsights = (LinkTokenCreateRequestCraOptionsPartnerInsights) o; return Objects.equals(this.prismProducts, linkTokenCreateRequestCraOptionsPartnerInsights.prismProducts) && - Objects.equals(this.prismVersions, linkTokenCreateRequestCraOptionsPartnerInsights.prismVersions); + Objects.equals(this.prismVersions, linkTokenCreateRequestCraOptionsPartnerInsights.prismVersions) && + Objects.equals(this.fico, linkTokenCreateRequestCraOptionsPartnerInsights.fico); } @Override public int hashCode() { - return Objects.hash(prismProducts, prismVersions); + return Objects.hash(prismProducts, prismVersions, fico); } @Override @@ -121,6 +150,7 @@ public String toString() { sb.append("class LinkTokenCreateRequestCraOptionsPartnerInsights {\n"); sb.append(" prismProducts: ").append(toIndentedString(prismProducts)).append("\n"); sb.append(" prismVersions: ").append(toIndentedString(prismVersions)).append("\n"); + sb.append(" fico: ").append(toIndentedString(fico)).append("\n"); sb.append("}"); return sb.toString(); } diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCreditPartnerInsights.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCreditPartnerInsights.java index 8c1ee607b..40a14c227 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCreditPartnerInsights.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCreditPartnerInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Specifies options for initializing Link for use with the Credit Partner Insights product. */ @ApiModel(description = "Specifies options for initializing Link for use with the Credit Partner Insights product.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestCreditPartnerInsights { public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestDepositSwitch.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestDepositSwitch.java index c84c2ce96..1bfce9dd9 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestDepositSwitch.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestDepositSwitch.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * (Deprecated) Specifies options for initializing Link for use with the Deposit Switch (beta) product. This field is required if `deposit_switch` is included in the `products` array. */ @ApiModel(description = "(Deprecated) Specifies options for initializing Link for use with the Deposit Switch (beta) product. This field is required if `deposit_switch` is included in the `products` array.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestDepositSwitch { public static final String SERIALIZED_NAME_DEPOSIT_SWITCH_ID = "deposit_switch_id"; @SerializedName(SERIALIZED_NAME_DEPOSIT_SWITCH_ID) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestEmployment.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestEmployment.java index 8fa1f9f72..f46ab482c 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestEmployment.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestEmployment.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Specifies options for initializing Link for use with the Employment product. This field is required if `employment` is included in the `products` array. */ @ApiModel(description = "Specifies options for initializing Link for use with the Employment product. This field is required if `employment` is included in the `products` array.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestEmployment { public static final String SERIALIZED_NAME_EMPLOYMENT_SOURCE_TYPES = "employment_source_types"; @SerializedName(SERIALIZED_NAME_EMPLOYMENT_SOURCE_TYPES) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestEmploymentBankIncome.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestEmploymentBankIncome.java index 54bfd9f20..d3823a19b 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestEmploymentBankIncome.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestEmploymentBankIncome.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Specifies options for initializing Link for use with Bank Employment. This field is required if `employment` is included in the `products` array and `bank` is specified in `employment_source_types`. */ @ApiModel(description = "Specifies options for initializing Link for use with Bank Employment. This field is required if `employment` is included in the `products` array and `bank` is specified in `employment_source_types`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestEmploymentBankIncome { public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIdentityVerification.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIdentityVerification.java index 3db0f0f69..114c09c68 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIdentityVerification.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIdentityVerification.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Specifies option for initializing Link for use with the Identity Verification product. */ @ApiModel(description = "Specifies option for initializing Link for use with the Identity Verification product.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestIdentityVerification { public static final String SERIALIZED_NAME_TEMPLATE_ID = "template_id"; @SerializedName(SERIALIZED_NAME_TEMPLATE_ID) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIncomeVerification.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIncomeVerification.java index cbbfd3cbe..1dd6067b9 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIncomeVerification.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIncomeVerification.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * Specifies options for initializing Link for use with the Income product. This field is required if `income_verification` is included in the `products` array. */ @ApiModel(description = "Specifies options for initializing Link for use with the Income product. This field is required if `income_verification` is included in the `products` array.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestIncomeVerification { public static final String SERIALIZED_NAME_INCOME_VERIFICATION_ID = "income_verification_id"; @SerializedName(SERIALIZED_NAME_INCOME_VERIFICATION_ID) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIncomeVerificationBankIncome.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIncomeVerificationBankIncome.java index 5427c6be2..673c86b63 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIncomeVerificationBankIncome.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIncomeVerificationBankIncome.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Specifies options for initializing Link for use with Bank Income. This field is required if `income_verification` is included in the `products` array and `bank` is specified in `income_source_types`. */ @ApiModel(description = "Specifies options for initializing Link for use with Bank Income. This field is required if `income_verification` is included in the `products` array and `bank` is specified in `income_source_types`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestIncomeVerificationBankIncome { public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIncomeVerificationPayrollIncome.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIncomeVerificationPayrollIncome.java index 19ef090c9..f7d117245 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIncomeVerificationPayrollIncome.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIncomeVerificationPayrollIncome.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Specifies options for initializing Link for use with Payroll Income (including Document Income). Further customization options for Document Income, such as customizing which document types may be uploaded, are also available via the [Link Customization pane](https://dashboard.plaid.com/link) in the Dashboard. (Requires Production enablement.) */ @ApiModel(description = "Specifies options for initializing Link for use with Payroll Income (including Document Income). Further customization options for Document Income, such as customizing which document types may be uploaded, are also available via the [Link Customization pane](https://dashboard.plaid.com/link) in the Dashboard. (Requires Production enablement.)") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestIncomeVerificationPayrollIncome { public static final String SERIALIZED_NAME_FLOW_TYPES = "flow_types"; @SerializedName(SERIALIZED_NAME_FLOW_TYPES) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestPaymentConfiguration.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestPaymentConfiguration.java index 7387fa8bb..3898602d3 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestPaymentConfiguration.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestPaymentConfiguration.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Specifies options for initializing Link for use with the Pay By Bank flow. This is an optional field to configure the user experience, and currently requires the amount field to be set. */ @ApiModel(description = "Specifies options for initializing Link for use with the Pay By Bank flow. This is an optional field to configure the user experience, and currently requires the amount field to be set.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestPaymentConfiguration { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestPaymentInitiation.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestPaymentInitiation.java index 36933a0cc..0961f62d8 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestPaymentInitiation.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestPaymentInitiation.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Specifies options for initializing Link for use with the Payment Initiation (Europe) product. This field is required if `payment_initiation` is included in the `products` array. Either `payment_id` or `consent_id` must be provided. */ @ApiModel(description = "Specifies options for initializing Link for use with the Payment Initiation (Europe) product. This field is required if `payment_initiation` is included in the `products` array. Either `payment_id` or `consent_id` must be provided.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestPaymentInitiation { public static final String SERIALIZED_NAME_PAYMENT_ID = "payment_id"; @SerializedName(SERIALIZED_NAME_PAYMENT_ID) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestStatements.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestStatements.java index b7cb4d31d..489ae35c3 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestStatements.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestStatements.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Specifies options for initializing Link for use with the Statements product. This field is required for the statements product. */ @ApiModel(description = "Specifies options for initializing Link for use with the Statements product. This field is required for the statements product.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestStatements { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestTransfer.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestTransfer.java index f54d6d47e..2c2ae1e2b 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestTransfer.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestTransfer.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Specifies options for initializing Link for use with the Transfer product. */ @ApiModel(description = "Specifies options for initializing Link for use with the Transfer product.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestTransfer { public static final String SERIALIZED_NAME_INTENT_ID = "intent_id"; @SerializedName(SERIALIZED_NAME_INTENT_ID) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestUpdate.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestUpdate.java index 117392f14..4f89a4f38 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestUpdate.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestUpdate.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Specifies options for initializing Link for [update mode](https://plaid.com/docs/link/update-mode). */ @ApiModel(description = "Specifies options for initializing Link for [update mode](https://plaid.com/docs/link/update-mode).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestUpdate { public static final String SERIALIZED_NAME_ACCOUNT_SELECTION_ENABLED = "account_selection_enabled"; @SerializedName(SERIALIZED_NAME_ACCOUNT_SELECTION_ENABLED) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestUser.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestUser.java index 0cc50576d..c81d8bcfa 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestUser.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestUser.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * An object specifying information about the end user who will be linking their account. **Required** if `user_id` isn't included. */ @ApiModel(description = "An object specifying information about the end user who will be linking their account. **Required** if `user_id` isn't included.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestUser { public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id"; @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestUserStatedIncomeSource.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestUserStatedIncomeSource.java index de43fd1c8..5d9607a7f 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestUserStatedIncomeSource.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestUserStatedIncomeSource.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Specifies user stated income sources for the Income product */ @ApiModel(description = "Specifies user stated income sources for the Income product") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateRequestUserStatedIncomeSource { public static final String SERIALIZED_NAME_EMPLOYER = "employer"; @SerializedName(SERIALIZED_NAME_EMPLOYER) diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateResponse.java b/src/main/java/com/plaid/client/model/LinkTokenCreateResponse.java index ebe56727f..b8f072a5f 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenCreateResponse.java +++ b/src/main/java/com/plaid/client/model/LinkTokenCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenCreateResponse { public static final String SERIALIZED_NAME_LINK_TOKEN = "link_token"; @SerializedName(SERIALIZED_NAME_LINK_TOKEN) diff --git a/src/main/java/com/plaid/client/model/LinkTokenEUConfig.java b/src/main/java/com/plaid/client/model/LinkTokenEUConfig.java index 5f147c136..22ef4804e 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenEUConfig.java +++ b/src/main/java/com/plaid/client/model/LinkTokenEUConfig.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Configuration parameters for EU flows */ @ApiModel(description = "Configuration parameters for EU flows") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenEUConfig { public static final String SERIALIZED_NAME_HEADLESS = "headless"; @SerializedName(SERIALIZED_NAME_HEADLESS) diff --git a/src/main/java/com/plaid/client/model/LinkTokenGetMetadataResponse.java b/src/main/java/com/plaid/client/model/LinkTokenGetMetadataResponse.java index 41eba8c44..ac1c3bc28 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenGetMetadataResponse.java +++ b/src/main/java/com/plaid/client/model/LinkTokenGetMetadataResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * An object specifying the arguments originally provided to the `/link/token/create` call. */ @ApiModel(description = "An object specifying the arguments originally provided to the `/link/token/create` call.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenGetMetadataResponse { public static final String SERIALIZED_NAME_INITIAL_PRODUCTS = "initial_products"; @SerializedName(SERIALIZED_NAME_INITIAL_PRODUCTS) diff --git a/src/main/java/com/plaid/client/model/LinkTokenGetRequest.java b/src/main/java/com/plaid/client/model/LinkTokenGetRequest.java index 630b7589c..7f6c063db 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenGetRequest.java +++ b/src/main/java/com/plaid/client/model/LinkTokenGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * LinkTokenGetRequest defines the request schema for `/link/token/get` */ @ApiModel(description = "LinkTokenGetRequest defines the request schema for `/link/token/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/LinkTokenGetResponse.java b/src/main/java/com/plaid/client/model/LinkTokenGetResponse.java index 6fa11bfcb..e6846e6bf 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenGetResponse.java +++ b/src/main/java/com/plaid/client/model/LinkTokenGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * LinkTokenGetResponse defines the response schema for `/link/token/get` */ @ApiModel(description = "LinkTokenGetResponse defines the response schema for `/link/token/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenGetResponse { public static final String SERIALIZED_NAME_LINK_TOKEN = "link_token"; @SerializedName(SERIALIZED_NAME_LINK_TOKEN) diff --git a/src/main/java/com/plaid/client/model/LinkTokenGetSessionsResponse.java b/src/main/java/com/plaid/client/model/LinkTokenGetSessionsResponse.java index 358f120ee..e030996f0 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenGetSessionsResponse.java +++ b/src/main/java/com/plaid/client/model/LinkTokenGetSessionsResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -36,7 +36,7 @@ * An object containing information about a link session. Session data will be provided for up to six hours after the session has ended. */ @ApiModel(description = "An object containing information about a link session. Session data will be provided for up to six hours after the session has ended.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenGetSessionsResponse { public static final String SERIALIZED_NAME_LINK_SESSION_ID = "link_session_id"; @SerializedName(SERIALIZED_NAME_LINK_SESSION_ID) diff --git a/src/main/java/com/plaid/client/model/LinkTokenInvestments.java b/src/main/java/com/plaid/client/model/LinkTokenInvestments.java index aaacfea23..ffc723cf3 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenInvestments.java +++ b/src/main/java/com/plaid/client/model/LinkTokenInvestments.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Configuration parameters for the Investments product */ @ApiModel(description = "Configuration parameters for the Investments product") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenInvestments { public static final String SERIALIZED_NAME_ALLOW_UNVERIFIED_CRYPTO_WALLETS = "allow_unverified_crypto_wallets"; @SerializedName(SERIALIZED_NAME_ALLOW_UNVERIFIED_CRYPTO_WALLETS) diff --git a/src/main/java/com/plaid/client/model/LinkTokenInvestmentsAuth.java b/src/main/java/com/plaid/client/model/LinkTokenInvestmentsAuth.java index ef10983ca..e1caf9297 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenInvestmentsAuth.java +++ b/src/main/java/com/plaid/client/model/LinkTokenInvestmentsAuth.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Configuration parameters for the Investments Move product */ @ApiModel(description = "Configuration parameters for the Investments Move product") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenInvestmentsAuth { public static final String SERIALIZED_NAME_MANUAL_ENTRY_ENABLED = "manual_entry_enabled"; @SerializedName(SERIALIZED_NAME_MANUAL_ENTRY_ENABLED) diff --git a/src/main/java/com/plaid/client/model/LinkTokenTransactions.java b/src/main/java/com/plaid/client/model/LinkTokenTransactions.java index 1e8acf870..217187ab1 100644 --- a/src/main/java/com/plaid/client/model/LinkTokenTransactions.java +++ b/src/main/java/com/plaid/client/model/LinkTokenTransactions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Configuration parameters for the Transactions product */ @ApiModel(description = "Configuration parameters for the Transactions product") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkTokenTransactions { public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) diff --git a/src/main/java/com/plaid/client/model/LinkUserDeliveryStatusWebhook.java b/src/main/java/com/plaid/client/model/LinkUserDeliveryStatusWebhook.java index 666007363..cac0ed405 100644 --- a/src/main/java/com/plaid/client/model/LinkUserDeliveryStatusWebhook.java +++ b/src/main/java/com/plaid/client/model/LinkUserDeliveryStatusWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Webhook indicating that the status of the delivery of the Hosted Link session to a user */ @ApiModel(description = "Webhook indicating that the status of the delivery of the Hosted Link session to a user") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LinkUserDeliveryStatusWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/Loan.java b/src/main/java/com/plaid/client/model/Loan.java index b3bd092c0..535641a9b 100644 --- a/src/main/java/com/plaid/client/model/Loan.java +++ b/src/main/java/com/plaid/client/model/Loan.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Information specific to a mortgage loan agreement between one or more borrowers and a mortgage lender. */ @ApiModel(description = "Information specific to a mortgage loan agreement between one or more borrowers and a mortgage lender.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Loan { public static final String SERIALIZED_NAME_L_O_A_N_I_D_E_N_T_I_F_I_E_R_S = "LOAN_IDENTIFIERS"; @SerializedName(SERIALIZED_NAME_L_O_A_N_I_D_E_N_T_I_F_I_E_R_S) diff --git a/src/main/java/com/plaid/client/model/LoanAccountSubtype.java b/src/main/java/com/plaid/client/model/LoanAccountSubtype.java index 1c775ceaf..02bded818 100644 --- a/src/main/java/com/plaid/client/model/LoanAccountSubtype.java +++ b/src/main/java/com/plaid/client/model/LoanAccountSubtype.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/LoanDisbursementsIndicators.java b/src/main/java/com/plaid/client/model/LoanDisbursementsIndicators.java index 70821bc91..e9f314477 100644 --- a/src/main/java/com/plaid/client/model/LoanDisbursementsIndicators.java +++ b/src/main/java/com/plaid/client/model/LoanDisbursementsIndicators.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Insights into loan disbursement transactions received by the user, tracking incoming funds from loan providers. */ @ApiModel(description = "Insights into loan disbursement transactions received by the user, tracking incoming funds from loan providers.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LoanDisbursementsIndicators { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/LoanFilter.java b/src/main/java/com/plaid/client/model/LoanFilter.java index fc1fa4490..36aec8fe8 100644 --- a/src/main/java/com/plaid/client/model/LoanFilter.java +++ b/src/main/java/com/plaid/client/model/LoanFilter.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A filter to apply to `loan`-type accounts */ @ApiModel(description = "A filter to apply to `loan`-type accounts") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LoanFilter { public static final String SERIALIZED_NAME_ACCOUNT_SUBTYPES = "account_subtypes"; @SerializedName(SERIALIZED_NAME_ACCOUNT_SUBTYPES) diff --git a/src/main/java/com/plaid/client/model/LoanIdentifier.java b/src/main/java/com/plaid/client/model/LoanIdentifier.java index ae550ed6d..53bb428c7 100644 --- a/src/main/java/com/plaid/client/model/LoanIdentifier.java +++ b/src/main/java/com/plaid/client/model/LoanIdentifier.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The information used to identify this loan by various parties to the transaction or other organizations. */ @ApiModel(description = "The information used to identify this loan by various parties to the transaction or other organizations.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LoanIdentifier { public static final String SERIALIZED_NAME_LOAN_IDENTIFIER = "LoanIdentifier"; @SerializedName(SERIALIZED_NAME_LOAN_IDENTIFIER) diff --git a/src/main/java/com/plaid/client/model/LoanIdentifierType.java b/src/main/java/com/plaid/client/model/LoanIdentifierType.java index b63b6cacc..4c80ce87a 100644 --- a/src/main/java/com/plaid/client/model/LoanIdentifierType.java +++ b/src/main/java/com/plaid/client/model/LoanIdentifierType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/LoanIdentifiers.java b/src/main/java/com/plaid/client/model/LoanIdentifiers.java index 59938381b..aef58ab37 100644 --- a/src/main/java/com/plaid/client/model/LoanIdentifiers.java +++ b/src/main/java/com/plaid/client/model/LoanIdentifiers.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Collection of current and previous identifiers for this loan. */ @ApiModel(description = "Collection of current and previous identifiers for this loan.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LoanIdentifiers { public static final String SERIALIZED_NAME_L_O_A_N_I_D_E_N_T_I_F_I_E_R = "LOAN_IDENTIFIER"; @SerializedName(SERIALIZED_NAME_L_O_A_N_I_D_E_N_T_I_F_I_E_R) diff --git a/src/main/java/com/plaid/client/model/LoanPaymentsCounts.java b/src/main/java/com/plaid/client/model/LoanPaymentsCounts.java index c1f8d5da7..5bc312580 100644 --- a/src/main/java/com/plaid/client/model/LoanPaymentsCounts.java +++ b/src/main/java/com/plaid/client/model/LoanPaymentsCounts.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Details regarding the number of loan payments */ @ApiModel(description = "Details regarding the number of loan payments") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LoanPaymentsCounts { public static final String SERIALIZED_NAME_BASELINE_COUNT = "baseline_count"; @SerializedName(SERIALIZED_NAME_BASELINE_COUNT) diff --git a/src/main/java/com/plaid/client/model/LoanPaymentsIndicators.java b/src/main/java/com/plaid/client/model/LoanPaymentsIndicators.java index b163a3a15..03b370ef9 100644 --- a/src/main/java/com/plaid/client/model/LoanPaymentsIndicators.java +++ b/src/main/java/com/plaid/client/model/LoanPaymentsIndicators.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Insights into loan payment transactions made by the user, tracking outgoing payments to loan providers. */ @ApiModel(description = "Insights into loan payment transactions made by the user, tracking outgoing payments to loan providers.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LoanPaymentsIndicators { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/LoanPaymentsMerchantCounts.java b/src/main/java/com/plaid/client/model/LoanPaymentsMerchantCounts.java index f62fa9a6f..cc4b77dcb 100644 --- a/src/main/java/com/plaid/client/model/LoanPaymentsMerchantCounts.java +++ b/src/main/java/com/plaid/client/model/LoanPaymentsMerchantCounts.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Details regarding the number of unique loan payment merchants */ @ApiModel(description = "Details regarding the number of unique loan payment merchants") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class LoanPaymentsMerchantCounts { public static final String SERIALIZED_NAME_BASELINE_COUNT = "baseline_count"; @SerializedName(SERIALIZED_NAME_BASELINE_COUNT) diff --git a/src/main/java/com/plaid/client/model/Loans.java b/src/main/java/com/plaid/client/model/Loans.java index 2acd6d0cd..9d9c7eb01 100644 --- a/src/main/java/com/plaid/client/model/Loans.java +++ b/src/main/java/com/plaid/client/model/Loans.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A collection of loans that are part of a single deal. */ @ApiModel(description = "A collection of loans that are part of a single deal.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Loans { public static final String SERIALIZED_NAME_L_O_A_N = "LOAN"; @SerializedName(SERIALIZED_NAME_L_O_A_N) diff --git a/src/main/java/com/plaid/client/model/Location.java b/src/main/java/com/plaid/client/model/Location.java index 08cf5f569..3b5b0f6c0 100644 --- a/src/main/java/com/plaid/client/model/Location.java +++ b/src/main/java/com/plaid/client/model/Location.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * A representation of where a transaction took place. Location data is provided only for transactions at physical locations, not for online transactions. Location data availability depends primarily on the merchant and is most likely to be populated for transactions at large retail chains; small, local businesses are less likely to have location data available. */ @ApiModel(description = "A representation of where a transaction took place. Location data is provided only for transactions at physical locations, not for online transactions. Location data availability depends primarily on the merchant and is most likely to be populated for transactions at large retail chains; small, local businesses are less likely to have location data available.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Location { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) diff --git a/src/main/java/com/plaid/client/model/MFA.java b/src/main/java/com/plaid/client/model/MFA.java index 3ae4714e3..48cdb8526 100644 --- a/src/main/java/com/plaid/client/model/MFA.java +++ b/src/main/java/com/plaid/client/model/MFA.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Specifies the multi-factor authentication settings to use with this test account */ @ApiModel(description = "Specifies the multi-factor authentication settings to use with this test account") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class MFA { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) diff --git a/src/main/java/com/plaid/client/model/MatchSummary.java b/src/main/java/com/plaid/client/model/MatchSummary.java index 138865b33..7b3c558ad 100644 --- a/src/main/java/com/plaid/client/model/MatchSummary.java +++ b/src/main/java/com/plaid/client/model/MatchSummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Summary object reflecting the match result of the associated data */ @ApiModel(description = "Summary object reflecting the match result of the associated data") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class MatchSummary { public static final String SERIALIZED_NAME_SUMMARY = "summary"; @SerializedName(SERIALIZED_NAME_SUMMARY) diff --git a/src/main/java/com/plaid/client/model/MatchSummaryCode.java b/src/main/java/com/plaid/client/model/MatchSummaryCode.java index ead891524..173b198b4 100644 --- a/src/main/java/com/plaid/client/model/MatchSummaryCode.java +++ b/src/main/java/com/plaid/client/model/MatchSummaryCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/MerchantInsights.java b/src/main/java/com/plaid/client/model/MerchantInsights.java index 5b970026f..b0def69aa 100644 --- a/src/main/java/com/plaid/client/model/MerchantInsights.java +++ b/src/main/java/com/plaid/client/model/MerchantInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Insights into a user’s top merchants. */ @ApiModel(description = "Insights into a user’s top merchants.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class MerchantInsights { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/Meta.java b/src/main/java/com/plaid/client/model/Meta.java index 5f2004294..beca4eabf 100644 --- a/src/main/java/com/plaid/client/model/Meta.java +++ b/src/main/java/com/plaid/client/model/Meta.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Allows specifying the metadata of the test account */ @ApiModel(description = "Allows specifying the metadata of the test account") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Meta { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/MonitoringConsumerReportPermissiblePurpose.java b/src/main/java/com/plaid/client/model/MonitoringConsumerReportPermissiblePurpose.java index 8e978043b..10d6d6704 100644 --- a/src/main/java/com/plaid/client/model/MonitoringConsumerReportPermissiblePurpose.java +++ b/src/main/java/com/plaid/client/model/MonitoringConsumerReportPermissiblePurpose.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/MonitoringIncomeInsights.java b/src/main/java/com/plaid/client/model/MonitoringIncomeInsights.java index 866ffed01..d031a358c 100644 --- a/src/main/java/com/plaid/client/model/MonitoringIncomeInsights.java +++ b/src/main/java/com/plaid/client/model/MonitoringIncomeInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * An object representing the income subcategory of the report */ @ApiModel(description = "An object representing the income subcategory of the report") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class MonitoringIncomeInsights { public static final String SERIALIZED_NAME_TOTAL_MONTHLY_INCOME = "total_monthly_income"; @SerializedName(SERIALIZED_NAME_TOTAL_MONTHLY_INCOME) diff --git a/src/main/java/com/plaid/client/model/MonitoringIncomeSource.java b/src/main/java/com/plaid/client/model/MonitoringIncomeSource.java index c69f9e6b5..2850e2ebc 100644 --- a/src/main/java/com/plaid/client/model/MonitoringIncomeSource.java +++ b/src/main/java/com/plaid/client/model/MonitoringIncomeSource.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An object representing an income source */ @ApiModel(description = "An object representing an income source") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class MonitoringIncomeSource { public static final String SERIALIZED_NAME_INCOME_SOURCE_ID = "income_source_id"; @SerializedName(SERIALIZED_NAME_INCOME_SOURCE_ID) diff --git a/src/main/java/com/plaid/client/model/MonitoringInsights.java b/src/main/java/com/plaid/client/model/MonitoringInsights.java index d2ee4fba9..071e69071 100644 --- a/src/main/java/com/plaid/client/model/MonitoringInsights.java +++ b/src/main/java/com/plaid/client/model/MonitoringInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An object representing the Monitoring Insights for the given Item */ @ApiModel(description = "An object representing the Monitoring Insights for the given Item") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class MonitoringInsights { public static final String SERIALIZED_NAME_INCOME = "income"; @SerializedName(SERIALIZED_NAME_INCOME) diff --git a/src/main/java/com/plaid/client/model/MonitoringInsightsItemStatus.java b/src/main/java/com/plaid/client/model/MonitoringInsightsItemStatus.java index df9ac456f..d9933bc92 100644 --- a/src/main/java/com/plaid/client/model/MonitoringInsightsItemStatus.java +++ b/src/main/java/com/plaid/client/model/MonitoringInsightsItemStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object with details of the Monitoring Insights Item's status. */ @ApiModel(description = "An object with details of the Monitoring Insights Item's status.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class MonitoringInsightsItemStatus { public static final String SERIALIZED_NAME_STATUS_CODE = "status_code"; @SerializedName(SERIALIZED_NAME_STATUS_CODE) diff --git a/src/main/java/com/plaid/client/model/MonitoringInsightsStatus.java b/src/main/java/com/plaid/client/model/MonitoringInsightsStatus.java index 37dfb51b9..af394612e 100644 --- a/src/main/java/com/plaid/client/model/MonitoringInsightsStatus.java +++ b/src/main/java/com/plaid/client/model/MonitoringInsightsStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/MonitoringItemStatusCode.java b/src/main/java/com/plaid/client/model/MonitoringItemStatusCode.java index 423216a86..23dd702ad 100644 --- a/src/main/java/com/plaid/client/model/MonitoringItemStatusCode.java +++ b/src/main/java/com/plaid/client/model/MonitoringItemStatusCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/MonitoringLoanInsights.java b/src/main/java/com/plaid/client/model/MonitoringLoanInsights.java index b05a320b8..2f4368066 100644 --- a/src/main/java/com/plaid/client/model/MonitoringLoanInsights.java +++ b/src/main/java/com/plaid/client/model/MonitoringLoanInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * An object representing the loan exposure subcategory of the report */ @ApiModel(description = "An object representing the loan exposure subcategory of the report") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class MonitoringLoanInsights { public static final String SERIALIZED_NAME_LOAN_PAYMENTS_COUNTS = "loan_payments_counts"; @SerializedName(SERIALIZED_NAME_LOAN_PAYMENTS_COUNTS) diff --git a/src/main/java/com/plaid/client/model/MonthlyAverage.java b/src/main/java/com/plaid/client/model/MonthlyAverage.java index 4d24ce73a..216f80316 100644 --- a/src/main/java/com/plaid/client/model/MonthlyAverage.java +++ b/src/main/java/com/plaid/client/model/MonthlyAverage.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The monthly average amount calculated by dividing the total by the number of calendar months in the time period. */ @ApiModel(description = "The monthly average amount calculated by dividing the total by the number of calendar months in the time period.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class MonthlyAverage { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/MonthlySummary.java b/src/main/java/com/plaid/client/model/MonthlySummary.java index c21427358..8434cc23b 100644 --- a/src/main/java/com/plaid/client/model/MonthlySummary.java +++ b/src/main/java/com/plaid/client/model/MonthlySummary.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Monthly summary of transactions within a specific time period, showing aggregated amounts. */ @ApiModel(description = "Monthly summary of transactions within a specific time period, showing aggregated amounts.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class MonthlySummary { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) diff --git a/src/main/java/com/plaid/client/model/MortgageInterestRate.java b/src/main/java/com/plaid/client/model/MortgageInterestRate.java index b8f5d8cf5..fba8d99aa 100644 --- a/src/main/java/com/plaid/client/model/MortgageInterestRate.java +++ b/src/main/java/com/plaid/client/model/MortgageInterestRate.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class MortgageInterestRate { public static final String SERIALIZED_NAME_PERCENTAGE = "percentage"; @SerializedName(SERIALIZED_NAME_PERCENTAGE) diff --git a/src/main/java/com/plaid/client/model/MortgageLiability.java b/src/main/java/com/plaid/client/model/MortgageLiability.java index ce313ba8c..b4ec1a2df 100644 --- a/src/main/java/com/plaid/client/model/MortgageLiability.java +++ b/src/main/java/com/plaid/client/model/MortgageLiability.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Contains details about a mortgage account. */ @ApiModel(description = "Contains details about a mortgage account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class MortgageLiability { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/MortgagePropertyAddress.java b/src/main/java/com/plaid/client/model/MortgagePropertyAddress.java index b0fecf50a..f4922ecdd 100644 --- a/src/main/java/com/plaid/client/model/MortgagePropertyAddress.java +++ b/src/main/java/com/plaid/client/model/MortgagePropertyAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Object containing fields describing property address. */ @ApiModel(description = "Object containing fields describing property address.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class MortgagePropertyAddress { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/MultiDocumentRiskSignal.java b/src/main/java/com/plaid/client/model/MultiDocumentRiskSignal.java index 807528e73..a3fe5f324 100644 --- a/src/main/java/com/plaid/client/model/MultiDocumentRiskSignal.java +++ b/src/main/java/com/plaid/client/model/MultiDocumentRiskSignal.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Object containing risk signals and relevant metadata for a set of uploaded documents */ @ApiModel(description = "Object containing risk signals and relevant metadata for a set of uploaded documents") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class MultiDocumentRiskSignal { public static final String SERIALIZED_NAME_DOCUMENT_REFERENCES = "document_references"; @SerializedName(SERIALIZED_NAME_DOCUMENT_REFERENCES) diff --git a/src/main/java/com/plaid/client/model/NameMatchScore.java b/src/main/java/com/plaid/client/model/NameMatchScore.java index c13e12b15..678aaf0b2 100644 --- a/src/main/java/com/plaid/client/model/NameMatchScore.java +++ b/src/main/java/com/plaid/client/model/NameMatchScore.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Score found by matching name provided by the API with the name on the account at the financial institution. If the account contains multiple owners, the maximum match score is filled. */ @ApiModel(description = "Score found by matching name provided by the API with the name on the account at the financial institution. If the account contains multiple owners, the maximum match score is filled.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NameMatchScore { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) diff --git a/src/main/java/com/plaid/client/model/NegativeBalanceInsights.java b/src/main/java/com/plaid/client/model/NegativeBalanceInsights.java index 6a937fe55..a15c48905 100644 --- a/src/main/java/com/plaid/client/model/NegativeBalanceInsights.java +++ b/src/main/java/com/plaid/client/model/NegativeBalanceInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Insights into negative balance occurrences, including frequency, duration, and minimum balance details. */ @ApiModel(description = "Insights into negative balance occurrences, including frequency, duration, and minimum balance details.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NegativeBalanceInsights { public static final String SERIALIZED_NAME_DAYS_SINCE_LAST_OCCURRENCE = "days_since_last_occurrence"; @SerializedName(SERIALIZED_NAME_DAYS_SINCE_LAST_OCCURRENCE) diff --git a/src/main/java/com/plaid/client/model/NegativeBalanceOccurrence.java b/src/main/java/com/plaid/client/model/NegativeBalanceOccurrence.java index 0cd84021e..0c5200cdb 100644 --- a/src/main/java/com/plaid/client/model/NegativeBalanceOccurrence.java +++ b/src/main/java/com/plaid/client/model/NegativeBalanceOccurrence.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Details about a specific occurrence of a negative balance period, including start and end dates. */ @ApiModel(description = "Details about a specific occurrence of a negative balance period, including start and end dates.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NegativeBalanceOccurrence { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) diff --git a/src/main/java/com/plaid/client/model/NetPay.java b/src/main/java/com/plaid/client/model/NetPay.java index a291c09ae..1d5ce2479 100644 --- a/src/main/java/com/plaid/client/model/NetPay.java +++ b/src/main/java/com/plaid/client/model/NetPay.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object representing information about the net pay amount on the paystub. */ @ApiModel(description = "An object representing information about the net pay amount on the paystub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NetPay { public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount"; @SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/NetworkInsightsItem.java b/src/main/java/com/plaid/client/model/NetworkInsightsItem.java index 97aaa63a2..451a2d5bb 100644 --- a/src/main/java/com/plaid/client/model/NetworkInsightsItem.java +++ b/src/main/java/com/plaid/client/model/NetworkInsightsItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Contains data about the connected Item. */ @ApiModel(description = "Contains data about the connected Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NetworkInsightsItem { public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) diff --git a/src/main/java/com/plaid/client/model/NetworkInsightsReport.java b/src/main/java/com/plaid/client/model/NetworkInsightsReport.java index b8080cb9d..74b8b7e11 100644 --- a/src/main/java/com/plaid/client/model/NetworkInsightsReport.java +++ b/src/main/java/com/plaid/client/model/NetworkInsightsReport.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Contains data for the Network Insights Report. */ @ApiModel(description = "Contains data for the Network Insights Report.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NetworkInsightsReport { public static final String SERIALIZED_NAME_REPORT_ID = "report_id"; @SerializedName(SERIALIZED_NAME_REPORT_ID) diff --git a/src/main/java/com/plaid/client/model/NetworkInsightsReportGetRequest.java b/src/main/java/com/plaid/client/model/NetworkInsightsReportGetRequest.java index a21b0d494..cbac243aa 100644 --- a/src/main/java/com/plaid/client/model/NetworkInsightsReportGetRequest.java +++ b/src/main/java/com/plaid/client/model/NetworkInsightsReportGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * NetworkInsightsReportGetRequest defines the request schema for `/network_insights/report/get`. */ @ApiModel(description = "NetworkInsightsReportGetRequest defines the request schema for `/network_insights/report/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NetworkInsightsReportGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/NetworkInsightsReportGetResponse.java b/src/main/java/com/plaid/client/model/NetworkInsightsReportGetResponse.java index 1990bcb67..a141d3f5a 100644 --- a/src/main/java/com/plaid/client/model/NetworkInsightsReportGetResponse.java +++ b/src/main/java/com/plaid/client/model/NetworkInsightsReportGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * NetworkInsightsReportGetResponse defines the response schema for `/network_insights/report/get`. */ @ApiModel(description = "NetworkInsightsReportGetResponse defines the response schema for `/network_insights/report/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NetworkInsightsReportGetResponse { public static final String SERIALIZED_NAME_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) diff --git a/src/main/java/com/plaid/client/model/NetworkInsightsVersion.java b/src/main/java/com/plaid/client/model/NetworkInsightsVersion.java index 6371656a8..66aea18f9 100644 --- a/src/main/java/com/plaid/client/model/NetworkInsightsVersion.java +++ b/src/main/java/com/plaid/client/model/NetworkInsightsVersion.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/NetworkStatusGetRequest.java b/src/main/java/com/plaid/client/model/NetworkStatusGetRequest.java index b0a1ed671..cc32aafb9 100644 --- a/src/main/java/com/plaid/client/model/NetworkStatusGetRequest.java +++ b/src/main/java/com/plaid/client/model/NetworkStatusGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * NetworkStatusGetRequest defines the request schema for `/network/status/get` */ @ApiModel(description = "NetworkStatusGetRequest defines the request schema for `/network/status/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NetworkStatusGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/NetworkStatusGetResponse.java b/src/main/java/com/plaid/client/model/NetworkStatusGetResponse.java index 98ea86f9a..5c9f9f99d 100644 --- a/src/main/java/com/plaid/client/model/NetworkStatusGetResponse.java +++ b/src/main/java/com/plaid/client/model/NetworkStatusGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * NetworkStatusGetResponse defines the response schema for `/network/status/get` */ @ApiModel(description = "NetworkStatusGetResponse defines the response schema for `/network/status/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NetworkStatusGetResponse { public static final String SERIALIZED_NAME_NETWORK_STATUS = "network_status"; @SerializedName(SERIALIZED_NAME_NETWORK_STATUS) diff --git a/src/main/java/com/plaid/client/model/NetworkStatusGetResponseLayer.java b/src/main/java/com/plaid/client/model/NetworkStatusGetResponseLayer.java index 2374bf239..e428776fc 100644 --- a/src/main/java/com/plaid/client/model/NetworkStatusGetResponseLayer.java +++ b/src/main/java/com/plaid/client/model/NetworkStatusGetResponseLayer.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object representing Layer-related metadata for the requested user. */ @ApiModel(description = "An object representing Layer-related metadata for the requested user.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NetworkStatusGetResponseLayer { public static final String SERIALIZED_NAME_ELIGIBLE = "eligible"; @SerializedName(SERIALIZED_NAME_ELIGIBLE) diff --git a/src/main/java/com/plaid/client/model/NetworkStatusGetResponseNetworkStatus.java b/src/main/java/com/plaid/client/model/NetworkStatusGetResponseNetworkStatus.java index f5ac2707e..6251f7152 100644 --- a/src/main/java/com/plaid/client/model/NetworkStatusGetResponseNetworkStatus.java +++ b/src/main/java/com/plaid/client/model/NetworkStatusGetResponseNetworkStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/NetworkStatusGetUser.java b/src/main/java/com/plaid/client/model/NetworkStatusGetUser.java index c46d01e81..86cb00835 100644 --- a/src/main/java/com/plaid/client/model/NetworkStatusGetUser.java +++ b/src/main/java/com/plaid/client/model/NetworkStatusGetUser.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object specifying information about the end user for the network status check. */ @ApiModel(description = "An object specifying information about the end user for the network status check.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NetworkStatusGetUser { public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) diff --git a/src/main/java/com/plaid/client/model/NewAccountsAvailableWebhook.java b/src/main/java/com/plaid/client/model/NewAccountsAvailableWebhook.java index dd61cfa41..7e3b36205 100644 --- a/src/main/java/com/plaid/client/model/NewAccountsAvailableWebhook.java +++ b/src/main/java/com/plaid/client/model/NewAccountsAvailableWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * 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`. */ @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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NewAccountsAvailableWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/Numbers.java b/src/main/java/com/plaid/client/model/Numbers.java index fead8ff6b..c2a380061 100644 --- a/src/main/java/com/plaid/client/model/Numbers.java +++ b/src/main/java/com/plaid/client/model/Numbers.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Account and bank identifier number data used to configure the test account. All values are optional. */ @ApiModel(description = "Account and bank identifier number data used to configure the test account. All values are optional.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Numbers { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) diff --git a/src/main/java/com/plaid/client/model/NumbersACATS.java b/src/main/java/com/plaid/client/model/NumbersACATS.java index b10ecbee7..708a67c48 100644 --- a/src/main/java/com/plaid/client/model/NumbersACATS.java +++ b/src/main/java/com/plaid/client/model/NumbersACATS.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Identifying information for transferring holdings to an investments account via ACATS. */ @ApiModel(description = "Identifying information for transferring holdings to an investments account via ACATS.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NumbersACATS { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/NumbersACH.java b/src/main/java/com/plaid/client/model/NumbersACH.java index 15e4d4401..494815852 100644 --- a/src/main/java/com/plaid/client/model/NumbersACH.java +++ b/src/main/java/com/plaid/client/model/NumbersACH.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Identifying information for transferring money to or from a US account via ACH or wire transfer. */ @ApiModel(description = "Identifying information for transferring money to or from a US account via ACH or wire transfer.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NumbersACH { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/NumbersACHNullable.java b/src/main/java/com/plaid/client/model/NumbersACHNullable.java index 7d0f7bdef..a13fefc22 100644 --- a/src/main/java/com/plaid/client/model/NumbersACHNullable.java +++ b/src/main/java/com/plaid/client/model/NumbersACHNullable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Identifying information for transferring money to or from a US account via ACH or wire transfer. */ @ApiModel(description = "Identifying information for transferring money to or from a US account via ACH or wire transfer.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NumbersACHNullable { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/NumbersATON.java b/src/main/java/com/plaid/client/model/NumbersATON.java index 1627aaa65..211a53f82 100644 --- a/src/main/java/com/plaid/client/model/NumbersATON.java +++ b/src/main/java/com/plaid/client/model/NumbersATON.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Identifying information for transferring holdings to an investments account via ATON. */ @ApiModel(description = "Identifying information for transferring holdings to an investments account via ATON.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NumbersATON { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/NumbersBACS.java b/src/main/java/com/plaid/client/model/NumbersBACS.java index 60e35fa71..557548fc3 100644 --- a/src/main/java/com/plaid/client/model/NumbersBACS.java +++ b/src/main/java/com/plaid/client/model/NumbersBACS.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Identifying information for transferring money to or from a UK bank account via BACS. */ @ApiModel(description = "Identifying information for transferring money to or from a UK bank account via BACS.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NumbersBACS { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/NumbersBACSNullable.java b/src/main/java/com/plaid/client/model/NumbersBACSNullable.java index 53f4c284f..c48bae595 100644 --- a/src/main/java/com/plaid/client/model/NumbersBACSNullable.java +++ b/src/main/java/com/plaid/client/model/NumbersBACSNullable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Identifying information for transferring money to or from a UK bank account via BACS. */ @ApiModel(description = "Identifying information for transferring money to or from a UK bank account via BACS.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NumbersBACSNullable { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/NumbersEFT.java b/src/main/java/com/plaid/client/model/NumbersEFT.java index 999800c2c..f05a306af 100644 --- a/src/main/java/com/plaid/client/model/NumbersEFT.java +++ b/src/main/java/com/plaid/client/model/NumbersEFT.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Identifying information for transferring money to or from a Canadian bank account via EFT. */ @ApiModel(description = "Identifying information for transferring money to or from a Canadian bank account via EFT.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NumbersEFT { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/NumbersEFTNullable.java b/src/main/java/com/plaid/client/model/NumbersEFTNullable.java index 8a5688591..55c18e559 100644 --- a/src/main/java/com/plaid/client/model/NumbersEFTNullable.java +++ b/src/main/java/com/plaid/client/model/NumbersEFTNullable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Identifying information for transferring money to or from a Canadian bank account via EFT. */ @ApiModel(description = "Identifying information for transferring money to or from a Canadian bank account via EFT.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NumbersEFTNullable { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/NumbersIBANNullable.java b/src/main/java/com/plaid/client/model/NumbersIBANNullable.java index ef5b1a446..a6bd45295 100644 --- a/src/main/java/com/plaid/client/model/NumbersIBANNullable.java +++ b/src/main/java/com/plaid/client/model/NumbersIBANNullable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -21,7 +21,7 @@ * International Bank Account Number (IBAN). */ @ApiModel(description = "International Bank Account Number (IBAN).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NumbersIBANNullable { @Override diff --git a/src/main/java/com/plaid/client/model/NumbersInternational.java b/src/main/java/com/plaid/client/model/NumbersInternational.java index 8424744f0..9ff1e0868 100644 --- a/src/main/java/com/plaid/client/model/NumbersInternational.java +++ b/src/main/java/com/plaid/client/model/NumbersInternational.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Identifying information for transferring money to or from an international bank account via wire transfer. */ @ApiModel(description = "Identifying information for transferring money to or from an international bank account via wire transfer.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NumbersInternational { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/NumbersInternationalIBAN.java b/src/main/java/com/plaid/client/model/NumbersInternationalIBAN.java index ee80251dc..04308571b 100644 --- a/src/main/java/com/plaid/client/model/NumbersInternationalIBAN.java +++ b/src/main/java/com/plaid/client/model/NumbersInternationalIBAN.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Account numbers using the International Bank Account Number and BIC/SWIFT code format. */ @ApiModel(description = "Account numbers using the International Bank Account Number and BIC/SWIFT code format.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NumbersInternationalIBAN { public static final String SERIALIZED_NAME_IBAN = "iban"; @SerializedName(SERIALIZED_NAME_IBAN) diff --git a/src/main/java/com/plaid/client/model/NumbersInternationalNullable.java b/src/main/java/com/plaid/client/model/NumbersInternationalNullable.java index 64cbe6f8b..f7f10b1ac 100644 --- a/src/main/java/com/plaid/client/model/NumbersInternationalNullable.java +++ b/src/main/java/com/plaid/client/model/NumbersInternationalNullable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Identifying information for transferring money to or from an international bank account via wire transfer. */ @ApiModel(description = "Identifying information for transferring money to or from an international bank account via wire transfer.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NumbersInternationalNullable { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/NumbersRetirement401k.java b/src/main/java/com/plaid/client/model/NumbersRetirement401k.java index a69e024a7..c744aa42f 100644 --- a/src/main/java/com/plaid/client/model/NumbersRetirement401k.java +++ b/src/main/java/com/plaid/client/model/NumbersRetirement401k.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Identifying information for transferring holdings from a 401k account to another 401k account or IRA via the manual 401k rollover process. */ @ApiModel(description = "Identifying information for transferring holdings from a 401k account to another 401k account or IRA via the manual 401k rollover process.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class NumbersRetirement401k { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/OAuthErrorCode.java b/src/main/java/com/plaid/client/model/OAuthErrorCode.java index 25f10b27c..29449e407 100644 --- a/src/main/java/com/plaid/client/model/OAuthErrorCode.java +++ b/src/main/java/com/plaid/client/model/OAuthErrorCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/OAuthErrorResponse.java b/src/main/java/com/plaid/client/model/OAuthErrorResponse.java index 50007fa0c..b331f7515 100644 --- a/src/main/java/com/plaid/client/model/OAuthErrorResponse.java +++ b/src/main/java/com/plaid/client/model/OAuthErrorResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * OAuth error response */ @ApiModel(description = "OAuth error response") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class OAuthErrorResponse { public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) diff --git a/src/main/java/com/plaid/client/model/OAuthGrantType.java b/src/main/java/com/plaid/client/model/OAuthGrantType.java index 6557fed5a..26b85eee7 100644 --- a/src/main/java/com/plaid/client/model/OAuthGrantType.java +++ b/src/main/java/com/plaid/client/model/OAuthGrantType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/OAuthIntrospectRequest.java b/src/main/java/com/plaid/client/model/OAuthIntrospectRequest.java index aa0b12f05..7ab92d8e5 100644 --- a/src/main/java/com/plaid/client/model/OAuthIntrospectRequest.java +++ b/src/main/java/com/plaid/client/model/OAuthIntrospectRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * OAuth token introspect request. */ @ApiModel(description = "OAuth token introspect request.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class OAuthIntrospectRequest { public static final String SERIALIZED_NAME_TOKEN = "token"; @SerializedName(SERIALIZED_NAME_TOKEN) diff --git a/src/main/java/com/plaid/client/model/OAuthIntrospectResponse.java b/src/main/java/com/plaid/client/model/OAuthIntrospectResponse.java index a0a29d533..a2de4ba04 100644 --- a/src/main/java/com/plaid/client/model/OAuthIntrospectResponse.java +++ b/src/main/java/com/plaid/client/model/OAuthIntrospectResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * OAuth token introspect response */ @ApiModel(description = "OAuth token introspect response") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class OAuthIntrospectResponse { public static final String SERIALIZED_NAME_ACTIVE = "active"; @SerializedName(SERIALIZED_NAME_ACTIVE) diff --git a/src/main/java/com/plaid/client/model/OAuthRevokeRequest.java b/src/main/java/com/plaid/client/model/OAuthRevokeRequest.java index a04d833d1..a0220b690 100644 --- a/src/main/java/com/plaid/client/model/OAuthRevokeRequest.java +++ b/src/main/java/com/plaid/client/model/OAuthRevokeRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * OAuth token revoke request */ @ApiModel(description = "OAuth token revoke request") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class OAuthRevokeRequest { public static final String SERIALIZED_NAME_TOKEN = "token"; @SerializedName(SERIALIZED_NAME_TOKEN) diff --git a/src/main/java/com/plaid/client/model/OAuthRevokeResponse.java b/src/main/java/com/plaid/client/model/OAuthRevokeResponse.java index 03d6ab27d..54fea1757 100644 --- a/src/main/java/com/plaid/client/model/OAuthRevokeResponse.java +++ b/src/main/java/com/plaid/client/model/OAuthRevokeResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Successful OAuth token revoke response */ @ApiModel(description = "Successful OAuth token revoke response") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class OAuthRevokeResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/OAuthSubjectTokenType.java b/src/main/java/com/plaid/client/model/OAuthSubjectTokenType.java index 868cc63b7..94e8ca311 100644 --- a/src/main/java/com/plaid/client/model/OAuthSubjectTokenType.java +++ b/src/main/java/com/plaid/client/model/OAuthSubjectTokenType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/OAuthTokenRequest.java b/src/main/java/com/plaid/client/model/OAuthTokenRequest.java index 2d6ffa79b..1dec9dfe4 100644 --- a/src/main/java/com/plaid/client/model/OAuthTokenRequest.java +++ b/src/main/java/com/plaid/client/model/OAuthTokenRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * OAuth token grant request. */ @ApiModel(description = "OAuth token grant request.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class OAuthTokenRequest { public static final String SERIALIZED_NAME_GRANT_TYPE = "grant_type"; @SerializedName(SERIALIZED_NAME_GRANT_TYPE) diff --git a/src/main/java/com/plaid/client/model/OAuthTokenResponse.java b/src/main/java/com/plaid/client/model/OAuthTokenResponse.java index a32232b8d..f57f0f3d4 100644 --- a/src/main/java/com/plaid/client/model/OAuthTokenResponse.java +++ b/src/main/java/com/plaid/client/model/OAuthTokenResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * OAuth token grant success response */ @ApiModel(description = "OAuth token grant success response") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class OAuthTokenResponse { public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) diff --git a/src/main/java/com/plaid/client/model/OmittableTransferType.java b/src/main/java/com/plaid/client/model/OmittableTransferType.java index 5da75f49c..96d80afe9 100644 --- a/src/main/java/com/plaid/client/model/OmittableTransferType.java +++ b/src/main/java/com/plaid/client/model/OmittableTransferType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/OptionContract.java b/src/main/java/com/plaid/client/model/OptionContract.java index a123342cf..89c052733 100644 --- a/src/main/java/com/plaid/client/model/OptionContract.java +++ b/src/main/java/com/plaid/client/model/OptionContract.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Details about the option security. For the Sandbox environment, this data is currently only available if the Item is using a [custom Sandbox user](https://plaid.com/docs/sandbox/user-custom/) and the `ticker` field of the custom security follows the [OCC Option Symbol](https://en.wikipedia.org/wiki/Option_symbol#The_OCC_Option_Symbol) standard with no spaces. For an example of simulating this in Sandbox, see the [custom Sandbox GitHub](https://github.com/plaid/sandbox-custom-users). */ @ApiModel(description = "Details about the option security. For the Sandbox environment, this data is currently only available if the Item is using a [custom Sandbox user](https://plaid.com/docs/sandbox/user-custom/) and the `ticker` field of the custom security follows the [OCC Option Symbol](https://en.wikipedia.org/wiki/Option_symbol#The_OCC_Option_Symbol) standard with no spaces. For an example of simulating this in Sandbox, see the [custom Sandbox GitHub](https://github.com/plaid/sandbox-custom-users).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class OptionContract { public static final String SERIALIZED_NAME_CONTRACT_TYPE = "contract_type"; @SerializedName(SERIALIZED_NAME_CONTRACT_TYPE) diff --git a/src/main/java/com/plaid/client/model/OriginatingFundSource.java b/src/main/java/com/plaid/client/model/OriginatingFundSource.java index 2c3acd492..c1a3e84fa 100644 --- a/src/main/java/com/plaid/client/model/OriginatingFundSource.java +++ b/src/main/java/com/plaid/client/model/OriginatingFundSource.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The original source of the funds. This field is required by local regulation for certain businesses (e.g. money remittance) to send payouts to recipients in the EU and UK. */ @ApiModel(description = "The original source of the funds. This field is required by local regulation for certain businesses (e.g. money remittance) to send payouts to recipients in the EU and UK.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class OriginatingFundSource { public static final String SERIALIZED_NAME_FULL_NAME = "full_name"; @SerializedName(SERIALIZED_NAME_FULL_NAME) diff --git a/src/main/java/com/plaid/client/model/Originator.java b/src/main/java/com/plaid/client/model/Originator.java index 3a91a572e..cdad39bd1 100644 --- a/src/main/java/com/plaid/client/model/Originator.java +++ b/src/main/java/com/plaid/client/model/Originator.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Originator and their status. */ @ApiModel(description = "Originator and their status.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Originator { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/OriginatorExpectedTransferFrequency.java b/src/main/java/com/plaid/client/model/OriginatorExpectedTransferFrequency.java index 678bdd4c9..77dd3a625 100644 --- a/src/main/java/com/plaid/client/model/OriginatorExpectedTransferFrequency.java +++ b/src/main/java/com/plaid/client/model/OriginatorExpectedTransferFrequency.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/OtherAccountSubtype.java b/src/main/java/com/plaid/client/model/OtherAccountSubtype.java index b270f5bc0..1b62b4072 100644 --- a/src/main/java/com/plaid/client/model/OtherAccountSubtype.java +++ b/src/main/java/com/plaid/client/model/OtherAccountSubtype.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/OtherFilter.java b/src/main/java/com/plaid/client/model/OtherFilter.java index 07a812d2d..add4f2ad1 100644 --- a/src/main/java/com/plaid/client/model/OtherFilter.java +++ b/src/main/java/com/plaid/client/model/OtherFilter.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A filter to apply to `other`-type accounts */ @ApiModel(description = "A filter to apply to `other`-type accounts") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class OtherFilter { public static final String SERIALIZED_NAME_ACCOUNT_SUBTYPES = "account_subtypes"; @SerializedName(SERIALIZED_NAME_ACCOUNT_SUBTYPES) diff --git a/src/main/java/com/plaid/client/model/OutlierTransactionsInsights.java b/src/main/java/com/plaid/client/model/OutlierTransactionsInsights.java index 5529dc402..278819a8d 100644 --- a/src/main/java/com/plaid/client/model/OutlierTransactionsInsights.java +++ b/src/main/java/com/plaid/client/model/OutlierTransactionsInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Insights into unusually large transactions that exceed typical spending patterns for the account. */ @ApiModel(description = "Insights into unusually large transactions that exceed typical spending patterns for the account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class OutlierTransactionsInsights { public static final String SERIALIZED_NAME_TRANSACTIONS_COUNT = "transactions_count"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS_COUNT) diff --git a/src/main/java/com/plaid/client/model/OverrideAccountType.java b/src/main/java/com/plaid/client/model/OverrideAccountType.java index 92e50b90c..2d49e03cc 100644 --- a/src/main/java/com/plaid/client/model/OverrideAccountType.java +++ b/src/main/java/com/plaid/client/model/OverrideAccountType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/OverrideAccounts.java b/src/main/java/com/plaid/client/model/OverrideAccounts.java index 70286266d..c4351d915 100644 --- a/src/main/java/com/plaid/client/model/OverrideAccounts.java +++ b/src/main/java/com/plaid/client/model/OverrideAccounts.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -41,7 +41,7 @@ * Data to use to set values of test accounts. Some values cannot be specified in the schema and will instead will be calculated from other test data in order to achieve more consistent, realistic test data. */ @ApiModel(description = "Data to use to set values of test accounts. Some values cannot be specified in the schema and will instead will be calculated from other test data in order to achieve more consistent, realistic test data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class OverrideAccounts { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) @@ -59,6 +59,10 @@ public class OverrideAccounts { @SerializedName(SERIALIZED_NAME_FORCE_AVAILABLE_BALANCE) private Double forceAvailableBalance; + public static final String SERIALIZED_NAME_HAS_NULL_AVAILABLE_BALANCE = "has_null_available_balance"; + @SerializedName(SERIALIZED_NAME_HAS_NULL_AVAILABLE_BALANCE) + private Boolean hasNullAvailableBalance; + public static final String SERIALIZED_NAME_CURRENCY = "currency"; @SerializedName(SERIALIZED_NAME_CURRENCY) private String currency; @@ -174,10 +178,10 @@ public OverrideAccounts forceAvailableBalance(Double forceAvailableBalance) { } /** - * If provided, the account will always have this amount as its available balance, regardless of current balance or changes in transactions over time. + * If provided, the account will always have this amount as its available balance, regardless of current balance or changes in transactions over time. Cannot be set together with `has_null_available_balance`. * @return forceAvailableBalance **/ - @ApiModelProperty(required = true, value = "If provided, the account will always have this amount as its available balance, regardless of current balance or changes in transactions over time.") + @ApiModelProperty(required = true, value = "If provided, the account will always have this amount as its available balance, regardless of current balance or changes in transactions over time. Cannot be set together with `has_null_available_balance`. ") public Double getForceAvailableBalance() { return forceAvailableBalance; @@ -189,6 +193,28 @@ public void setForceAvailableBalance(Double forceAvailableBalance) { } + public OverrideAccounts hasNullAvailableBalance(Boolean hasNullAvailableBalance) { + + this.hasNullAvailableBalance = hasNullAvailableBalance; + return this; + } + + /** + * If set to `true`, the account will always have null as its available balance, regardless of current balance or changes in transactions over time. Cannot be set together with `force_available_balance`. + * @return hasNullAvailableBalance + **/ + @ApiModelProperty(required = true, value = "If set to `true`, the account will always have null as its available balance, regardless of current balance or changes in transactions over time. Cannot be set together with `force_available_balance`. ") + + public Boolean getHasNullAvailableBalance() { + return hasNullAvailableBalance; + } + + + public void setHasNullAvailableBalance(Boolean hasNullAvailableBalance) { + this.hasNullAvailableBalance = hasNullAvailableBalance; + } + + public OverrideAccounts currency(String currency) { this.currency = currency; @@ -430,6 +456,7 @@ public boolean equals(Object o) { Objects.equals(this.subtype, overrideAccounts.subtype) && Objects.equals(this.startingBalance, overrideAccounts.startingBalance) && Objects.equals(this.forceAvailableBalance, overrideAccounts.forceAvailableBalance) && + Objects.equals(this.hasNullAvailableBalance, overrideAccounts.hasNullAvailableBalance) && Objects.equals(this.currency, overrideAccounts.currency) && Objects.equals(this.meta, overrideAccounts.meta) && Objects.equals(this.numbers, overrideAccounts.numbers) && @@ -444,7 +471,7 @@ public boolean equals(Object o) { @Override public int hashCode() { - return Objects.hash(type, subtype, startingBalance, forceAvailableBalance, currency, meta, numbers, transactions, holdings, investmentTransactions, identity, liability, inflowModel, income); + return Objects.hash(type, subtype, startingBalance, forceAvailableBalance, hasNullAvailableBalance, currency, meta, numbers, transactions, holdings, investmentTransactions, identity, liability, inflowModel, income); } @Override @@ -455,6 +482,7 @@ public String toString() { sb.append(" subtype: ").append(toIndentedString(subtype)).append("\n"); sb.append(" startingBalance: ").append(toIndentedString(startingBalance)).append("\n"); sb.append(" forceAvailableBalance: ").append(toIndentedString(forceAvailableBalance)).append("\n"); + sb.append(" hasNullAvailableBalance: ").append(toIndentedString(hasNullAvailableBalance)).append("\n"); sb.append(" currency: ").append(toIndentedString(currency)).append("\n"); sb.append(" meta: ").append(toIndentedString(meta)).append("\n"); sb.append(" numbers: ").append(toIndentedString(numbers)).append("\n"); diff --git a/src/main/java/com/plaid/client/model/Owner.java b/src/main/java/com/plaid/client/model/Owner.java index e6f770f6a..76ab65a4a 100644 --- a/src/main/java/com/plaid/client/model/Owner.java +++ b/src/main/java/com/plaid/client/model/Owner.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Data returned from the financial institution about the owner or owners of an account. Only the `names` array must be non-empty. */ @ApiModel(description = "Data returned from the financial institution about the owner or owners of an account. Only the `names` array must be non-empty.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Owner { public static final String SERIALIZED_NAME_NAMES = "names"; @SerializedName(SERIALIZED_NAME_NAMES) diff --git a/src/main/java/com/plaid/client/model/OwnerOverride.java b/src/main/java/com/plaid/client/model/OwnerOverride.java index 7d66b003e..c0d682284 100644 --- a/src/main/java/com/plaid/client/model/OwnerOverride.java +++ b/src/main/java/com/plaid/client/model/OwnerOverride.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Data about the owner or owners of an account. Any fields not specified will be filled in with default Sandbox information. */ @ApiModel(description = "Data about the owner or owners of an account. Any fields not specified will be filled in with default Sandbox information.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class OwnerOverride { public static final String SERIALIZED_NAME_NAMES = "names"; @SerializedName(SERIALIZED_NAME_NAMES) diff --git a/src/main/java/com/plaid/client/model/OwnershipType.java b/src/main/java/com/plaid/client/model/OwnershipType.java index 4c916f9d7..269ec3063 100644 --- a/src/main/java/com/plaid/client/model/OwnershipType.java +++ b/src/main/java/com/plaid/client/model/OwnershipType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/POBoxStatus.java b/src/main/java/com/plaid/client/model/POBoxStatus.java index 56bf27918..6f87cda50 100644 --- a/src/main/java/com/plaid/client/model/POBoxStatus.java +++ b/src/main/java/com/plaid/client/model/POBoxStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PSLFStatus.java b/src/main/java/com/plaid/client/model/PSLFStatus.java index 4a6a5978c..cd834bac8 100644 --- a/src/main/java/com/plaid/client/model/PSLFStatus.java +++ b/src/main/java/com/plaid/client/model/PSLFStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Information about the student's eligibility in the Public Service Loan Forgiveness program. This is only returned if the institution is FedLoan (`ins_116527`). Since FedLoan no longer services student loans, this field is no longer returned. */ @ApiModel(description = "Information about the student's eligibility in the Public Service Loan Forgiveness program. This is only returned if the institution is FedLoan (`ins_116527`). Since FedLoan no longer services student loans, this field is no longer returned. ") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PSLFStatus { public static final String SERIALIZED_NAME_ESTIMATED_ELIGIBILITY_DATE = "estimated_eligibility_date"; @SerializedName(SERIALIZED_NAME_ESTIMATED_ELIGIBILITY_DATE) diff --git a/src/main/java/com/plaid/client/model/Parties.java b/src/main/java/com/plaid/client/model/Parties.java index 280037e6a..4aab166b6 100644 --- a/src/main/java/com/plaid/client/model/Parties.java +++ b/src/main/java/com/plaid/client/model/Parties.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A collection of objects that define specific parties to a deal. This includes the direct participating parties, such as borrower and seller and the indirect parties such as the credit report provider. */ @ApiModel(description = "A collection of objects that define specific parties to a deal. This includes the direct participating parties, such as borrower and seller and the indirect parties such as the credit report provider.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Parties { public static final String SERIALIZED_NAME_P_A_R_T_Y = "PARTY"; @SerializedName(SERIALIZED_NAME_P_A_R_T_Y) diff --git a/src/main/java/com/plaid/client/model/PartnerCustomerCreateRequest.java b/src/main/java/com/plaid/client/model/PartnerCustomerCreateRequest.java index 31b1b6f07..71a510ac8 100644 --- a/src/main/java/com/plaid/client/model/PartnerCustomerCreateRequest.java +++ b/src/main/java/com/plaid/client/model/PartnerCustomerCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -36,7 +36,7 @@ * Request schema for `/partner/customer/create`. */ @ApiModel(description = "Request schema for `/partner/customer/create`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerCustomerCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PartnerCustomerCreateResponse.java b/src/main/java/com/plaid/client/model/PartnerCustomerCreateResponse.java index b90722f76..87df22fee 100644 --- a/src/main/java/com/plaid/client/model/PartnerCustomerCreateResponse.java +++ b/src/main/java/com/plaid/client/model/PartnerCustomerCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Response schema for `/partner/customer/create`. */ @ApiModel(description = "Response schema for `/partner/customer/create`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerCustomerCreateResponse { public static final String SERIALIZED_NAME_END_CUSTOMER = "end_customer"; @SerializedName(SERIALIZED_NAME_END_CUSTOMER) diff --git a/src/main/java/com/plaid/client/model/PartnerCustomerEnableRequest.java b/src/main/java/com/plaid/client/model/PartnerCustomerEnableRequest.java index 349561877..7bcf582dd 100644 --- a/src/main/java/com/plaid/client/model/PartnerCustomerEnableRequest.java +++ b/src/main/java/com/plaid/client/model/PartnerCustomerEnableRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request schema for `/partner/customer/enable`. */ @ApiModel(description = "Request schema for `/partner/customer/enable`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerCustomerEnableRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PartnerCustomerEnableResponse.java b/src/main/java/com/plaid/client/model/PartnerCustomerEnableResponse.java index 79799b34e..c14bf5bb3 100644 --- a/src/main/java/com/plaid/client/model/PartnerCustomerEnableResponse.java +++ b/src/main/java/com/plaid/client/model/PartnerCustomerEnableResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Response schema for `/partner/customer/enable`. */ @ApiModel(description = "Response schema for `/partner/customer/enable`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerCustomerEnableResponse { public static final String SERIALIZED_NAME_PRODUCTION_SECRET = "production_secret"; @SerializedName(SERIALIZED_NAME_PRODUCTION_SECRET) diff --git a/src/main/java/com/plaid/client/model/PartnerCustomerGetRequest.java b/src/main/java/com/plaid/client/model/PartnerCustomerGetRequest.java index fa35eb245..6a9bc1cec 100644 --- a/src/main/java/com/plaid/client/model/PartnerCustomerGetRequest.java +++ b/src/main/java/com/plaid/client/model/PartnerCustomerGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request schema for `/partner/customer/get`. */ @ApiModel(description = "Request schema for `/partner/customer/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerCustomerGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PartnerCustomerGetResponse.java b/src/main/java/com/plaid/client/model/PartnerCustomerGetResponse.java index cbb1844fb..8db122cbd 100644 --- a/src/main/java/com/plaid/client/model/PartnerCustomerGetResponse.java +++ b/src/main/java/com/plaid/client/model/PartnerCustomerGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Response schema for `/partner/customer/get`. */ @ApiModel(description = "Response schema for `/partner/customer/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerCustomerGetResponse { public static final String SERIALIZED_NAME_END_CUSTOMER = "end_customer"; @SerializedName(SERIALIZED_NAME_END_CUSTOMER) diff --git a/src/main/java/com/plaid/client/model/PartnerCustomerOAuthInstitutionsGetRequest.java b/src/main/java/com/plaid/client/model/PartnerCustomerOAuthInstitutionsGetRequest.java index ed3ed313e..1444218ec 100644 --- a/src/main/java/com/plaid/client/model/PartnerCustomerOAuthInstitutionsGetRequest.java +++ b/src/main/java/com/plaid/client/model/PartnerCustomerOAuthInstitutionsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request schema for `/partner/customer/oauth_institutions/get`. */ @ApiModel(description = "Request schema for `/partner/customer/oauth_institutions/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerCustomerOAuthInstitutionsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PartnerCustomerOAuthInstitutionsGetResponse.java b/src/main/java/com/plaid/client/model/PartnerCustomerOAuthInstitutionsGetResponse.java index b6947a86b..97fe84e81 100644 --- a/src/main/java/com/plaid/client/model/PartnerCustomerOAuthInstitutionsGetResponse.java +++ b/src/main/java/com/plaid/client/model/PartnerCustomerOAuthInstitutionsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Response schema for `/partner/customer/oauth_institutions/get`. */ @ApiModel(description = "Response schema for `/partner/customer/oauth_institutions/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerCustomerOAuthInstitutionsGetResponse { public static final String SERIALIZED_NAME_FLOWDOWN_STATUS = "flowdown_status"; @SerializedName(SERIALIZED_NAME_FLOWDOWN_STATUS) diff --git a/src/main/java/com/plaid/client/model/PartnerCustomerRemoveRequest.java b/src/main/java/com/plaid/client/model/PartnerCustomerRemoveRequest.java index 5275b4bd2..1aff2f7a9 100644 --- a/src/main/java/com/plaid/client/model/PartnerCustomerRemoveRequest.java +++ b/src/main/java/com/plaid/client/model/PartnerCustomerRemoveRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request schema for `/partner/customer/remove`. */ @ApiModel(description = "Request schema for `/partner/customer/remove`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerCustomerRemoveRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PartnerCustomerRemoveResponse.java b/src/main/java/com/plaid/client/model/PartnerCustomerRemoveResponse.java index 5e2f40731..5149c9fc0 100644 --- a/src/main/java/com/plaid/client/model/PartnerCustomerRemoveResponse.java +++ b/src/main/java/com/plaid/client/model/PartnerCustomerRemoveResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Response schema for `/partner/customer/remove`. */ @ApiModel(description = "Response schema for `/partner/customer/remove`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerCustomerRemoveResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomer.java b/src/main/java/com/plaid/client/model/PartnerEndCustomer.java index d498a738b..db61d4a4d 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomer.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomer.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The details for an end customer. */ @ApiModel(description = "The details for an end customer.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerEndCustomer { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerAddress.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerAddress.java index 0bbb31308..d4306c807 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerAddress.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The end customer's address. */ @ApiModel(description = "The end customer's address.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerEndCustomerAddress { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerAssetsUnderManagement.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerAssetsUnderManagement.java index b950a90b8..e4d1ea2e5 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerAssetsUnderManagement.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerAssetsUnderManagement.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Assets under management for the given end customer. Required for end customers with monthly service commitments. */ @ApiModel(description = "Assets under management for the given end customer. Required for end customers with monthly service commitments.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerEndCustomerAssetsUnderManagement { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerBankAddendumAcceptance.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerBankAddendumAcceptance.java index d68bf4a88..7ae45a84c 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerBankAddendumAcceptance.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerBankAddendumAcceptance.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The bank addendum acceptance for the end customer. */ @ApiModel(description = "The bank addendum acceptance for the end customer.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerEndCustomerBankAddendumAcceptance { public static final String SERIALIZED_NAME_CUSTOMER_ACCEPTED = "customer_accepted"; @SerializedName(SERIALIZED_NAME_CUSTOMER_ACCEPTED) diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerBillingContact.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerBillingContact.java index 84bfc73b0..8d291c5ca 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerBillingContact.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerBillingContact.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The billing contact for the end customer. Defaults to partner's billing contact if omitted. */ @ApiModel(description = "The billing contact for the end customer. Defaults to partner's billing contact if omitted.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerEndCustomerBillingContact { public static final String SERIALIZED_NAME_GIVEN_NAME = "given_name"; @SerializedName(SERIALIZED_NAME_GIVEN_NAME) diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAPurposes.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAPurposes.java index d20a40e87..8e524622c 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAPurposes.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAPurposes.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A map of permissible purposes to their corresponding use cases. */ @ApiModel(description = "A map of permissible purposes to their corresponding use cases.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerEndCustomerCRAPurposes { public static final String SERIALIZED_NAME_W_R_I_T_T_E_N_I_N_S_T_R_U_C_T_I_O_N = "WRITTEN_INSTRUCTION"; @SerializedName(SERIALIZED_NAME_W_R_I_T_T_E_N_I_N_S_T_R_U_C_T_I_O_N) diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAQuestionnaire.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAQuestionnaire.java index bfd2069fc..bc359a605 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAQuestionnaire.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAQuestionnaire.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The CRA questionnaire for the end customer. */ @ApiModel(description = "The CRA questionnaire for the end customer.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerEndCustomerCRAQuestionnaire { public static final String SERIALIZED_NAME_PURPOSES = "purposes"; @SerializedName(SERIALIZED_NAME_PURPOSES) diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAUseCase.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAUseCase.java index 714a8ccce..1f43afaa3 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAUseCase.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAUseCase.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAUseCases.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAUseCases.java index b48aff7a5..f74442a2e 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAUseCases.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAUseCases.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The list of use cases associated with a given permissible purpose. */ @ApiModel(description = "The list of use cases associated with a given permissible purpose.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerEndCustomerCRAUseCases { public static final String SERIALIZED_NAME_USE_CASES = "use_cases"; @SerializedName(SERIALIZED_NAME_USE_CASES) diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerCustomerSupportInfo.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerCustomerSupportInfo.java index a50f530d8..b7297becc 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerCustomerSupportInfo.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerCustomerSupportInfo.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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. */ @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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerEndCustomerCustomerSupportInfo { public static final String SERIALIZED_NAME_EMAIL = "email"; @SerializedName(SERIALIZED_NAME_EMAIL) diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerFlowdownStatus.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerFlowdownStatus.java index 53ff6fccb..751385d9f 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerFlowdownStatus.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerFlowdownStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthInstitution.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthInstitution.java index ecbc93dcf..be8a6a1c3 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthInstitution.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthInstitution.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * The OAuth registration information for an institution. */ @ApiModel(description = "The OAuth registration information for an institution.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerEndCustomerOAuthInstitution { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthInstitutionApplicationStatus.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthInstitutionApplicationStatus.java index 435b4adbd..9d77e70cc 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthInstitutionApplicationStatus.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthInstitutionApplicationStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthInstitutionEnvironments.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthInstitutionEnvironments.java index 1d1f970ea..518e4deb3 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthInstitutionEnvironments.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthInstitutionEnvironments.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Registration statuses by environment. */ @ApiModel(description = "Registration statuses by environment.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerEndCustomerOAuthInstitutionEnvironments { public static final String SERIALIZED_NAME_DEVELOPMENT = "development"; @SerializedName(SERIALIZED_NAME_DEVELOPMENT) diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthStatusUpdatedValues.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthStatusUpdatedValues.java index 355926d67..7e5bb9e33 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthStatusUpdatedValues.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthStatusUpdatedValues.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthStatusUpdatedWebhook.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthStatusUpdatedWebhook.java index abe1e258f..f6aca0f28 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthStatusUpdatedWebhook.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthStatusUpdatedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The webhook of type `PARTNER` and code `END_CUSTOMER_OAUTH_STATUS_UPDATED` will be fired when a partner's end customer has an update on their OAuth registration status with an institution. */ @ApiModel(description = "The webhook of type `PARTNER` and code `END_CUSTOMER_OAUTH_STATUS_UPDATED` will be fired when a partner's end customer has an update on their OAuth registration status with an institution.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerEndCustomerOAuthStatusUpdatedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerQuestionnaireStatus.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerQuestionnaireStatus.java index 69aa30ef7..9c8a97651 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerQuestionnaireStatus.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerQuestionnaireStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerQuestionnaires.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerQuestionnaires.java index cf7ce2e66..ba73fdd22 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerQuestionnaires.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerQuestionnaires.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The questionnaires for the end customer. */ @ApiModel(description = "The questionnaires for the end customer.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerEndCustomerQuestionnaires { public static final String SERIALIZED_NAME_CRA = "cra"; @SerializedName(SERIALIZED_NAME_CRA) diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerRequirementDue.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerRequirementDue.java index a14ede948..eb0be050d 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerRequirementDue.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerRequirementDue.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerSecrets.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerSecrets.java index a12a3541e..865bdaae9 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerSecrets.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerSecrets.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The secrets for the newly created end customer. */ @ApiModel(description = "The secrets for the newly created end customer.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerEndCustomerSecrets { public static final String SERIALIZED_NAME_SANDBOX = "sandbox"; @SerializedName(SERIALIZED_NAME_SANDBOX) diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerStatus.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerStatus.java index f7620989c..f29b292bd 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerStatus.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerTechnicalContact.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerTechnicalContact.java index 80b00ee84..6288a2a61 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerTechnicalContact.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerTechnicalContact.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The technical contact for the end customer. Defaults to partner'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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerEndCustomerTechnicalContact { public static final String SERIALIZED_NAME_GIVEN_NAME = "given_name"; @SerializedName(SERIALIZED_NAME_GIVEN_NAME) diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerWithSecrets.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerWithSecrets.java index e88488ba1..57ee0c56f 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerWithSecrets.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerWithSecrets.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * The details for the newly created end customer, including secrets for Sandbox and Limited Production. */ @ApiModel(description = "The details for the newly created end customer, including secrets for Sandbox and Limited Production.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerEndCustomerWithSecrets { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PartnerEndCustomerWithSecretsAllOf.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerWithSecretsAllOf.java index b8bfbcfaf..260c20317 100644 --- a/src/main/java/com/plaid/client/model/PartnerEndCustomerWithSecretsAllOf.java +++ b/src/main/java/com/plaid/client/model/PartnerEndCustomerWithSecretsAllOf.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ /** * PartnerEndCustomerWithSecretsAllOf */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartnerEndCustomerWithSecretsAllOf { public static final String SERIALIZED_NAME_SECRETS = "secrets"; @SerializedName(SERIALIZED_NAME_SECRETS) diff --git a/src/main/java/com/plaid/client/model/Party.java b/src/main/java/com/plaid/client/model/Party.java index aff6f5b24..05a6800e0 100644 --- a/src/main/java/com/plaid/client/model/Party.java +++ b/src/main/java/com/plaid/client/model/Party.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A collection of information about a single party to a transaction. Included direct participants like the borrower and seller as well as indirect participants such as the flood certificate provider. */ @ApiModel(description = "A collection of information about a single party to a transaction. Included direct participants like the borrower and seller as well as indirect participants such as the flood certificate provider.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Party { public static final String SERIALIZED_NAME_I_N_D_I_V_I_D_U_A_L = "INDIVIDUAL"; @SerializedName(SERIALIZED_NAME_I_N_D_I_V_I_D_U_A_L) diff --git a/src/main/java/com/plaid/client/model/PartyIndividual.java b/src/main/java/com/plaid/client/model/PartyIndividual.java index b267367ca..584fd672e 100644 --- a/src/main/java/com/plaid/client/model/PartyIndividual.java +++ b/src/main/java/com/plaid/client/model/PartyIndividual.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PartyIndividual { public static final String SERIALIZED_NAME_N_A_M_E = "NAME"; @SerializedName(SERIALIZED_NAME_N_A_M_E) diff --git a/src/main/java/com/plaid/client/model/PartyRoleType.java b/src/main/java/com/plaid/client/model/PartyRoleType.java index 9ae5493e2..9c4977938 100644 --- a/src/main/java/com/plaid/client/model/PartyRoleType.java +++ b/src/main/java/com/plaid/client/model/PartyRoleType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/Pay.java b/src/main/java/com/plaid/client/model/Pay.java index e3003f039..96a99e055 100644 --- a/src/main/java/com/plaid/client/model/Pay.java +++ b/src/main/java/com/plaid/client/model/Pay.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object representing a monetary amount. */ @ApiModel(description = "An object representing a monetary amount.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Pay { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/PayFrequency.java b/src/main/java/com/plaid/client/model/PayFrequency.java index cfb5298a2..e1a618f84 100644 --- a/src/main/java/com/plaid/client/model/PayFrequency.java +++ b/src/main/java/com/plaid/client/model/PayFrequency.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The frequency of the pay period. */ @ApiModel(description = "The frequency of the pay period.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PayFrequency { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) diff --git a/src/main/java/com/plaid/client/model/PayFrequencyValue.java b/src/main/java/com/plaid/client/model/PayFrequencyValue.java index 03c0aeb1e..480b63d1f 100644 --- a/src/main/java/com/plaid/client/model/PayFrequencyValue.java +++ b/src/main/java/com/plaid/client/model/PayFrequencyValue.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PayPeriodDetails.java b/src/main/java/com/plaid/client/model/PayPeriodDetails.java index 404b1c3d6..52438b980 100644 --- a/src/main/java/com/plaid/client/model/PayPeriodDetails.java +++ b/src/main/java/com/plaid/client/model/PayPeriodDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Details about the pay period. */ @ApiModel(description = "Details about the pay period.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PayPeriodDetails { public static final String SERIALIZED_NAME_CHECK_AMOUNT = "check_amount"; @SerializedName(SERIALIZED_NAME_CHECK_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/PayPeriodDetailsPayFrequency.java b/src/main/java/com/plaid/client/model/PayPeriodDetailsPayFrequency.java index 9146a1f6b..2fb4ac506 100644 --- a/src/main/java/com/plaid/client/model/PayPeriodDetailsPayFrequency.java +++ b/src/main/java/com/plaid/client/model/PayPeriodDetailsPayFrequency.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PayStubDeductionsBreakdown.java b/src/main/java/com/plaid/client/model/PayStubDeductionsBreakdown.java index 9529489bf..c598f6bc5 100644 --- a/src/main/java/com/plaid/client/model/PayStubDeductionsBreakdown.java +++ b/src/main/java/com/plaid/client/model/PayStubDeductionsBreakdown.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object representing the deduction line items for the pay period */ @ApiModel(description = "An object representing the deduction line items for the pay period") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PayStubDeductionsBreakdown { public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount"; @SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/PayStubDeductionsTotal.java b/src/main/java/com/plaid/client/model/PayStubDeductionsTotal.java index 41cde93c0..3a6c21e6f 100644 --- a/src/main/java/com/plaid/client/model/PayStubDeductionsTotal.java +++ b/src/main/java/com/plaid/client/model/PayStubDeductionsTotal.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object representing the total deductions for the pay period */ @ApiModel(description = "An object representing the total deductions for the pay period") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PayStubDeductionsTotal { public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount"; @SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/PayStubDistributionBreakdown.java b/src/main/java/com/plaid/client/model/PayStubDistributionBreakdown.java index 1679e322c..f4670cded 100644 --- a/src/main/java/com/plaid/client/model/PayStubDistributionBreakdown.java +++ b/src/main/java/com/plaid/client/model/PayStubDistributionBreakdown.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Information about the accounts that the payment was distributed to. */ @ApiModel(description = "Information about the accounts that the payment was distributed to.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PayStubDistributionBreakdown { public static final String SERIALIZED_NAME_ACCOUNT_NAME = "account_name"; @SerializedName(SERIALIZED_NAME_ACCOUNT_NAME) diff --git a/src/main/java/com/plaid/client/model/PayStubEarningsBreakdown.java b/src/main/java/com/plaid/client/model/PayStubEarningsBreakdown.java index babc4bc74..3a1d0068e 100644 --- a/src/main/java/com/plaid/client/model/PayStubEarningsBreakdown.java +++ b/src/main/java/com/plaid/client/model/PayStubEarningsBreakdown.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object representing the earnings line items for the pay period. */ @ApiModel(description = "An object representing the earnings line items for the pay period.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PayStubEarningsBreakdown { public static final String SERIALIZED_NAME_CANONICAL_DESCRIPTION = "canonical_description"; @SerializedName(SERIALIZED_NAME_CANONICAL_DESCRIPTION) diff --git a/src/main/java/com/plaid/client/model/PayStubEarningsTotal.java b/src/main/java/com/plaid/client/model/PayStubEarningsTotal.java index ce19b2ee9..42ccfc378 100644 --- a/src/main/java/com/plaid/client/model/PayStubEarningsTotal.java +++ b/src/main/java/com/plaid/client/model/PayStubEarningsTotal.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object representing both the current pay period and year to date amount for an earning category. */ @ApiModel(description = "An object representing both the current pay period and year to date amount for an earning category.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PayStubEarningsTotal { public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount"; @SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/PayStubPayPeriodDetails.java b/src/main/java/com/plaid/client/model/PayStubPayPeriodDetails.java index a91deac48..99318c31d 100644 --- a/src/main/java/com/plaid/client/model/PayStubPayPeriodDetails.java +++ b/src/main/java/com/plaid/client/model/PayStubPayPeriodDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Details about the pay period. */ @ApiModel(description = "Details about the pay period.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PayStubPayPeriodDetails { public static final String SERIALIZED_NAME_PAY_AMOUNT = "pay_amount"; @SerializedName(SERIALIZED_NAME_PAY_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/PayStubTaxpayerID.java b/src/main/java/com/plaid/client/model/PayStubTaxpayerID.java index fa52aeacd..4c1fb6d6a 100644 --- a/src/main/java/com/plaid/client/model/PayStubTaxpayerID.java +++ b/src/main/java/com/plaid/client/model/PayStubTaxpayerID.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PayStubTaxpayerID { public static final String SERIALIZED_NAME_ID_TYPE = "id_type"; @SerializedName(SERIALIZED_NAME_ID_TYPE) diff --git a/src/main/java/com/plaid/client/model/PaymentAmount.java b/src/main/java/com/plaid/client/model/PaymentAmount.java index 1697adb26..7dfe79c12 100644 --- a/src/main/java/com/plaid/client/model/PaymentAmount.java +++ b/src/main/java/com/plaid/client/model/PaymentAmount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentAmount { public static final String SERIALIZED_NAME_CURRENCY = "currency"; @SerializedName(SERIALIZED_NAME_CURRENCY) diff --git a/src/main/java/com/plaid/client/model/PaymentAmountCurrency.java b/src/main/java/com/plaid/client/model/PaymentAmountCurrency.java index 9b056a87e..7cc8a2ad4 100644 --- a/src/main/java/com/plaid/client/model/PaymentAmountCurrency.java +++ b/src/main/java/com/plaid/client/model/PaymentAmountCurrency.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PaymentAmountNullable.java b/src/main/java/com/plaid/client/model/PaymentAmountNullable.java index 00dea3e68..804153ba3 100644 --- a/src/main/java/com/plaid/client/model/PaymentAmountNullable.java +++ b/src/main/java/com/plaid/client/model/PaymentAmountNullable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentAmountNullable { public static final String SERIALIZED_NAME_CURRENCY = "currency"; @SerializedName(SERIALIZED_NAME_CURRENCY) diff --git a/src/main/java/com/plaid/client/model/PaymentAmountRefunded.java b/src/main/java/com/plaid/client/model/PaymentAmountRefunded.java index 2ce30f71e..9afdc5f14 100644 --- a/src/main/java/com/plaid/client/model/PaymentAmountRefunded.java +++ b/src/main/java/com/plaid/client/model/PaymentAmountRefunded.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentAmountRefunded { public static final String SERIALIZED_NAME_CURRENCY = "currency"; @SerializedName(SERIALIZED_NAME_CURRENCY) diff --git a/src/main/java/com/plaid/client/model/PaymentAmountToRefund.java b/src/main/java/com/plaid/client/model/PaymentAmountToRefund.java index 89a97628f..ef1ccf9a9 100644 --- a/src/main/java/com/plaid/client/model/PaymentAmountToRefund.java +++ b/src/main/java/com/plaid/client/model/PaymentAmountToRefund.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentAmountToRefund { public static final String SERIALIZED_NAME_CURRENCY = "currency"; @SerializedName(SERIALIZED_NAME_CURRENCY) diff --git a/src/main/java/com/plaid/client/model/PaymentChannel.java b/src/main/java/com/plaid/client/model/PaymentChannel.java index f08b92383..82d51ca0e 100644 --- a/src/main/java/com/plaid/client/model/PaymentChannel.java +++ b/src/main/java/com/plaid/client/model/PaymentChannel.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PaymentConsentMaxPaymentAmount.java b/src/main/java/com/plaid/client/model/PaymentConsentMaxPaymentAmount.java index 3b237e7d1..f718fe7b5 100644 --- a/src/main/java/com/plaid/client/model/PaymentConsentMaxPaymentAmount.java +++ b/src/main/java/com/plaid/client/model/PaymentConsentMaxPaymentAmount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Maximum amount of a single payment initiated using the payment consent. */ @ApiModel(description = "Maximum amount of a single payment initiated using the payment consent.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentConsentMaxPaymentAmount { public static final String SERIALIZED_NAME_CURRENCY = "currency"; @SerializedName(SERIALIZED_NAME_CURRENCY) diff --git a/src/main/java/com/plaid/client/model/PaymentConsentPeriodicAlignment.java b/src/main/java/com/plaid/client/model/PaymentConsentPeriodicAlignment.java index 6bbfe8eab..15182e794 100644 --- a/src/main/java/com/plaid/client/model/PaymentConsentPeriodicAlignment.java +++ b/src/main/java/com/plaid/client/model/PaymentConsentPeriodicAlignment.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PaymentConsentPeriodicAmount.java b/src/main/java/com/plaid/client/model/PaymentConsentPeriodicAmount.java index e6175acdf..a7924ddde 100644 --- a/src/main/java/com/plaid/client/model/PaymentConsentPeriodicAmount.java +++ b/src/main/java/com/plaid/client/model/PaymentConsentPeriodicAmount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Defines consent payments limitations per period. */ @ApiModel(description = "Defines consent payments limitations per period.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentConsentPeriodicAmount { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/PaymentConsentPeriodicAmountAmount.java b/src/main/java/com/plaid/client/model/PaymentConsentPeriodicAmountAmount.java index e17fcc8fb..6a86d0d1b 100644 --- a/src/main/java/com/plaid/client/model/PaymentConsentPeriodicAmountAmount.java +++ b/src/main/java/com/plaid/client/model/PaymentConsentPeriodicAmountAmount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Maximum cumulative amount for all payments in the specified interval. */ @ApiModel(description = "Maximum cumulative amount for all payments in the specified interval.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentConsentPeriodicAmountAmount { public static final String SERIALIZED_NAME_CURRENCY = "currency"; @SerializedName(SERIALIZED_NAME_CURRENCY) diff --git a/src/main/java/com/plaid/client/model/PaymentConsentPeriodicInterval.java b/src/main/java/com/plaid/client/model/PaymentConsentPeriodicInterval.java index 9d66781e0..bccdc14e1 100644 --- a/src/main/java/com/plaid/client/model/PaymentConsentPeriodicInterval.java +++ b/src/main/java/com/plaid/client/model/PaymentConsentPeriodicInterval.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PaymentConsentValidDateTime.java b/src/main/java/com/plaid/client/model/PaymentConsentValidDateTime.java index 0137b6fef..ced0de457 100644 --- a/src/main/java/com/plaid/client/model/PaymentConsentValidDateTime.java +++ b/src/main/java/com/plaid/client/model/PaymentConsentValidDateTime.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Life span for the payment consent. After the `to` date the payment consent expires and can no longer be used for payment initiation. */ @ApiModel(description = "Life span for the payment consent. After the `to` date the payment consent expires and can no longer be used for payment initiation.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentConsentValidDateTime { public static final String SERIALIZED_NAME_FROM = "from"; @SerializedName(SERIALIZED_NAME_FROM) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationAddress.java b/src/main/java/com/plaid/client/model/PaymentInitiationAddress.java index 898b7cc9f..43c310d26 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationAddress.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The optional address of the payment recipient'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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationAddress { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationConsent.java b/src/main/java/com/plaid/client/model/PaymentInitiationConsent.java index 8bc0e2224..c4dcf2a59 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationConsent.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationConsent.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -36,7 +36,7 @@ * PaymentInitiationConsent defines a payment initiation consent. */ @ApiModel(description = "PaymentInitiationConsent defines a payment initiation consent.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationConsent { public static final String SERIALIZED_NAME_CONSENT_ID = "consent_id"; @SerializedName(SERIALIZED_NAME_CONSENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationConsentConstraints.java b/src/main/java/com/plaid/client/model/PaymentInitiationConsentConstraints.java index 29475d5af..e8eb2f55b 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationConsentConstraints.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationConsentConstraints.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Limitations that will be applied to payments initiated using the payment consent. */ @ApiModel(description = "Limitations that will be applied to payments initiated using the payment consent.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationConsentConstraints { public static final String SERIALIZED_NAME_VALID_DATE_TIME = "valid_date_time"; @SerializedName(SERIALIZED_NAME_VALID_DATE_TIME) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationConsentCreateRequest.java b/src/main/java/com/plaid/client/model/PaymentInitiationConsentCreateRequest.java index 34774294a..463544831 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationConsentCreateRequest.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationConsentCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -36,7 +36,7 @@ * PaymentInitiationConsentCreateRequest defines the request schema for `/payment_initiation/consent/create` */ @ApiModel(description = "PaymentInitiationConsentCreateRequest defines the request schema for `/payment_initiation/consent/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationConsentCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationConsentCreateResponse.java b/src/main/java/com/plaid/client/model/PaymentInitiationConsentCreateResponse.java index 771357d88..3a2d8eeb8 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationConsentCreateResponse.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationConsentCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * PaymentInitiationConsentCreateResponse defines the response schema for `/payment_initiation/consent/create` */ @ApiModel(description = "PaymentInitiationConsentCreateResponse defines the response schema for `/payment_initiation/consent/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationConsentCreateResponse { public static final String SERIALIZED_NAME_CONSENT_ID = "consent_id"; @SerializedName(SERIALIZED_NAME_CONSENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationConsentGetRequest.java b/src/main/java/com/plaid/client/model/PaymentInitiationConsentGetRequest.java index 0c49283c6..7a5820707 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationConsentGetRequest.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationConsentGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * PaymentInitiationConsentGetRequest defines the request schema for `/payment_initiation/consent/get` */ @ApiModel(description = "PaymentInitiationConsentGetRequest defines the request schema for `/payment_initiation/consent/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationConsentGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationConsentGetResponse.java b/src/main/java/com/plaid/client/model/PaymentInitiationConsentGetResponse.java index 79539a1d6..d988fc898 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationConsentGetResponse.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationConsentGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -38,7 +38,7 @@ * PaymentInitiationConsentGetResponse defines the response schema for `/payment_initation/consent/get` */ @ApiModel(description = "PaymentInitiationConsentGetResponse defines the response schema for `/payment_initation/consent/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationConsentGetResponse { public static final String SERIALIZED_NAME_CONSENT_ID = "consent_id"; @SerializedName(SERIALIZED_NAME_CONSENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationConsentPayerDetails.java b/src/main/java/com/plaid/client/model/PaymentInitiationConsentPayerDetails.java index a2d7ca49b..aaefa7f72 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationConsentPayerDetails.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationConsentPayerDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * An object representing the payment consent payer details. Payer `name` and account `numbers` are required to lock the account to which the consent can be created. */ @ApiModel(description = "An object representing the payment consent payer details. Payer `name` and account `numbers` are required to lock the account to which the consent can be created.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationConsentPayerDetails { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationConsentPayerNumbers.java b/src/main/java/com/plaid/client/model/PaymentInitiationConsentPayerNumbers.java index 416f0bc53..364c67967 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationConsentPayerNumbers.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationConsentPayerNumbers.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The counterparty's bank account numbers. Exactly one of IBAN or BACS data is required. */ @ApiModel(description = "The counterparty's bank account numbers. Exactly one of IBAN or BACS data is required.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationConsentPayerNumbers { public static final String SERIALIZED_NAME_BACS = "bacs"; @SerializedName(SERIALIZED_NAME_BACS) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationConsentPaymentExecuteRequest.java b/src/main/java/com/plaid/client/model/PaymentInitiationConsentPaymentExecuteRequest.java index 359adbc87..19db74196 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationConsentPaymentExecuteRequest.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationConsentPaymentExecuteRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * PaymentInitiationConsentPaymentExecuteRequest defines the request schema for `/payment_initiation/consent/payment/execute` */ @ApiModel(description = "PaymentInitiationConsentPaymentExecuteRequest defines the request schema for `/payment_initiation/consent/payment/execute`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationConsentPaymentExecuteRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationConsentPaymentExecuteResponse.java b/src/main/java/com/plaid/client/model/PaymentInitiationConsentPaymentExecuteResponse.java index bb95ce1a9..12f652247 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationConsentPaymentExecuteResponse.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationConsentPaymentExecuteResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * PaymentInitiationConsentPaymentExecuteResponse defines the response schema for `/payment_initiation/consent/payment/execute` */ @ApiModel(description = "PaymentInitiationConsentPaymentExecuteResponse defines the response schema for `/payment_initiation/consent/payment/execute`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationConsentPaymentExecuteResponse { public static final String SERIALIZED_NAME_PAYMENT_ID = "payment_id"; @SerializedName(SERIALIZED_NAME_PAYMENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationConsentProcessingMode.java b/src/main/java/com/plaid/client/model/PaymentInitiationConsentProcessingMode.java index 60a1a9769..b80675f39 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationConsentProcessingMode.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationConsentProcessingMode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationConsentRevokeRequest.java b/src/main/java/com/plaid/client/model/PaymentInitiationConsentRevokeRequest.java index e59b59221..2deb738fa 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationConsentRevokeRequest.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationConsentRevokeRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * PaymentInitiationConsentRevokeRequest defines the request schema for `/payment_initiation/consent/revoke` */ @ApiModel(description = "PaymentInitiationConsentRevokeRequest defines the request schema for `/payment_initiation/consent/revoke`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationConsentRevokeRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationConsentRevokeResponse.java b/src/main/java/com/plaid/client/model/PaymentInitiationConsentRevokeResponse.java index ca4e8bd2f..cf2d68b9f 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationConsentRevokeResponse.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationConsentRevokeResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * PaymentInitiationConsentRevokeResponse defines the response schema for `/payment_initation/consent/revoke` */ @ApiModel(description = "PaymentInitiationConsentRevokeResponse defines the response schema for `/payment_initation/consent/revoke`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationConsentRevokeResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationConsentScope.java b/src/main/java/com/plaid/client/model/PaymentInitiationConsentScope.java index b0c6a0345..584cecbc1 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationConsentScope.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationConsentScope.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationConsentStatus.java b/src/main/java/com/plaid/client/model/PaymentInitiationConsentStatus.java index d0041efd7..32befb5ae 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationConsentStatus.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationConsentStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationConsentStatusUpdateWebhook.java b/src/main/java/com/plaid/client/model/PaymentInitiationConsentStatusUpdateWebhook.java index 85d7cae7f..bea1f4d29 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationConsentStatusUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationConsentStatusUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Fired when the status of a payment consent has changed. */ @ApiModel(description = "Fired when the status of a payment consent has changed.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationConsentStatusUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationConsentType.java b/src/main/java/com/plaid/client/model/PaymentInitiationConsentType.java index e60a870aa..c6de7009f 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationConsentType.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationConsentType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationMetadata.java b/src/main/java/com/plaid/client/model/PaymentInitiationMetadata.java index e6f63e097..20e8f3c77 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationMetadata.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Metadata that captures what specific payment configurations an institution supports when making Payment Initiation requests. */ @ApiModel(description = "Metadata that captures what specific payment configurations an institution supports when making Payment Initiation requests.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationMetadata { public static final String SERIALIZED_NAME_SUPPORTS_INTERNATIONAL_PAYMENTS = "supports_international_payments"; @SerializedName(SERIALIZED_NAME_SUPPORTS_INTERNATIONAL_PAYMENTS) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationOptionalRestrictionBacs.java b/src/main/java/com/plaid/client/model/PaymentInitiationOptionalRestrictionBacs.java index 873aa1585..51c74e680 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationOptionalRestrictionBacs.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationOptionalRestrictionBacs.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An optional object used to restrict the accounts used for payments. If provided, the end user will be able to send payments only from the specified bank account. */ @ApiModel(description = "An optional object used to restrict the accounts used for payments. If provided, the end user will be able to send payments only from the specified bank account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationOptionalRestrictionBacs { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationPayment.java b/src/main/java/com/plaid/client/model/PaymentInitiationPayment.java index 2c30fb863..314d7de76 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationPayment.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationPayment.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -39,7 +39,7 @@ * PaymentInitiationPayment defines a payment initiation payment */ @ApiModel(description = "PaymentInitiationPayment defines a payment initiation payment") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationPayment { public static final String SERIALIZED_NAME_PAYMENT_ID = "payment_id"; @SerializedName(SERIALIZED_NAME_PAYMENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentCreateRequest.java b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentCreateRequest.java index 480bb9cfe..33a5a6e8a 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentCreateRequest.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * PaymentInitiationPaymentCreateRequest defines the request schema for `/payment_initiation/payment/create` */ @ApiModel(description = "PaymentInitiationPaymentCreateRequest defines the request schema for `/payment_initiation/payment/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationPaymentCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentCreateResponse.java b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentCreateResponse.java index bf623a354..e15516d47 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentCreateResponse.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * PaymentInitiationPaymentCreateResponse defines the response schema for `/payment_initiation/payment/create` */ @ApiModel(description = "PaymentInitiationPaymentCreateResponse defines the response schema for `/payment_initiation/payment/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationPaymentCreateResponse { public static final String SERIALIZED_NAME_PAYMENT_ID = "payment_id"; @SerializedName(SERIALIZED_NAME_PAYMENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentCreateStatus.java b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentCreateStatus.java index c810014ce..09017d969 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentCreateStatus.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentCreateStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentGetRequest.java b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentGetRequest.java index 1b8dad143..eefb2abea 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentGetRequest.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * PaymentInitiationPaymentGetRequest defines the request schema for `/payment_initiation/payment/get` */ @ApiModel(description = "PaymentInitiationPaymentGetRequest defines the request schema for `/payment_initiation/payment/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationPaymentGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentGetResponse.java b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentGetResponse.java index 551a05aac..d00738387 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentGetResponse.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -41,7 +41,7 @@ * PaymentInitiationPaymentGetResponse defines the response schema for `/payment_initation/payment/get` */ @ApiModel(description = "PaymentInitiationPaymentGetResponse defines the response schema for `/payment_initation/payment/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationPaymentGetResponse { public static final String SERIALIZED_NAME_PAYMENT_ID = "payment_id"; @SerializedName(SERIALIZED_NAME_PAYMENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentListRequest.java b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentListRequest.java index e170dcabf..02bf02a08 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentListRequest.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * PaymentInitiationPaymentListRequest defines the request schema for `/payment_initiation/payment/list` */ @ApiModel(description = "PaymentInitiationPaymentListRequest defines the request schema for `/payment_initiation/payment/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationPaymentListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentListResponse.java b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentListResponse.java index c928215f6..6364d56be 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentListResponse.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * PaymentInitiationPaymentListResponse defines the response schema for `/payment_initiation/payment/list` */ @ApiModel(description = "PaymentInitiationPaymentListResponse defines the response schema for `/payment_initiation/payment/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationPaymentListResponse { public static final String SERIALIZED_NAME_PAYMENTS = "payments"; @SerializedName(SERIALIZED_NAME_PAYMENTS) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentReverseRequest.java b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentReverseRequest.java index f6694993e..b21f585fc 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentReverseRequest.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentReverseRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * PaymentInitiationPaymentReverseRequest defines the request schema for `/payment_initiation/payment/reverse` */ @ApiModel(description = "PaymentInitiationPaymentReverseRequest defines the request schema for `/payment_initiation/payment/reverse`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationPaymentReverseRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentReverseResponse.java b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentReverseResponse.java index c22142857..2f85b476b 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentReverseResponse.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentReverseResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * PaymentInitiationPaymentReverseResponse defines the response schema for `/payment_initation/payment/reverse` */ @ApiModel(description = "PaymentInitiationPaymentReverseResponse defines the response schema for `/payment_initation/payment/reverse`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationPaymentReverseResponse { public static final String SERIALIZED_NAME_REFUND_ID = "refund_id"; @SerializedName(SERIALIZED_NAME_REFUND_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentStatus.java b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentStatus.java index 2d59e3c74..da0c7d76d 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentStatus.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentTokenCreateRequest.java b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentTokenCreateRequest.java index 63c47be23..3179f8b80 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentTokenCreateRequest.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentTokenCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * PaymentInitiationPaymentTokenCreateRequest defines the request schema for `/payment_initiation/payment/token/create` */ @ApiModel(description = "PaymentInitiationPaymentTokenCreateRequest defines the request schema for `/payment_initiation/payment/token/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationPaymentTokenCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentTokenCreateResponse.java b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentTokenCreateResponse.java index cd21d21b8..f97296f8a 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentTokenCreateResponse.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentTokenCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * PaymentInitiationPaymentTokenCreateResponse defines the response schema for `/payment_initiation/payment/token/create` */ @ApiModel(description = "PaymentInitiationPaymentTokenCreateResponse defines the response schema for `/payment_initiation/payment/token/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationPaymentTokenCreateResponse { public static final String SERIALIZED_NAME_PAYMENT_TOKEN = "payment_token"; @SerializedName(SERIALIZED_NAME_PAYMENT_TOKEN) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationRecipient.java b/src/main/java/com/plaid/client/model/PaymentInitiationRecipient.java index 38b58eef8..5c6e63b86 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationRecipient.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationRecipient.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * PaymentInitiationRecipient defines a payment initiation recipient */ @ApiModel(description = "PaymentInitiationRecipient defines a payment initiation recipient") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationRecipient { public static final String SERIALIZED_NAME_RECIPIENT_ID = "recipient_id"; @SerializedName(SERIALIZED_NAME_RECIPIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationRecipientCreateRequest.java b/src/main/java/com/plaid/client/model/PaymentInitiationRecipientCreateRequest.java index dfc995751..52e9f7591 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationRecipientCreateRequest.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationRecipientCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * PaymentInitiationRecipientCreateRequest defines the request schema for `/payment_initiation/recipient/create` */ @ApiModel(description = "PaymentInitiationRecipientCreateRequest defines the request schema for `/payment_initiation/recipient/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationRecipientCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationRecipientCreateResponse.java b/src/main/java/com/plaid/client/model/PaymentInitiationRecipientCreateResponse.java index e0b6752d7..c10bb2fe5 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationRecipientCreateResponse.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationRecipientCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * PaymentInitiationRecipientCreateResponse defines the response schema for `/payment_initation/recipient/create` */ @ApiModel(description = "PaymentInitiationRecipientCreateResponse defines the response schema for `/payment_initation/recipient/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationRecipientCreateResponse { public static final String SERIALIZED_NAME_RECIPIENT_ID = "recipient_id"; @SerializedName(SERIALIZED_NAME_RECIPIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationRecipientGetRequest.java b/src/main/java/com/plaid/client/model/PaymentInitiationRecipientGetRequest.java index 5288033ca..876bb9f45 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationRecipientGetRequest.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationRecipientGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * PaymentInitiationRecipientGetRequest defines the request schema for `/payment_initiation/recipient/get` */ @ApiModel(description = "PaymentInitiationRecipientGetRequest defines the request schema for `/payment_initiation/recipient/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationRecipientGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationRecipientGetResponse.java b/src/main/java/com/plaid/client/model/PaymentInitiationRecipientGetResponse.java index 3fb8feae8..7fcd2c209 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationRecipientGetResponse.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationRecipientGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * PaymentInitiationRecipientGetResponse defines the response schema for `/payment_initiation/recipient/get` */ @ApiModel(description = "PaymentInitiationRecipientGetResponse defines the response schema for `/payment_initiation/recipient/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationRecipientGetResponse { public static final String SERIALIZED_NAME_RECIPIENT_ID = "recipient_id"; @SerializedName(SERIALIZED_NAME_RECIPIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationRecipientGetResponseAllOf.java b/src/main/java/com/plaid/client/model/PaymentInitiationRecipientGetResponseAllOf.java index eb68bf8fc..488c077e1 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationRecipientGetResponseAllOf.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationRecipientGetResponseAllOf.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -27,7 +27,7 @@ /** * PaymentInitiationRecipientGetResponseAllOf */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationRecipientGetResponseAllOf { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationRecipientListRequest.java b/src/main/java/com/plaid/client/model/PaymentInitiationRecipientListRequest.java index 0145ce023..3a145e472 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationRecipientListRequest.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationRecipientListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * PaymentInitiationRecipientListRequest defines the request schema for `/payment_initiation/recipient/list` */ @ApiModel(description = "PaymentInitiationRecipientListRequest defines the request schema for `/payment_initiation/recipient/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationRecipientListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationRecipientListResponse.java b/src/main/java/com/plaid/client/model/PaymentInitiationRecipientListResponse.java index 94d5b8584..b4727d8e4 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationRecipientListResponse.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationRecipientListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * PaymentInitiationRecipientListResponse defines the response schema for `/payment_initiation/recipient/list` */ @ApiModel(description = "PaymentInitiationRecipientListResponse defines the response schema for `/payment_initiation/recipient/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationRecipientListResponse { public static final String SERIALIZED_NAME_RECIPIENTS = "recipients"; @SerializedName(SERIALIZED_NAME_RECIPIENTS) diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationStandingOrderMetadata.java b/src/main/java/com/plaid/client/model/PaymentInitiationStandingOrderMetadata.java index ded1467c9..22c0ab544 100644 --- a/src/main/java/com/plaid/client/model/PaymentInitiationStandingOrderMetadata.java +++ b/src/main/java/com/plaid/client/model/PaymentInitiationStandingOrderMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Metadata specifically related to valid Payment Initiation standing order configurations for the institution. */ @ApiModel(description = "Metadata specifically related to valid Payment Initiation standing order configurations for the institution.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentInitiationStandingOrderMetadata { public static final String SERIALIZED_NAME_SUPPORTS_STANDING_ORDER_END_DATE = "supports_standing_order_end_date"; @SerializedName(SERIALIZED_NAME_SUPPORTS_STANDING_ORDER_END_DATE) diff --git a/src/main/java/com/plaid/client/model/PaymentMeta.java b/src/main/java/com/plaid/client/model/PaymentMeta.java index 7fa337b8e..f9cabbe4d 100644 --- a/src/main/java/com/plaid/client/model/PaymentMeta.java +++ b/src/main/java/com/plaid/client/model/PaymentMeta.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Transaction information specific to inter-bank transfers. If the transaction was not an inter-bank transfer, all fields will be `null`. If the `transactions` object was returned by a Transactions endpoint such as `/transactions/sync` or `/transactions/get`, the `payment_meta` key will always appear, but no data elements are guaranteed. If the `transactions` object was returned by an Assets endpoint such as `/asset_report/get/` or `/asset_report/pdf/get`, this field will only appear in an Asset Report with Insights. */ @ApiModel(description = "Transaction information specific to inter-bank transfers. If the transaction was not an inter-bank transfer, all fields will be `null`. If the `transactions` object was returned by a Transactions endpoint such as `/transactions/sync` or `/transactions/get`, the `payment_meta` key will always appear, but no data elements are guaranteed. If the `transactions` object was returned by an Assets endpoint such as `/asset_report/get/` or `/asset_report/pdf/get`, this field will only appear in an Asset Report with Insights.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentMeta { public static final String SERIALIZED_NAME_REFERENCE_NUMBER = "reference_number"; @SerializedName(SERIALIZED_NAME_REFERENCE_NUMBER) diff --git a/src/main/java/com/plaid/client/model/PaymentProfileCreateRequest.java b/src/main/java/com/plaid/client/model/PaymentProfileCreateRequest.java index af61d5358..2e3846762 100644 --- a/src/main/java/com/plaid/client/model/PaymentProfileCreateRequest.java +++ b/src/main/java/com/plaid/client/model/PaymentProfileCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * PaymentProfileCreateRequest defines the request schema for `/payment_profile/create` */ @ApiModel(description = "PaymentProfileCreateRequest defines the request schema for `/payment_profile/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentProfileCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentProfileCreateResponse.java b/src/main/java/com/plaid/client/model/PaymentProfileCreateResponse.java index 2d346ba62..609e5d970 100644 --- a/src/main/java/com/plaid/client/model/PaymentProfileCreateResponse.java +++ b/src/main/java/com/plaid/client/model/PaymentProfileCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * PaymentProfileCreateResponse defines the response schema for `/payment_profile/create` */ @ApiModel(description = "PaymentProfileCreateResponse defines the response schema for `/payment_profile/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentProfileCreateResponse { public static final String SERIALIZED_NAME_PAYMENT_PROFILE_TOKEN = "payment_profile_token"; @SerializedName(SERIALIZED_NAME_PAYMENT_PROFILE_TOKEN) diff --git a/src/main/java/com/plaid/client/model/PaymentProfileGetRequest.java b/src/main/java/com/plaid/client/model/PaymentProfileGetRequest.java index 6a0a86886..3483b6259 100644 --- a/src/main/java/com/plaid/client/model/PaymentProfileGetRequest.java +++ b/src/main/java/com/plaid/client/model/PaymentProfileGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * PaymentProfileGetRequest defines the request schema for `/payment_profile/get` */ @ApiModel(description = "PaymentProfileGetRequest defines the request schema for `/payment_profile/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentProfileGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentProfileGetResponse.java b/src/main/java/com/plaid/client/model/PaymentProfileGetResponse.java index 6549705e0..b24271cee 100644 --- a/src/main/java/com/plaid/client/model/PaymentProfileGetResponse.java +++ b/src/main/java/com/plaid/client/model/PaymentProfileGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * PaymentProfileGetResponse defines the response schema for `/payment_profile/get` */ @ApiModel(description = "PaymentProfileGetResponse defines the response schema for `/payment_profile/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentProfileGetResponse { public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at"; @SerializedName(SERIALIZED_NAME_UPDATED_AT) diff --git a/src/main/java/com/plaid/client/model/PaymentProfileRemoveRequest.java b/src/main/java/com/plaid/client/model/PaymentProfileRemoveRequest.java index 2852cc539..4dfa7c668 100644 --- a/src/main/java/com/plaid/client/model/PaymentProfileRemoveRequest.java +++ b/src/main/java/com/plaid/client/model/PaymentProfileRemoveRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * PaymentProfileRemoveRequest defines the request schema for `/payment_profile/remove` */ @ApiModel(description = "PaymentProfileRemoveRequest defines the request schema for `/payment_profile/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentProfileRemoveRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentProfileRemoveResponse.java b/src/main/java/com/plaid/client/model/PaymentProfileRemoveResponse.java index a2467ce77..03673968b 100644 --- a/src/main/java/com/plaid/client/model/PaymentProfileRemoveResponse.java +++ b/src/main/java/com/plaid/client/model/PaymentProfileRemoveResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * PaymentProfileRemoveResponse defines the response schema for `/payment_profile/remove` */ @ApiModel(description = "PaymentProfileRemoveResponse defines the response schema for `/payment_profile/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentProfileRemoveResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/PaymentProfileStatus.java b/src/main/java/com/plaid/client/model/PaymentProfileStatus.java index df3b5947c..4ffbb888e 100644 --- a/src/main/java/com/plaid/client/model/PaymentProfileStatus.java +++ b/src/main/java/com/plaid/client/model/PaymentProfileStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PaymentScheduleInterval.java b/src/main/java/com/plaid/client/model/PaymentScheduleInterval.java index 9295f994f..482475c90 100644 --- a/src/main/java/com/plaid/client/model/PaymentScheduleInterval.java +++ b/src/main/java/com/plaid/client/model/PaymentScheduleInterval.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PaymentScheme.java b/src/main/java/com/plaid/client/model/PaymentScheme.java index 5ef1e8afb..73560211c 100644 --- a/src/main/java/com/plaid/client/model/PaymentScheme.java +++ b/src/main/java/com/plaid/client/model/PaymentScheme.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PaymentStatusUpdateWebhook.java b/src/main/java/com/plaid/client/model/PaymentStatusUpdateWebhook.java index 4c4821209..bc3d8aada 100644 --- a/src/main/java/com/plaid/client/model/PaymentStatusUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/PaymentStatusUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Fired when the status of a payment has changed. */ @ApiModel(description = "Fired when the status of a payment has changed.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaymentStatusUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/PayrollIncomeAccountData.java b/src/main/java/com/plaid/client/model/PayrollIncomeAccountData.java index fed0ee816..01a0f3d82 100644 --- a/src/main/java/com/plaid/client/model/PayrollIncomeAccountData.java +++ b/src/main/java/com/plaid/client/model/PayrollIncomeAccountData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object containing account level data. */ @ApiModel(description = "An object containing account level data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PayrollIncomeAccountData { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/PayrollIncomeObject.java b/src/main/java/com/plaid/client/model/PayrollIncomeObject.java index 74f439c8f..7d647b5b4 100644 --- a/src/main/java/com/plaid/client/model/PayrollIncomeObject.java +++ b/src/main/java/com/plaid/client/model/PayrollIncomeObject.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * An object representing payroll data. */ @ApiModel(description = "An object representing payroll data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PayrollIncomeObject { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/PayrollIncomeRateOfPay.java b/src/main/java/com/plaid/client/model/PayrollIncomeRateOfPay.java index a259cd2f4..d39f2dccf 100644 --- a/src/main/java/com/plaid/client/model/PayrollIncomeRateOfPay.java +++ b/src/main/java/com/plaid/client/model/PayrollIncomeRateOfPay.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object representing the rate at which an individual is paid. */ @ApiModel(description = "An object representing the rate at which an individual is paid.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PayrollIncomeRateOfPay { public static final String SERIALIZED_NAME_PAY_RATE = "pay_rate"; @SerializedName(SERIALIZED_NAME_PAY_RATE) diff --git a/src/main/java/com/plaid/client/model/PayrollItem.java b/src/main/java/com/plaid/client/model/PayrollItem.java index 1c1967178..cc0ce5e9d 100644 --- a/src/main/java/com/plaid/client/model/PayrollItem.java +++ b/src/main/java/com/plaid/client/model/PayrollItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * An object containing information about the payroll item. */ @ApiModel(description = "An object containing information about the payroll item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PayrollItem { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) diff --git a/src/main/java/com/plaid/client/model/PayrollItemStatus.java b/src/main/java/com/plaid/client/model/PayrollItemStatus.java index 11a104aa3..a83733745 100644 --- a/src/main/java/com/plaid/client/model/PayrollItemStatus.java +++ b/src/main/java/com/plaid/client/model/PayrollItemStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Details about the status of the payroll item. */ @ApiModel(description = "Details about the status of the payroll item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PayrollItemStatus { public static final String SERIALIZED_NAME_PROCESSING_STATUS = "processing_status"; @SerializedName(SERIALIZED_NAME_PROCESSING_STATUS) diff --git a/src/main/java/com/plaid/client/model/PayrollRiskSignalsItem.java b/src/main/java/com/plaid/client/model/PayrollRiskSignalsItem.java index 5744c5c65..f9f33fbca 100644 --- a/src/main/java/com/plaid/client/model/PayrollRiskSignalsItem.java +++ b/src/main/java/com/plaid/client/model/PayrollRiskSignalsItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Object containing fraud risk data pertaining to the Item linked as part of the verification. */ @ApiModel(description = "Object containing fraud risk data pertaining to the Item linked as part of the verification.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PayrollRiskSignalsItem { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) diff --git a/src/main/java/com/plaid/client/model/Paystub.java b/src/main/java/com/plaid/client/model/Paystub.java index c2f2ce19b..0f642807a 100644 --- a/src/main/java/com/plaid/client/model/Paystub.java +++ b/src/main/java/com/plaid/client/model/Paystub.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -40,7 +40,7 @@ * An object representing data extracted from the end user's paystub. */ @ApiModel(description = "An object representing data extracted from the end user's paystub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Paystub { public static final String SERIALIZED_NAME_DEDUCTIONS = "deductions"; @SerializedName(SERIALIZED_NAME_DEDUCTIONS) diff --git a/src/main/java/com/plaid/client/model/PaystubAddress.java b/src/main/java/com/plaid/client/model/PaystubAddress.java index 6d086340f..493283930 100644 --- a/src/main/java/com/plaid/client/model/PaystubAddress.java +++ b/src/main/java/com/plaid/client/model/PaystubAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Address on the paystub */ @ApiModel(description = "Address on the paystub") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubAddress { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/PaystubDeduction.java b/src/main/java/com/plaid/client/model/PaystubDeduction.java index 178550a06..3dd79e6cb 100644 --- a/src/main/java/com/plaid/client/model/PaystubDeduction.java +++ b/src/main/java/com/plaid/client/model/PaystubDeduction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Deduction on the paystub */ @ApiModel(description = "Deduction on the paystub") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubDeduction { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) diff --git a/src/main/java/com/plaid/client/model/PaystubDetails.java b/src/main/java/com/plaid/client/model/PaystubDetails.java index 6593f242c..ecdc7b79d 100644 --- a/src/main/java/com/plaid/client/model/PaystubDetails.java +++ b/src/main/java/com/plaid/client/model/PaystubDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An object representing details that can be found on the paystub. */ @ApiModel(description = "An object representing details that can be found on the paystub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubDetails { public static final String SERIALIZED_NAME_PAY_PERIOD_START_DATE = "pay_period_start_date"; @SerializedName(SERIALIZED_NAME_PAY_PERIOD_START_DATE) diff --git a/src/main/java/com/plaid/client/model/PaystubEmployer.java b/src/main/java/com/plaid/client/model/PaystubEmployer.java index 339f6b5cb..21ed2c1f9 100644 --- a/src/main/java/com/plaid/client/model/PaystubEmployer.java +++ b/src/main/java/com/plaid/client/model/PaystubEmployer.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Information about the employer on the paystub */ @ApiModel(description = "Information about the employer on the paystub") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubEmployer { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) diff --git a/src/main/java/com/plaid/client/model/PaystubOverride.java b/src/main/java/com/plaid/client/model/PaystubOverride.java index 9a51c349f..9d818ab90 100644 --- a/src/main/java/com/plaid/client/model/PaystubOverride.java +++ b/src/main/java/com/plaid/client/model/PaystubOverride.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -37,7 +37,7 @@ * An object representing data from a paystub. */ @ApiModel(description = "An object representing data from a paystub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubOverride { public static final String SERIALIZED_NAME_EMPLOYER = "employer"; @SerializedName(SERIALIZED_NAME_EMPLOYER) diff --git a/src/main/java/com/plaid/client/model/PaystubOverrideDeductions.java b/src/main/java/com/plaid/client/model/PaystubOverrideDeductions.java index 2202ca206..901af6944 100644 --- a/src/main/java/com/plaid/client/model/PaystubOverrideDeductions.java +++ b/src/main/java/com/plaid/client/model/PaystubOverrideDeductions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * An object with the deduction information found on a paystub. */ @ApiModel(description = "An object with the deduction information found on a paystub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubOverrideDeductions { public static final String SERIALIZED_NAME_BREAKDOWN = "breakdown"; @SerializedName(SERIALIZED_NAME_BREAKDOWN) diff --git a/src/main/java/com/plaid/client/model/PaystubOverrideDeductionsBreakdown.java b/src/main/java/com/plaid/client/model/PaystubOverrideDeductionsBreakdown.java index 5e1448d62..0e97e5c15 100644 --- a/src/main/java/com/plaid/client/model/PaystubOverrideDeductionsBreakdown.java +++ b/src/main/java/com/plaid/client/model/PaystubOverrideDeductionsBreakdown.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object representing the deduction line items for the pay period */ @ApiModel(description = "An object representing the deduction line items for the pay period") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubOverrideDeductionsBreakdown { public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount"; @SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/PaystubOverrideDeductionsTotal.java b/src/main/java/com/plaid/client/model/PaystubOverrideDeductionsTotal.java index 46e364261..1007d7fae 100644 --- a/src/main/java/com/plaid/client/model/PaystubOverrideDeductionsTotal.java +++ b/src/main/java/com/plaid/client/model/PaystubOverrideDeductionsTotal.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object representing the total deductions for the pay period */ @ApiModel(description = "An object representing the total deductions for the pay period") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubOverrideDeductionsTotal { public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount"; @SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/PaystubOverrideDistributionBreakdown.java b/src/main/java/com/plaid/client/model/PaystubOverrideDistributionBreakdown.java index 4e7befd31..691c076f3 100644 --- a/src/main/java/com/plaid/client/model/PaystubOverrideDistributionBreakdown.java +++ b/src/main/java/com/plaid/client/model/PaystubOverrideDistributionBreakdown.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Information about the accounts that the payment was distributed to. */ @ApiModel(description = "Information about the accounts that the payment was distributed to.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubOverrideDistributionBreakdown { public static final String SERIALIZED_NAME_ACCOUNT_NAME = "account_name"; @SerializedName(SERIALIZED_NAME_ACCOUNT_NAME) diff --git a/src/main/java/com/plaid/client/model/PaystubOverrideEarnings.java b/src/main/java/com/plaid/client/model/PaystubOverrideEarnings.java index 85bb3cf12..4f253bbe3 100644 --- a/src/main/java/com/plaid/client/model/PaystubOverrideEarnings.java +++ b/src/main/java/com/plaid/client/model/PaystubOverrideEarnings.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * An object representing both a breakdown of earnings on a paystub and the total earnings. */ @ApiModel(description = "An object representing both a breakdown of earnings on a paystub and the total earnings.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubOverrideEarnings { public static final String SERIALIZED_NAME_BREAKDOWN = "breakdown"; @SerializedName(SERIALIZED_NAME_BREAKDOWN) diff --git a/src/main/java/com/plaid/client/model/PaystubOverrideEarningsBreakdown.java b/src/main/java/com/plaid/client/model/PaystubOverrideEarningsBreakdown.java index b0574105d..dd9e58bb7 100644 --- a/src/main/java/com/plaid/client/model/PaystubOverrideEarningsBreakdown.java +++ b/src/main/java/com/plaid/client/model/PaystubOverrideEarningsBreakdown.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An object representing the earnings line items for the pay period. */ @ApiModel(description = "An object representing the earnings line items for the pay period.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubOverrideEarningsBreakdown { public static final String SERIALIZED_NAME_CANONICAL_DESCRIPTION = "canonical_description"; @SerializedName(SERIALIZED_NAME_CANONICAL_DESCRIPTION) diff --git a/src/main/java/com/plaid/client/model/PaystubOverrideEarningsTotal.java b/src/main/java/com/plaid/client/model/PaystubOverrideEarningsTotal.java index 032f343cb..ea264755c 100644 --- a/src/main/java/com/plaid/client/model/PaystubOverrideEarningsTotal.java +++ b/src/main/java/com/plaid/client/model/PaystubOverrideEarningsTotal.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object representing both the current pay period and year to date amount for an earning category. */ @ApiModel(description = "An object representing both the current pay period and year to date amount for an earning category.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubOverrideEarningsTotal { public static final String SERIALIZED_NAME_HOURS = "hours"; @SerializedName(SERIALIZED_NAME_HOURS) diff --git a/src/main/java/com/plaid/client/model/PaystubOverrideEmployee.java b/src/main/java/com/plaid/client/model/PaystubOverrideEmployee.java index 52a8bbc2c..e28a3ffe2 100644 --- a/src/main/java/com/plaid/client/model/PaystubOverrideEmployee.java +++ b/src/main/java/com/plaid/client/model/PaystubOverrideEmployee.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The employee on the paystub. */ @ApiModel(description = "The employee on the paystub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubOverrideEmployee { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/PaystubOverrideEmployeeAddress.java b/src/main/java/com/plaid/client/model/PaystubOverrideEmployeeAddress.java index 48f22161d..e151dd501 100644 --- a/src/main/java/com/plaid/client/model/PaystubOverrideEmployeeAddress.java +++ b/src/main/java/com/plaid/client/model/PaystubOverrideEmployeeAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The address of the employee. */ @ApiModel(description = "The address of the employee.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubOverrideEmployeeAddress { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/PaystubOverrideEmployer.java b/src/main/java/com/plaid/client/model/PaystubOverrideEmployer.java index 3b1d21a88..ead76d774 100644 --- a/src/main/java/com/plaid/client/model/PaystubOverrideEmployer.java +++ b/src/main/java/com/plaid/client/model/PaystubOverrideEmployer.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The employer on the paystub. */ @ApiModel(description = "The employer on the paystub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubOverrideEmployer { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/PaystubOverrideEmployerAddress.java b/src/main/java/com/plaid/client/model/PaystubOverrideEmployerAddress.java index 1e2e692ae..93e2cd05b 100644 --- a/src/main/java/com/plaid/client/model/PaystubOverrideEmployerAddress.java +++ b/src/main/java/com/plaid/client/model/PaystubOverrideEmployerAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The address of the employer. */ @ApiModel(description = "The address of the employer.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubOverrideEmployerAddress { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/PaystubOverrideNetPay.java b/src/main/java/com/plaid/client/model/PaystubOverrideNetPay.java index 41d902883..ec8634845 100644 --- a/src/main/java/com/plaid/client/model/PaystubOverrideNetPay.java +++ b/src/main/java/com/plaid/client/model/PaystubOverrideNetPay.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object representing information about the net pay amount on the paystub. */ @ApiModel(description = "An object representing information about the net pay amount on the paystub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubOverrideNetPay { public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) diff --git a/src/main/java/com/plaid/client/model/PaystubOverridePayPeriodDetails.java b/src/main/java/com/plaid/client/model/PaystubOverridePayPeriodDetails.java index c93b80b9b..30e187fa0 100644 --- a/src/main/java/com/plaid/client/model/PaystubOverridePayPeriodDetails.java +++ b/src/main/java/com/plaid/client/model/PaystubOverridePayPeriodDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Details about the pay period. */ @ApiModel(description = "Details about the pay period.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubOverridePayPeriodDetails { public static final String SERIALIZED_NAME_CHECK_AMOUNT = "check_amount"; @SerializedName(SERIALIZED_NAME_CHECK_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/PaystubOverrideTaxpayerID.java b/src/main/java/com/plaid/client/model/PaystubOverrideTaxpayerID.java index 97d81ff4c..4d56298f9 100644 --- a/src/main/java/com/plaid/client/model/PaystubOverrideTaxpayerID.java +++ b/src/main/java/com/plaid/client/model/PaystubOverrideTaxpayerID.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubOverrideTaxpayerID { public static final String SERIALIZED_NAME_ID_TYPE = "id_type"; @SerializedName(SERIALIZED_NAME_ID_TYPE) diff --git a/src/main/java/com/plaid/client/model/PaystubPayFrequency.java b/src/main/java/com/plaid/client/model/PaystubPayFrequency.java index 5fbdb6b42..72f1b6b12 100644 --- a/src/main/java/com/plaid/client/model/PaystubPayFrequency.java +++ b/src/main/java/com/plaid/client/model/PaystubPayFrequency.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PaystubYTDDetails.java b/src/main/java/com/plaid/client/model/PaystubYTDDetails.java index ddf3baf40..4cd7a8d3d 100644 --- a/src/main/java/com/plaid/client/model/PaystubYTDDetails.java +++ b/src/main/java/com/plaid/client/model/PaystubYTDDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The amount of income earned year to date, as based on paystub data. */ @ApiModel(description = "The amount of income earned year to date, as based on paystub data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PaystubYTDDetails { public static final String SERIALIZED_NAME_GROSS_EARNINGS = "gross_earnings"; @SerializedName(SERIALIZED_NAME_GROSS_EARNINGS) diff --git a/src/main/java/com/plaid/client/model/PendingDisconnectWebhook.java b/src/main/java/com/plaid/client/model/PendingDisconnectWebhook.java index 03749b2e8..78cd9ca60 100644 --- a/src/main/java/com/plaid/client/model/PendingDisconnectWebhook.java +++ b/src/main/java/com/plaid/client/model/PendingDisconnectWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Fired when an Item is expected to be disconnected. The webhook will currently be fired 7 days before the existing Item is scheduled for disconnection. This can be resolved by having the user go through Link’s [update mode](http://plaid.com/docs/link/update-mode). Currently, this webhook is fired only for US or Canadian institutions; in the UK or EU, you should continue to listed for the [`PENDING_EXPIRATION`](https://plaid.com/docs/api/items/#pending_expiration) webhook instead. */ @ApiModel(description = "Fired when an Item is expected to be disconnected. The webhook will currently be fired 7 days before the existing Item is scheduled for disconnection. This can be resolved by having the user go through Link’s [update mode](http://plaid.com/docs/link/update-mode). Currently, this webhook is fired only for US or Canadian institutions; in the UK or EU, you should continue to listed for the [`PENDING_EXPIRATION`](https://plaid.com/docs/api/items/#pending_expiration) webhook instead.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PendingDisconnectWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/PendingDisconnectWebhookReason.java b/src/main/java/com/plaid/client/model/PendingDisconnectWebhookReason.java index c888ef752..b9053b639 100644 --- a/src/main/java/com/plaid/client/model/PendingDisconnectWebhookReason.java +++ b/src/main/java/com/plaid/client/model/PendingDisconnectWebhookReason.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PendingExpirationWebhook.java b/src/main/java/com/plaid/client/model/PendingExpirationWebhook.java index 4efbfe8ab..42195bab0 100644 --- a/src/main/java/com/plaid/client/model/PendingExpirationWebhook.java +++ b/src/main/java/com/plaid/client/model/PendingExpirationWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Fired when an Item’s access consent is expiring in 7 days. This can be resolved by having the user go through Link’s update mode. This webhook is fired only for Items associated with institutions in Europe (including the UK); for Items associated with institutions in the US or Canada, see [`PENDING_DISCONNECT`](https://plaid.com/docs/api/items/#pending_disconnect) instead. */ @ApiModel(description = "Fired when an Item’s access consent is expiring in 7 days. This can be resolved by having the user go through Link’s update mode. This webhook is fired only for Items associated with institutions in Europe (including the UK); for Items associated with institutions in the US or Canada, see [`PENDING_DISCONNECT`](https://plaid.com/docs/api/items/#pending_disconnect) instead.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PendingExpirationWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/PersonalFinanceCategory.java b/src/main/java/com/plaid/client/model/PersonalFinanceCategory.java index 38b5d7ac6..4c5ba0ee3 100644 --- a/src/main/java/com/plaid/client/model/PersonalFinanceCategory.java +++ b/src/main/java/com/plaid/client/model/PersonalFinanceCategory.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Information describing the intent of the transaction. Most relevant for personal finance use cases, but not limited to such use cases. See the [taxonomy CSV file](https://plaid.com/documents/pfc-taxonomy-all.csv) for a full list of personal finance categories. If you are migrating to personal finance categories from the legacy categories, also refer to the [migration guide](https://plaid.com/docs/transactions/pfc-migration/). */ @ApiModel(description = "Information describing the intent of the transaction. Most relevant for personal finance use cases, but not limited to such use cases. See the [taxonomy CSV file](https://plaid.com/documents/pfc-taxonomy-all.csv) for a full list of personal finance categories. If you are migrating to personal finance categories from the legacy categories, also refer to the [migration guide](https://plaid.com/docs/transactions/pfc-migration/).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PersonalFinanceCategory { public static final String SERIALIZED_NAME_PRIMARY = "primary"; @SerializedName(SERIALIZED_NAME_PRIMARY) diff --git a/src/main/java/com/plaid/client/model/PersonalFinanceCategoryVersion.java b/src/main/java/com/plaid/client/model/PersonalFinanceCategoryVersion.java index 616e1d1cf..eabbf71d6 100644 --- a/src/main/java/com/plaid/client/model/PersonalFinanceCategoryVersion.java +++ b/src/main/java/com/plaid/client/model/PersonalFinanceCategoryVersion.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PhoneNumber.java b/src/main/java/com/plaid/client/model/PhoneNumber.java index 3ef82dbdb..647666d45 100644 --- a/src/main/java/com/plaid/client/model/PhoneNumber.java +++ b/src/main/java/com/plaid/client/model/PhoneNumber.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * A phone number */ @ApiModel(description = "A phone number") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PhoneNumber { public static final String SERIALIZED_NAME_DATA = "data"; @SerializedName(SERIALIZED_NAME_DATA) diff --git a/src/main/java/com/plaid/client/model/PhoneNumberMatchScore.java b/src/main/java/com/plaid/client/model/PhoneNumberMatchScore.java index 42b61b8f4..1d3590c23 100644 --- a/src/main/java/com/plaid/client/model/PhoneNumberMatchScore.java +++ b/src/main/java/com/plaid/client/model/PhoneNumberMatchScore.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Score found by matching phone number provided by the API with the phone number on the account at the financial institution. 100 is a perfect match and 0 is a no match. If the account contains multiple owners, the maximum match score is filled. */ @ApiModel(description = "Score found by matching phone number provided by the API with the phone number on the account at the financial institution. 100 is a perfect match and 0 is a no match. If the account contains multiple owners, the maximum match score is filled.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PhoneNumberMatchScore { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) diff --git a/src/main/java/com/plaid/client/model/PhoneType.java b/src/main/java/com/plaid/client/model/PhoneType.java index c9d8b0dfa..ed16f9eb4 100644 --- a/src/main/java/com/plaid/client/model/PhoneType.java +++ b/src/main/java/com/plaid/client/model/PhoneType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PhysicalDocumentCategory.java b/src/main/java/com/plaid/client/model/PhysicalDocumentCategory.java index cafa2b9bf..9503439f3 100644 --- a/src/main/java/com/plaid/client/model/PhysicalDocumentCategory.java +++ b/src/main/java/com/plaid/client/model/PhysicalDocumentCategory.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PhysicalDocumentExtractedData.java b/src/main/java/com/plaid/client/model/PhysicalDocumentExtractedData.java index 0248ccc7f..f8c46c8f4 100644 --- a/src/main/java/com/plaid/client/model/PhysicalDocumentExtractedData.java +++ b/src/main/java/com/plaid/client/model/PhysicalDocumentExtractedData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Data extracted from a user-submitted document. */ @ApiModel(description = "Data extracted from a user-submitted document.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PhysicalDocumentExtractedData { public static final String SERIALIZED_NAME_ID_NUMBER = "id_number"; @SerializedName(SERIALIZED_NAME_ID_NUMBER) diff --git a/src/main/java/com/plaid/client/model/PhysicalDocumentExtractedDataAnalysis.java b/src/main/java/com/plaid/client/model/PhysicalDocumentExtractedDataAnalysis.java index fafb4578d..3092f60b9 100644 --- a/src/main/java/com/plaid/client/model/PhysicalDocumentExtractedDataAnalysis.java +++ b/src/main/java/com/plaid/client/model/PhysicalDocumentExtractedDataAnalysis.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Analysis of the data extracted from the submitted document. */ @ApiModel(description = "Analysis of the data extracted from the submitted document.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PhysicalDocumentExtractedDataAnalysis { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/PhysicalDocumentImages.java b/src/main/java/com/plaid/client/model/PhysicalDocumentImages.java index 18dd6c105..5e5a5fa08 100644 --- a/src/main/java/com/plaid/client/model/PhysicalDocumentImages.java +++ b/src/main/java/com/plaid/client/model/PhysicalDocumentImages.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * URLs for downloading original and cropped images for this document submission. The URLs are designed to only allow downloading, not hot linking, so the URL will only serve the document image for 60 seconds before expiring. The expiration time is 60 seconds after the `GET` request for the associated Identity Verification attempt. A new expiring URL is generated with each request, so you can always rerequest the Identity Verification attempt if one of your URLs expires. */ @ApiModel(description = "URLs for downloading original and cropped images for this document submission. The URLs are designed to only allow downloading, not hot linking, so the URL will only serve the document image for 60 seconds before expiring. The expiration time is 60 seconds after the `GET` request for the associated Identity Verification attempt. A new expiring URL is generated with each request, so you can always rerequest the Identity Verification attempt if one of your URLs expires.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PhysicalDocumentImages { public static final String SERIALIZED_NAME_ORIGINAL_FRONT = "original_front"; @SerializedName(SERIALIZED_NAME_ORIGINAL_FRONT) diff --git a/src/main/java/com/plaid/client/model/PlaidCheckScore.java b/src/main/java/com/plaid/client/model/PlaidCheckScore.java index 3ef386be5..7b0614c77 100644 --- a/src/main/java/com/plaid/client/model/PlaidCheckScore.java +++ b/src/main/java/com/plaid/client/model/PlaidCheckScore.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The results of the Plaid Check score. For existing customers only; for new customers, the Plaid Check Score has been replaced by the LendScore, which can be obtained by calling `/cra/check_report/lend_score/get`. */ @ApiModel(description = "The results of the Plaid Check score. For existing customers only; for new customers, the Plaid Check Score has been replaced by the LendScore, which can be obtained by calling `/cra/check_report/lend_score/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PlaidCheckScore { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) diff --git a/src/main/java/com/plaid/client/model/PlaidCheckScoreVersion.java b/src/main/java/com/plaid/client/model/PlaidCheckScoreVersion.java index dcaf91ec2..0ef0527fd 100644 --- a/src/main/java/com/plaid/client/model/PlaidCheckScoreVersion.java +++ b/src/main/java/com/plaid/client/model/PlaidCheckScoreVersion.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PlaidError.java b/src/main/java/com/plaid/client/model/PlaidError.java index 815e11211..cadd39ea8 100644 --- a/src/main/java/com/plaid/client/model/PlaidError.java +++ b/src/main/java/com/plaid/client/model/PlaidError.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Errors are identified by `error_code` and categorized by `error_type`. Use these in preference to HTTP status codes to identify and handle specific errors. HTTP status codes are set and provide the broadest categorization of errors: 4xx codes are for developer- or user-related errors, and 5xx codes are for Plaid-related errors, and the status will be 2xx in non-error cases. An Item with a non-`null` error object will only be part of an API response when calling `/item/get` to view Item status. Otherwise, error fields will be `null` if no error has occurred; if an error has occurred, an error code will be returned instead. */ @ApiModel(description = "Errors are identified by `error_code` and categorized by `error_type`. Use these in preference to HTTP status codes to identify and handle specific errors. HTTP status codes are set and provide the broadest categorization of errors: 4xx codes are for developer- or user-related errors, and 5xx codes are for Plaid-related errors, and the status will be 2xx in non-error cases. An Item with a non-`null` error object will only be part of an API response when calling `/item/get` to view Item status. Otherwise, error fields will be `null` if no error has occurred; if an error has occurred, an error code will be returned instead.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PlaidError { public static final String SERIALIZED_NAME_ERROR_TYPE = "error_type"; @SerializedName(SERIALIZED_NAME_ERROR_TYPE) diff --git a/src/main/java/com/plaid/client/model/PlaidErrorType.java b/src/main/java/com/plaid/client/model/PlaidErrorType.java index 02891273a..a5907400e 100644 --- a/src/main/java/com/plaid/client/model/PlaidErrorType.java +++ b/src/main/java/com/plaid/client/model/PlaidErrorType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PlaidLendScoreVersion.java b/src/main/java/com/plaid/client/model/PlaidLendScoreVersion.java index 09dd7c927..d3a56944a 100644 --- a/src/main/java/com/plaid/client/model/PlaidLendScoreVersion.java +++ b/src/main/java/com/plaid/client/model/PlaidLendScoreVersion.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PlatformIds.java b/src/main/java/com/plaid/client/model/PlatformIds.java index 040038afe..2a350d0b0 100644 --- a/src/main/java/com/plaid/client/model/PlatformIds.java +++ b/src/main/java/com/plaid/client/model/PlatformIds.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object containing a set of ids related to an employee */ @ApiModel(description = "An object containing a set of ids related to an employee") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PlatformIds { public static final String SERIALIZED_NAME_EMPLOYEE_ID = "employee_id"; @SerializedName(SERIALIZED_NAME_EMPLOYEE_ID) diff --git a/src/main/java/com/plaid/client/model/PrismCashScore.java b/src/main/java/com/plaid/client/model/PrismCashScore.java index 467edcf55..ad02fac2b 100644 --- a/src/main/java/com/plaid/client/model/PrismCashScore.java +++ b/src/main/java/com/plaid/client/model/PrismCashScore.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The data from the CashScore® product returned by Prism Data. */ @ApiModel(description = "The data from the CashScore® product returned by Prism Data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PrismCashScore { public static final String SERIALIZED_NAME_VERSION = "version"; @SerializedName(SERIALIZED_NAME_VERSION) diff --git a/src/main/java/com/plaid/client/model/PrismCashScoreMetadata.java b/src/main/java/com/plaid/client/model/PrismCashScoreMetadata.java index da1870f23..b1b3c9cbe 100644 --- a/src/main/java/com/plaid/client/model/PrismCashScoreMetadata.java +++ b/src/main/java/com/plaid/client/model/PrismCashScoreMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object containing metadata about the provided transactions. */ @ApiModel(description = "An object containing metadata about the provided transactions.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PrismCashScoreMetadata { public static final String SERIALIZED_NAME_MAX_AGE = "max_age"; @SerializedName(SERIALIZED_NAME_MAX_AGE) diff --git a/src/main/java/com/plaid/client/model/PrismCashScoreVersion.java b/src/main/java/com/plaid/client/model/PrismCashScoreVersion.java index 3be336371..b8053ffdd 100644 --- a/src/main/java/com/plaid/client/model/PrismCashScoreVersion.java +++ b/src/main/java/com/plaid/client/model/PrismCashScoreVersion.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PrismDetect.java b/src/main/java/com/plaid/client/model/PrismDetect.java index 7d873fe2e..cdedf7728 100644 --- a/src/main/java/com/plaid/client/model/PrismDetect.java +++ b/src/main/java/com/plaid/client/model/PrismDetect.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The data from the CashScore® Detect product returned by Prism Data. */ @ApiModel(description = "The data from the CashScore® Detect product returned by Prism Data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PrismDetect { public static final String SERIALIZED_NAME_MODEL_VERSION = "model_version"; @SerializedName(SERIALIZED_NAME_MODEL_VERSION) diff --git a/src/main/java/com/plaid/client/model/PrismDetectVersion.java b/src/main/java/com/plaid/client/model/PrismDetectVersion.java index 1b5708307..1643085ed 100644 --- a/src/main/java/com/plaid/client/model/PrismDetectVersion.java +++ b/src/main/java/com/plaid/client/model/PrismDetectVersion.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PrismExtend.java b/src/main/java/com/plaid/client/model/PrismExtend.java index d4eebe28d..5afdd6911 100644 --- a/src/main/java/com/plaid/client/model/PrismExtend.java +++ b/src/main/java/com/plaid/client/model/PrismExtend.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The data from the CashScore® Extend product returned by Prism Data. */ @ApiModel(description = "The data from the CashScore® Extend product returned by Prism Data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PrismExtend { public static final String SERIALIZED_NAME_MODEL_VERSION = "model_version"; @SerializedName(SERIALIZED_NAME_MODEL_VERSION) diff --git a/src/main/java/com/plaid/client/model/PrismExtendVersion.java b/src/main/java/com/plaid/client/model/PrismExtendVersion.java index 80f517869..dac1e88cb 100644 --- a/src/main/java/com/plaid/client/model/PrismExtendVersion.java +++ b/src/main/java/com/plaid/client/model/PrismExtendVersion.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PrismFirstDetect.java b/src/main/java/com/plaid/client/model/PrismFirstDetect.java index 4e62075cf..6ec9cea19 100644 --- a/src/main/java/com/plaid/client/model/PrismFirstDetect.java +++ b/src/main/java/com/plaid/client/model/PrismFirstDetect.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The data from the FirstDetect product returned by Prism Data. */ @ApiModel(description = "The data from the FirstDetect product returned by Prism Data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PrismFirstDetect { public static final String SERIALIZED_NAME_VERSION = "version"; @SerializedName(SERIALIZED_NAME_VERSION) diff --git a/src/main/java/com/plaid/client/model/PrismFirstDetectVersion.java b/src/main/java/com/plaid/client/model/PrismFirstDetectVersion.java index 8257ae546..11cddc120 100644 --- a/src/main/java/com/plaid/client/model/PrismFirstDetectVersion.java +++ b/src/main/java/com/plaid/client/model/PrismFirstDetectVersion.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PrismInsights.java b/src/main/java/com/plaid/client/model/PrismInsights.java index 3b2685644..7f12633e8 100644 --- a/src/main/java/com/plaid/client/model/PrismInsights.java +++ b/src/main/java/com/plaid/client/model/PrismInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The data from the Insights product returned by Prism Data. */ @ApiModel(description = "The data from the Insights product returned by Prism Data.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PrismInsights { public static final String SERIALIZED_NAME_VERSION = "version"; @SerializedName(SERIALIZED_NAME_VERSION) diff --git a/src/main/java/com/plaid/client/model/PrismInsightsVersion.java b/src/main/java/com/plaid/client/model/PrismInsightsVersion.java index 44bf5523a..02708185b 100644 --- a/src/main/java/com/plaid/client/model/PrismInsightsVersion.java +++ b/src/main/java/com/plaid/client/model/PrismInsightsVersion.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PrismProduct.java b/src/main/java/com/plaid/client/model/PrismProduct.java index 77e45b066..21cc624af 100644 --- a/src/main/java/com/plaid/client/model/PrismProduct.java +++ b/src/main/java/com/plaid/client/model/PrismProduct.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/PrismVersions.java b/src/main/java/com/plaid/client/model/PrismVersions.java index d73e655e4..8b05328f4 100644 --- a/src/main/java/com/plaid/client/model/PrismVersions.java +++ b/src/main/java/com/plaid/client/model/PrismVersions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * The versions of Prism products to evaluate */ @ApiModel(description = "The versions of Prism products to evaluate") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PrismVersions { public static final String SERIALIZED_NAME_FIRSTDETECT = "firstdetect"; @SerializedName(SERIALIZED_NAME_FIRSTDETECT) diff --git a/src/main/java/com/plaid/client/model/PrismVersionsDeprecated.java b/src/main/java/com/plaid/client/model/PrismVersionsDeprecated.java index f5665d3b0..d80d23818 100644 --- a/src/main/java/com/plaid/client/model/PrismVersionsDeprecated.java +++ b/src/main/java/com/plaid/client/model/PrismVersionsDeprecated.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Deprecated, use `partner_insights.prism_versions` instead. */ @ApiModel(description = "Deprecated, use `partner_insights.prism_versions` instead.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class PrismVersionsDeprecated { public static final String SERIALIZED_NAME_FIRSTDETECT = "firstdetect"; @SerializedName(SERIALIZED_NAME_FIRSTDETECT) diff --git a/src/main/java/com/plaid/client/model/ProcessorAccountGetRequest.java b/src/main/java/com/plaid/client/model/ProcessorAccountGetRequest.java index c1387e392..91984b430 100644 --- a/src/main/java/com/plaid/client/model/ProcessorAccountGetRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorAccountGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorAccountGetRequest defines the request schema for `/processor/account/get` */ @ApiModel(description = "ProcessorAccountGetRequest defines the request schema for `/processor/account/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorAccountGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorAccountGetResponse.java b/src/main/java/com/plaid/client/model/ProcessorAccountGetResponse.java index ba1e6e2e4..0d3f23c76 100644 --- a/src/main/java/com/plaid/client/model/ProcessorAccountGetResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorAccountGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ProcessorAccountGetResponse defines the response schema for `/processor/account/get` */ @ApiModel(description = "ProcessorAccountGetResponse defines the response schema for `/processor/account/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorAccountGetResponse { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) diff --git a/src/main/java/com/plaid/client/model/ProcessorApexProcessorTokenCreateRequest.java b/src/main/java/com/plaid/client/model/ProcessorApexProcessorTokenCreateRequest.java index fd2b7ed0c..296122a72 100644 --- a/src/main/java/com/plaid/client/model/ProcessorApexProcessorTokenCreateRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorApexProcessorTokenCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorApexProcessorTokenCreateRequest defines the request schema for `/processor/apex/processor_token/create` */ @ApiModel(description = "ProcessorApexProcessorTokenCreateRequest defines the request schema for `/processor/apex/processor_token/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorApexProcessorTokenCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorAuthGetRequest.java b/src/main/java/com/plaid/client/model/ProcessorAuthGetRequest.java index 919c2afb2..274cd389e 100644 --- a/src/main/java/com/plaid/client/model/ProcessorAuthGetRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorAuthGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorAuthGetRequest defines the request schema for `/processor/auth/get` */ @ApiModel(description = "ProcessorAuthGetRequest defines the request schema for `/processor/auth/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorAuthGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorAuthGetResponse.java b/src/main/java/com/plaid/client/model/ProcessorAuthGetResponse.java index 53b074033..8ac89eee1 100644 --- a/src/main/java/com/plaid/client/model/ProcessorAuthGetResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorAuthGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * ProcessorAuthGetResponse defines the response schema for `/processor/auth/get` */ @ApiModel(description = "ProcessorAuthGetResponse defines the response schema for `/processor/auth/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorAuthGetResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorBalanceGetRequest.java b/src/main/java/com/plaid/client/model/ProcessorBalanceGetRequest.java index 4abdac3dc..c5413cc5d 100644 --- a/src/main/java/com/plaid/client/model/ProcessorBalanceGetRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorBalanceGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ProcessorBalanceGetRequest defines the request schema for `/processor/balance/get` */ @ApiModel(description = "ProcessorBalanceGetRequest defines the request schema for `/processor/balance/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorBalanceGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorBalanceGetRequestOptions.java b/src/main/java/com/plaid/client/model/ProcessorBalanceGetRequestOptions.java index 401942a87..068218755 100644 --- a/src/main/java/com/plaid/client/model/ProcessorBalanceGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/ProcessorBalanceGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Optional parameters to `/processor/balance/get`. */ @ApiModel(description = "Optional parameters to `/processor/balance/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorBalanceGetRequestOptions { public static final String SERIALIZED_NAME_MIN_LAST_UPDATED_DATETIME = "min_last_updated_datetime"; @SerializedName(SERIALIZED_NAME_MIN_LAST_UPDATED_DATETIME) diff --git a/src/main/java/com/plaid/client/model/ProcessorBalanceGetResponse.java b/src/main/java/com/plaid/client/model/ProcessorBalanceGetResponse.java index 5f31fe944..67886bf3e 100644 --- a/src/main/java/com/plaid/client/model/ProcessorBalanceGetResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorBalanceGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ProcessorBalanceGetResponse defines the response schema for `/processor/balance/get` */ @ApiModel(description = "ProcessorBalanceGetResponse defines the response schema for `/processor/balance/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorBalanceGetResponse { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) diff --git a/src/main/java/com/plaid/client/model/ProcessorBankTransferCreateRequest.java b/src/main/java/com/plaid/client/model/ProcessorBankTransferCreateRequest.java index 7622e646f..9330aa23a 100644 --- a/src/main/java/com/plaid/client/model/ProcessorBankTransferCreateRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorBankTransferCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * Defines the request schema for `/processor/bank_transfer/create` */ @ApiModel(description = "Defines the request schema for `/processor/bank_transfer/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorBankTransferCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorBankTransferCreateResponse.java b/src/main/java/com/plaid/client/model/ProcessorBankTransferCreateResponse.java index c78e3a923..69c6bfc06 100644 --- a/src/main/java/com/plaid/client/model/ProcessorBankTransferCreateResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorBankTransferCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/processor/bank_transfer/create` */ @ApiModel(description = "Defines the response schema for `/processor/bank_transfer/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorBankTransferCreateResponse { public static final String SERIALIZED_NAME_BANK_TRANSFER = "bank_transfer"; @SerializedName(SERIALIZED_NAME_BANK_TRANSFER) diff --git a/src/main/java/com/plaid/client/model/ProcessorDefaultUpdateWebhook.java b/src/main/java/com/plaid/client/model/ProcessorDefaultUpdateWebhook.java index 1bd715580..ed576ed81 100644 --- a/src/main/java/com/plaid/client/model/ProcessorDefaultUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/ProcessorDefaultUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when new transaction data is available for an Item. Plaid will typically check for new transaction data several times a day. This webhook is intended for use with `/processor/transactions/get`; if you are using the newer `/processor/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead. */ @ApiModel(description = "This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when new transaction data is available for an Item. Plaid will typically check for new transaction data several times a day. This webhook is intended for use with `/processor/transactions/get`; if you are using the newer `/processor/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead. ") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorDefaultUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/ProcessorHistoricalUpdateWebhook.java b/src/main/java/com/plaid/client/model/ProcessorHistoricalUpdateWebhook.java index 049766cde..258f8c129 100644 --- a/src/main/java/com/plaid/client/model/ProcessorHistoricalUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/ProcessorHistoricalUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when an Item's historical transaction pull is completed and Plaid has prepared as much historical transaction data as possible for the Item. Once this webhook has been fired, transaction data beyond the most recent 30 days can be fetched for the Item. This webhook will also be fired if account selections for the Item are updated, with `new_transactions` set to the number of net new transactions pulled after the account selection update. This webhook is intended for use with `/processor/transactions/get`; if you are using the newer `/processor/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead. */ @ApiModel(description = "This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when an Item's historical transaction pull is completed and Plaid has prepared as much historical transaction data as possible for the Item. Once this webhook has been fired, transaction data beyond the most recent 30 days can be fetched for the Item. This webhook will also be fired if account selections for the Item are updated, with `new_transactions` set to the number of net new transactions pulled after the account selection update. This webhook is intended for use with `/processor/transactions/get`; if you are using the newer `/processor/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorHistoricalUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/ProcessorIdentityGetRequest.java b/src/main/java/com/plaid/client/model/ProcessorIdentityGetRequest.java index 834c1ca01..07f338b62 100644 --- a/src/main/java/com/plaid/client/model/ProcessorIdentityGetRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorIdentityGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorIdentityGetRequest defines the request schema for `/processor/identity/get` */ @ApiModel(description = "ProcessorIdentityGetRequest defines the request schema for `/processor/identity/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorIdentityGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorIdentityGetResponse.java b/src/main/java/com/plaid/client/model/ProcessorIdentityGetResponse.java index b7d4c5d73..2526500c4 100644 --- a/src/main/java/com/plaid/client/model/ProcessorIdentityGetResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorIdentityGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ProcessorIdentityGetResponse defines the response schema for `/processor/identity/get` */ @ApiModel(description = "ProcessorIdentityGetResponse defines the response schema for `/processor/identity/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorIdentityGetResponse { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) diff --git a/src/main/java/com/plaid/client/model/ProcessorIdentityMatchRequest.java b/src/main/java/com/plaid/client/model/ProcessorIdentityMatchRequest.java index 85e53310e..fe9f520b4 100644 --- a/src/main/java/com/plaid/client/model/ProcessorIdentityMatchRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorIdentityMatchRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ProcessorIdentityMatchRequest defines the request schema for `/processor/identity/match` */ @ApiModel(description = "ProcessorIdentityMatchRequest defines the request schema for `/processor/identity/match`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorIdentityMatchRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorIdentityMatchResponse.java b/src/main/java/com/plaid/client/model/ProcessorIdentityMatchResponse.java index d0cf8c0bf..f1f85e2c5 100644 --- a/src/main/java/com/plaid/client/model/ProcessorIdentityMatchResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorIdentityMatchResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ProcessorIdentityMatchResponse defines the response schema for `/processor/identity/match` */ @ApiModel(description = "ProcessorIdentityMatchResponse defines the response schema for `/processor/identity/match`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorIdentityMatchResponse { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) diff --git a/src/main/java/com/plaid/client/model/ProcessorInitialUpdateWebhook.java b/src/main/java/com/plaid/client/model/ProcessorInitialUpdateWebhook.java index ecae9ab73..00b3b10ee 100644 --- a/src/main/java/com/plaid/client/model/ProcessorInitialUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/ProcessorInitialUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when an Item's initial transaction pull is completed. Once this webhook has been fired, transaction data for the most recent 30 days can be fetched for the Item. This webhook will also be fired if account selections for the Item are updated, with `new_transactions` set to the number of net new transactions pulled after the account selection update. This webhook is intended for use with `/processor/transactions/get`; if you are using the newer `/processor/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead. */ @ApiModel(description = "This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when an Item's initial transaction pull is completed. Once this webhook has been fired, transaction data for the most recent 30 days can be fetched for the Item. This webhook will also be fired if account selections for the Item are updated, with `new_transactions` set to the number of net new transactions pulled after the account selection update. This webhook is intended for use with `/processor/transactions/get`; if you are using the newer `/processor/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorInitialUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/ProcessorInvestmentsHoldingsGetRequest.java b/src/main/java/com/plaid/client/model/ProcessorInvestmentsHoldingsGetRequest.java index 172ec4456..624287e70 100644 --- a/src/main/java/com/plaid/client/model/ProcessorInvestmentsHoldingsGetRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorInvestmentsHoldingsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorInvestmentsHoldingsGetRequest defines the request schema for `/processor/investments/holdings/get` */ @ApiModel(description = "ProcessorInvestmentsHoldingsGetRequest defines the request schema for `/processor/investments/holdings/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorInvestmentsHoldingsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorInvestmentsHoldingsGetResponse.java b/src/main/java/com/plaid/client/model/ProcessorInvestmentsHoldingsGetResponse.java index a1e4902c3..ef947cf8a 100644 --- a/src/main/java/com/plaid/client/model/ProcessorInvestmentsHoldingsGetResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorInvestmentsHoldingsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * ProcessorInvestmentsHoldingsGetResponse defines the response schema for `/processor/invesments/holdings/get` */ @ApiModel(description = "ProcessorInvestmentsHoldingsGetResponse defines the response schema for `/processor/invesments/holdings/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorInvestmentsHoldingsGetResponse { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) diff --git a/src/main/java/com/plaid/client/model/ProcessorInvestmentsTransactionsGetRequest.java b/src/main/java/com/plaid/client/model/ProcessorInvestmentsTransactionsGetRequest.java index bb5a5b699..fd13a60e8 100644 --- a/src/main/java/com/plaid/client/model/ProcessorInvestmentsTransactionsGetRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorInvestmentsTransactionsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * ProcessorInvestmentsTransactionsGetRequest defines the request schema for `/processor/investments/transactions/get` */ @ApiModel(description = "ProcessorInvestmentsTransactionsGetRequest defines the request schema for `/processor/investments/transactions/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorInvestmentsTransactionsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorInvestmentsTransactionsGetResponse.java b/src/main/java/com/plaid/client/model/ProcessorInvestmentsTransactionsGetResponse.java index 2e924f5e8..f4099c452 100644 --- a/src/main/java/com/plaid/client/model/ProcessorInvestmentsTransactionsGetResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorInvestmentsTransactionsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * ProcessorInvestmentsTransactionsGetRequest defines the response schema for `/processor/investments/transactions/get` */ @ApiModel(description = "ProcessorInvestmentsTransactionsGetRequest defines the response schema for `/processor/investments/transactions/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorInvestmentsTransactionsGetResponse { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) diff --git a/src/main/java/com/plaid/client/model/ProcessorLiabilitiesGetRequest.java b/src/main/java/com/plaid/client/model/ProcessorLiabilitiesGetRequest.java index cc84baf92..72f3ec487 100644 --- a/src/main/java/com/plaid/client/model/ProcessorLiabilitiesGetRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorLiabilitiesGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorLiabilitiesGetRequest defines the request schema for `/processor/liabilities/get` */ @ApiModel(description = "ProcessorLiabilitiesGetRequest defines the request schema for `/processor/liabilities/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorLiabilitiesGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorLiabilitiesGetResponse.java b/src/main/java/com/plaid/client/model/ProcessorLiabilitiesGetResponse.java index 00a10c0ac..225d7c4e4 100644 --- a/src/main/java/com/plaid/client/model/ProcessorLiabilitiesGetResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorLiabilitiesGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * ProcessorLiabilitiesGetResponse defines the response schema for `/processor/liabilities/get` */ @ApiModel(description = "ProcessorLiabilitiesGetResponse defines the response schema for `/processor/liabilities/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorLiabilitiesGetResponse { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) diff --git a/src/main/java/com/plaid/client/model/ProcessorNumber.java b/src/main/java/com/plaid/client/model/ProcessorNumber.java index 9dcd00dff..2eb94ee00 100644 --- a/src/main/java/com/plaid/client/model/ProcessorNumber.java +++ b/src/main/java/com/plaid/client/model/ProcessorNumber.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * An object containing identifying numbers used for making electronic transfers to and from the `account`. The identifying number type (ACH, EFT, IBAN, or BACS) used will depend on the country of the account. An account may have more than one number type. If a particular identifying number type is not used by the `account` for which auth data has been requested, a null value will be returned. */ @ApiModel(description = "An object containing identifying numbers used for making electronic transfers to and from the `account`. The identifying number type (ACH, EFT, IBAN, or BACS) used will depend on the country of the account. An account may have more than one number type. If a particular identifying number type is not used by the `account` for which auth data has been requested, a null value will be returned.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorNumber { public static final String SERIALIZED_NAME_ACH = "ach"; @SerializedName(SERIALIZED_NAME_ACH) diff --git a/src/main/java/com/plaid/client/model/ProcessorRecurringTransactionsUpdateWebhook.java b/src/main/java/com/plaid/client/model/ProcessorRecurringTransactionsUpdateWebhook.java index ad3b15c66..9391bc2b0 100644 --- a/src/main/java/com/plaid/client/model/ProcessorRecurringTransactionsUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/ProcessorRecurringTransactionsUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when recurring transactions data is updated. This includes when a new recurring stream is detected or when a new transaction is added to an existing recurring stream. The `RECURRING_TRANSACTIONS_UPDATE` webhook will also fire when one or more attributes of the recurring stream changes, which is usually a result of the addition, update, or removal of transactions to the stream. After receipt of this webhook, the updated data can be fetched from `/processor/transactions/recurring/get`. */ @ApiModel(description = "This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when recurring transactions data is updated. This includes when a new recurring stream is detected or when a new transaction is added to an existing recurring stream. The `RECURRING_TRANSACTIONS_UPDATE` webhook will also fire when one or more attributes of the recurring stream changes, which is usually a result of the addition, update, or removal of transactions to the stream. After receipt of this webhook, the updated data can be fetched from `/processor/transactions/recurring/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorRecurringTransactionsUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/ProcessorSignalDecisionReportRequest.java b/src/main/java/com/plaid/client/model/ProcessorSignalDecisionReportRequest.java index 3179c720f..69e92cf47 100644 --- a/src/main/java/com/plaid/client/model/ProcessorSignalDecisionReportRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorSignalDecisionReportRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * ProcessorSignalDecisionReportRequest defines the request schema for `/processor/signal/decision/report` */ @ApiModel(description = "ProcessorSignalDecisionReportRequest defines the request schema for `/processor/signal/decision/report`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorSignalDecisionReportRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorSignalDecisionReportResponse.java b/src/main/java/com/plaid/client/model/ProcessorSignalDecisionReportResponse.java index 0bbc6aded..b4b8251c5 100644 --- a/src/main/java/com/plaid/client/model/ProcessorSignalDecisionReportResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorSignalDecisionReportResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorSignalDecisionReportResponse defines the response schema for `/processor/signal/decision/report` */ @ApiModel(description = "ProcessorSignalDecisionReportResponse defines the response schema for `/processor/signal/decision/report`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorSignalDecisionReportResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorSignalEvaluateRequest.java b/src/main/java/com/plaid/client/model/ProcessorSignalEvaluateRequest.java index 0c4c0d354..c69a09494 100644 --- a/src/main/java/com/plaid/client/model/ProcessorSignalEvaluateRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorSignalEvaluateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * ProcessorSignalEvaluateRequest defines the request schema for `/processor/signal/evaluate` */ @ApiModel(description = "ProcessorSignalEvaluateRequest defines the request schema for `/processor/signal/evaluate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorSignalEvaluateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorSignalEvaluateResponse.java b/src/main/java/com/plaid/client/model/ProcessorSignalEvaluateResponse.java index 359af4f36..dccb587fe 100644 --- a/src/main/java/com/plaid/client/model/ProcessorSignalEvaluateResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorSignalEvaluateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * ProcessorSignalEvaluateResponse defines the response schema for `/processor/signal/evaluate` */ @ApiModel(description = "ProcessorSignalEvaluateResponse defines the response schema for `/processor/signal/evaluate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorSignalEvaluateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorSignalPrepareRequest.java b/src/main/java/com/plaid/client/model/ProcessorSignalPrepareRequest.java index a068d2446..ec84d5904 100644 --- a/src/main/java/com/plaid/client/model/ProcessorSignalPrepareRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorSignalPrepareRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorSignalPrepareRequest defines the request schema for `/processor/signal/prepare` */ @ApiModel(description = "ProcessorSignalPrepareRequest defines the request schema for `/processor/signal/prepare`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorSignalPrepareRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorSignalPrepareResponse.java b/src/main/java/com/plaid/client/model/ProcessorSignalPrepareResponse.java index 3d8b7017f..e41beb227 100644 --- a/src/main/java/com/plaid/client/model/ProcessorSignalPrepareResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorSignalPrepareResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorSignalPrepareResponse defines the response schema for `/processor/signal/prepare` */ @ApiModel(description = "ProcessorSignalPrepareResponse defines the response schema for `/processor/signal/prepare`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorSignalPrepareResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorSignalReturnReportRequest.java b/src/main/java/com/plaid/client/model/ProcessorSignalReturnReportRequest.java index d1c10aeef..67a8acf2c 100644 --- a/src/main/java/com/plaid/client/model/ProcessorSignalReturnReportRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorSignalReturnReportRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ProcessorSignalReturnReportRequest defines the request schema for `/processor/signal/return/report` */ @ApiModel(description = "ProcessorSignalReturnReportRequest defines the request schema for `/processor/signal/return/report`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorSignalReturnReportRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorSignalReturnReportResponse.java b/src/main/java/com/plaid/client/model/ProcessorSignalReturnReportResponse.java index 39ad5b27e..fdd00dd32 100644 --- a/src/main/java/com/plaid/client/model/ProcessorSignalReturnReportResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorSignalReturnReportResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorSignalReturnReportResponse defines the response schema for `/processor/signal/return/report` */ @ApiModel(description = "ProcessorSignalReturnReportResponse defines the response schema for `/processor/signal/return/report`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorSignalReturnReportResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorStripeBankAccountTokenCreateRequest.java b/src/main/java/com/plaid/client/model/ProcessorStripeBankAccountTokenCreateRequest.java index bed63467b..544dfcdfe 100644 --- a/src/main/java/com/plaid/client/model/ProcessorStripeBankAccountTokenCreateRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorStripeBankAccountTokenCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorStripeBankAccountTokenCreateRequest defines the request schema for `/processor/stripe/bank_account/create` */ @ApiModel(description = "ProcessorStripeBankAccountTokenCreateRequest defines the request schema for `/processor/stripe/bank_account/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorStripeBankAccountTokenCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorStripeBankAccountTokenCreateResponse.java b/src/main/java/com/plaid/client/model/ProcessorStripeBankAccountTokenCreateResponse.java index 6ab342b94..1c7931670 100644 --- a/src/main/java/com/plaid/client/model/ProcessorStripeBankAccountTokenCreateResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorStripeBankAccountTokenCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorStripeBankAccountTokenCreateResponse defines the response schema for `/processor/stripe/bank_account/create` */ @ApiModel(description = "ProcessorStripeBankAccountTokenCreateResponse defines the response schema for `/processor/stripe/bank_account/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorStripeBankAccountTokenCreateResponse { public static final String SERIALIZED_NAME_STRIPE_BANK_ACCOUNT_TOKEN = "stripe_bank_account_token"; @SerializedName(SERIALIZED_NAME_STRIPE_BANK_ACCOUNT_TOKEN) diff --git a/src/main/java/com/plaid/client/model/ProcessorSyncUpdatesAvailableWebhook.java b/src/main/java/com/plaid/client/model/ProcessorSyncUpdatesAvailableWebhook.java index 19f272c90..6309f8f68 100644 --- a/src/main/java/com/plaid/client/model/ProcessorSyncUpdatesAvailableWebhook.java +++ b/src/main/java/com/plaid/client/model/ProcessorSyncUpdatesAvailableWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when an Item's transactions change. This can be due to any event resulting in new changes, such as an initial 30-day transactions fetch upon the initialization of an Item with transactions, the backfill of historical transactions that occurs shortly after, or when changes are populated from a regularly-scheduled transactions update job. It is recommended to listen for the `SYNC_UPDATES_AVAILABLE` webhook when using the `/processor/transactions/sync` endpoint. Note that when using `/processor/transactions/sync` the older webhooks `INITIAL_UPDATE`, `HISTORICAL_UPDATE`, `DEFAULT_UPDATE`, and `TRANSACTIONS_REMOVED`, which are intended for use with `/processor/transactions/get`, will also continue to be sent in order to maintain backwards compatibility. It is not necessary to listen for and respond to those webhooks when using `/processor/transactions/sync`. After receipt of this webhook, the new changes can be fetched for the Item from `/processor/transactions/sync`. Note that to receive this webhook for an Item, `/processor/transactions/sync` must have been called at least once on that Item. This means that, unlike the `INITIAL_UPDATE` and `HISTORICAL_UPDATE` webhooks, it will not fire immediately upon Item creation. If `/transactions/sync` is called on an Item that was *not* initialized with Transactions, the webhook will fire twice: once the first 30 days of transactions data has been fetched, and a second time when all available historical transactions data has been fetched. This webhook will typically not fire in the Sandbox environment, due to the lack of dynamic transactions data. To test this webhook in Sandbox, call `/sandbox/item/fire_webhook`. */ @ApiModel(description = "This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when an Item's transactions change. This can be due to any event resulting in new changes, such as an initial 30-day transactions fetch upon the initialization of an Item with transactions, the backfill of historical transactions that occurs shortly after, or when changes are populated from a regularly-scheduled transactions update job. It is recommended to listen for the `SYNC_UPDATES_AVAILABLE` webhook when using the `/processor/transactions/sync` endpoint. Note that when using `/processor/transactions/sync` the older webhooks `INITIAL_UPDATE`, `HISTORICAL_UPDATE`, `DEFAULT_UPDATE`, and `TRANSACTIONS_REMOVED`, which are intended for use with `/processor/transactions/get`, will also continue to be sent in order to maintain backwards compatibility. It is not necessary to listen for and respond to those webhooks when using `/processor/transactions/sync`. After receipt of this webhook, the new changes can be fetched for the Item from `/processor/transactions/sync`. Note that to receive this webhook for an Item, `/processor/transactions/sync` must have been called at least once on that Item. This means that, unlike the `INITIAL_UPDATE` and `HISTORICAL_UPDATE` webhooks, it will not fire immediately upon Item creation. If `/transactions/sync` is called on an Item that was *not* initialized with Transactions, the webhook will fire twice: once the first 30 days of transactions data has been fetched, and a second time when all available historical transactions data has been fetched. This webhook will typically not fire in the Sandbox environment, due to the lack of dynamic transactions data. To test this webhook in Sandbox, call `/sandbox/item/fire_webhook`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorSyncUpdatesAvailableWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/ProcessorTokenCreateRequest.java b/src/main/java/com/plaid/client/model/ProcessorTokenCreateRequest.java index ca529338f..de48817f9 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTokenCreateRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorTokenCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorTokenCreateRequest defines the request schema for `/processor/token/create` */ @ApiModel(description = "ProcessorTokenCreateRequest defines the request schema for `/processor/token/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTokenCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorTokenCreateResponse.java b/src/main/java/com/plaid/client/model/ProcessorTokenCreateResponse.java index efb697df5..c1be076f4 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTokenCreateResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorTokenCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorTokenCreateResponse defines the response schema for `/processor/token/create` and `/processor/apex/processor_token/create` */ @ApiModel(description = "ProcessorTokenCreateResponse defines the response schema for `/processor/token/create` and `/processor/apex/processor_token/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTokenCreateResponse { public static final String SERIALIZED_NAME_PROCESSOR_TOKEN = "processor_token"; @SerializedName(SERIALIZED_NAME_PROCESSOR_TOKEN) diff --git a/src/main/java/com/plaid/client/model/ProcessorTokenPermissionsGetRequest.java b/src/main/java/com/plaid/client/model/ProcessorTokenPermissionsGetRequest.java index 2f487b5e7..043767ac0 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTokenPermissionsGetRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorTokenPermissionsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorTokenPermissionsGetRequest defines the request schema for `/processor/token/permissions/get` */ @ApiModel(description = "ProcessorTokenPermissionsGetRequest defines the request schema for `/processor/token/permissions/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTokenPermissionsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorTokenPermissionsGetResponse.java b/src/main/java/com/plaid/client/model/ProcessorTokenPermissionsGetResponse.java index 9d009c9ae..a58e23123 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTokenPermissionsGetResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorTokenPermissionsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * ProcessorTokenPermissionsGetResponse defines the response schema for `/processor/token/permissions/get` */ @ApiModel(description = "ProcessorTokenPermissionsGetResponse defines the response schema for `/processor/token/permissions/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTokenPermissionsGetResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorTokenPermissionsSetRequest.java b/src/main/java/com/plaid/client/model/ProcessorTokenPermissionsSetRequest.java index b396d2fd7..578210ff9 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTokenPermissionsSetRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorTokenPermissionsSetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * ProcessorTokenPermissionsSetRequest defines the request schema for `/processor/token/permissions/set` */ @ApiModel(description = "ProcessorTokenPermissionsSetRequest defines the request schema for `/processor/token/permissions/set`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTokenPermissionsSetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorTokenPermissionsSetResponse.java b/src/main/java/com/plaid/client/model/ProcessorTokenPermissionsSetResponse.java index a3979bbe5..efd8e28ce 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTokenPermissionsSetResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorTokenPermissionsSetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorTokenPermissionsSetResponse defines the response schema for `/processor/token/permissions/set` */ @ApiModel(description = "ProcessorTokenPermissionsSetResponse defines the response schema for `/processor/token/permissions/set`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTokenPermissionsSetResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorTokenWebhookUpdate.java b/src/main/java/com/plaid/client/model/ProcessorTokenWebhookUpdate.java index 7242b959e..3a691739c 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTokenWebhookUpdate.java +++ b/src/main/java/com/plaid/client/model/ProcessorTokenWebhookUpdate.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when a processor updates the webhook URL for a processor token via `/processor/token/webhook/update`. */ @ApiModel(description = "This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when a processor updates the webhook URL for a processor token via `/processor/token/webhook/update`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTokenWebhookUpdate { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/ProcessorTokenWebhookUpdateRequest.java b/src/main/java/com/plaid/client/model/ProcessorTokenWebhookUpdateRequest.java index 79b0bc012..2bfa372d3 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTokenWebhookUpdateRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorTokenWebhookUpdateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorTokenWebhookUpdateRequest defines the request schema for `/processor/token/webhook/update` */ @ApiModel(description = "ProcessorTokenWebhookUpdateRequest defines the request schema for `/processor/token/webhook/update`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTokenWebhookUpdateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorTokenWebhookUpdateResponse.java b/src/main/java/com/plaid/client/model/ProcessorTokenWebhookUpdateResponse.java index a8d5b14bb..34b725147 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTokenWebhookUpdateResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorTokenWebhookUpdateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorTokenWebhookUpdateResponse defines the response schema for `/processor/token/webhook/update` */ @ApiModel(description = "ProcessorTokenWebhookUpdateResponse defines the response schema for `/processor/token/webhook/update`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTokenWebhookUpdateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorTransactionsGetRequest.java b/src/main/java/com/plaid/client/model/ProcessorTransactionsGetRequest.java index e1fcb4582..acde18c79 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTransactionsGetRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorTransactionsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * ProcessorTransactionsGetRequest defines the request schema for `/processor/transactions/get` */ @ApiModel(description = "ProcessorTransactionsGetRequest defines the request schema for `/processor/transactions/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTransactionsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorTransactionsGetRequestOptions.java b/src/main/java/com/plaid/client/model/ProcessorTransactionsGetRequestOptions.java index 70e8785fb..7eaad331f 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTransactionsGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/ProcessorTransactionsGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An optional object to be used with the request. If specified, `options` must not be `null`. */ @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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTransactionsGetRequestOptions { public static final String SERIALIZED_NAME_COUNT = "count"; @SerializedName(SERIALIZED_NAME_COUNT) diff --git a/src/main/java/com/plaid/client/model/ProcessorTransactionsGetResponse.java b/src/main/java/com/plaid/client/model/ProcessorTransactionsGetResponse.java index 7da2a0f09..719b3dce6 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTransactionsGetResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorTransactionsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * ProcessorTransactionsGetResponse defines the response schema for `/processor/transactions/get` */ @ApiModel(description = "ProcessorTransactionsGetResponse defines the response schema for `/processor/transactions/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTransactionsGetResponse { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) diff --git a/src/main/java/com/plaid/client/model/ProcessorTransactionsRecurringGetRequest.java b/src/main/java/com/plaid/client/model/ProcessorTransactionsRecurringGetRequest.java index 956232103..1323daa5e 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTransactionsRecurringGetRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorTransactionsRecurringGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ProcessorTransactionsRecurringGetRequest defines the request schema for `/processor/transactions/recurring/get` */ @ApiModel(description = "ProcessorTransactionsRecurringGetRequest defines the request schema for `/processor/transactions/recurring/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTransactionsRecurringGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorTransactionsRecurringGetResponse.java b/src/main/java/com/plaid/client/model/ProcessorTransactionsRecurringGetResponse.java index d27dfc307..e18071583 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTransactionsRecurringGetResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorTransactionsRecurringGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * ProcessorTransactionsRecurringGetResponse defines the response schema for `/processor/transactions/recurring/get` */ @ApiModel(description = "ProcessorTransactionsRecurringGetResponse defines the response schema for `/processor/transactions/recurring/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTransactionsRecurringGetResponse { public static final String SERIALIZED_NAME_INFLOW_STREAMS = "inflow_streams"; @SerializedName(SERIALIZED_NAME_INFLOW_STREAMS) diff --git a/src/main/java/com/plaid/client/model/ProcessorTransactionsRefreshRequest.java b/src/main/java/com/plaid/client/model/ProcessorTransactionsRefreshRequest.java index ef93b1e5a..8050730d0 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTransactionsRefreshRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorTransactionsRefreshRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorTransactionsRefreshRequest defines the request schema for `/processor/transactions/refresh` */ @ApiModel(description = "ProcessorTransactionsRefreshRequest defines the request schema for `/processor/transactions/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTransactionsRefreshRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorTransactionsRefreshResponse.java b/src/main/java/com/plaid/client/model/ProcessorTransactionsRefreshResponse.java index 0e4854d07..8aa2dbe9e 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTransactionsRefreshResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorTransactionsRefreshResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * ProcessorTransactionsRefreshResponse defines the response schema for `/processor/transactions/refresh` */ @ApiModel(description = "ProcessorTransactionsRefreshResponse defines the response schema for `/processor/transactions/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTransactionsRefreshResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorTransactionsRemovedWebhook.java b/src/main/java/com/plaid/client/model/ProcessorTransactionsRemovedWebhook.java index 023375030..b12431c97 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTransactionsRemovedWebhook.java +++ b/src/main/java/com/plaid/client/model/ProcessorTransactionsRemovedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when transaction(s) for an Item are deleted. The deleted transaction IDs are included in the webhook payload. Plaid will typically check for deleted transaction data several times a day. This webhook is intended for use with `/processor/transactions/get`; if you are using the newer `/processor/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead. */ @ApiModel(description = "This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when transaction(s) for an Item are deleted. The deleted transaction IDs are included in the webhook payload. Plaid will typically check for deleted transaction data several times a day. This webhook is intended for use with `/processor/transactions/get`; if you are using the newer `/processor/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTransactionsRemovedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/ProcessorTransactionsSyncRequest.java b/src/main/java/com/plaid/client/model/ProcessorTransactionsSyncRequest.java index b43b29614..44a4154aa 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTransactionsSyncRequest.java +++ b/src/main/java/com/plaid/client/model/ProcessorTransactionsSyncRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ProcessorTransactionsSyncRequest defines the request schema for `/processor/transactions/sync` */ @ApiModel(description = "ProcessorTransactionsSyncRequest defines the request schema for `/processor/transactions/sync`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTransactionsSyncRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProcessorTransactionsSyncResponse.java b/src/main/java/com/plaid/client/model/ProcessorTransactionsSyncResponse.java index 7d5e09075..b64928ba8 100644 --- a/src/main/java/com/plaid/client/model/ProcessorTransactionsSyncResponse.java +++ b/src/main/java/com/plaid/client/model/ProcessorTransactionsSyncResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * ProcessorTransactionsSyncResponse defines the response schema for `/processor/transactions/sync` */ @ApiModel(description = "ProcessorTransactionsSyncResponse defines the response schema for `/processor/transactions/sync`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProcessorTransactionsSyncResponse { public static final String SERIALIZED_NAME_TRANSACTIONS_UPDATE_STATUS = "transactions_update_status"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS_UPDATE_STATUS) diff --git a/src/main/java/com/plaid/client/model/ProductAccess.java b/src/main/java/com/plaid/client/model/ProductAccess.java index b77a6c359..517373ec5 100644 --- a/src/main/java/com/plaid/client/model/ProductAccess.java +++ b/src/main/java/com/plaid/client/model/ProductAccess.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The product access being requested. Used to or disallow product access across all accounts. If unset, defaults to all products allowed. */ @ApiModel(description = "The product access being requested. Used to or disallow product access across all accounts. If unset, defaults to all products allowed.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProductAccess { public static final String SERIALIZED_NAME_STATEMENTS = "statements"; @SerializedName(SERIALIZED_NAME_STATEMENTS) diff --git a/src/main/java/com/plaid/client/model/ProductPermissionsRequiredAuthWebhook.java b/src/main/java/com/plaid/client/model/ProductPermissionsRequiredAuthWebhook.java index c0db94957..1401c5848 100644 --- a/src/main/java/com/plaid/client/model/ProductPermissionsRequiredAuthWebhook.java +++ b/src/main/java/com/plaid/client/model/ProductPermissionsRequiredAuthWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when an `ACCESS_NOT_GRANTED` error is hit for Auth. The error can be resolved by putting the user through update mode with `auth` in the `products` array, as well as through the limited beta for update mode Authentication product validations. */ @ApiModel(description = "Fired when an `ACCESS_NOT_GRANTED` error is hit for Auth. The error can be resolved by putting the user through update mode with `auth` in the `products` array, as well as through the limited beta for update mode Authentication product validations.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProductPermissionsRequiredAuthWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/ProductPermissionsRequiredIdentityWebhook.java b/src/main/java/com/plaid/client/model/ProductPermissionsRequiredIdentityWebhook.java index 345a30c40..e9aa30f73 100644 --- a/src/main/java/com/plaid/client/model/ProductPermissionsRequiredIdentityWebhook.java +++ b/src/main/java/com/plaid/client/model/ProductPermissionsRequiredIdentityWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when an `ACCESS_NOT_GRANTED` error is hit for Identity. The error can be resolved by putting the user through update mode with `identity` in the `products` array, as well as through the limited beta for update mode Identity product validations. */ @ApiModel(description = "Fired when an `ACCESS_NOT_GRANTED` error is hit for Identity. The error can be resolved by putting the user through update mode with `identity` in the `products` array, as well as through the limited beta for update mode Identity product validations.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProductPermissionsRequiredIdentityWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/ProductStatus.java b/src/main/java/com/plaid/client/model/ProductStatus.java index 05d25d2f0..3cab965a1 100644 --- a/src/main/java/com/plaid/client/model/ProductStatus.java +++ b/src/main/java/com/plaid/client/model/ProductStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * A representation of the status health of a request type. Auth requests, Balance requests, Identity requests, Investments requests, Liabilities requests, Transactions updates, Investments updates, Liabilities updates, and Item logins each have their own status object. */ @ApiModel(description = "A representation of the status health of a request type. Auth requests, Balance requests, Identity requests, Investments requests, Liabilities requests, Transactions updates, Investments updates, Liabilities updates, and Item logins each have their own status object.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProductStatus { /** * This field is deprecated in favor of the `breakdown` object, which provides more granular institution health data. `HEALTHY`: the majority of requests are successful `DEGRADED`: only some requests are successful `DOWN`: all requests are failing diff --git a/src/main/java/com/plaid/client/model/ProductStatusBreakdown.java b/src/main/java/com/plaid/client/model/ProductStatusBreakdown.java index 834662cb3..4d33681bf 100644 --- a/src/main/java/com/plaid/client/model/ProductStatusBreakdown.java +++ b/src/main/java/com/plaid/client/model/ProductStatusBreakdown.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * A detailed breakdown of the institution's performance for a request type. The values for `success`, `error_plaid`, and `error_institution` sum to 1. The time range used for calculating the breakdown may range from the most recent few minutes to the past six hours. In general, smaller institutions will show status that was calculated over a longer period of time. For Investment updates, which are refreshed less frequently, the period assessed may be 24 hours or more. For more details, see [Institution status details](https://plaid.com/docs/account/activity/#institution-status-details). */ @ApiModel(description = "A detailed breakdown of the institution's performance for a request type. The values for `success`, `error_plaid`, and `error_institution` sum to 1. The time range used for calculating the breakdown may range from the most recent few minutes to the past six hours. In general, smaller institutions will show status that was calculated over a longer period of time. For Investment updates, which are refreshed less frequently, the period assessed may be 24 hours or more. For more details, see [Institution status details](https://plaid.com/docs/account/activity/#institution-status-details).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProductStatusBreakdown { public static final String SERIALIZED_NAME_SUCCESS = "success"; @SerializedName(SERIALIZED_NAME_SUCCESS) diff --git a/src/main/java/com/plaid/client/model/Products.java b/src/main/java/com/plaid/client/model/Products.java index 854f8f40d..0d953453f 100644 --- a/src/main/java/com/plaid/client/model/Products.java +++ b/src/main/java/com/plaid/client/model/Products.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ProfileNetworkStatusGetRequest.java b/src/main/java/com/plaid/client/model/ProfileNetworkStatusGetRequest.java index e42009252..d5cfdeb6b 100644 --- a/src/main/java/com/plaid/client/model/ProfileNetworkStatusGetRequest.java +++ b/src/main/java/com/plaid/client/model/ProfileNetworkStatusGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ProfileNetworkStatusGetRequest defines the request schema for `/profile/network_status/get` */ @ApiModel(description = "ProfileNetworkStatusGetRequest defines the request schema for `/profile/network_status/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProfileNetworkStatusGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProfileNetworkStatusGetResponse.java b/src/main/java/com/plaid/client/model/ProfileNetworkStatusGetResponse.java index 754cb095c..8833deb67 100644 --- a/src/main/java/com/plaid/client/model/ProfileNetworkStatusGetResponse.java +++ b/src/main/java/com/plaid/client/model/ProfileNetworkStatusGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ProfileNetworkStatusGetResponse defines the response schema for `/profile/network_status/get` */ @ApiModel(description = "ProfileNetworkStatusGetResponse defines the response schema for `/profile/network_status/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProfileNetworkStatusGetResponse { public static final String SERIALIZED_NAME_NETWORK_STATUS = "network_status"; @SerializedName(SERIALIZED_NAME_NETWORK_STATUS) diff --git a/src/main/java/com/plaid/client/model/ProgramNameSensitivity.java b/src/main/java/com/plaid/client/model/ProgramNameSensitivity.java index c763ce7ca..38fc6f0e2 100644 --- a/src/main/java/com/plaid/client/model/ProgramNameSensitivity.java +++ b/src/main/java/com/plaid/client/model/ProgramNameSensitivity.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ProjectedIncomeSummaryFieldNumber.java b/src/main/java/com/plaid/client/model/ProjectedIncomeSummaryFieldNumber.java index 3f98e3b56..897367250 100644 --- a/src/main/java/com/plaid/client/model/ProjectedIncomeSummaryFieldNumber.java +++ b/src/main/java/com/plaid/client/model/ProjectedIncomeSummaryFieldNumber.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The employee's estimated annual salary, as derived from information reported on the paystub. */ @ApiModel(description = "The employee's estimated annual salary, as derived from information reported on the paystub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProjectedIncomeSummaryFieldNumber { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) diff --git a/src/main/java/com/plaid/client/model/ProtectBankAccount.java b/src/main/java/com/plaid/client/model/ProtectBankAccount.java index de60a3533..01dd7e198 100644 --- a/src/main/java/com/plaid/client/model/ProtectBankAccount.java +++ b/src/main/java/com/plaid/client/model/ProtectBankAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Bank account information associated with the incident. */ @ApiModel(description = "Bank account information associated with the incident.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectBankAccount { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/ProtectComputeRequest.java b/src/main/java/com/plaid/client/model/ProtectComputeRequest.java index 2820b681c..ce216023b 100644 --- a/src/main/java/com/plaid/client/model/ProtectComputeRequest.java +++ b/src/main/java/com/plaid/client/model/ProtectComputeRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Request object for /protect/compute */ @ApiModel(description = "Request object for /protect/compute") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectComputeRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) @@ -106,10 +106,10 @@ public ProtectComputeRequest model(String model) { } /** - * The name of the Trust Index model to use for calculating the Trust Index Score, with an optional version suffix. Examples include `ti-link-session-2.0`, `ti-identity-2.0`, `ti-link-session`, and `ti-identity`. If the version suffix is not included, the most recent version of that model will be used. The model specified may require certain fields within `model_inputs`. For example, `ti-link-session-2.0` requires the `link` field to be provided in `model_inputs`. + * The name of the Trust Index model to use for calculating the Trust Index Score, with a major.minor version suffix. Examples include `ti-link-session-2.0` and `ti-identity-2.0`. The model specified may require certain fields within `model_inputs`. For example, `ti-link-session-2.0` requires the `link` field to be provided in `model_inputs`. * @return model **/ - @ApiModelProperty(required = true, value = "The name of the Trust Index model to use for calculating the Trust Index Score, with an optional version suffix. Examples include `ti-link-session-2.0`, `ti-identity-2.0`, `ti-link-session`, and `ti-identity`. If the version suffix is not included, the most recent version of that model will be used. The model specified may require certain fields within `model_inputs`. For example, `ti-link-session-2.0` requires the `link` field to be provided in `model_inputs`.") + @ApiModelProperty(required = true, value = "The name of the Trust Index model to use for calculating the Trust Index Score, with a major.minor version suffix. Examples include `ti-link-session-2.0` and `ti-identity-2.0`. The model specified may require certain fields within `model_inputs`. For example, `ti-link-session-2.0` requires the `link` field to be provided in `model_inputs`.") public String getModel() { return model; diff --git a/src/main/java/com/plaid/client/model/ProtectComputeResponse.java b/src/main/java/com/plaid/client/model/ProtectComputeResponse.java index 59e6b9be6..98ea1c868 100644 --- a/src/main/java/com/plaid/client/model/ProtectComputeResponse.java +++ b/src/main/java/com/plaid/client/model/ProtectComputeResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -20,7 +20,6 @@ import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; -import com.plaid.client.model.TrustIndex; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; @@ -29,64 +28,91 @@ * Response object for /protect/compute */ @ApiModel(description = "Response object for /protect/compute") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectComputeResponse { - public static final String SERIALIZED_NAME_TRUST_INDEX = "trust_index"; - @SerializedName(SERIALIZED_NAME_TRUST_INDEX) - private TrustIndex trustIndex; + public static final String SERIALIZED_NAME_SCORE = "score"; + @SerializedName(SERIALIZED_NAME_SCORE) + private Integer score; - public static final String SERIALIZED_NAME_FRAUD_ATTRIBUTES = "fraud_attributes"; - @SerializedName(SERIALIZED_NAME_FRAUD_ATTRIBUTES) - private Object fraudAttributes; + public static final String SERIALIZED_NAME_MODEL = "model"; + @SerializedName(SERIALIZED_NAME_MODEL) + private String model; + + public static final String SERIALIZED_NAME_ATTRIBUTES = "attributes"; + @SerializedName(SERIALIZED_NAME_ATTRIBUTES) + private Object attributes; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; - public ProtectComputeResponse trustIndex(TrustIndex trustIndex) { + public ProtectComputeResponse score(Integer score) { + + this.score = score; + return this; + } + + /** + * The trust index score. + * @return score + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "The trust index score.") + + public Integer getScore() { + return score; + } + + + public void setScore(Integer score) { + this.score = score; + } + + + public ProtectComputeResponse model(String model) { - this.trustIndex = trustIndex; + this.model = model; return this; } /** - * Get trustIndex - * @return trustIndex + * The versioned name of the Trust Index model used for scoring. + * @return model **/ @javax.annotation.Nullable - @ApiModelProperty(value = "") + @ApiModelProperty(value = "The versioned name of the Trust Index model used for scoring.") - public TrustIndex getTrustIndex() { - return trustIndex; + public String getModel() { + return model; } - public void setTrustIndex(TrustIndex trustIndex) { - this.trustIndex = trustIndex; + public void setModel(String model) { + this.model = model; } - public ProtectComputeResponse fraudAttributes(Object fraudAttributes) { + public ProtectComputeResponse attributes(Object attributes) { - this.fraudAttributes = fraudAttributes; + this.attributes = attributes; return this; } /** * Event fraud attributes as an arbitrary set of key-value pairs. - * @return fraudAttributes + * @return attributes **/ @javax.annotation.Nullable @ApiModelProperty(value = "Event fraud attributes as an arbitrary set of key-value pairs.") - public Object getFraudAttributes() { - return fraudAttributes; + public Object getAttributes() { + return attributes; } - public void setFraudAttributes(Object fraudAttributes) { - this.fraudAttributes = fraudAttributes; + public void setAttributes(Object attributes) { + this.attributes = attributes; } @@ -121,22 +147,24 @@ public boolean equals(Object o) { return false; } ProtectComputeResponse protectComputeResponse = (ProtectComputeResponse) o; - return Objects.equals(this.trustIndex, protectComputeResponse.trustIndex) && - Objects.equals(this.fraudAttributes, protectComputeResponse.fraudAttributes) && + return Objects.equals(this.score, protectComputeResponse.score) && + Objects.equals(this.model, protectComputeResponse.model) && + Objects.equals(this.attributes, protectComputeResponse.attributes) && Objects.equals(this.requestId, protectComputeResponse.requestId); } @Override public int hashCode() { - return Objects.hash(trustIndex, fraudAttributes, requestId); + return Objects.hash(score, model, attributes, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProtectComputeResponse {\n"); - sb.append(" trustIndex: ").append(toIndentedString(trustIndex)).append("\n"); - sb.append(" fraudAttributes: ").append(toIndentedString(fraudAttributes)).append("\n"); + sb.append(" score: ").append(toIndentedString(score)).append("\n"); + sb.append(" model: ").append(toIndentedString(model)).append("\n"); + sb.append(" attributes: ").append(toIndentedString(attributes)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); diff --git a/src/main/java/com/plaid/client/model/ProtectEvent.java b/src/main/java/com/plaid/client/model/ProtectEvent.java index fe9e67b7f..85605b091 100644 --- a/src/main/java/com/plaid/client/model/ProtectEvent.java +++ b/src/main/java/com/plaid/client/model/ProtectEvent.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Event data for Protect events. */ @ApiModel(description = "Event data for Protect events.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectEvent { public static final String SERIALIZED_NAME_TIMESTAMP = "timestamp"; @SerializedName(SERIALIZED_NAME_TIMESTAMP) diff --git a/src/main/java/com/plaid/client/model/ProtectEventGetRequest.java b/src/main/java/com/plaid/client/model/ProtectEventGetRequest.java index baa8e5303..d7756dd40 100644 --- a/src/main/java/com/plaid/client/model/ProtectEventGetRequest.java +++ b/src/main/java/com/plaid/client/model/ProtectEventGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request object for /protect/event/get */ @ApiModel(description = "Request object for /protect/event/get") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectEventGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProtectEventGetResponse.java b/src/main/java/com/plaid/client/model/ProtectEventGetResponse.java index 119b4dec6..3d0bd08be 100644 --- a/src/main/java/com/plaid/client/model/ProtectEventGetResponse.java +++ b/src/main/java/com/plaid/client/model/ProtectEventGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Response object for /protect/event/get */ @ApiModel(description = "Response object for /protect/event/get") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectEventGetResponse { public static final String SERIALIZED_NAME_EVENT_ID = "event_id"; @SerializedName(SERIALIZED_NAME_EVENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProtectEventSendRequest.java b/src/main/java/com/plaid/client/model/ProtectEventSendRequest.java index d68b43a2a..9a7c83519 100644 --- a/src/main/java/com/plaid/client/model/ProtectEventSendRequest.java +++ b/src/main/java/com/plaid/client/model/ProtectEventSendRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Request object for /protect/event/send */ @ApiModel(description = "Request object for /protect/event/send") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectEventSendRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProtectEventSendResponse.java b/src/main/java/com/plaid/client/model/ProtectEventSendResponse.java index 15499014b..983e1171c 100644 --- a/src/main/java/com/plaid/client/model/ProtectEventSendResponse.java +++ b/src/main/java/com/plaid/client/model/ProtectEventSendResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Response object for /protect/event/send */ @ApiModel(description = "Response object for /protect/event/send") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectEventSendResponse { public static final String SERIALIZED_NAME_EVENT_ID = "event_id"; @SerializedName(SERIALIZED_NAME_EVENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProtectIncidentAmount.java b/src/main/java/com/plaid/client/model/ProtectIncidentAmount.java index 7e0865f42..a3727f833 100644 --- a/src/main/java/com/plaid/client/model/ProtectIncidentAmount.java +++ b/src/main/java/com/plaid/client/model/ProtectIncidentAmount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The monetary amount associated with the incident. */ @ApiModel(description = "The monetary amount associated with the incident.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectIncidentAmount { public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code"; @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE) diff --git a/src/main/java/com/plaid/client/model/ProtectIncidentEvent.java b/src/main/java/com/plaid/client/model/ProtectIncidentEvent.java index b9d3fa021..1d7ad594f 100644 --- a/src/main/java/com/plaid/client/model/ProtectIncidentEvent.java +++ b/src/main/java/com/plaid/client/model/ProtectIncidentEvent.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * details about the incident event. */ @ApiModel(description = "details about the incident event.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectIncidentEvent { public static final String SERIALIZED_NAME_PROTECT_EVENT_ID = "protect_event_id"; @SerializedName(SERIALIZED_NAME_PROTECT_EVENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProtectIncidentEventResponse.java b/src/main/java/com/plaid/client/model/ProtectIncidentEventResponse.java index d3a403a6e..c11eae076 100644 --- a/src/main/java/com/plaid/client/model/ProtectIncidentEventResponse.java +++ b/src/main/java/com/plaid/client/model/ProtectIncidentEventResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Details about the incident event. */ @ApiModel(description = "Details about the incident event.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectIncidentEventResponse { public static final String SERIALIZED_NAME_PROTECT_EVENT_ID = "protect_event_id"; @SerializedName(SERIALIZED_NAME_PROTECT_EVENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProtectLinkModelInputs.java b/src/main/java/com/plaid/client/model/ProtectLinkModelInputs.java index c18210cd4..39fe2634b 100644 --- a/src/main/java/com/plaid/client/model/ProtectLinkModelInputs.java +++ b/src/main/java/com/plaid/client/model/ProtectLinkModelInputs.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Inputs for link session Trust Index models. */ @ApiModel(description = "Inputs for link session Trust Index models.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectLinkModelInputs { public static final String SERIALIZED_NAME_LINK_SESSION_ID = "link_session_id"; @SerializedName(SERIALIZED_NAME_LINK_SESSION_ID) @@ -68,11 +68,11 @@ public ProtectLinkModelInputs requireExtractedData(Boolean requireExtractedData) } /** - * Whether to wait for data to be extracted before computing and returning a score. If set to `true` and `/protect/compute` is called before data has been extracted, an error will be returned indicating that data has not yet been extracted. If set to `false`, a score will be computed and returned regardless of whether data has been extracted. If `false` and data has been extracted, extracted data will still be included in the score computation. Defaults to `false`. + * Controls whether transaction extraction must be complete before scoring. If `false` (default), returns a score whether or not transaction extraction is complete, as long as the link session is finished; if data has been extracted it will still be included in the score computation. If `true`, returns HTTP 400 with `error_type` = `INVALID_REQUEST` and `error_code` = `FAILED_PRECONDITION` if extraction is still in progress; once data is ready a score will be returned normally. * @return requireExtractedData **/ @javax.annotation.Nullable - @ApiModelProperty(value = "Whether to wait for data to be extracted before computing and returning a score. If set to `true` and `/protect/compute` is called before data has been extracted, an error will be returned indicating that data has not yet been extracted. If set to `false`, a score will be computed and returned regardless of whether data has been extracted. If `false` and data has been extracted, extracted data will still be included in the score computation. Defaults to `false`.") + @ApiModelProperty(value = "Controls whether transaction extraction must be complete before scoring. If `false` (default), returns a score whether or not transaction extraction is complete, as long as the link session is finished; if data has been extracted it will still be included in the score computation. If `true`, returns HTTP 400 with `error_type` = `INVALID_REQUEST` and `error_code` = `FAILED_PRECONDITION` if extraction is still in progress; once data is ready a score will be returned normally.") public Boolean getRequireExtractedData() { return requireExtractedData; diff --git a/src/main/java/com/plaid/client/model/ProtectModelInputs.java b/src/main/java/com/plaid/client/model/ProtectModelInputs.java index a2df68eb9..ed2592875 100644 --- a/src/main/java/com/plaid/client/model/ProtectModelInputs.java +++ b/src/main/java/com/plaid/client/model/ProtectModelInputs.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -21,6 +21,7 @@ import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.ProtectLinkModelInputs; +import com.plaid.client.model.ProtectSDKModelInputs; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; @@ -29,12 +30,16 @@ * Inputs for the Trust Index model. The `link` field is required for any link session model type. */ @ApiModel(description = "Inputs for the Trust Index model. The `link` field is required for any link session model type.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectModelInputs { public static final String SERIALIZED_NAME_LINK = "link"; @SerializedName(SERIALIZED_NAME_LINK) private ProtectLinkModelInputs link; + public static final String SERIALIZED_NAME_SDK = "sdk"; + @SerializedName(SERIALIZED_NAME_SDK) + private ProtectSDKModelInputs sdk; + public ProtectModelInputs link(ProtectLinkModelInputs link) { @@ -59,6 +64,29 @@ public void setLink(ProtectLinkModelInputs link) { } + public ProtectModelInputs sdk(ProtectSDKModelInputs sdk) { + + this.sdk = sdk; + return this; + } + + /** + * Get sdk + * @return sdk + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public ProtectSDKModelInputs getSdk() { + return sdk; + } + + + public void setSdk(ProtectSDKModelInputs sdk) { + this.sdk = sdk; + } + + @Override public boolean equals(Object o) { if (this == o) { @@ -68,12 +96,13 @@ public boolean equals(Object o) { return false; } ProtectModelInputs protectModelInputs = (ProtectModelInputs) o; - return Objects.equals(this.link, protectModelInputs.link); + return Objects.equals(this.link, protectModelInputs.link) && + Objects.equals(this.sdk, protectModelInputs.sdk); } @Override public int hashCode() { - return Objects.hash(link); + return Objects.hash(link, sdk); } @Override @@ -81,6 +110,7 @@ public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProtectModelInputs {\n"); sb.append(" link: ").append(toIndentedString(link)).append("\n"); + sb.append(" sdk: ").append(toIndentedString(sdk)).append("\n"); sb.append("}"); return sb.toString(); } diff --git a/src/main/java/com/plaid/client/model/ProtectReport.java b/src/main/java/com/plaid/client/model/ProtectReport.java index c0bc4a9e9..1deb3f25e 100644 --- a/src/main/java/com/plaid/client/model/ProtectReport.java +++ b/src/main/java/com/plaid/client/model/ProtectReport.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * A Protect report associated with a user. Contains details about documented incidents, which may include fraud, investigation outcomes, or other risk events. */ @ApiModel(description = "A Protect report associated with a user. Contains details about documented incidents, which may include fraud, investigation outcomes, or other risk events.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectReport { public static final String SERIALIZED_NAME_REPORT_ID = "report_id"; @SerializedName(SERIALIZED_NAME_REPORT_ID) diff --git a/src/main/java/com/plaid/client/model/ProtectReportConfidence.java b/src/main/java/com/plaid/client/model/ProtectReportConfidence.java index 216d4e7c1..21e3296e0 100644 --- a/src/main/java/com/plaid/client/model/ProtectReportConfidence.java +++ b/src/main/java/com/plaid/client/model/ProtectReportConfidence.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ProtectReportCreateRequest.java b/src/main/java/com/plaid/client/model/ProtectReportCreateRequest.java index 06e8e3bca..25d6b826d 100644 --- a/src/main/java/com/plaid/client/model/ProtectReportCreateRequest.java +++ b/src/main/java/com/plaid/client/model/ProtectReportCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Request object for `/protect/report/create`. Must provide either `user_id` or at least one of the following identifiers in `incident_event`: `link_session_id`, `idv_session_id`, `protect_event_id`, or `signal_client_transaction_id`. */ @ApiModel(description = "Request object for `/protect/report/create`. Must provide either `user_id` or at least one of the following identifiers in `incident_event`: `link_session_id`, `idv_session_id`, `protect_event_id`, or `signal_client_transaction_id`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectReportCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProtectReportCreateResponse.java b/src/main/java/com/plaid/client/model/ProtectReportCreateResponse.java index ad373724e..de757254d 100644 --- a/src/main/java/com/plaid/client/model/ProtectReportCreateResponse.java +++ b/src/main/java/com/plaid/client/model/ProtectReportCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Response object for /protect/report/create */ @ApiModel(description = "Response object for /protect/report/create") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectReportCreateResponse { public static final String SERIALIZED_NAME_REPORT_ID = "report_id"; @SerializedName(SERIALIZED_NAME_REPORT_ID) diff --git a/src/main/java/com/plaid/client/model/ProtectReportSource.java b/src/main/java/com/plaid/client/model/ProtectReportSource.java index b8641e412..3cd73af85 100644 --- a/src/main/java/com/plaid/client/model/ProtectReportSource.java +++ b/src/main/java/com/plaid/client/model/ProtectReportSource.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ProtectReportType.java b/src/main/java/com/plaid/client/model/ProtectReportType.java index 0ab7c2265..fb138a133 100644 --- a/src/main/java/com/plaid/client/model/ProtectReportType.java +++ b/src/main/java/com/plaid/client/model/ProtectReportType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ProtectSDKModelInputs.java b/src/main/java/com/plaid/client/model/ProtectSDKModelInputs.java new file mode 100644 index 000000000..f35ca4052 --- /dev/null +++ b/src/main/java/com/plaid/client/model/ProtectSDKModelInputs.java @@ -0,0 +1,98 @@ +/* + * 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.682.2 + * + * + * 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; + +/** + * Inputs for Protect SDK Trust Index models. + */ +@ApiModel(description = "Inputs for Protect SDK Trust Index models.") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") +public class ProtectSDKModelInputs { + public static final String SERIALIZED_NAME_SDK_SESSION_ID = "sdk_session_id"; + @SerializedName(SERIALIZED_NAME_SDK_SESSION_ID) + private String sdkSessionId; + + + public ProtectSDKModelInputs sdkSessionId(String sdkSessionId) { + + this.sdkSessionId = sdkSessionId; + return this; + } + + /** + * A unique identifier for the Protect SDK session, used to compute a Trust Index score and fraud attributes. + * @return sdkSessionId + **/ + @ApiModelProperty(required = true, value = "A unique identifier for the Protect SDK session, used to compute a Trust Index score and fraud attributes.") + + public String getSdkSessionId() { + return sdkSessionId; + } + + + public void setSdkSessionId(String sdkSessionId) { + this.sdkSessionId = sdkSessionId; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + ProtectSDKModelInputs protectSDKModelInputs = (ProtectSDKModelInputs) o; + return Objects.equals(this.sdkSessionId, protectSDKModelInputs.sdkSessionId); + } + + @Override + public int hashCode() { + return Objects.hash(sdkSessionId); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class ProtectSDKModelInputs {\n"); + sb.append(" sdkSessionId: ").append(toIndentedString(sdkSessionId)).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 "); + } + +} + diff --git a/src/main/java/com/plaid/client/model/ProtectUser.java b/src/main/java/com/plaid/client/model/ProtectUser.java index 600eab093..6b24c0dc5 100644 --- a/src/main/java/com/plaid/client/model/ProtectUser.java +++ b/src/main/java/com/plaid/client/model/ProtectUser.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Represents an end user for /protect/compute requests. */ @ApiModel(description = "Represents an end user for /protect/compute requests.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectUser { public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) diff --git a/src/main/java/com/plaid/client/model/ProtectUserEventWebhook.java b/src/main/java/com/plaid/client/model/ProtectUserEventWebhook.java index af68f68c9..ce3accb13 100644 --- a/src/main/java/com/plaid/client/model/ProtectUserEventWebhook.java +++ b/src/main/java/com/plaid/client/model/ProtectUserEventWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Fired when there has been a new user event. The webhook payload contains limited information about the event. For full event details, call [`/protect/event/get`](https://plaid.com/docs/api/products/protect/#protecteventget). */ @ApiModel(description = "Fired when there has been a new user event. The webhook payload contains limited information about the event. For full event details, call [`/protect/event/get`](https://plaid.com/docs/api/products/protect/#protecteventget).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectUserEventWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/ProtectUserInsightsGetRequest.java b/src/main/java/com/plaid/client/model/ProtectUserInsightsGetRequest.java index 3261d4f19..9f9b180a9 100644 --- a/src/main/java/com/plaid/client/model/ProtectUserInsightsGetRequest.java +++ b/src/main/java/com/plaid/client/model/ProtectUserInsightsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request object for /protect/user/insights/get */ @ApiModel(description = "Request object for /protect/user/insights/get") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectUserInsightsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/ProtectUserInsightsGetResponse.java b/src/main/java/com/plaid/client/model/ProtectUserInsightsGetResponse.java index ee08c3172..977cb3590 100644 --- a/src/main/java/com/plaid/client/model/ProtectUserInsightsGetResponse.java +++ b/src/main/java/com/plaid/client/model/ProtectUserInsightsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Response object for /protect/user/insights/get */ @ApiModel(description = "Response object for /protect/user/insights/get") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProtectUserInsightsGetResponse { public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) diff --git a/src/main/java/com/plaid/client/model/ProviderBusinessAddress.java b/src/main/java/com/plaid/client/model/ProviderBusinessAddress.java index 5e83b6c7a..52bdcf785 100644 --- a/src/main/java/com/plaid/client/model/ProviderBusinessAddress.java +++ b/src/main/java/com/plaid/client/model/ProviderBusinessAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Detailed address information for a business from data provider */ @ApiModel(description = "Detailed address information for a business from data provider") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ProviderBusinessAddress { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) diff --git a/src/main/java/com/plaid/client/model/ProxyType.java b/src/main/java/com/plaid/client/model/ProxyType.java index 36e5e2ee9..683ee6016 100644 --- a/src/main/java/com/plaid/client/model/ProxyType.java +++ b/src/main/java/com/plaid/client/model/ProxyType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ReasonCode.java b/src/main/java/com/plaid/client/model/ReasonCode.java index e7f8a1995..1e3216537 100644 --- a/src/main/java/com/plaid/client/model/ReasonCode.java +++ b/src/main/java/com/plaid/client/model/ReasonCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/RecaptchaRequiredError.java b/src/main/java/com/plaid/client/model/RecaptchaRequiredError.java index 53f1e8260..300025199 100644 --- a/src/main/java/com/plaid/client/model/RecaptchaRequiredError.java +++ b/src/main/java/com/plaid/client/model/RecaptchaRequiredError.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The request was flagged by Plaid'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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RecaptchaRequiredError { public static final String SERIALIZED_NAME_ERROR_TYPE = "error_type"; @SerializedName(SERIALIZED_NAME_ERROR_TYPE) diff --git a/src/main/java/com/plaid/client/model/RecipientBACS.java b/src/main/java/com/plaid/client/model/RecipientBACS.java index 3d54ab72c..20c24468b 100644 --- a/src/main/java/com/plaid/client/model/RecipientBACS.java +++ b/src/main/java/com/plaid/client/model/RecipientBACS.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object containing a BACS account number and sort code. If an IBAN is not provided or if you need 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 you need to accept domestic GBP-denominated payments, BACS data is required.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RecipientBACS { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) diff --git a/src/main/java/com/plaid/client/model/RecipientBACSNullable.java b/src/main/java/com/plaid/client/model/RecipientBACSNullable.java index 6c29eacfd..a711798f1 100644 --- a/src/main/java/com/plaid/client/model/RecipientBACSNullable.java +++ b/src/main/java/com/plaid/client/model/RecipientBACSNullable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RecipientBACSNullable { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) diff --git a/src/main/java/com/plaid/client/model/RecommendationString.java b/src/main/java/com/plaid/client/model/RecommendationString.java index 83012626d..093b041c4 100644 --- a/src/main/java/com/plaid/client/model/RecommendationString.java +++ b/src/main/java/com/plaid/client/model/RecommendationString.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/Recurrence.java b/src/main/java/com/plaid/client/model/Recurrence.java index 2da679925..ff9fbb476 100644 --- a/src/main/java/com/plaid/client/model/Recurrence.java +++ b/src/main/java/com/plaid/client/model/Recurrence.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * This schema was for beta and is no longer populated. Insights relating to expenses and deposits that are predicted to occur on a scheduled basis, such as biweekly, monthly, or annually. Common examples include loan payments, bill payments, subscriptions, and payroll income. This is a beta field, available to all users. */ @ApiModel(description = "This schema was for beta and is no longer populated. Insights relating to expenses and deposits that are predicted to occur on a scheduled basis, such as biweekly, monthly, or annually. Common examples include loan payments, bill payments, subscriptions, and payroll income. This is a beta field, available to all users.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Recurrence { public static final String SERIALIZED_NAME_IS_RECURRING = "is_recurring"; @SerializedName(SERIALIZED_NAME_IS_RECURRING) diff --git a/src/main/java/com/plaid/client/model/RecurringCancelledWebhook.java b/src/main/java/com/plaid/client/model/RecurringCancelledWebhook.java index b76848512..99ce393af 100644 --- a/src/main/java/com/plaid/client/model/RecurringCancelledWebhook.java +++ b/src/main/java/com/plaid/client/model/RecurringCancelledWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when a recurring transfer is cancelled by Plaid. */ @ApiModel(description = "Fired when a recurring transfer is cancelled by Plaid.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RecurringCancelledWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/RecurringFrequency.java b/src/main/java/com/plaid/client/model/RecurringFrequency.java index ecf2fbda7..ae9b48bc0 100644 --- a/src/main/java/com/plaid/client/model/RecurringFrequency.java +++ b/src/main/java/com/plaid/client/model/RecurringFrequency.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/RecurringInsightsStream.java b/src/main/java/com/plaid/client/model/RecurringInsightsStream.java index 8b4e9d09e..230f129d0 100644 --- a/src/main/java/com/plaid/client/model/RecurringInsightsStream.java +++ b/src/main/java/com/plaid/client/model/RecurringInsightsStream.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * Insights object for recurring transactions streams. */ @ApiModel(description = "Insights object for recurring transactions streams.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RecurringInsightsStream { public static final String SERIALIZED_NAME_STREAM_ID = "stream_id"; @SerializedName(SERIALIZED_NAME_STREAM_ID) diff --git a/src/main/java/com/plaid/client/model/RecurringNewTransferWebhook.java b/src/main/java/com/plaid/client/model/RecurringNewTransferWebhook.java index 95e946b39..327eb23d2 100644 --- a/src/main/java/com/plaid/client/model/RecurringNewTransferWebhook.java +++ b/src/main/java/com/plaid/client/model/RecurringNewTransferWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when a new transfer of a recurring transfer is originated. */ @ApiModel(description = "Fired when a new transfer of a recurring transfer is originated.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RecurringNewTransferWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/RecurringTransactionFrequency.java b/src/main/java/com/plaid/client/model/RecurringTransactionFrequency.java index e5a8878ca..4db6499e2 100644 --- a/src/main/java/com/plaid/client/model/RecurringTransactionFrequency.java +++ b/src/main/java/com/plaid/client/model/RecurringTransactionFrequency.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/RecurringTransactions.java b/src/main/java/com/plaid/client/model/RecurringTransactions.java index e0203640a..fd86961f8 100644 --- a/src/main/java/com/plaid/client/model/RecurringTransactions.java +++ b/src/main/java/com/plaid/client/model/RecurringTransactions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Insights object for recurring transactions for `/beta/transactions/user_insights/v1/get` 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RecurringTransactions { public static final String SERIALIZED_NAME_INFLOW_STREAMS = "inflow_streams"; @SerializedName(SERIALIZED_NAME_INFLOW_STREAMS) diff --git a/src/main/java/com/plaid/client/model/RecurringTransactionsUpdateWebhook.java b/src/main/java/com/plaid/client/model/RecurringTransactionsUpdateWebhook.java index a24ae0318..581ee92d6 100644 --- a/src/main/java/com/plaid/client/model/RecurringTransactionsUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/RecurringTransactionsUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Fired when recurring transactions data is updated. This includes when a new recurring stream is detected or when a new transaction is added to an existing recurring stream. The `RECURRING_TRANSACTIONS_UPDATE` webhook will also fire when one or more attributes of the recurring stream changes, which is usually a result of the addition, update, or removal of transactions to the stream. After receipt of this webhook, the updated data can be fetched from `/transactions/recurring/get`. */ @ApiModel(description = "Fired when recurring transactions data is updated. This includes when a new recurring stream is detected or when a new transaction is added to an existing recurring stream. The `RECURRING_TRANSACTIONS_UPDATE` webhook will also fire when one or more attributes of the recurring stream changes, which is usually a result of the addition, update, or removal of transactions to the stream. After receipt of this webhook, the updated data can be fetched from `/transactions/recurring/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RecurringTransactionsUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/RecurringTransfer.java b/src/main/java/com/plaid/client/model/RecurringTransfer.java index 8ae07e77b..d0de5276b 100644 --- a/src/main/java/com/plaid/client/model/RecurringTransfer.java +++ b/src/main/java/com/plaid/client/model/RecurringTransfer.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -38,7 +38,7 @@ * Represents a recurring transfer within the Transfers API. */ @ApiModel(description = "Represents a recurring transfer within the Transfers API.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RecurringTransfer { public static final String SERIALIZED_NAME_RECURRING_TRANSFER_ID = "recurring_transfer_id"; @SerializedName(SERIALIZED_NAME_RECURRING_TRANSFER_ID) diff --git a/src/main/java/com/plaid/client/model/RecurringTransferNullable.java b/src/main/java/com/plaid/client/model/RecurringTransferNullable.java index 240072f40..ddd50c415 100644 --- a/src/main/java/com/plaid/client/model/RecurringTransferNullable.java +++ b/src/main/java/com/plaid/client/model/RecurringTransferNullable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -39,7 +39,7 @@ * Represents a recurring transfer within the Transfers API. */ @ApiModel(description = "Represents a recurring transfer within the Transfers API.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RecurringTransferNullable { public static final String SERIALIZED_NAME_RECURRING_TRANSFER_ID = "recurring_transfer_id"; @SerializedName(SERIALIZED_NAME_RECURRING_TRANSFER_ID) diff --git a/src/main/java/com/plaid/client/model/RecurringTransferSkippedWebhook.java b/src/main/java/com/plaid/client/model/RecurringTransferSkippedWebhook.java index fe5b01b5b..f2850a653 100644 --- a/src/main/java/com/plaid/client/model/RecurringTransferSkippedWebhook.java +++ b/src/main/java/com/plaid/client/model/RecurringTransferSkippedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Fired when Plaid is unable to originate a new ACH transaction of the recurring transfer on the planned date. */ @ApiModel(description = "Fired when Plaid is unable to originate a new ACH transaction of the recurring transfer on the planned date.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RecurringTransferSkippedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/RefreshResult.java b/src/main/java/com/plaid/client/model/RefreshResult.java index 500351c89..870d0d5b8 100644 --- a/src/main/java/com/plaid/client/model/RefreshResult.java +++ b/src/main/java/com/plaid/client/model/RefreshResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * RefreshResult represents the result status of a user refresh for a specific item. */ @ApiModel(description = "RefreshResult represents the result status of a user refresh for a specific item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RefreshResult { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) diff --git a/src/main/java/com/plaid/client/model/RemovedTransaction.java b/src/main/java/com/plaid/client/model/RemovedTransaction.java index 96d0e98d2..dc042bb0a 100644 --- a/src/main/java/com/plaid/client/model/RemovedTransaction.java +++ b/src/main/java/com/plaid/client/model/RemovedTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * A representation of a removed transaction */ @ApiModel(description = "A representation of a removed transaction") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RemovedTransaction { public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id"; @SerializedName(SERIALIZED_NAME_TRANSACTION_ID) diff --git a/src/main/java/com/plaid/client/model/ReportType.java b/src/main/java/com/plaid/client/model/ReportType.java index 712dac6d2..a5ab01f52 100644 --- a/src/main/java/com/plaid/client/model/ReportType.java +++ b/src/main/java/com/plaid/client/model/ReportType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ReportingInformation.java b/src/main/java/com/plaid/client/model/ReportingInformation.java index 41dab6a88..4bbe5a5a1 100644 --- a/src/main/java/com/plaid/client/model/ReportingInformation.java +++ b/src/main/java/com/plaid/client/model/ReportingInformation.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Information about an report identifier and a report name. */ @ApiModel(description = "Information about an report identifier and a report name.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ReportingInformation { public static final String SERIALIZED_NAME_REPORTING_INFORMATION_IDENTIFIER = "ReportingInformationIdentifier"; @SerializedName(SERIALIZED_NAME_REPORTING_INFORMATION_IDENTIFIER) diff --git a/src/main/java/com/plaid/client/model/RequestBusinessAddress.java b/src/main/java/com/plaid/client/model/RequestBusinessAddress.java index 8e6e53ffd..144f04cf7 100644 --- a/src/main/java/com/plaid/client/model/RequestBusinessAddress.java +++ b/src/main/java/com/plaid/client/model/RequestBusinessAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Physical address of a business. Used for input requests. */ @ApiModel(description = "Physical address of a business. Used for input requests.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RequestBusinessAddress { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) diff --git a/src/main/java/com/plaid/client/model/ResponseBusinessAddress.java b/src/main/java/com/plaid/client/model/ResponseBusinessAddress.java index 30a3210a8..92743c9da 100644 --- a/src/main/java/com/plaid/client/model/ResponseBusinessAddress.java +++ b/src/main/java/com/plaid/client/model/ResponseBusinessAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Physical address of a business. Used for response schemas. */ @ApiModel(description = "Physical address of a business. Used for response schemas.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ResponseBusinessAddress { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) diff --git a/src/main/java/com/plaid/client/model/RiskCheckBehavior.java b/src/main/java/com/plaid/client/model/RiskCheckBehavior.java index a2826700e..4c0f7b41b 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckBehavior.java +++ b/src/main/java/com/plaid/client/model/RiskCheckBehavior.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Result summary object specifying values for `behavior` attributes of risk check, when available. */ @ApiModel(description = "Result summary object specifying values for `behavior` attributes of risk check, when available.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RiskCheckBehavior { public static final String SERIALIZED_NAME_USER_INTERACTIONS = "user_interactions"; @SerializedName(SERIALIZED_NAME_USER_INTERACTIONS) diff --git a/src/main/java/com/plaid/client/model/RiskCheckBehaviorBotDetectedLabel.java b/src/main/java/com/plaid/client/model/RiskCheckBehaviorBotDetectedLabel.java index f836053c7..5be40f4f0 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckBehaviorBotDetectedLabel.java +++ b/src/main/java/com/plaid/client/model/RiskCheckBehaviorBotDetectedLabel.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/RiskCheckBehaviorFraudRingDetectedLabel.java b/src/main/java/com/plaid/client/model/RiskCheckBehaviorFraudRingDetectedLabel.java index 790d889d5..cac939cdb 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckBehaviorFraudRingDetectedLabel.java +++ b/src/main/java/com/plaid/client/model/RiskCheckBehaviorFraudRingDetectedLabel.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/RiskCheckBehaviorUserInteractionsLabel.java b/src/main/java/com/plaid/client/model/RiskCheckBehaviorUserInteractionsLabel.java index f6fd5b63c..9a8d71947 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckBehaviorUserInteractionsLabel.java +++ b/src/main/java/com/plaid/client/model/RiskCheckBehaviorUserInteractionsLabel.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/RiskCheckDetails.java b/src/main/java/com/plaid/client/model/RiskCheckDetails.java index 76dfa1bd7..763a14878 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckDetails.java +++ b/src/main/java/com/plaid/client/model/RiskCheckDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -38,7 +38,7 @@ * Additional information for the `risk_check` step. */ @ApiModel(description = "Additional information for the `risk_check` step.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RiskCheckDetails { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/RiskCheckDevice.java b/src/main/java/com/plaid/client/model/RiskCheckDevice.java index fba2edab9..685837d02 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckDevice.java +++ b/src/main/java/com/plaid/client/model/RiskCheckDevice.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Result summary object specifying values for `device` attributes of risk check. */ @ApiModel(description = "Result summary object specifying values for `device` attributes of risk check.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RiskCheckDevice { public static final String SERIALIZED_NAME_IP_PROXY_TYPE = "ip_proxy_type"; @SerializedName(SERIALIZED_NAME_IP_PROXY_TYPE) diff --git a/src/main/java/com/plaid/client/model/RiskCheckEmail.java b/src/main/java/com/plaid/client/model/RiskCheckEmail.java index c61982ce8..48c2bd013 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckEmail.java +++ b/src/main/java/com/plaid/client/model/RiskCheckEmail.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -40,7 +40,7 @@ * Result summary object specifying values for `email` attributes of risk check. */ @ApiModel(description = "Result summary object specifying values for `email` attributes of risk check.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RiskCheckEmail { public static final String SERIALIZED_NAME_IS_DELIVERABLE = "is_deliverable"; @SerializedName(SERIALIZED_NAME_IS_DELIVERABLE) diff --git a/src/main/java/com/plaid/client/model/RiskCheckEmailDomainIsCustom.java b/src/main/java/com/plaid/client/model/RiskCheckEmailDomainIsCustom.java index b9fa11f90..777d87121 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckEmailDomainIsCustom.java +++ b/src/main/java/com/plaid/client/model/RiskCheckEmailDomainIsCustom.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/RiskCheckEmailDomainIsDisposable.java b/src/main/java/com/plaid/client/model/RiskCheckEmailDomainIsDisposable.java index 6c5174059..2dc5977b2 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckEmailDomainIsDisposable.java +++ b/src/main/java/com/plaid/client/model/RiskCheckEmailDomainIsDisposable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/RiskCheckEmailDomainIsFreeProvider.java b/src/main/java/com/plaid/client/model/RiskCheckEmailDomainIsFreeProvider.java index 131817576..833052dd1 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckEmailDomainIsFreeProvider.java +++ b/src/main/java/com/plaid/client/model/RiskCheckEmailDomainIsFreeProvider.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/RiskCheckEmailIsDeliverableStatus.java b/src/main/java/com/plaid/client/model/RiskCheckEmailIsDeliverableStatus.java index c4356b5de..e6229d5d4 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckEmailIsDeliverableStatus.java +++ b/src/main/java/com/plaid/client/model/RiskCheckEmailIsDeliverableStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/RiskCheckEmailTopLevelDomainIsSuspicious.java b/src/main/java/com/plaid/client/model/RiskCheckEmailTopLevelDomainIsSuspicious.java index df756fa83..2305b0bc7 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckEmailTopLevelDomainIsSuspicious.java +++ b/src/main/java/com/plaid/client/model/RiskCheckEmailTopLevelDomainIsSuspicious.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/RiskCheckFacialDuplicate.java b/src/main/java/com/plaid/client/model/RiskCheckFacialDuplicate.java index e1e0f06ae..dc27d8021 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckFacialDuplicate.java +++ b/src/main/java/com/plaid/client/model/RiskCheckFacialDuplicate.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Result summary object specifying values for the `facial_duplicate` attributes of risk check. */ @ApiModel(description = "Result summary object specifying values for the `facial_duplicate` attributes of risk check.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RiskCheckFacialDuplicate { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/RiskCheckIdentityAbuseSignals.java b/src/main/java/com/plaid/client/model/RiskCheckIdentityAbuseSignals.java index d8680f26b..5da42bdfb 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckIdentityAbuseSignals.java +++ b/src/main/java/com/plaid/client/model/RiskCheckIdentityAbuseSignals.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Result summary object capturing abuse signals related to `identity abuse`, e.g. stolen and synthetic identity fraud. These attributes are only available for US identities and some signals may not be available depending on what information was collected. */ @ApiModel(description = "Result summary object capturing abuse signals related to `identity abuse`, e.g. stolen and synthetic identity fraud. These attributes are only available for US identities and some signals may not be available depending on what information was collected.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RiskCheckIdentityAbuseSignals { public static final String SERIALIZED_NAME_SYNTHETIC_IDENTITY = "synthetic_identity"; @SerializedName(SERIALIZED_NAME_SYNTHETIC_IDENTITY) diff --git a/src/main/java/com/plaid/client/model/RiskCheckLinkedService.java b/src/main/java/com/plaid/client/model/RiskCheckLinkedService.java index d4059b456..2b012aff0 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckLinkedService.java +++ b/src/main/java/com/plaid/client/model/RiskCheckLinkedService.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/RiskCheckNetwork.java b/src/main/java/com/plaid/client/model/RiskCheckNetwork.java index 07dda5e91..d8c0a6dfd 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckNetwork.java +++ b/src/main/java/com/plaid/client/model/RiskCheckNetwork.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Result summary object specifying values for network attributes of risk check. */ @ApiModel(description = "Result summary object specifying values for network attributes of risk check.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RiskCheckNetwork { public static final String SERIALIZED_NAME_RISK_LEVEL = "risk_level"; @SerializedName(SERIALIZED_NAME_RISK_LEVEL) diff --git a/src/main/java/com/plaid/client/model/RiskCheckPhone.java b/src/main/java/com/plaid/client/model/RiskCheckPhone.java index 8101fb7ed..4fdaaf7ce 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckPhone.java +++ b/src/main/java/com/plaid/client/model/RiskCheckPhone.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * Result summary object specifying values for `phone` attributes of risk check. */ @ApiModel(description = "Result summary object specifying values for `phone` attributes of risk check.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RiskCheckPhone { public static final String SERIALIZED_NAME_LINKED_SERVICES = "linked_services"; @SerializedName(SERIALIZED_NAME_LINKED_SERVICES) diff --git a/src/main/java/com/plaid/client/model/RiskCheckStolenIdentity.java b/src/main/java/com/plaid/client/model/RiskCheckStolenIdentity.java index fe9465abd..1e41e741d 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckStolenIdentity.java +++ b/src/main/java/com/plaid/client/model/RiskCheckStolenIdentity.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Field containing the data used in determining the outcome of the stolen identity risk check. Contains the following fields: `score` - A score from 0 to 100 indicating the likelihood that the user is a stolen identity. */ @ApiModel(description = "Field containing the data used in determining the outcome of the stolen identity risk check. Contains the following fields: `score` - A score from 0 to 100 indicating the likelihood that the user is a stolen identity.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RiskCheckStolenIdentity { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) diff --git a/src/main/java/com/plaid/client/model/RiskCheckSyntheticIdentity.java b/src/main/java/com/plaid/client/model/RiskCheckSyntheticIdentity.java index 8bab16527..dba0ca7a6 100644 --- a/src/main/java/com/plaid/client/model/RiskCheckSyntheticIdentity.java +++ b/src/main/java/com/plaid/client/model/RiskCheckSyntheticIdentity.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Field containing the data used in determining the outcome of the synthetic identity risk check. Contains the following fields: `score` - A score from 0 to 100 indicating the likelihood that the user is a synthetic identity. */ @ApiModel(description = "Field containing the data used in determining the outcome of the synthetic identity risk check. Contains the following fields: `score` - A score from 0 to 100 indicating the likelihood that the user is a synthetic identity.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RiskCheckSyntheticIdentity { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) diff --git a/src/main/java/com/plaid/client/model/RiskIndicators.java b/src/main/java/com/plaid/client/model/RiskIndicators.java index ea04d3834..70b2fabfa 100644 --- a/src/main/java/com/plaid/client/model/RiskIndicators.java +++ b/src/main/java/com/plaid/client/model/RiskIndicators.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Risk indicators focus on providing signal on the possibility of a borrower defaulting on their loan repayments by providing data points related to its payment behavior, debt, and other relevant financial information, helping lenders gauge the level of risk involved in a certain operation. */ @ApiModel(description = "Risk indicators focus on providing signal on the possibility of a borrower defaulting on their loan repayments by providing data points related to its payment behavior, debt, and other relevant financial information, helping lenders gauge the level of risk involved in a certain operation.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RiskIndicators { public static final String SERIALIZED_NAME_BANK_PENALTIES = "bank_penalties"; @SerializedName(SERIALIZED_NAME_BANK_PENALTIES) diff --git a/src/main/java/com/plaid/client/model/RiskLevel.java b/src/main/java/com/plaid/client/model/RiskLevel.java index 02516b71f..2a0222a73 100644 --- a/src/main/java/com/plaid/client/model/RiskLevel.java +++ b/src/main/java/com/plaid/client/model/RiskLevel.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/RiskLevelWithNoData.java b/src/main/java/com/plaid/client/model/RiskLevelWithNoData.java index 3fc99463e..083dc5f5d 100644 --- a/src/main/java/com/plaid/client/model/RiskLevelWithNoData.java +++ b/src/main/java/com/plaid/client/model/RiskLevelWithNoData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/RiskProfile.java b/src/main/java/com/plaid/client/model/RiskProfile.java index beca8a03a..655073452 100644 --- a/src/main/java/com/plaid/client/model/RiskProfile.java +++ b/src/main/java/com/plaid/client/model/RiskProfile.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * RiskProfile is deprecated, use `ruleset` instead. */ @ApiModel(description = "RiskProfile is deprecated, use `ruleset` instead.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RiskProfile { public static final String SERIALIZED_NAME_KEY = "key"; @SerializedName(SERIALIZED_NAME_KEY) diff --git a/src/main/java/com/plaid/client/model/RiskReason.java b/src/main/java/com/plaid/client/model/RiskReason.java index 58555ab8b..65a89c61a 100644 --- a/src/main/java/com/plaid/client/model/RiskReason.java +++ b/src/main/java/com/plaid/client/model/RiskReason.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * This object includes a code and description to describe medium risk transactions and above on /accounts/balance/get. */ @ApiModel(description = "This object includes a code and description to describe medium risk transactions and above on /accounts/balance/get.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RiskReason { public static final String SERIALIZED_NAME_CODE = "code"; @SerializedName(SERIALIZED_NAME_CODE) diff --git a/src/main/java/com/plaid/client/model/RiskSignalDocumentReference.java b/src/main/java/com/plaid/client/model/RiskSignalDocumentReference.java index 383cda761..34e20dc78 100644 --- a/src/main/java/com/plaid/client/model/RiskSignalDocumentReference.java +++ b/src/main/java/com/plaid/client/model/RiskSignalDocumentReference.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Object containing metadata for the document */ @ApiModel(description = "Object containing metadata for the document") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RiskSignalDocumentReference { public static final String SERIALIZED_NAME_DOCUMENT_ID = "document_id"; @SerializedName(SERIALIZED_NAME_DOCUMENT_ID) diff --git a/src/main/java/com/plaid/client/model/RiskSignalDocumentStatus.java b/src/main/java/com/plaid/client/model/RiskSignalDocumentStatus.java index 4caab1b49..8624d6bf0 100644 --- a/src/main/java/com/plaid/client/model/RiskSignalDocumentStatus.java +++ b/src/main/java/com/plaid/client/model/RiskSignalDocumentStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/RiskSignalDocumentType.java b/src/main/java/com/plaid/client/model/RiskSignalDocumentType.java index 345bba0f0..3a75436e8 100644 --- a/src/main/java/com/plaid/client/model/RiskSignalDocumentType.java +++ b/src/main/java/com/plaid/client/model/RiskSignalDocumentType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/RiskSignalFileType.java b/src/main/java/com/plaid/client/model/RiskSignalFileType.java index eb0298973..da8ed39fe 100644 --- a/src/main/java/com/plaid/client/model/RiskSignalFileType.java +++ b/src/main/java/com/plaid/client/model/RiskSignalFileType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/Role.java b/src/main/java/com/plaid/client/model/Role.java index 39cc0aac9..3c66b0871 100644 --- a/src/main/java/com/plaid/client/model/Role.java +++ b/src/main/java/com/plaid/client/model/Role.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ADocumentation not found in the MISMO model viewer and not provided by Freddie Mac. */ @ApiModel(description = "ADocumentation not found in the MISMO model viewer and not provided by Freddie Mac.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Role { public static final String SERIALIZED_NAME_R_O_L_E_D_E_T_A_I_L = "ROLE_DETAIL"; @SerializedName(SERIALIZED_NAME_R_O_L_E_D_E_T_A_I_L) diff --git a/src/main/java/com/plaid/client/model/RoleDetail.java b/src/main/java/com/plaid/client/model/RoleDetail.java index 33c55c9b9..ddc290ea2 100644 --- a/src/main/java/com/plaid/client/model/RoleDetail.java +++ b/src/main/java/com/plaid/client/model/RoleDetail.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RoleDetail { public static final String SERIALIZED_NAME_PARTY_ROLE_TYPE = "PartyRoleType"; @SerializedName(SERIALIZED_NAME_PARTY_ROLE_TYPE) diff --git a/src/main/java/com/plaid/client/model/Roles.java b/src/main/java/com/plaid/client/model/Roles.java index 003eb2eaf..469253929 100644 --- a/src/main/java/com/plaid/client/model/Roles.java +++ b/src/main/java/com/plaid/client/model/Roles.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Roles { public static final String SERIALIZED_NAME_R_O_L_E = "ROLE"; @SerializedName(SERIALIZED_NAME_R_O_L_E) diff --git a/src/main/java/com/plaid/client/model/RuleDetails.java b/src/main/java/com/plaid/client/model/RuleDetails.java index 8f6a3107d..97c195f1f 100644 --- a/src/main/java/com/plaid/client/model/RuleDetails.java +++ b/src/main/java/com/plaid/client/model/RuleDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Rules are run in numerical order. The first rule with a logic match is triggered. These are the details of that rule. */ @ApiModel(description = "Rules are run in numerical order. The first rule with a logic match is triggered. These are the details of that rule.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class RuleDetails { public static final String SERIALIZED_NAME_INTERNAL_NOTE = "internal_note"; @SerializedName(SERIALIZED_NAME_INTERNAL_NOTE) diff --git a/src/main/java/com/plaid/client/model/RuleResult.java b/src/main/java/com/plaid/client/model/RuleResult.java index 92beee869..014e4cee5 100644 --- a/src/main/java/com/plaid/client/model/RuleResult.java +++ b/src/main/java/com/plaid/client/model/RuleResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/Ruleset.java b/src/main/java/com/plaid/client/model/Ruleset.java index 8610b3516..8e34823d8 100644 --- a/src/main/java/com/plaid/client/model/Ruleset.java +++ b/src/main/java/com/plaid/client/model/Ruleset.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Details about the transaction result after evaluation by the requested Ruleset. If a `ruleset_key` is not provided, for customers who began using Signal Transaction Scores before October 15, 2025, by default, this field will be omitted. To learn more, see [Signal Rules](https://plaid.com/docs/signal/signal-rules/). */ @ApiModel(description = "Details about the transaction result after evaluation by the requested Ruleset. If a `ruleset_key` is not provided, for customers who began using Signal Transaction Scores before October 15, 2025, by default, this field will be omitted. To learn more, see [Signal Rules](https://plaid.com/docs/signal/signal-rules/).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Ruleset { public static final String SERIALIZED_NAME_RULESET_KEY = "ruleset_key"; @SerializedName(SERIALIZED_NAME_RULESET_KEY) diff --git a/src/main/java/com/plaid/client/model/SMSVerification.java b/src/main/java/com/plaid/client/model/SMSVerification.java index 12f4bd583..967e34c7e 100644 --- a/src/main/java/com/plaid/client/model/SMSVerification.java +++ b/src/main/java/com/plaid/client/model/SMSVerification.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Additional information for the individual SMS verification. */ @ApiModel(description = "Additional information for the individual SMS verification.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SMSVerification { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/SMSVerificationStatus.java b/src/main/java/com/plaid/client/model/SMSVerificationStatus.java index 138e18a18..4f2a8c72e 100644 --- a/src/main/java/com/plaid/client/model/SMSVerificationStatus.java +++ b/src/main/java/com/plaid/client/model/SMSVerificationStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/SandboxBankIncomeFireWebhookRequest.java b/src/main/java/com/plaid/client/model/SandboxBankIncomeFireWebhookRequest.java index 4bf80ae58..0d143aac8 100644 --- a/src/main/java/com/plaid/client/model/SandboxBankIncomeFireWebhookRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxBankIncomeFireWebhookRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * SandboxBankIncomeFireWebhookRequest defines the request schema for `/sandbox/bank_income/fire_webhook` */ @ApiModel(description = "SandboxBankIncomeFireWebhookRequest defines the request schema for `/sandbox/bank_income/fire_webhook`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxBankIncomeFireWebhookRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxBankIncomeFireWebhookResponse.java b/src/main/java/com/plaid/client/model/SandboxBankIncomeFireWebhookResponse.java index 2dbf10c9c..072078f09 100644 --- a/src/main/java/com/plaid/client/model/SandboxBankIncomeFireWebhookResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxBankIncomeFireWebhookResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SandboxBankIncomeFireWebhookResponse defines the response schema for `/sandbox/bank_income/fire_webhook` */ @ApiModel(description = "SandboxBankIncomeFireWebhookResponse defines the response schema for `/sandbox/bank_income/fire_webhook`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxBankIncomeFireWebhookResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxBankIncomeWebhookFireRequestWebhookCode.java b/src/main/java/com/plaid/client/model/SandboxBankIncomeWebhookFireRequestWebhookCode.java index 6124649a6..d0b2ff3a8 100644 --- a/src/main/java/com/plaid/client/model/SandboxBankIncomeWebhookFireRequestWebhookCode.java +++ b/src/main/java/com/plaid/client/model/SandboxBankIncomeWebhookFireRequestWebhookCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/SandboxBankIncomeWebhookFireRequestWebhookFields.java b/src/main/java/com/plaid/client/model/SandboxBankIncomeWebhookFireRequestWebhookFields.java index c0a6034e1..976deabda 100644 --- a/src/main/java/com/plaid/client/model/SandboxBankIncomeWebhookFireRequestWebhookFields.java +++ b/src/main/java/com/plaid/client/model/SandboxBankIncomeWebhookFireRequestWebhookFields.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxBankIncomeWebhookFireRequestWebhookFields { public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxBankTransferFireWebhookRequest.java b/src/main/java/com/plaid/client/model/SandboxBankTransferFireWebhookRequest.java index bed16b507..d86ba7200 100644 --- a/src/main/java/com/plaid/client/model/SandboxBankTransferFireWebhookRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxBankTransferFireWebhookRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/sandbox/bank_transfer/fire_webhook` */ @ApiModel(description = "Defines the request schema for `/sandbox/bank_transfer/fire_webhook`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxBankTransferFireWebhookRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxBankTransferFireWebhookResponse.java b/src/main/java/com/plaid/client/model/SandboxBankTransferFireWebhookResponse.java index c23f2265e..162bc058f 100644 --- a/src/main/java/com/plaid/client/model/SandboxBankTransferFireWebhookResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxBankTransferFireWebhookResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/sandbox/bank_transfer/fire_webhook` */ @ApiModel(description = "Defines the response schema for `/sandbox/bank_transfer/fire_webhook`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxBankTransferFireWebhookResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxBankTransferSimulateRequest.java b/src/main/java/com/plaid/client/model/SandboxBankTransferSimulateRequest.java index 4718f5105..602c17d96 100644 --- a/src/main/java/com/plaid/client/model/SandboxBankTransferSimulateRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxBankTransferSimulateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the request schema for `/sandbox/bank_transfer/simulate` */ @ApiModel(description = "Defines the request schema for `/sandbox/bank_transfer/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxBankTransferSimulateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxBankTransferSimulateResponse.java b/src/main/java/com/plaid/client/model/SandboxBankTransferSimulateResponse.java index 09e7e6e0e..b5187027f 100644 --- a/src/main/java/com/plaid/client/model/SandboxBankTransferSimulateResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxBankTransferSimulateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/sandbox/bank_transfer/simulate` */ @ApiModel(description = "Defines the response schema for `/sandbox/bank_transfer/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxBankTransferSimulateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxCraCashflowUpdatesUpdateRequest.java b/src/main/java/com/plaid/client/model/SandboxCraCashflowUpdatesUpdateRequest.java index d6122e0a0..8661564b4 100644 --- a/src/main/java/com/plaid/client/model/SandboxCraCashflowUpdatesUpdateRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxCraCashflowUpdatesUpdateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * SandboxCraCashflowUpdatesUpdateRequest defines the request schema for `/sandbox/cashflow_updates/update` */ @ApiModel(description = "SandboxCraCashflowUpdatesUpdateRequest defines the request schema for `/sandbox/cashflow_updates/update`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxCraCashflowUpdatesUpdateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxCraCashflowUpdatesUpdateResponse.java b/src/main/java/com/plaid/client/model/SandboxCraCashflowUpdatesUpdateResponse.java index 5bc265a8c..647f8de1e 100644 --- a/src/main/java/com/plaid/client/model/SandboxCraCashflowUpdatesUpdateResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxCraCashflowUpdatesUpdateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SandboxCraCashflowUpdatesUpdateResponse defines the response schema for `sandbox/cashflow_updates/update` */ @ApiModel(description = "SandboxCraCashflowUpdatesUpdateResponse defines the response schema for `sandbox/cashflow_updates/update`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxCraCashflowUpdatesUpdateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxIncomeFireWebhookRequest.java b/src/main/java/com/plaid/client/model/SandboxIncomeFireWebhookRequest.java index e8bc6ed00..6d072c867 100644 --- a/src/main/java/com/plaid/client/model/SandboxIncomeFireWebhookRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxIncomeFireWebhookRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * SandboxIncomeFireWebhookRequest defines the request schema for `/sandbox/income/fire_webhook` */ @ApiModel(description = "SandboxIncomeFireWebhookRequest defines the request schema for `/sandbox/income/fire_webhook`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxIncomeFireWebhookRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxIncomeFireWebhookResponse.java b/src/main/java/com/plaid/client/model/SandboxIncomeFireWebhookResponse.java index 8000aadcc..e4c8cd793 100644 --- a/src/main/java/com/plaid/client/model/SandboxIncomeFireWebhookResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxIncomeFireWebhookResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SandboxIncomeFireWebhookResponse defines the response schema for `/sandbox/income/fire_webhook` */ @ApiModel(description = "SandboxIncomeFireWebhookResponse defines the response schema for `/sandbox/income/fire_webhook`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxIncomeFireWebhookResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxIncomeWebhookFireRequestWebhookCode.java b/src/main/java/com/plaid/client/model/SandboxIncomeWebhookFireRequestWebhookCode.java index 34d2d9646..66bc4d76f 100644 --- a/src/main/java/com/plaid/client/model/SandboxIncomeWebhookFireRequestWebhookCode.java +++ b/src/main/java/com/plaid/client/model/SandboxIncomeWebhookFireRequestWebhookCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/SandboxItemFireWebhookRequest.java b/src/main/java/com/plaid/client/model/SandboxItemFireWebhookRequest.java index 44948c063..89b533a55 100644 --- a/src/main/java/com/plaid/client/model/SandboxItemFireWebhookRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxItemFireWebhookRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * SandboxItemFireWebhookRequest defines the request schema for `/sandbox/item/fire_webhook` */ @ApiModel(description = "SandboxItemFireWebhookRequest defines the request schema for `/sandbox/item/fire_webhook`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxItemFireWebhookRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxItemFireWebhookResponse.java b/src/main/java/com/plaid/client/model/SandboxItemFireWebhookResponse.java index 5e1f4077e..a4b8d346e 100644 --- a/src/main/java/com/plaid/client/model/SandboxItemFireWebhookResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxItemFireWebhookResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SandboxItemFireWebhookResponse defines the response schema for `/sandbox/item/fire_webhook` */ @ApiModel(description = "SandboxItemFireWebhookResponse defines the response schema for `/sandbox/item/fire_webhook`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxItemFireWebhookResponse { public static final String SERIALIZED_NAME_WEBHOOK_FIRED = "webhook_fired"; @SerializedName(SERIALIZED_NAME_WEBHOOK_FIRED) diff --git a/src/main/java/com/plaid/client/model/SandboxItemResetLoginRequest.java b/src/main/java/com/plaid/client/model/SandboxItemResetLoginRequest.java index 2d2ddfe3f..2979df3b6 100644 --- a/src/main/java/com/plaid/client/model/SandboxItemResetLoginRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxItemResetLoginRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SandboxItemResetLoginRequest defines the request schema for `/sandbox/item/reset_login` */ @ApiModel(description = "SandboxItemResetLoginRequest defines the request schema for `/sandbox/item/reset_login`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxItemResetLoginRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxItemResetLoginResponse.java b/src/main/java/com/plaid/client/model/SandboxItemResetLoginResponse.java index 5e9031608..220d5c19a 100644 --- a/src/main/java/com/plaid/client/model/SandboxItemResetLoginResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxItemResetLoginResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SandboxItemResetLoginResponse defines the response schema for `/sandbox/item/reset_login` */ @ApiModel(description = "SandboxItemResetLoginResponse defines the response schema for `/sandbox/item/reset_login`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxItemResetLoginResponse { public static final String SERIALIZED_NAME_RESET_LOGIN = "reset_login"; @SerializedName(SERIALIZED_NAME_RESET_LOGIN) diff --git a/src/main/java/com/plaid/client/model/SandboxItemSetVerificationStatusRequest.java b/src/main/java/com/plaid/client/model/SandboxItemSetVerificationStatusRequest.java index 8ae07424b..4a24f6eb6 100644 --- a/src/main/java/com/plaid/client/model/SandboxItemSetVerificationStatusRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxItemSetVerificationStatusRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SandboxItemSetVerificationStatusRequest defines the request schema for `/sandbox/item/set_verification_status` */ @ApiModel(description = "SandboxItemSetVerificationStatusRequest defines the request schema for `/sandbox/item/set_verification_status`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxItemSetVerificationStatusRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxItemSetVerificationStatusResponse.java b/src/main/java/com/plaid/client/model/SandboxItemSetVerificationStatusResponse.java index bfad78444..6939ce3f6 100644 --- a/src/main/java/com/plaid/client/model/SandboxItemSetVerificationStatusResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxItemSetVerificationStatusResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SandboxItemSetVerificationStatusResponse defines the response schema for `/sandbox/item/set_verification_status` */ @ApiModel(description = "SandboxItemSetVerificationStatusResponse defines the response schema for `/sandbox/item/set_verification_status`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxItemSetVerificationStatusResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxOauthSelectAccountsRequest.java b/src/main/java/com/plaid/client/model/SandboxOauthSelectAccountsRequest.java index 77f06911f..43ced1be1 100644 --- a/src/main/java/com/plaid/client/model/SandboxOauthSelectAccountsRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxOauthSelectAccountsRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Defines the request schema for `sandbox/oauth/select_accounts` */ @ApiModel(description = "Defines the request schema for `sandbox/oauth/select_accounts`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxOauthSelectAccountsRequest { public static final String SERIALIZED_NAME_OAUTH_STATE_ID = "oauth_state_id"; @SerializedName(SERIALIZED_NAME_OAUTH_STATE_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxPaymentProfileResetLoginRequest.java b/src/main/java/com/plaid/client/model/SandboxPaymentProfileResetLoginRequest.java index 6efe544f9..e13b8e5c7 100644 --- a/src/main/java/com/plaid/client/model/SandboxPaymentProfileResetLoginRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxPaymentProfileResetLoginRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SandboxPaymentProfileResetLoginRequest defines the request schema for `/sandbox/payment_profile/reset_login` */ @ApiModel(description = "SandboxPaymentProfileResetLoginRequest defines the request schema for `/sandbox/payment_profile/reset_login`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxPaymentProfileResetLoginRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxPaymentProfileResetLoginResponse.java b/src/main/java/com/plaid/client/model/SandboxPaymentProfileResetLoginResponse.java index 3e3ae22f2..710d5d673 100644 --- a/src/main/java/com/plaid/client/model/SandboxPaymentProfileResetLoginResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxPaymentProfileResetLoginResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SandboxPaymentProfileResetLoginResponse defines the response schema for `/sandbox/payment_profile/reset_login` */ @ApiModel(description = "SandboxPaymentProfileResetLoginResponse defines the response schema for `/sandbox/payment_profile/reset_login`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxPaymentProfileResetLoginResponse { public static final String SERIALIZED_NAME_RESET_LOGIN = "reset_login"; @SerializedName(SERIALIZED_NAME_RESET_LOGIN) diff --git a/src/main/java/com/plaid/client/model/SandboxPaymentSimulateRequest.java b/src/main/java/com/plaid/client/model/SandboxPaymentSimulateRequest.java index c3dcf74e8..e183fa350 100644 --- a/src/main/java/com/plaid/client/model/SandboxPaymentSimulateRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxPaymentSimulateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SandboxPaymentSimulateRequest defines the request schema for `/sandbox/payment/simulate` */ @ApiModel(description = "SandboxPaymentSimulateRequest defines the request schema for `/sandbox/payment/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxPaymentSimulateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxPaymentSimulateResponse.java b/src/main/java/com/plaid/client/model/SandboxPaymentSimulateResponse.java index 5a4268cec..5c9dd547f 100644 --- a/src/main/java/com/plaid/client/model/SandboxPaymentSimulateResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxPaymentSimulateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * SandboxPaymentSimulateResponse defines the response schema for `/sandbox/payment/simulate` */ @ApiModel(description = "SandboxPaymentSimulateResponse defines the response schema for `/sandbox/payment/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxPaymentSimulateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxProcessorTokenCreateRequest.java b/src/main/java/com/plaid/client/model/SandboxProcessorTokenCreateRequest.java index cc4354f9c..74a7b1dba 100644 --- a/src/main/java/com/plaid/client/model/SandboxProcessorTokenCreateRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxProcessorTokenCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * SandboxProcessorTokenCreateRequest defines the request schema for `/sandbox/processor_token/create` */ @ApiModel(description = "SandboxProcessorTokenCreateRequest defines the request schema for `/sandbox/processor_token/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxProcessorTokenCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxProcessorTokenCreateRequestOptions.java b/src/main/java/com/plaid/client/model/SandboxProcessorTokenCreateRequestOptions.java index c00edaea1..3c3a0db32 100644 --- a/src/main/java/com/plaid/client/model/SandboxProcessorTokenCreateRequestOptions.java +++ b/src/main/java/com/plaid/client/model/SandboxProcessorTokenCreateRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An optional set of options to be used when configuring the Item. If specified, must not be `null`. */ @ApiModel(description = "An optional set of options to be used when configuring the Item. If specified, must not be `null`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxProcessorTokenCreateRequestOptions { public static final String SERIALIZED_NAME_OVERRIDE_USERNAME = "override_username"; @SerializedName(SERIALIZED_NAME_OVERRIDE_USERNAME) diff --git a/src/main/java/com/plaid/client/model/SandboxProcessorTokenCreateResponse.java b/src/main/java/com/plaid/client/model/SandboxProcessorTokenCreateResponse.java index b9cadb0c8..ca0312ac6 100644 --- a/src/main/java/com/plaid/client/model/SandboxProcessorTokenCreateResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxProcessorTokenCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SandboxProcessorTokenCreateResponse defines the response schema for `/sandbox/processor_token/create` */ @ApiModel(description = "SandboxProcessorTokenCreateResponse defines the response schema for `/sandbox/processor_token/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxProcessorTokenCreateResponse { public static final String SERIALIZED_NAME_PROCESSOR_TOKEN = "processor_token"; @SerializedName(SERIALIZED_NAME_PROCESSOR_TOKEN) diff --git a/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequest.java b/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequest.java index d62609dd8..dec0bb3e2 100644 --- a/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * SandboxPublicTokenCreateRequest defines the request schema for `/sandbox/public_token/create` */ @ApiModel(description = "SandboxPublicTokenCreateRequest defines the request schema for `/sandbox/public_token/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxPublicTokenCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestIncomeVerificationBankIncome.java b/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestIncomeVerificationBankIncome.java index 103239b9f..608ca58fb 100644 --- a/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestIncomeVerificationBankIncome.java +++ b/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestIncomeVerificationBankIncome.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Specifies options for Bank Income. This field is required if `income_verification` is included in the `initial_products` array and `bank` is specified in `income_source_types`. */ @ApiModel(description = "Specifies options for Bank Income. This field is required if `income_verification` is included in the `initial_products` array and `bank` is specified in `income_source_types`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxPublicTokenCreateRequestIncomeVerificationBankIncome { public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) diff --git a/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestOptions.java b/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestOptions.java index 1bd9c034b..c0d5d3642 100644 --- a/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestOptions.java +++ b/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * An optional set of options to be used when configuring the Item. If specified, must not be `null`. */ @ApiModel(description = "An optional set of options to be used when configuring the Item. If specified, must not be `null`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxPublicTokenCreateRequestOptions { public static final String SERIALIZED_NAME_WEBHOOK = "webhook"; @SerializedName(SERIALIZED_NAME_WEBHOOK) diff --git a/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestOptionsIncomeVerification.java b/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestOptionsIncomeVerification.java index c63f19cce..78b9466a6 100644 --- a/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestOptionsIncomeVerification.java +++ b/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestOptionsIncomeVerification.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * A set of parameters for income verification options. This field is required if `income_verification` is included in the `initial_products` array. */ @ApiModel(description = "A set of parameters for income verification options. This field is required if `income_verification` is included in the `initial_products` array.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxPublicTokenCreateRequestOptionsIncomeVerification { public static final String SERIALIZED_NAME_INCOME_SOURCE_TYPES = "income_source_types"; @SerializedName(SERIALIZED_NAME_INCOME_SOURCE_TYPES) diff --git a/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestOptionsStatements.java b/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestOptionsStatements.java index e5f46b8c3..d48be259b 100644 --- a/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestOptionsStatements.java +++ b/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestOptionsStatements.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An optional set of parameters corresponding to statements options. */ @ApiModel(description = "An optional set of parameters corresponding to statements options.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxPublicTokenCreateRequestOptionsStatements { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) diff --git a/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestOptionsTransactions.java b/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestOptionsTransactions.java index 6c8441661..89584df20 100644 --- a/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestOptionsTransactions.java +++ b/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateRequestOptionsTransactions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An optional set of parameters corresponding to transactions options. */ @ApiModel(description = "An optional set of parameters corresponding to transactions options.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxPublicTokenCreateRequestOptionsTransactions { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) diff --git a/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateResponse.java b/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateResponse.java index 8f86c4546..e66c6593e 100644 --- a/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SandboxPublicTokenCreateResponse defines the response schema for `/sandbox/public_token/create` */ @ApiModel(description = "SandboxPublicTokenCreateResponse defines the response schema for `/sandbox/public_token/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxPublicTokenCreateResponse { public static final String SERIALIZED_NAME_PUBLIC_TOKEN = "public_token"; @SerializedName(SERIALIZED_NAME_PUBLIC_TOKEN) diff --git a/src/main/java/com/plaid/client/model/SandboxTransactionsCreateRequest.java b/src/main/java/com/plaid/client/model/SandboxTransactionsCreateRequest.java index f4628e093..c7d0cd1a4 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransactionsCreateRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxTransactionsCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * SandboxTransactionsCreateRequest defines the request schema for `/sandbox/transactions/create` */ @ApiModel(description = "SandboxTransactionsCreateRequest defines the request schema for `/sandbox/transactions/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransactionsCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransactionsCreateResponse.java b/src/main/java/com/plaid/client/model/SandboxTransactionsCreateResponse.java index 6fa095304..cec558d84 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransactionsCreateResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxTransactionsCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SandboxTransactionsCreateResponse defines the response schema for `/sandbox/transactions/create` */ @ApiModel(description = "SandboxTransactionsCreateResponse defines the response schema for `/sandbox/transactions/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransactionsCreateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferFireWebhookRequest.java b/src/main/java/com/plaid/client/model/SandboxTransferFireWebhookRequest.java index 4d8653ef0..77aae0eb3 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferFireWebhookRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferFireWebhookRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/sandbox/transfer/fire_webhook` */ @ApiModel(description = "Defines the request schema for `/sandbox/transfer/fire_webhook`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferFireWebhookRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferFireWebhookResponse.java b/src/main/java/com/plaid/client/model/SandboxTransferFireWebhookResponse.java index 2b85c0de3..91cfea911 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferFireWebhookResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferFireWebhookResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/sandbox/transfer/fire_webhook` */ @ApiModel(description = "Defines the response schema for `/sandbox/transfer/fire_webhook`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferFireWebhookResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferLedgerDepositSimulateRequest.java b/src/main/java/com/plaid/client/model/SandboxTransferLedgerDepositSimulateRequest.java index 711706529..f62320519 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferLedgerDepositSimulateRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferLedgerDepositSimulateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Defines the request schema for `/sandbox/transfer/ledger/deposit/simulate` */ @ApiModel(description = "Defines the request schema for `/sandbox/transfer/ledger/deposit/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferLedgerDepositSimulateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferLedgerDepositSimulateResponse.java b/src/main/java/com/plaid/client/model/SandboxTransferLedgerDepositSimulateResponse.java index 3f5dd9f51..69b74eafe 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferLedgerDepositSimulateResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferLedgerDepositSimulateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/sandbox/transfer/ledger/deposit/simulate` */ @ApiModel(description = "Defines the response schema for `/sandbox/transfer/ledger/deposit/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferLedgerDepositSimulateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferLedgerSimulateAvailableRequest.java b/src/main/java/com/plaid/client/model/SandboxTransferLedgerSimulateAvailableRequest.java index 17c2206da..829450463 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferLedgerSimulateAvailableRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferLedgerSimulateAvailableRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/sandbox/transfer/ledger/simulate_available` */ @ApiModel(description = "Defines the request schema for `/sandbox/transfer/ledger/simulate_available`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferLedgerSimulateAvailableRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferLedgerSimulateAvailableResponse.java b/src/main/java/com/plaid/client/model/SandboxTransferLedgerSimulateAvailableResponse.java index 8658f1c52..b97d05c08 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferLedgerSimulateAvailableResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferLedgerSimulateAvailableResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/sandbox/transfer/ledger/simulate_available` */ @ApiModel(description = "Defines the response schema for `/sandbox/transfer/ledger/simulate_available`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferLedgerSimulateAvailableResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferLedgerWithdrawSimulateRequest.java b/src/main/java/com/plaid/client/model/SandboxTransferLedgerWithdrawSimulateRequest.java index 8973022d7..44ab0c8fd 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferLedgerWithdrawSimulateRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferLedgerWithdrawSimulateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Defines the request schema for `/sandbox/transfer/ledger/withdraw/simulate` */ @ApiModel(description = "Defines the request schema for `/sandbox/transfer/ledger/withdraw/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferLedgerWithdrawSimulateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferLedgerWithdrawSimulateResponse.java b/src/main/java/com/plaid/client/model/SandboxTransferLedgerWithdrawSimulateResponse.java index 916afbc74..4f014ea33 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferLedgerWithdrawSimulateResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferLedgerWithdrawSimulateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/sandbox/transfer/ledger/withdraw/simulate` */ @ApiModel(description = "Defines the response schema for `/sandbox/transfer/ledger/withdraw/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferLedgerWithdrawSimulateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferRefundSimulateRequest.java b/src/main/java/com/plaid/client/model/SandboxTransferRefundSimulateRequest.java index b6c51c756..62e64f2f2 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferRefundSimulateRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferRefundSimulateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the request schema for `/sandbox/transfer/refund/simulate` */ @ApiModel(description = "Defines the request schema for `/sandbox/transfer/refund/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferRefundSimulateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferRefundSimulateResponse.java b/src/main/java/com/plaid/client/model/SandboxTransferRefundSimulateResponse.java index e92fd8249..46089a09e 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferRefundSimulateResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferRefundSimulateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/sandbox/transfer/refund/simulate` */ @ApiModel(description = "Defines the response schema for `/sandbox/transfer/refund/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferRefundSimulateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferRepaymentSimulateRequest.java b/src/main/java/com/plaid/client/model/SandboxTransferRepaymentSimulateRequest.java index 233eb3c45..1eb6b4e4b 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferRepaymentSimulateRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferRepaymentSimulateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/sandbox/transfer/repayment/simulate` */ @ApiModel(description = "Defines the request schema for `/sandbox/transfer/repayment/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferRepaymentSimulateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferRepaymentSimulateResponse.java b/src/main/java/com/plaid/client/model/SandboxTransferRepaymentSimulateResponse.java index 8260d9c94..018723c26 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferRepaymentSimulateResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferRepaymentSimulateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/sandbox/transfer/repayment/simulate` */ @ApiModel(description = "Defines the response schema for `/sandbox/transfer/repayment/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferRepaymentSimulateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferRfpSimulateAction.java b/src/main/java/com/plaid/client/model/SandboxTransferRfpSimulateAction.java index 59ac5b261..0bf29f266 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferRfpSimulateAction.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferRfpSimulateAction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/SandboxTransferRfpSimulateRequest.java b/src/main/java/com/plaid/client/model/SandboxTransferRfpSimulateRequest.java index b5ba1081b..d3c2c11c3 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferRfpSimulateRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferRfpSimulateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the request schema for `/sandbox/transfer/rfp/simulate` */ @ApiModel(description = "Defines the request schema for `/sandbox/transfer/rfp/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferRfpSimulateRequest { public static final String SERIALIZED_NAME_TRANSFER_ID = "transfer_id"; @SerializedName(SERIALIZED_NAME_TRANSFER_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferRfpSimulateResponse.java b/src/main/java/com/plaid/client/model/SandboxTransferRfpSimulateResponse.java index e2bd02531..8dbf69cdb 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferRfpSimulateResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferRfpSimulateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/sandbox/transfer/rfp/simulate` */ @ApiModel(description = "Defines the response schema for `/sandbox/transfer/rfp/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferRfpSimulateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferSimulateRequest.java b/src/main/java/com/plaid/client/model/SandboxTransferSimulateRequest.java index 170bd8514..504cb3ca3 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferSimulateRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferSimulateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the request schema for `/sandbox/transfer/simulate` */ @ApiModel(description = "Defines the request schema for `/sandbox/transfer/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferSimulateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferSimulateResponse.java b/src/main/java/com/plaid/client/model/SandboxTransferSimulateResponse.java index 70a6fce31..b1a45c250 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferSimulateResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferSimulateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/sandbox/transfer/simulate` */ @ApiModel(description = "Defines the response schema for `/sandbox/transfer/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferSimulateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferSweepSimulateRequest.java b/src/main/java/com/plaid/client/model/SandboxTransferSweepSimulateRequest.java index 307111e9a..802e8a992 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferSweepSimulateRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferSweepSimulateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/sandbox/transfer/sweep/simulate` */ @ApiModel(description = "Defines the request schema for `/sandbox/transfer/sweep/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferSweepSimulateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferSweepSimulateResponse.java b/src/main/java/com/plaid/client/model/SandboxTransferSweepSimulateResponse.java index 30816d49a..2fd1acf34 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferSweepSimulateResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferSweepSimulateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/sandbox/transfer/sweep/simulate` */ @ApiModel(description = "Defines the response schema for `/sandbox/transfer/sweep/simulate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferSweepSimulateResponse { public static final String SERIALIZED_NAME_SWEEP = "sweep"; @SerializedName(SERIALIZED_NAME_SWEEP) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferTestClockAdvanceRequest.java b/src/main/java/com/plaid/client/model/SandboxTransferTestClockAdvanceRequest.java index 3d8225872..2fc9cccf6 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferTestClockAdvanceRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferTestClockAdvanceRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the request schema for `/sandbox/transfer/test_clock/advance` */ @ApiModel(description = "Defines the request schema for `/sandbox/transfer/test_clock/advance`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferTestClockAdvanceRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferTestClockAdvanceResponse.java b/src/main/java/com/plaid/client/model/SandboxTransferTestClockAdvanceResponse.java index 0144f5039..23ce375de 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferTestClockAdvanceResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferTestClockAdvanceResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/sandbox/transfer/test_clock/advance` */ @ApiModel(description = "Defines the response schema for `/sandbox/transfer/test_clock/advance`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferTestClockAdvanceResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferTestClockCreateRequest.java b/src/main/java/com/plaid/client/model/SandboxTransferTestClockCreateRequest.java index 5863eb8bf..c26caddd3 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferTestClockCreateRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferTestClockCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the request schema for `/sandbox/transfer/test_clock/create` */ @ApiModel(description = "Defines the request schema for `/sandbox/transfer/test_clock/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferTestClockCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferTestClockCreateResponse.java b/src/main/java/com/plaid/client/model/SandboxTransferTestClockCreateResponse.java index 96e7dbfe2..b8ef7b093 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferTestClockCreateResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferTestClockCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/sandbox/transfer/test_clock/create` */ @ApiModel(description = "Defines the response schema for `/sandbox/transfer/test_clock/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferTestClockCreateResponse { public static final String SERIALIZED_NAME_TEST_CLOCK = "test_clock"; @SerializedName(SERIALIZED_NAME_TEST_CLOCK) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferTestClockGetRequest.java b/src/main/java/com/plaid/client/model/SandboxTransferTestClockGetRequest.java index 88019d5bd..1553362c1 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferTestClockGetRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferTestClockGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/sandbox/transfer/test_clock/get` */ @ApiModel(description = "Defines the request schema for `/sandbox/transfer/test_clock/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferTestClockGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferTestClockGetResponse.java b/src/main/java/com/plaid/client/model/SandboxTransferTestClockGetResponse.java index f0d04ab6c..2409da991 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferTestClockGetResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferTestClockGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/sandbox/transfer/test_clock/get` */ @ApiModel(description = "Defines the response schema for `/sandbox/transfer/test_clock/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferTestClockGetResponse { public static final String SERIALIZED_NAME_TEST_CLOCK = "test_clock"; @SerializedName(SERIALIZED_NAME_TEST_CLOCK) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferTestClockListRequest.java b/src/main/java/com/plaid/client/model/SandboxTransferTestClockListRequest.java index 855927dfc..eadc9e9f6 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferTestClockListRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferTestClockListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the request schema for `/sandbox/transfer/test_clock/list` */ @ApiModel(description = "Defines the request schema for `/sandbox/transfer/test_clock/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferTestClockListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxTransferTestClockListResponse.java b/src/main/java/com/plaid/client/model/SandboxTransferTestClockListResponse.java index 4a9b0842b..4cbddb395 100644 --- a/src/main/java/com/plaid/client/model/SandboxTransferTestClockListResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxTransferTestClockListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Defines the response schema for `/sandbox/transfer/test_clock/list` */ @ApiModel(description = "Defines the response schema for `/sandbox/transfer/test_clock/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxTransferTestClockListResponse { public static final String SERIALIZED_NAME_TEST_CLOCKS = "test_clocks"; @SerializedName(SERIALIZED_NAME_TEST_CLOCKS) diff --git a/src/main/java/com/plaid/client/model/SandboxUserResetLoginRequest.java b/src/main/java/com/plaid/client/model/SandboxUserResetLoginRequest.java index cabcaa1f2..d868af6e8 100644 --- a/src/main/java/com/plaid/client/model/SandboxUserResetLoginRequest.java +++ b/src/main/java/com/plaid/client/model/SandboxUserResetLoginRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * SandboxUserResetLoginRequest defines the request schema for `/sandbox/user/reset_login` */ @ApiModel(description = "SandboxUserResetLoginRequest defines the request schema for `/sandbox/user/reset_login`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxUserResetLoginRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SandboxUserResetLoginResponse.java b/src/main/java/com/plaid/client/model/SandboxUserResetLoginResponse.java index ebfa850b4..8f0dceb40 100644 --- a/src/main/java/com/plaid/client/model/SandboxUserResetLoginResponse.java +++ b/src/main/java/com/plaid/client/model/SandboxUserResetLoginResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SandboxUserResetLoginResponse defines the response schema for `/sandbox/user/reset_login` */ @ApiModel(description = "SandboxUserResetLoginResponse defines the response schema for `/sandbox/user/reset_login`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SandboxUserResetLoginResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/Scopes.java b/src/main/java/com/plaid/client/model/Scopes.java index 1662d8949..6137c3b61 100644 --- a/src/main/java/com/plaid/client/model/Scopes.java +++ b/src/main/java/com/plaid/client/model/Scopes.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * The scopes object */ @ApiModel(description = "The scopes object") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Scopes { public static final String SERIALIZED_NAME_PRODUCT_ACCESS = "product_access"; @SerializedName(SERIALIZED_NAME_PRODUCT_ACCESS) diff --git a/src/main/java/com/plaid/client/model/ScopesContext.java b/src/main/java/com/plaid/client/model/ScopesContext.java index aa9e9132b..2efffe42f 100644 --- a/src/main/java/com/plaid/client/model/ScopesContext.java +++ b/src/main/java/com/plaid/client/model/ScopesContext.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ScopesNullable.java b/src/main/java/com/plaid/client/model/ScopesNullable.java index 5f14561bb..25b0f1362 100644 --- a/src/main/java/com/plaid/client/model/ScopesNullable.java +++ b/src/main/java/com/plaid/client/model/ScopesNullable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * The scopes object */ @ApiModel(description = "The scopes object") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ScopesNullable { public static final String SERIALIZED_NAME_PRODUCT_ACCESS = "product_access"; @SerializedName(SERIALIZED_NAME_PRODUCT_ACCESS) diff --git a/src/main/java/com/plaid/client/model/ScreeningHitAnalysis.java b/src/main/java/com/plaid/client/model/ScreeningHitAnalysis.java index c65e1aac0..8cfabe02c 100644 --- a/src/main/java/com/plaid/client/model/ScreeningHitAnalysis.java +++ b/src/main/java/com/plaid/client/model/ScreeningHitAnalysis.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Analysis information describing why a screening hit matched the provided user information */ @ApiModel(description = "Analysis information describing why a screening hit matched the provided user information") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ScreeningHitAnalysis { public static final String SERIALIZED_NAME_DATES_OF_BIRTH = "dates_of_birth"; @SerializedName(SERIALIZED_NAME_DATES_OF_BIRTH) diff --git a/src/main/java/com/plaid/client/model/ScreeningHitData.java b/src/main/java/com/plaid/client/model/ScreeningHitData.java index 3e90e6852..f70136523 100644 --- a/src/main/java/com/plaid/client/model/ScreeningHitData.java +++ b/src/main/java/com/plaid/client/model/ScreeningHitData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * Information associated with the watchlist hit */ @ApiModel(description = "Information associated with the watchlist hit") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ScreeningHitData { public static final String SERIALIZED_NAME_DATES_OF_BIRTH = "dates_of_birth"; @SerializedName(SERIALIZED_NAME_DATES_OF_BIRTH) diff --git a/src/main/java/com/plaid/client/model/ScreeningHitDateOfBirthItem.java b/src/main/java/com/plaid/client/model/ScreeningHitDateOfBirthItem.java index a72921c5a..ecd20efde 100644 --- a/src/main/java/com/plaid/client/model/ScreeningHitDateOfBirthItem.java +++ b/src/main/java/com/plaid/client/model/ScreeningHitDateOfBirthItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Analyzed date of birth for the associated hit */ @ApiModel(description = "Analyzed date of birth for the associated hit") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ScreeningHitDateOfBirthItem { public static final String SERIALIZED_NAME_ANALYSIS = "analysis"; @SerializedName(SERIALIZED_NAME_ANALYSIS) diff --git a/src/main/java/com/plaid/client/model/ScreeningHitDocumentsItems.java b/src/main/java/com/plaid/client/model/ScreeningHitDocumentsItems.java index 44ccb442a..2874bf60c 100644 --- a/src/main/java/com/plaid/client/model/ScreeningHitDocumentsItems.java +++ b/src/main/java/com/plaid/client/model/ScreeningHitDocumentsItems.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Analyzed document information for the associated hit */ @ApiModel(description = "Analyzed document information for the associated hit") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ScreeningHitDocumentsItems { public static final String SERIALIZED_NAME_ANALYSIS = "analysis"; @SerializedName(SERIALIZED_NAME_ANALYSIS) diff --git a/src/main/java/com/plaid/client/model/ScreeningHitNamesItems.java b/src/main/java/com/plaid/client/model/ScreeningHitNamesItems.java index 0cd0e3fd6..fc9841d9f 100644 --- a/src/main/java/com/plaid/client/model/ScreeningHitNamesItems.java +++ b/src/main/java/com/plaid/client/model/ScreeningHitNamesItems.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Analyzed name information for the associated hit */ @ApiModel(description = "Analyzed name information for the associated hit") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ScreeningHitNamesItems { public static final String SERIALIZED_NAME_ANALYSIS = "analysis"; @SerializedName(SERIALIZED_NAME_ANALYSIS) diff --git a/src/main/java/com/plaid/client/model/ScreeningStatusUpdatedWebhook.java b/src/main/java/com/plaid/client/model/ScreeningStatusUpdatedWebhook.java index 2fbbf08a3..e47eda024 100644 --- a/src/main/java/com/plaid/client/model/ScreeningStatusUpdatedWebhook.java +++ b/src/main/java/com/plaid/client/model/ScreeningStatusUpdatedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when an individual screening status has changed, which can occur manually via the dashboard or during ongoing monitoring. */ @ApiModel(description = "Fired when an individual screening status has changed, which can occur manually via the dashboard or during ongoing monitoring.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ScreeningStatusUpdatedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/Security.java b/src/main/java/com/plaid/client/model/Security.java index 72dcf6433..ae432e4df 100644 --- a/src/main/java/com/plaid/client/model/Security.java +++ b/src/main/java/com/plaid/client/model/Security.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Contains details about a security */ @ApiModel(description = "Contains details about a security") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Security { public static final String SERIALIZED_NAME_SECURITY_ID = "security_id"; @SerializedName(SERIALIZED_NAME_SECURITY_ID) diff --git a/src/main/java/com/plaid/client/model/SecurityOverride.java b/src/main/java/com/plaid/client/model/SecurityOverride.java index be4accb99..333b1f11b 100644 --- a/src/main/java/com/plaid/client/model/SecurityOverride.java +++ b/src/main/java/com/plaid/client/model/SecurityOverride.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Specify the security associated with the holding or investment transaction. When inputting custom security data to the Sandbox, Plaid will perform post-data-retrieval normalization and enrichment. These processes may cause the data returned by the Sandbox to be slightly different from the data you input. An ISO-4217 currency code and a security identifier (`ticker_symbol`, `cusip`, or `isin`) are required. */ @ApiModel(description = "Specify the security associated with the holding or investment transaction. When inputting custom security data to the Sandbox, Plaid will perform post-data-retrieval normalization and enrichment. These processes may cause the data returned by the Sandbox to be slightly different from the data you input. An ISO-4217 currency code and a security identifier (`ticker_symbol`, `cusip`, or `isin`) are required.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SecurityOverride { public static final String SERIALIZED_NAME_ISIN = "isin"; @SerializedName(SERIALIZED_NAME_ISIN) diff --git a/src/main/java/com/plaid/client/model/SelfieAnalysis.java b/src/main/java/com/plaid/client/model/SelfieAnalysis.java index 7af27e13e..2611d66eb 100644 --- a/src/main/java/com/plaid/client/model/SelfieAnalysis.java +++ b/src/main/java/com/plaid/client/model/SelfieAnalysis.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * High level descriptions of how the associated selfie was processed. If a selfie fails verification, the details in the `analysis` object should help clarify why the selfie was rejected. */ @ApiModel(description = "High level descriptions of how the associated selfie was processed. If a selfie fails verification, the details in the `analysis` object should help clarify why the selfie was rejected.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SelfieAnalysis { public static final String SERIALIZED_NAME_DOCUMENT_COMPARISON = "document_comparison"; @SerializedName(SERIALIZED_NAME_DOCUMENT_COMPARISON) diff --git a/src/main/java/com/plaid/client/model/SelfieAnalysisDocumentComparison.java b/src/main/java/com/plaid/client/model/SelfieAnalysisDocumentComparison.java index 9e687f27d..fb68affe3 100644 --- a/src/main/java/com/plaid/client/model/SelfieAnalysisDocumentComparison.java +++ b/src/main/java/com/plaid/client/model/SelfieAnalysisDocumentComparison.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/SelfieAnalysisFacialAnalysis.java b/src/main/java/com/plaid/client/model/SelfieAnalysisFacialAnalysis.java index 2158abe98..cf1ffb04d 100644 --- a/src/main/java/com/plaid/client/model/SelfieAnalysisFacialAnalysis.java +++ b/src/main/java/com/plaid/client/model/SelfieAnalysisFacialAnalysis.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Analysis of the facial features of the selfie when compared to the face in the uploaded document, if one is present. */ @ApiModel(description = "Analysis of the facial features of the selfie when compared to the face in the uploaded document, if one is present.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SelfieAnalysisFacialAnalysis { public static final String SERIALIZED_NAME_LEFT_EYE = "left_eye"; @SerializedName(SERIALIZED_NAME_LEFT_EYE) diff --git a/src/main/java/com/plaid/client/model/SelfieAnalysisFacialAnalysisOutcome.java b/src/main/java/com/plaid/client/model/SelfieAnalysisFacialAnalysisOutcome.java index cd8b7c2ca..642bb55a9 100644 --- a/src/main/java/com/plaid/client/model/SelfieAnalysisFacialAnalysisOutcome.java +++ b/src/main/java/com/plaid/client/model/SelfieAnalysisFacialAnalysisOutcome.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/SelfieAnalysisLivenessCheck.java b/src/main/java/com/plaid/client/model/SelfieAnalysisLivenessCheck.java index 9af450f80..10bc56b86 100644 --- a/src/main/java/com/plaid/client/model/SelfieAnalysisLivenessCheck.java +++ b/src/main/java/com/plaid/client/model/SelfieAnalysisLivenessCheck.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/SelfieCapture.java b/src/main/java/com/plaid/client/model/SelfieCapture.java index dbfd448e0..f1757b401 100644 --- a/src/main/java/com/plaid/client/model/SelfieCapture.java +++ b/src/main/java/com/plaid/client/model/SelfieCapture.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The image or video capture of a selfie. Only one of image or video URL will be populated per selfie. */ @ApiModel(description = "The image or video capture of a selfie. Only one of image or video URL will be populated per selfie.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SelfieCapture { public static final String SERIALIZED_NAME_IMAGE_URL = "image_url"; @SerializedName(SERIALIZED_NAME_IMAGE_URL) diff --git a/src/main/java/com/plaid/client/model/SelfieCheck.java b/src/main/java/com/plaid/client/model/SelfieCheck.java index f8c632a8b..5d8a9e9a8 100644 --- a/src/main/java/com/plaid/client/model/SelfieCheck.java +++ b/src/main/java/com/plaid/client/model/SelfieCheck.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Additional information for the `selfie_check` step. This field will be `null` unless `steps.selfie_check` has reached a terminal state of either `success` or `failed`. */ @ApiModel(description = "Additional information for the `selfie_check` step. This field will be `null` unless `steps.selfie_check` has reached a terminal state of either `success` or `failed`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SelfieCheck { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/SelfieCheckSelfie.java b/src/main/java/com/plaid/client/model/SelfieCheckSelfie.java index b6f2e461e..187d62179 100644 --- a/src/main/java/com/plaid/client/model/SelfieCheckSelfie.java +++ b/src/main/java/com/plaid/client/model/SelfieCheckSelfie.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Captures and analysis from a user's selfie. */ @ApiModel(description = "Captures and analysis from a user's selfie.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SelfieCheckSelfie { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/SelfieCheckStatus.java b/src/main/java/com/plaid/client/model/SelfieCheckStatus.java index f03bd34fc..48dcfef52 100644 --- a/src/main/java/com/plaid/client/model/SelfieCheckStatus.java +++ b/src/main/java/com/plaid/client/model/SelfieCheckStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/SelfieStatus.java b/src/main/java/com/plaid/client/model/SelfieStatus.java index a32214df0..c4326d37e 100644 --- a/src/main/java/com/plaid/client/model/SelfieStatus.java +++ b/src/main/java/com/plaid/client/model/SelfieStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/SenderBACSNullable.java b/src/main/java/com/plaid/client/model/SenderBACSNullable.java index 7d2643e94..e8488f516 100644 --- a/src/main/java/com/plaid/client/model/SenderBACSNullable.java +++ b/src/main/java/com/plaid/client/model/SenderBACSNullable.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SenderBACSNullable { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) diff --git a/src/main/java/com/plaid/client/model/Service.java b/src/main/java/com/plaid/client/model/Service.java index ce8756c96..c6831b099 100644 --- a/src/main/java/com/plaid/client/model/Service.java +++ b/src/main/java/com/plaid/client/model/Service.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Service { public static final String SERIALIZED_NAME_V_E_R_I_F_I_C_A_T_I_O_N_O_F_A_S_S_E_T = "VERIFICATION_OF_ASSET"; @SerializedName(SERIALIZED_NAME_V_E_R_I_F_I_C_A_T_I_O_N_O_F_A_S_S_E_T) diff --git a/src/main/java/com/plaid/client/model/ServiceProductFulfillment.java b/src/main/java/com/plaid/client/model/ServiceProductFulfillment.java index 5d2d354d4..84f13304b 100644 --- a/src/main/java/com/plaid/client/model/ServiceProductFulfillment.java +++ b/src/main/java/com/plaid/client/model/ServiceProductFulfillment.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[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) diff --git a/src/main/java/com/plaid/client/model/ServiceProductFulfillmentDetail.java b/src/main/java/com/plaid/client/model/ServiceProductFulfillmentDetail.java index 8f10981c6..613197014 100644 --- a/src/main/java/com/plaid/client/model/ServiceProductFulfillmentDetail.java +++ b/src/main/java/com/plaid/client/model/ServiceProductFulfillmentDetail.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ServiceProductFulfillmentDetail { public static final String SERIALIZED_NAME_VENDOR_ORDER_IDENTIFIER = "VendorOrderIdentifier"; @SerializedName(SERIALIZED_NAME_VENDOR_ORDER_IDENTIFIER) diff --git a/src/main/java/com/plaid/client/model/ServiceProductFulfillmentIdentifier.java b/src/main/java/com/plaid/client/model/ServiceProductFulfillmentIdentifier.java index de1ba28ea..32db7b7d7 100644 --- a/src/main/java/com/plaid/client/model/ServiceProductFulfillmentIdentifier.java +++ b/src/main/java/com/plaid/client/model/ServiceProductFulfillmentIdentifier.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/ServicerAddressData.java b/src/main/java/com/plaid/client/model/ServicerAddressData.java index 09aa051ab..9d68715b4 100644 --- a/src/main/java/com/plaid/client/model/ServicerAddressData.java +++ b/src/main/java/com/plaid/client/model/ServicerAddressData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The address of the student loan servicer. This is generally the remittance address to which payments should be sent. */ @ApiModel(description = "The address of the student loan servicer. This is generally the remittance address to which payments should be sent.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ServicerAddressData { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/Services.java b/src/main/java/com/plaid/client/model/Services.java index 9c6af1980..29e1ff67d 100644 --- a/src/main/java/com/plaid/client/model/Services.java +++ b/src/main/java/com/plaid/client/model/Services.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A collection of objects that describe requests and responses for services. */ @ApiModel(description = "A collection of objects that describe requests and responses for services.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Services { public static final String SERIALIZED_NAME_S_E_R_V_I_C_E = "SERVICE"; @SerializedName(SERIALIZED_NAME_S_E_R_V_I_C_E) diff --git a/src/main/java/com/plaid/client/model/SessionTokenCreateRequest.java b/src/main/java/com/plaid/client/model/SessionTokenCreateRequest.java index db905316e..843bfaa5b 100644 --- a/src/main/java/com/plaid/client/model/SessionTokenCreateRequest.java +++ b/src/main/java/com/plaid/client/model/SessionTokenCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * SessionTokenCreateRequest defines the request schema for `/session/token/create` */ @ApiModel(description = "SessionTokenCreateRequest defines the request schema for `/session/token/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SessionTokenCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SessionTokenCreateRequestUser.java b/src/main/java/com/plaid/client/model/SessionTokenCreateRequestUser.java index cf536feab..7a93afaf5 100644 --- a/src/main/java/com/plaid/client/model/SessionTokenCreateRequestUser.java +++ b/src/main/java/com/plaid/client/model/SessionTokenCreateRequestUser.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Details about the end user. Required if a root-level `user_id` is not provided. */ @ApiModel(description = "Details about the end user. Required if a root-level `user_id` is not provided.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SessionTokenCreateRequestUser { public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id"; @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) diff --git a/src/main/java/com/plaid/client/model/SessionTokenCreateResponse.java b/src/main/java/com/plaid/client/model/SessionTokenCreateResponse.java index f651f7dc2..4d0819091 100644 --- a/src/main/java/com/plaid/client/model/SessionTokenCreateResponse.java +++ b/src/main/java/com/plaid/client/model/SessionTokenCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * SessionTokenCreateResponse defines the response schema for `/session/token/create` */ @ApiModel(description = "SessionTokenCreateResponse defines the response schema for `/session/token/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SessionTokenCreateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SessionTokenCreateResponseLink.java b/src/main/java/com/plaid/client/model/SessionTokenCreateResponseLink.java index 872c3d90b..285bf586d 100644 --- a/src/main/java/com/plaid/client/model/SessionTokenCreateResponseLink.java +++ b/src/main/java/com/plaid/client/model/SessionTokenCreateResponseLink.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Response data for `/session/token/create` intended for use with the Link SDK. */ @ApiModel(description = "Response data for `/session/token/create` intended for use with the Link SDK.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SessionTokenCreateResponseLink { public static final String SERIALIZED_NAME_LINK_TOKEN = "link_token"; @SerializedName(SERIALIZED_NAME_LINK_TOKEN) diff --git a/src/main/java/com/plaid/client/model/SignalAddressData.java b/src/main/java/com/plaid/client/model/SignalAddressData.java index 31a5a21bf..5a5db84e6 100644 --- a/src/main/java/com/plaid/client/model/SignalAddressData.java +++ b/src/main/java/com/plaid/client/model/SignalAddressData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalAddressData { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/SignalDecisionOutcome.java b/src/main/java/com/plaid/client/model/SignalDecisionOutcome.java index 216a67278..e523a69fc 100644 --- a/src/main/java/com/plaid/client/model/SignalDecisionOutcome.java +++ b/src/main/java/com/plaid/client/model/SignalDecisionOutcome.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/SignalDecisionReportRequest.java b/src/main/java/com/plaid/client/model/SignalDecisionReportRequest.java index 79651b4fb..660b4b2c8 100644 --- a/src/main/java/com/plaid/client/model/SignalDecisionReportRequest.java +++ b/src/main/java/com/plaid/client/model/SignalDecisionReportRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * SignalDecisionReportRequest defines the request schema for `/signal/decision/report` */ @ApiModel(description = "SignalDecisionReportRequest defines the request schema for `/signal/decision/report`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalDecisionReportRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SignalDecisionReportResponse.java b/src/main/java/com/plaid/client/model/SignalDecisionReportResponse.java index 504398b54..2b38416c2 100644 --- a/src/main/java/com/plaid/client/model/SignalDecisionReportResponse.java +++ b/src/main/java/com/plaid/client/model/SignalDecisionReportResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SignalDecisionReportResponse defines the response schema for `/signal/decision/report` */ @ApiModel(description = "SignalDecisionReportResponse defines the response schema for `/signal/decision/report`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalDecisionReportResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SignalDevice.java b/src/main/java/com/plaid/client/model/SignalDevice.java index 81a4fce41..2a66af324 100644 --- a/src/main/java/com/plaid/client/model/SignalDevice.java +++ b/src/main/java/com/plaid/client/model/SignalDevice.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Details about the end user's device. These fields are optional, but strongly recommended to increase the accuracy of results when using Signal Transaction Scores. When using a Balance-only Ruleset, these fields are ignored if the Signal Addendum has been signed; if it has not been signed, using these fields will result in an error. */ @ApiModel(description = "Details about the end user's device. These fields are optional, but strongly recommended to increase the accuracy of results when using Signal Transaction Scores. When using a Balance-only Ruleset, these fields are ignored if the Signal Addendum has been signed; if it has not been signed, using these fields will result in an error.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalDevice { public static final String SERIALIZED_NAME_IP_ADDRESS = "ip_address"; @SerializedName(SERIALIZED_NAME_IP_ADDRESS) diff --git a/src/main/java/com/plaid/client/model/SignalEvaluateCoreAttributes.java b/src/main/java/com/plaid/client/model/SignalEvaluateCoreAttributes.java index 9b9e06a17..0eec93218 100644 --- a/src/main/java/com/plaid/client/model/SignalEvaluateCoreAttributes.java +++ b/src/main/java/com/plaid/client/model/SignalEvaluateCoreAttributes.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The core attributes object contains additional data that can be used to assess the ACH return risk. If using a Balance-only ruleset, only `available_balance` and `current_balance` will be returned as core attributes. If using a Signal Transaction Scores ruleset, over 80 core attributes will be returned. Examples of attributes include: `available_balance` and `current_balance`: The balance in the ACH transaction funding account `days_since_first_plaid_connection`: The number of days since the first time the Item was connected to an application via Plaid `plaid_connections_count_7d`: The number of times the Item has been connected to applications via Plaid over the past 7 days `plaid_connections_count_30d`: The number of times the Item has been connected to applications via Plaid over the past 30 days `total_plaid_connections_count`: The number of times the Item has been connected to applications via Plaid `is_savings_or_money_market_account`: Indicates whether the ACH transaction funding account is a savings/money market account For the full list and detailed documentation of core attributes available, or to request that core attributes not be returned, contact Sales or your Plaid account manager. */ @ApiModel(description = "The core attributes object contains additional data that can be used to assess the ACH return risk. If using a Balance-only ruleset, only `available_balance` and `current_balance` will be returned as core attributes. If using a Signal Transaction Scores ruleset, over 80 core attributes will be returned. Examples of attributes include: `available_balance` and `current_balance`: The balance in the ACH transaction funding account `days_since_first_plaid_connection`: The number of days since the first time the Item was connected to an application via Plaid `plaid_connections_count_7d`: The number of times the Item has been connected to applications via Plaid over the past 7 days `plaid_connections_count_30d`: The number of times the Item has been connected to applications via Plaid over the past 30 days `total_plaid_connections_count`: The number of times the Item has been connected to applications via Plaid `is_savings_or_money_market_account`: Indicates whether the ACH transaction funding account is a savings/money market account For the full list and detailed documentation of core attributes available, or to request that core attributes not be returned, contact Sales or your Plaid account manager.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalEvaluateCoreAttributes { public static final String SERIALIZED_NAME_UNAUTHORIZED_TRANSACTIONS_COUNT7D = "unauthorized_transactions_count_7d"; @SerializedName(SERIALIZED_NAME_UNAUTHORIZED_TRANSACTIONS_COUNT7D) diff --git a/src/main/java/com/plaid/client/model/SignalEvaluateRequest.java b/src/main/java/com/plaid/client/model/SignalEvaluateRequest.java index b9afed57b..b935c208e 100644 --- a/src/main/java/com/plaid/client/model/SignalEvaluateRequest.java +++ b/src/main/java/com/plaid/client/model/SignalEvaluateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * SignalEvaluateRequest defines the request schema for `/signal/evaluate` */ @ApiModel(description = "SignalEvaluateRequest defines the request schema for `/signal/evaluate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalEvaluateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SignalEvaluateResponse.java b/src/main/java/com/plaid/client/model/SignalEvaluateResponse.java index d2c5a4a00..e03dccaf6 100644 --- a/src/main/java/com/plaid/client/model/SignalEvaluateResponse.java +++ b/src/main/java/com/plaid/client/model/SignalEvaluateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * SignalEvaluateResponse defines the response schema for `/signal/evaluate` */ @ApiModel(description = "SignalEvaluateResponse defines the response schema for `/signal/evaluate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalEvaluateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SignalPaymentMethod.java b/src/main/java/com/plaid/client/model/SignalPaymentMethod.java index bd37b1a71..63b710e74 100644 --- a/src/main/java/com/plaid/client/model/SignalPaymentMethod.java +++ b/src/main/java/com/plaid/client/model/SignalPaymentMethod.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/SignalPersonName.java b/src/main/java/com/plaid/client/model/SignalPersonName.java index 206c68e3f..5ff9dd2ea 100644 --- a/src/main/java/com/plaid/client/model/SignalPersonName.java +++ b/src/main/java/com/plaid/client/model/SignalPersonName.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The user's legal name */ @ApiModel(description = "The user's legal name") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalPersonName { public static final String SERIALIZED_NAME_PREFIX = "prefix"; @SerializedName(SERIALIZED_NAME_PREFIX) diff --git a/src/main/java/com/plaid/client/model/SignalPrepareRequest.java b/src/main/java/com/plaid/client/model/SignalPrepareRequest.java index c0f83cabf..5d2b2cf8b 100644 --- a/src/main/java/com/plaid/client/model/SignalPrepareRequest.java +++ b/src/main/java/com/plaid/client/model/SignalPrepareRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SignalPrepareRequest defines the request schema for `/signal/prepare` */ @ApiModel(description = "SignalPrepareRequest defines the request schema for `/signal/prepare`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalPrepareRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SignalPrepareResponse.java b/src/main/java/com/plaid/client/model/SignalPrepareResponse.java index c5de70351..271cceb2f 100644 --- a/src/main/java/com/plaid/client/model/SignalPrepareResponse.java +++ b/src/main/java/com/plaid/client/model/SignalPrepareResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SignalPrepareResponse defines the response schema for `/signal/prepare` */ @ApiModel(description = "SignalPrepareResponse defines the response schema for `/signal/prepare`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalPrepareResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SignalReturnReportRequest.java b/src/main/java/com/plaid/client/model/SignalReturnReportRequest.java index 972f438eb..20af00d64 100644 --- a/src/main/java/com/plaid/client/model/SignalReturnReportRequest.java +++ b/src/main/java/com/plaid/client/model/SignalReturnReportRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * SignalReturnReportRequest defines the request schema for `/signal/return/report` */ @ApiModel(description = "SignalReturnReportRequest defines the request schema for `/signal/return/report`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalReturnReportRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SignalReturnReportResponse.java b/src/main/java/com/plaid/client/model/SignalReturnReportResponse.java index 75ba71bf9..7e1a60c98 100644 --- a/src/main/java/com/plaid/client/model/SignalReturnReportResponse.java +++ b/src/main/java/com/plaid/client/model/SignalReturnReportResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * SignalReturnReportResponse defines the response schema for `/signal/return/report` */ @ApiModel(description = "SignalReturnReportResponse defines the response schema for `/signal/return/report`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalReturnReportResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/SignalScheduleDefaultPaymentMethod.java b/src/main/java/com/plaid/client/model/SignalScheduleDefaultPaymentMethod.java index ff82aa6ae..28cac7318 100644 --- a/src/main/java/com/plaid/client/model/SignalScheduleDefaultPaymentMethod.java +++ b/src/main/java/com/plaid/client/model/SignalScheduleDefaultPaymentMethod.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/SignalScheduleRecommendation.java b/src/main/java/com/plaid/client/model/SignalScheduleRecommendation.java index 790dc2753..d22118b11 100644 --- a/src/main/java/com/plaid/client/model/SignalScheduleRecommendation.java +++ b/src/main/java/com/plaid/client/model/SignalScheduleRecommendation.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Conveys information on if a retry is recommended on a given date */ @ApiModel(description = "Conveys information on if a retry is recommended on a given date") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalScheduleRecommendation { public static final String SERIALIZED_NAME_DATE = "date"; @SerializedName(SERIALIZED_NAME_DATE) diff --git a/src/main/java/com/plaid/client/model/SignalScheduleRequest.java b/src/main/java/com/plaid/client/model/SignalScheduleRequest.java index d5ace499c..2f14bdc9a 100644 --- a/src/main/java/com/plaid/client/model/SignalScheduleRequest.java +++ b/src/main/java/com/plaid/client/model/SignalScheduleRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * SignalScheduleRequest defines the request schema for `/signal/schedule` */ @ApiModel(description = "SignalScheduleRequest defines the request schema for `/signal/schedule`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalScheduleRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/SignalScheduleResponse.java b/src/main/java/com/plaid/client/model/SignalScheduleResponse.java index 9c07d4254..53ed6a860 100644 --- a/src/main/java/com/plaid/client/model/SignalScheduleResponse.java +++ b/src/main/java/com/plaid/client/model/SignalScheduleResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * SignalScheduleResponse defines the response schema for `/signal/schedule` */ @ApiModel(description = "SignalScheduleResponse defines the response schema for `/signal/schedule`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalScheduleResponse { public static final String SERIALIZED_NAME_OPTIMAL_DATE = "optimal_date"; @SerializedName(SERIALIZED_NAME_OPTIMAL_DATE) diff --git a/src/main/java/com/plaid/client/model/SignalScores.java b/src/main/java/com/plaid/client/model/SignalScores.java index 5239d613e..ab827bb76 100644 --- a/src/main/java/com/plaid/client/model/SignalScores.java +++ b/src/main/java/com/plaid/client/model/SignalScores.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Risk scoring details broken down by risk category. When using a Balance-only ruleset, this object will not be returned. */ @ApiModel(description = "Risk scoring details broken down by risk category. When using a Balance-only ruleset, this object will not be returned.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalScores { public static final String SERIALIZED_NAME_CUSTOMER_INITIATED_RETURN_RISK = "customer_initiated_return_risk"; @SerializedName(SERIALIZED_NAME_CUSTOMER_INITIATED_RETURN_RISK) diff --git a/src/main/java/com/plaid/client/model/SignalUser.java b/src/main/java/com/plaid/client/model/SignalUser.java index 5a81f6fec..8711c5fc7 100644 --- a/src/main/java/com/plaid/client/model/SignalUser.java +++ b/src/main/java/com/plaid/client/model/SignalUser.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalUser { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/SignalWarning.java b/src/main/java/com/plaid/client/model/SignalWarning.java index 3fa0c8b85..67eb6eac3 100644 --- a/src/main/java/com/plaid/client/model/SignalWarning.java +++ b/src/main/java/com/plaid/client/model/SignalWarning.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Conveys information about the errors causing missing or stale bank data used to construct the /signal/evaluate scores and response */ @ApiModel(description = "Conveys information about the errors causing missing or stale bank data used to construct the /signal/evaluate scores and response") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SignalWarning { public static final String SERIALIZED_NAME_WARNING_TYPE = "warning_type"; @SerializedName(SERIALIZED_NAME_WARNING_TYPE) diff --git a/src/main/java/com/plaid/client/model/SimulatedTransferSweep.java b/src/main/java/com/plaid/client/model/SimulatedTransferSweep.java index e72761785..13f91529a 100644 --- a/src/main/java/com/plaid/client/model/SimulatedTransferSweep.java +++ b/src/main/java/com/plaid/client/model/SimulatedTransferSweep.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * A sweep returned from the `/sandbox/transfer/sweep/simulate` endpoint. Can be null if there are no transfers to include in a sweep. */ @ApiModel(description = "A sweep returned from the `/sandbox/transfer/sweep/simulate` endpoint. Can be null if there are no transfers to include in a sweep.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SimulatedTransferSweep { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/SingleDocumentRiskSignal.java b/src/main/java/com/plaid/client/model/SingleDocumentRiskSignal.java index ea1c766de..c81aab12f 100644 --- a/src/main/java/com/plaid/client/model/SingleDocumentRiskSignal.java +++ b/src/main/java/com/plaid/client/model/SingleDocumentRiskSignal.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Object containing all risk signals and relevant metadata for a single document */ @ApiModel(description = "Object containing all risk signals and relevant metadata for a single document") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SingleDocumentRiskSignal { public static final String SERIALIZED_NAME_DOCUMENT_REFERENCE = "document_reference"; @SerializedName(SERIALIZED_NAME_DOCUMENT_REFERENCE) diff --git a/src/main/java/com/plaid/client/model/Source.java b/src/main/java/com/plaid/client/model/Source.java index 92a6f409e..25dce0b82 100644 --- a/src/main/java/com/plaid/client/model/Source.java +++ b/src/main/java/com/plaid/client/model/Source.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/StandaloneAccountType.java b/src/main/java/com/plaid/client/model/StandaloneAccountType.java index 2ea3e36ef..a9ba77e6d 100644 --- a/src/main/java/com/plaid/client/model/StandaloneAccountType.java +++ b/src/main/java/com/plaid/client/model/StandaloneAccountType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The schema below describes the various `types` and corresponding `subtypes` that Plaid recognizes and reports for financial institution accounts. For a mapping of supported types and subtypes to Plaid products, see the [Account type / product support matrix](https://plaid.com/docs/api/accounts/#account-type--product-support-matrix). */ @ApiModel(description = "The schema below describes the various `types` and corresponding `subtypes` that Plaid recognizes and reports for financial institution accounts. For a mapping of supported types and subtypes to Plaid products, see the [Account type / product support matrix](https://plaid.com/docs/api/accounts/#account-type--product-support-matrix).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class StandaloneAccountType { public static final String SERIALIZED_NAME_DEPOSITORY = "depository"; @SerializedName(SERIALIZED_NAME_DEPOSITORY) diff --git a/src/main/java/com/plaid/client/model/StandaloneCurrencyCodeList.java b/src/main/java/com/plaid/client/model/StandaloneCurrencyCodeList.java index 291cd1683..b8902231d 100644 --- a/src/main/java/com/plaid/client/model/StandaloneCurrencyCodeList.java +++ b/src/main/java/com/plaid/client/model/StandaloneCurrencyCodeList.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The following currency codes are supported by Plaid. */ @ApiModel(description = "The following currency codes are supported by Plaid.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class StandaloneCurrencyCodeList { public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code"; @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE) diff --git a/src/main/java/com/plaid/client/model/StandaloneInvestmentTransactionType.java b/src/main/java/com/plaid/client/model/StandaloneInvestmentTransactionType.java index 9ecf59287..1bbbfc6ed 100644 --- a/src/main/java/com/plaid/client/model/StandaloneInvestmentTransactionType.java +++ b/src/main/java/com/plaid/client/model/StandaloneInvestmentTransactionType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Valid values for investment transaction types and subtypes. Note that transactions representing inflow of cash will appear as negative amounts, outflow of cash will appear as positive amounts. */ @ApiModel(description = "Valid values for investment transaction types and subtypes. Note that transactions representing inflow of cash will appear as negative amounts, outflow of cash will appear as positive amounts.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class StandaloneInvestmentTransactionType { public static final String SERIALIZED_NAME_BUY = "buy"; @SerializedName(SERIALIZED_NAME_BUY) diff --git a/src/main/java/com/plaid/client/model/StatementsAccount.java b/src/main/java/com/plaid/client/model/StatementsAccount.java index f041c4eee..a4e079882 100644 --- a/src/main/java/com/plaid/client/model/StatementsAccount.java +++ b/src/main/java/com/plaid/client/model/StatementsAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Account associated with the Item. */ @ApiModel(description = "Account associated with the Item.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class StatementsAccount { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/StatementsDownloadRequest.java b/src/main/java/com/plaid/client/model/StatementsDownloadRequest.java index fc62ea8a0..b8433f480 100644 --- a/src/main/java/com/plaid/client/model/StatementsDownloadRequest.java +++ b/src/main/java/com/plaid/client/model/StatementsDownloadRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * StatementsDownloadRequest defines the request schema for `/statements/download` */ @ApiModel(description = "StatementsDownloadRequest defines the request schema for `/statements/download`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class StatementsDownloadRequest { public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) diff --git a/src/main/java/com/plaid/client/model/StatementsListRequest.java b/src/main/java/com/plaid/client/model/StatementsListRequest.java index 2184f0a88..75fd4f4c5 100644 --- a/src/main/java/com/plaid/client/model/StatementsListRequest.java +++ b/src/main/java/com/plaid/client/model/StatementsListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * StatementsListRequest defines the request schema for `/statements/list` */ @ApiModel(description = "StatementsListRequest defines the request schema for `/statements/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class StatementsListRequest { public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) diff --git a/src/main/java/com/plaid/client/model/StatementsListResponse.java b/src/main/java/com/plaid/client/model/StatementsListResponse.java index 436ea41e0..c6a66a69d 100644 --- a/src/main/java/com/plaid/client/model/StatementsListResponse.java +++ b/src/main/java/com/plaid/client/model/StatementsListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * StatementsListResponse defines the response schema for `/statements/list` */ @ApiModel(description = "StatementsListResponse defines the response schema for `/statements/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class StatementsListResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) diff --git a/src/main/java/com/plaid/client/model/StatementsRefreshCompleteResult.java b/src/main/java/com/plaid/client/model/StatementsRefreshCompleteResult.java index b55ab6b52..6f3bb7286 100644 --- a/src/main/java/com/plaid/client/model/StatementsRefreshCompleteResult.java +++ b/src/main/java/com/plaid/client/model/StatementsRefreshCompleteResult.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/StatementsRefreshCompleteWebhook.java b/src/main/java/com/plaid/client/model/StatementsRefreshCompleteWebhook.java index 6d901e452..560d818c1 100644 --- a/src/main/java/com/plaid/client/model/StatementsRefreshCompleteWebhook.java +++ b/src/main/java/com/plaid/client/model/StatementsRefreshCompleteWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Fired when refreshed statements extraction is completed or failed to be completed. Triggered by calling `/statements/refresh`. */ @ApiModel(description = "Fired when refreshed statements extraction is completed or failed to be completed. Triggered by calling `/statements/refresh`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class StatementsRefreshCompleteWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/StatementsRefreshRequest.java b/src/main/java/com/plaid/client/model/StatementsRefreshRequest.java index b28817579..2bc47b3e1 100644 --- a/src/main/java/com/plaid/client/model/StatementsRefreshRequest.java +++ b/src/main/java/com/plaid/client/model/StatementsRefreshRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * StatementsRefreshRequest defines the request schema for `/statements/refresh` */ @ApiModel(description = "StatementsRefreshRequest defines the request schema for `/statements/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class StatementsRefreshRequest { public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) diff --git a/src/main/java/com/plaid/client/model/StatementsRefreshResponse.java b/src/main/java/com/plaid/client/model/StatementsRefreshResponse.java index 730c67507..e111450ca 100644 --- a/src/main/java/com/plaid/client/model/StatementsRefreshResponse.java +++ b/src/main/java/com/plaid/client/model/StatementsRefreshResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * StatementsRefreshResponse defines the response schema for `/statements/refresh` */ @ApiModel(description = "StatementsRefreshResponse defines the response schema for `/statements/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class StatementsRefreshResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/StatementsStatement.java b/src/main/java/com/plaid/client/model/StatementsStatement.java index fbd898851..20f1f4189 100644 --- a/src/main/java/com/plaid/client/model/StatementsStatement.java +++ b/src/main/java/com/plaid/client/model/StatementsStatement.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A statement's metadata associated with an account */ @ApiModel(description = "A statement's metadata associated with an account") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class StatementsStatement { public static final String SERIALIZED_NAME_STATEMENT_ID = "statement_id"; @SerializedName(SERIALIZED_NAME_STATEMENT_ID) diff --git a/src/main/java/com/plaid/client/model/Status.java b/src/main/java/com/plaid/client/model/Status.java index ba8ce13bd..3fab4b543 100644 --- a/src/main/java/com/plaid/client/model/Status.java +++ b/src/main/java/com/plaid/client/model/Status.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Status { public static final String SERIALIZED_NAME_STATUS_CODE = "StatusCode"; @SerializedName(SERIALIZED_NAME_STATUS_CODE) diff --git a/src/main/java/com/plaid/client/model/Statuses.java b/src/main/java/com/plaid/client/model/Statuses.java index 09da20670..cd2ee5f02 100644 --- a/src/main/java/com/plaid/client/model/Statuses.java +++ b/src/main/java/com/plaid/client/model/Statuses.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A collection of STATUS containers. */ @ApiModel(description = "A collection of STATUS containers.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Statuses { public static final String SERIALIZED_NAME_S_T_A_T_U_S = "STATUS"; @SerializedName(SERIALIZED_NAME_S_T_A_T_U_S) diff --git a/src/main/java/com/plaid/client/model/Strategy.java b/src/main/java/com/plaid/client/model/Strategy.java index 5b5668a45..6abddcea0 100644 --- a/src/main/java/com/plaid/client/model/Strategy.java +++ b/src/main/java/com/plaid/client/model/Strategy.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/StudentLoan.java b/src/main/java/com/plaid/client/model/StudentLoan.java index 896972d07..1567d6221 100644 --- a/src/main/java/com/plaid/client/model/StudentLoan.java +++ b/src/main/java/com/plaid/client/model/StudentLoan.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * Contains details about a student loan account */ @ApiModel(description = "Contains details about a student loan account") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class StudentLoan { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/StudentLoanRepaymentModel.java b/src/main/java/com/plaid/client/model/StudentLoanRepaymentModel.java index 5c3cea2a5..97a5faf60 100644 --- a/src/main/java/com/plaid/client/model/StudentLoanRepaymentModel.java +++ b/src/main/java/com/plaid/client/model/StudentLoanRepaymentModel.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Student loan repayment information used to configure Sandbox test data for the Liabilities product */ @ApiModel(description = "Student loan repayment information used to configure Sandbox test data for the Liabilities product") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class StudentLoanRepaymentModel { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) diff --git a/src/main/java/com/plaid/client/model/StudentLoanStatus.java b/src/main/java/com/plaid/client/model/StudentLoanStatus.java index c993671b4..e246d5eda 100644 --- a/src/main/java/com/plaid/client/model/StudentLoanStatus.java +++ b/src/main/java/com/plaid/client/model/StudentLoanStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An object representing the status of the student loan */ @ApiModel(description = "An object representing the status of the student loan") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class StudentLoanStatus { public static final String SERIALIZED_NAME_END_DATE = "end_date"; @SerializedName(SERIALIZED_NAME_END_DATE) diff --git a/src/main/java/com/plaid/client/model/StudentRepaymentPlan.java b/src/main/java/com/plaid/client/model/StudentRepaymentPlan.java index 967d31700..c8636fb61 100644 --- a/src/main/java/com/plaid/client/model/StudentRepaymentPlan.java +++ b/src/main/java/com/plaid/client/model/StudentRepaymentPlan.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object representing the repayment plan for the student loan */ @ApiModel(description = "An object representing the repayment plan for the student loan") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class StudentRepaymentPlan { public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) diff --git a/src/main/java/com/plaid/client/model/SweepFailure.java b/src/main/java/com/plaid/client/model/SweepFailure.java index b58b52b24..aa609a957 100644 --- a/src/main/java/com/plaid/client/model/SweepFailure.java +++ b/src/main/java/com/plaid/client/model/SweepFailure.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The failure reason if the status for a sweep is `\"failed\"` or `\"returned\"`. Null value otherwise. */ @ApiModel(description = "The failure reason if the status for a sweep is `\"failed\"` or `\"returned\"`. Null value otherwise.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SweepFailure { public static final String SERIALIZED_NAME_FAILURE_CODE = "failure_code"; @SerializedName(SERIALIZED_NAME_FAILURE_CODE) diff --git a/src/main/java/com/plaid/client/model/SweepStatus.java b/src/main/java/com/plaid/client/model/SweepStatus.java index 033ac7155..3104f9bd1 100644 --- a/src/main/java/com/plaid/client/model/SweepStatus.java +++ b/src/main/java/com/plaid/client/model/SweepStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/SweepTrigger.java b/src/main/java/com/plaid/client/model/SweepTrigger.java index 1770b32f8..411bad1bb 100644 --- a/src/main/java/com/plaid/client/model/SweepTrigger.java +++ b/src/main/java/com/plaid/client/model/SweepTrigger.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/SyncUpdatesAvailableWebhook.java b/src/main/java/com/plaid/client/model/SyncUpdatesAvailableWebhook.java index 7c81e5747..b784c4005 100644 --- a/src/main/java/com/plaid/client/model/SyncUpdatesAvailableWebhook.java +++ b/src/main/java/com/plaid/client/model/SyncUpdatesAvailableWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when an Item's transactions change. This can be due to any event resulting in new changes, such as an initial 30-day transactions fetch upon the initialization of an Item with transactions, the backfill of historical transactions that occurs shortly after, or when changes are populated from a regularly-scheduled transactions update job. It is recommended to listen for the `SYNC_UPDATES_AVAILABLE` webhook when using the `/transactions/sync` endpoint. Note that when using `/transactions/sync` the older webhooks `INITIAL_UPDATE`, `HISTORICAL_UPDATE`, `DEFAULT_UPDATE`, and `TRANSACTIONS_REMOVED`, which are intended for use with `/transactions/get`, will also continue to be sent in order to maintain backwards compatibility. It is not necessary to listen for and respond to those webhooks when using `/transactions/sync`. After receipt of this webhook, the new changes can be fetched for the Item from `/transactions/sync`. Note that to receive this webhook for an Item, `/transactions/sync` must have been called at least once on that Item. This means that, unlike the `INITIAL_UPDATE` and `HISTORICAL_UPDATE` webhooks, it will not fire immediately upon Item creation. If `/transactions/sync` is called on an Item that was *not* initialized with Transactions, the webhook will fire twice: once the first 30 days of transactions data has been fetched, and a second time when all available historical transactions data has been fetched. This webhook will fire in the Sandbox environment as it would in Production. It can also be manually triggered in Sandbox by calling `/sandbox/item/fire_webhook`. */ @ApiModel(description = "Fired when an Item's transactions change. This can be due to any event resulting in new changes, such as an initial 30-day transactions fetch upon the initialization of an Item with transactions, the backfill of historical transactions that occurs shortly after, or when changes are populated from a regularly-scheduled transactions update job. It is recommended to listen for the `SYNC_UPDATES_AVAILABLE` webhook when using the `/transactions/sync` endpoint. Note that when using `/transactions/sync` the older webhooks `INITIAL_UPDATE`, `HISTORICAL_UPDATE`, `DEFAULT_UPDATE`, and `TRANSACTIONS_REMOVED`, which are intended for use with `/transactions/get`, will also continue to be sent in order to maintain backwards compatibility. It is not necessary to listen for and respond to those webhooks when using `/transactions/sync`. After receipt of this webhook, the new changes can be fetched for the Item from `/transactions/sync`. Note that to receive this webhook for an Item, `/transactions/sync` must have been called at least once on that Item. This means that, unlike the `INITIAL_UPDATE` and `HISTORICAL_UPDATE` webhooks, it will not fire immediately upon Item creation. If `/transactions/sync` is called on an Item that was *not* initialized with Transactions, the webhook will fire twice: once the first 30 days of transactions data has been fetched, and a second time when all available historical transactions data has been fetched. This webhook will fire in the Sandbox environment as it would in Production. It can also be manually triggered in Sandbox by calling `/sandbox/item/fire_webhook`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SyncUpdatesAvailableWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/SyntheticFraud.java b/src/main/java/com/plaid/client/model/SyntheticFraud.java index 7e58867c2..fd0422dbf 100644 --- a/src/main/java/com/plaid/client/model/SyntheticFraud.java +++ b/src/main/java/com/plaid/client/model/SyntheticFraud.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class SyntheticFraud { public static final String SERIALIZED_NAME_RISK_LEVEL = "risk_level"; @SerializedName(SERIALIZED_NAME_RISK_LEVEL) diff --git a/src/main/java/com/plaid/client/model/Taxform.java b/src/main/java/com/plaid/client/model/Taxform.java index 42a534061..68259fe36 100644 --- a/src/main/java/com/plaid/client/model/Taxform.java +++ b/src/main/java/com/plaid/client/model/Taxform.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Data about an official document used to report the user's income to the IRS. */ @ApiModel(description = "Data about an official document used to report the user's income to the IRS.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Taxform { public static final String SERIALIZED_NAME_DOC_ID = "doc_id"; @SerializedName(SERIALIZED_NAME_DOC_ID) diff --git a/src/main/java/com/plaid/client/model/TaxpayerID.java b/src/main/java/com/plaid/client/model/TaxpayerID.java index d96ca8183..3df37e045 100644 --- a/src/main/java/com/plaid/client/model/TaxpayerID.java +++ b/src/main/java/com/plaid/client/model/TaxpayerID.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TaxpayerID { public static final String SERIALIZED_NAME_ID_TYPE = "id_type"; @SerializedName(SERIALIZED_NAME_ID_TYPE) diff --git a/src/main/java/com/plaid/client/model/TaxpayerIdentifier.java b/src/main/java/com/plaid/client/model/TaxpayerIdentifier.java index 1d47d9bfd..ce62c6ca1 100644 --- a/src/main/java/com/plaid/client/model/TaxpayerIdentifier.java +++ b/src/main/java/com/plaid/client/model/TaxpayerIdentifier.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Information about the Taxpayer identification values assigned to the individual or legal entity. */ @ApiModel(description = "Information about the Taxpayer identification values assigned to the individual or legal entity.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TaxpayerIdentifier { public static final String SERIALIZED_NAME_TAXPAYER_IDENTIFIER_TYPE = "TaxpayerIdentifierType"; @SerializedName(SERIALIZED_NAME_TAXPAYER_IDENTIFIER_TYPE) diff --git a/src/main/java/com/plaid/client/model/TaxpayerIdentifierType.java b/src/main/java/com/plaid/client/model/TaxpayerIdentifierType.java index f8945da70..57c4a7217 100644 --- a/src/main/java/com/plaid/client/model/TaxpayerIdentifierType.java +++ b/src/main/java/com/plaid/client/model/TaxpayerIdentifierType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TaxpayerIdentifiers.java b/src/main/java/com/plaid/client/model/TaxpayerIdentifiers.java index 4346b1ae2..53bc24c58 100644 --- a/src/main/java/com/plaid/client/model/TaxpayerIdentifiers.java +++ b/src/main/java/com/plaid/client/model/TaxpayerIdentifiers.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The collection of `TAXPAYER_IDENTIFICATION` elements */ @ApiModel(description = "The collection of `TAXPAYER_IDENTIFICATION` elements") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TaxpayerIdentifiers { public static final String SERIALIZED_NAME_T_A_X_P_A_Y_E_R_I_D_E_N_T_I_F_I_E_R = "TAXPAYER_IDENTIFIER"; @SerializedName(SERIALIZED_NAME_T_A_X_P_A_Y_E_R_I_D_E_N_T_I_F_I_E_R) diff --git a/src/main/java/com/plaid/client/model/Total.java b/src/main/java/com/plaid/client/model/Total.java index 97646168b..e6c1446b6 100644 --- a/src/main/java/com/plaid/client/model/Total.java +++ b/src/main/java/com/plaid/client/model/Total.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An object representing both the current pay period and year to date amount for a category. */ @ApiModel(description = "An object representing both the current pay period and year to date amount for a category.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Total { public static final String SERIALIZED_NAME_CANONICAL_DESCRIPTION = "canonical_description"; @SerializedName(SERIALIZED_NAME_CANONICAL_DESCRIPTION) diff --git a/src/main/java/com/plaid/client/model/TotalCanonicalDescription.java b/src/main/java/com/plaid/client/model/TotalCanonicalDescription.java index b8f22822e..ac9597d4d 100644 --- a/src/main/java/com/plaid/client/model/TotalCanonicalDescription.java +++ b/src/main/java/com/plaid/client/model/TotalCanonicalDescription.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TotalInflowAmount.java b/src/main/java/com/plaid/client/model/TotalInflowAmount.java index 316e49dc8..87777160c 100644 --- a/src/main/java/com/plaid/client/model/TotalInflowAmount.java +++ b/src/main/java/com/plaid/client/model/TotalInflowAmount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Total amount of debit transactions into the account in the time period of the report. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account. */ @ApiModel(description = "Total amount of debit transactions into the account in the time period of the report. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TotalInflowAmount { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/TotalInflowAmount30d.java b/src/main/java/com/plaid/client/model/TotalInflowAmount30d.java index 12cc32d53..e8d5b4ebd 100644 --- a/src/main/java/com/plaid/client/model/TotalInflowAmount30d.java +++ b/src/main/java/com/plaid/client/model/TotalInflowAmount30d.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Total amount of debit transactions into the account in the last 30 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account. */ @ApiModel(description = "Total amount of debit transactions into the account in the last 30 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TotalInflowAmount30d { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/TotalInflowAmount60d.java b/src/main/java/com/plaid/client/model/TotalInflowAmount60d.java index 96e5d364e..87fa28194 100644 --- a/src/main/java/com/plaid/client/model/TotalInflowAmount60d.java +++ b/src/main/java/com/plaid/client/model/TotalInflowAmount60d.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Total amount of debit transactions into the account in the last 60 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account. */ @ApiModel(description = "Total amount of debit transactions into the account in the last 60 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TotalInflowAmount60d { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/TotalInflowAmount90d.java b/src/main/java/com/plaid/client/model/TotalInflowAmount90d.java index 56ad3f882..ba9790495 100644 --- a/src/main/java/com/plaid/client/model/TotalInflowAmount90d.java +++ b/src/main/java/com/plaid/client/model/TotalInflowAmount90d.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Total amount of debit transactions into the account in the last 90 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account. */ @ApiModel(description = "Total amount of debit transactions into the account in the last 90 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TotalInflowAmount90d { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/TotalMonthlyIncomeInsights.java b/src/main/java/com/plaid/client/model/TotalMonthlyIncomeInsights.java index 0e036582c..1f3a7849f 100644 --- a/src/main/java/com/plaid/client/model/TotalMonthlyIncomeInsights.java +++ b/src/main/java/com/plaid/client/model/TotalMonthlyIncomeInsights.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Details about about the total monthly income */ @ApiModel(description = "Details about about the total monthly income") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TotalMonthlyIncomeInsights { public static final String SERIALIZED_NAME_BASELINE_AMOUNT = "baseline_amount"; @SerializedName(SERIALIZED_NAME_BASELINE_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/TotalOutflowAmount.java b/src/main/java/com/plaid/client/model/TotalOutflowAmount.java index cbb33f4ff..5157ab465 100644 --- a/src/main/java/com/plaid/client/model/TotalOutflowAmount.java +++ b/src/main/java/com/plaid/client/model/TotalOutflowAmount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Total amount of credit transactions into the account in the time period of the report. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account. */ @ApiModel(description = "Total amount of credit transactions into the account in the time period of the report. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TotalOutflowAmount { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/TotalOutflowAmount30d.java b/src/main/java/com/plaid/client/model/TotalOutflowAmount30d.java index dfe91e641..4f8474891 100644 --- a/src/main/java/com/plaid/client/model/TotalOutflowAmount30d.java +++ b/src/main/java/com/plaid/client/model/TotalOutflowAmount30d.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Total amount of credit transactions into the account in the last 30 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account. */ @ApiModel(description = "Total amount of credit transactions into the account in the last 30 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TotalOutflowAmount30d { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/TotalOutflowAmount60d.java b/src/main/java/com/plaid/client/model/TotalOutflowAmount60d.java index 6f0a57373..c1352432f 100644 --- a/src/main/java/com/plaid/client/model/TotalOutflowAmount60d.java +++ b/src/main/java/com/plaid/client/model/TotalOutflowAmount60d.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Total amount of credit transactions into the account in the last 60 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account. */ @ApiModel(description = "Total amount of credit transactions into the account in the last 60 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TotalOutflowAmount60d { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/TotalOutflowAmount90d.java b/src/main/java/com/plaid/client/model/TotalOutflowAmount90d.java index c28d318a2..bdffc27e9 100644 --- a/src/main/java/com/plaid/client/model/TotalOutflowAmount90d.java +++ b/src/main/java/com/plaid/client/model/TotalOutflowAmount90d.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Total amount of credit transactions into the account in the last 90 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account. */ @ApiModel(description = "Total amount of credit transactions into the account in the last 90 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TotalOutflowAmount90d { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/TotalReportInflowAmount.java b/src/main/java/com/plaid/client/model/TotalReportInflowAmount.java index 81ba6b7f9..546e6596e 100644 --- a/src/main/java/com/plaid/client/model/TotalReportInflowAmount.java +++ b/src/main/java/com/plaid/client/model/TotalReportInflowAmount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Total amount of debit transactions into the report's accounts in the time period of the report. This field only takes into account USD transactions from the accounts. */ @ApiModel(description = "Total amount of debit transactions into the report's accounts in the time period of the report. This field only takes into account USD transactions from the accounts.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TotalReportInflowAmount { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/TotalReportInflowAmount30d.java b/src/main/java/com/plaid/client/model/TotalReportInflowAmount30d.java index fc48f78e6..f04c1471b 100644 --- a/src/main/java/com/plaid/client/model/TotalReportInflowAmount30d.java +++ b/src/main/java/com/plaid/client/model/TotalReportInflowAmount30d.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Total amount of debit transactions into the report's accounts in the last 30 days. This field only takes into account USD transactions from the accounts. */ @ApiModel(description = "Total amount of debit transactions into the report's accounts in the last 30 days. This field only takes into account USD transactions from the accounts.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TotalReportInflowAmount30d { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/TotalReportInflowAmount60d.java b/src/main/java/com/plaid/client/model/TotalReportInflowAmount60d.java index 94fed5564..87c1d4e8a 100644 --- a/src/main/java/com/plaid/client/model/TotalReportInflowAmount60d.java +++ b/src/main/java/com/plaid/client/model/TotalReportInflowAmount60d.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Total amount of debit transactions into the report's accounts in the last 60 days. This field only takes into account USD transactions from the accounts. */ @ApiModel(description = "Total amount of debit transactions into the report's accounts in the last 60 days. This field only takes into account USD transactions from the accounts.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TotalReportInflowAmount60d { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/TotalReportInflowAmount90d.java b/src/main/java/com/plaid/client/model/TotalReportInflowAmount90d.java index e77c74120..13ee84530 100644 --- a/src/main/java/com/plaid/client/model/TotalReportInflowAmount90d.java +++ b/src/main/java/com/plaid/client/model/TotalReportInflowAmount90d.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Total amount of debit transactions into the report's account in the last 90 days. This field only takes into account USD transactions from the accounts. */ @ApiModel(description = "Total amount of debit transactions into the report's account in the last 90 days. This field only takes into account USD transactions from the accounts.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TotalReportInflowAmount90d { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/TotalReportOutflowAmount.java b/src/main/java/com/plaid/client/model/TotalReportOutflowAmount.java index 12060c9bc..9093faee3 100644 --- a/src/main/java/com/plaid/client/model/TotalReportOutflowAmount.java +++ b/src/main/java/com/plaid/client/model/TotalReportOutflowAmount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Total amount of credit transactions into the report's accounts in the time period of the report. This field only takes into account USD transactions from the accounts. */ @ApiModel(description = "Total amount of credit transactions into the report's accounts in the time period of the report. This field only takes into account USD transactions from the accounts.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TotalReportOutflowAmount { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/TotalReportOutflowAmount30d.java b/src/main/java/com/plaid/client/model/TotalReportOutflowAmount30d.java index adb509582..4698c0480 100644 --- a/src/main/java/com/plaid/client/model/TotalReportOutflowAmount30d.java +++ b/src/main/java/com/plaid/client/model/TotalReportOutflowAmount30d.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Total amount of credit transactions into the report's accounts in the last 30 days. This field only takes into account USD transactions from the accounts. */ @ApiModel(description = "Total amount of credit transactions into the report's accounts in the last 30 days. This field only takes into account USD transactions from the accounts.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TotalReportOutflowAmount30d { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/TotalReportOutflowAmount60d.java b/src/main/java/com/plaid/client/model/TotalReportOutflowAmount60d.java index 7fb3487c5..c88ab7024 100644 --- a/src/main/java/com/plaid/client/model/TotalReportOutflowAmount60d.java +++ b/src/main/java/com/plaid/client/model/TotalReportOutflowAmount60d.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Total amount of credit transactions into the report's accounts in the last 60 days. This field only takes into account USD transactions from the accounts. */ @ApiModel(description = "Total amount of credit transactions into the report's accounts in the last 60 days. This field only takes into account USD transactions from the accounts.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TotalReportOutflowAmount60d { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/TotalReportOutflowAmount90d.java b/src/main/java/com/plaid/client/model/TotalReportOutflowAmount90d.java index 994cb2946..52258b910 100644 --- a/src/main/java/com/plaid/client/model/TotalReportOutflowAmount90d.java +++ b/src/main/java/com/plaid/client/model/TotalReportOutflowAmount90d.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Total amount of credit transactions into the report's accounts in the last 90 days. This field only takes into account USD transactions from the accounts. */ @ApiModel(description = "Total amount of credit transactions into the report's accounts in the last 90 days. This field only takes into account USD transactions from the accounts.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TotalReportOutflowAmount90d { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/Transaction.java b/src/main/java/com/plaid/client/model/Transaction.java index cd6aba7d7..3b7ea0ace 100644 --- a/src/main/java/com/plaid/client/model/Transaction.java +++ b/src/main/java/com/plaid/client/model/Transaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -41,7 +41,7 @@ * A representation of a transaction */ @ApiModel(description = "A representation of a transaction") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Transaction { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/TransactionAllOf.java b/src/main/java/com/plaid/client/model/TransactionAllOf.java index 0f9589b0f..fe33bee7e 100644 --- a/src/main/java/com/plaid/client/model/TransactionAllOf.java +++ b/src/main/java/com/plaid/client/model/TransactionAllOf.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -36,7 +36,7 @@ /** * TransactionAllOf */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionAllOf { public static final String SERIALIZED_NAME_AUTHORIZED_DATE = "authorized_date"; @SerializedName(SERIALIZED_NAME_AUTHORIZED_DATE) diff --git a/src/main/java/com/plaid/client/model/TransactionBase.java b/src/main/java/com/plaid/client/model/TransactionBase.java index 018523a25..344df18b5 100644 --- a/src/main/java/com/plaid/client/model/TransactionBase.java +++ b/src/main/java/com/plaid/client/model/TransactionBase.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * A representation of a transaction */ @ApiModel(description = "A representation of a transaction") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionBase { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/TransactionCode.java b/src/main/java/com/plaid/client/model/TransactionCode.java index 8a636263e..e94f07360 100644 --- a/src/main/java/com/plaid/client/model/TransactionCode.java +++ b/src/main/java/com/plaid/client/model/TransactionCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransactionCounterparty.java b/src/main/java/com/plaid/client/model/TransactionCounterparty.java index 4acb09d02..c9ca37910 100644 --- a/src/main/java/com/plaid/client/model/TransactionCounterparty.java +++ b/src/main/java/com/plaid/client/model/TransactionCounterparty.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The counterparty, such as the merchant or financial institution, is extracted by Plaid from the raw description. */ @ApiModel(description = "The counterparty, such as the merchant or financial institution, is extracted by Plaid from the raw description.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionCounterparty { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/TransactionData.java b/src/main/java/com/plaid/client/model/TransactionData.java index 8f9cfe704..7e29ca0b8 100644 --- a/src/main/java/com/plaid/client/model/TransactionData.java +++ b/src/main/java/com/plaid/client/model/TransactionData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Information about the matched direct deposit transaction used to verify a user's payroll information. */ @ApiModel(description = "Information about the matched direct deposit transaction used to verify a user's payroll information.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionData { public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) diff --git a/src/main/java/com/plaid/client/model/TransactionOverride.java b/src/main/java/com/plaid/client/model/TransactionOverride.java index 47313375e..3f9b78684 100644 --- a/src/main/java/com/plaid/client/model/TransactionOverride.java +++ b/src/main/java/com/plaid/client/model/TransactionOverride.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Data to populate as test transaction data. If not specified, random transactions will be generated instead. */ @ApiModel(description = "Data to populate as test transaction data. If not specified, random transactions will be generated instead.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionOverride { public static final String SERIALIZED_NAME_DATE_TRANSACTED = "date_transacted"; @SerializedName(SERIALIZED_NAME_DATE_TRANSACTED) diff --git a/src/main/java/com/plaid/client/model/TransactionStream.java b/src/main/java/com/plaid/client/model/TransactionStream.java index 3bd8b05b8..4376a1116 100644 --- a/src/main/java/com/plaid/client/model/TransactionStream.java +++ b/src/main/java/com/plaid/client/model/TransactionStream.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -36,7 +36,7 @@ * A grouping of related transactions */ @ApiModel(description = "A grouping of related transactions") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionStream { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/TransactionStreamAmount.java b/src/main/java/com/plaid/client/model/TransactionStreamAmount.java index 77c83082d..89067f413 100644 --- a/src/main/java/com/plaid/client/model/TransactionStreamAmount.java +++ b/src/main/java/com/plaid/client/model/TransactionStreamAmount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Object with data pertaining to an amount on the transaction stream. */ @ApiModel(description = "Object with data pertaining to an amount on the transaction stream.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionStreamAmount { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) diff --git a/src/main/java/com/plaid/client/model/TransactionStreamStatus.java b/src/main/java/com/plaid/client/model/TransactionStreamStatus.java index 732250d92..5b0d791e3 100644 --- a/src/main/java/com/plaid/client/model/TransactionStreamStatus.java +++ b/src/main/java/com/plaid/client/model/TransactionStreamStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransactionsCategoryRule.java b/src/main/java/com/plaid/client/model/TransactionsCategoryRule.java index 8a779aedd..dd8038459 100644 --- a/src/main/java/com/plaid/client/model/TransactionsCategoryRule.java +++ b/src/main/java/com/plaid/client/model/TransactionsCategoryRule.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,23 +30,31 @@ * A representation of a transactions category rule. */ @ApiModel(description = "A representation of a transactions category rule.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsCategoryRule { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; - public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; - @SerializedName(SERIALIZED_NAME_ITEM_ID) - private String itemId; + public static final String SERIALIZED_NAME_USER_ID = "user_id"; + @SerializedName(SERIALIZED_NAME_USER_ID) + private String userId; public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) private OffsetDateTime createdAt; - public static final String SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY = "personal_finance_category"; - @SerializedName(SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY) - private String personalFinanceCategory; + public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at"; + @SerializedName(SERIALIZED_NAME_UPDATED_AT) + private OffsetDateTime updatedAt; + + public static final String SERIALIZED_NAME_PFC_PRIMARY_CATEGORY = "pfc_primary_category"; + @SerializedName(SERIALIZED_NAME_PFC_PRIMARY_CATEGORY) + private String pfcPrimaryCategory; + + public static final String SERIALIZED_NAME_PFC_DETAILED_CATEGORY = "pfc_detailed_category"; + @SerializedName(SERIALIZED_NAME_PFC_DETAILED_CATEGORY) + private String pfcDetailedCategory; public static final String SERIALIZED_NAME_RULE_DETAILS = "rule_details"; @SerializedName(SERIALIZED_NAME_RULE_DETAILS) @@ -76,26 +84,26 @@ public void setId(String id) { } - public TransactionsCategoryRule itemId(String itemId) { + public TransactionsCategoryRule userId(String userId) { - this.itemId = itemId; + this.userId = userId; return this; } /** - * A unique identifier of the Item the rule was created for. - * @return itemId + * The Plaid-generated unique identifier for the end user this rule belongs to. + * @return userId **/ @javax.annotation.Nullable - @ApiModelProperty(value = "A unique identifier of the Item the rule was created for.") + @ApiModelProperty(value = "The Plaid-generated unique identifier for the end user this rule belongs to.") - public String getItemId() { - return itemId; + public String getUserId() { + return userId; } - public void setItemId(String itemId) { - this.itemId = itemId; + public void setUserId(String userId) { + this.userId = userId; } @@ -122,26 +130,72 @@ public void setCreatedAt(OffsetDateTime createdAt) { } - public TransactionsCategoryRule personalFinanceCategory(String personalFinanceCategory) { + public TransactionsCategoryRule updatedAt(OffsetDateTime updatedAt) { + + this.updatedAt = updatedAt; + return this; + } + + /** + * Date and time when a rule was last updated in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format ( `YYYY-MM-DDTHH:mm:ssZ` ). + * @return updatedAt + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Date and time when a rule was last updated in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format ( `YYYY-MM-DDTHH:mm:ssZ` ). ") + + public OffsetDateTime getUpdatedAt() { + return updatedAt; + } + + + public void setUpdatedAt(OffsetDateTime updatedAt) { + this.updatedAt = updatedAt; + } + + + public TransactionsCategoryRule pfcPrimaryCategory(String pfcPrimaryCategory) { + + this.pfcPrimaryCategory = pfcPrimaryCategory; + return this; + } + + /** + * A personal finance primary category. See the [taxonomy csv file](https://plaid.com/documents/pfc-taxonomy-all.csv) for a full list of personal finance categories. + * @return pfcPrimaryCategory + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "A personal finance primary category. See the [taxonomy csv file](https://plaid.com/documents/pfc-taxonomy-all.csv) for a full list of personal finance categories. ") + + public String getPfcPrimaryCategory() { + return pfcPrimaryCategory; + } + + + public void setPfcPrimaryCategory(String pfcPrimaryCategory) { + this.pfcPrimaryCategory = pfcPrimaryCategory; + } + + + public TransactionsCategoryRule pfcDetailedCategory(String pfcDetailedCategory) { - this.personalFinanceCategory = personalFinanceCategory; + this.pfcDetailedCategory = pfcDetailedCategory; return this; } /** - * Personal finance category unique identifier. In the personal finance category taxonomy, this field is represented by the detailed category field. - * @return personalFinanceCategory + * A personal finance detailed category. See the [taxonomy csv file](https://plaid.com/documents/pfc-taxonomy-all.csv) for a full list of personal finance categories. + * @return pfcDetailedCategory **/ @javax.annotation.Nullable - @ApiModelProperty(value = "Personal finance category unique identifier. In the personal finance category taxonomy, this field is represented by the detailed category field. ") + @ApiModelProperty(value = "A personal finance detailed category. See the [taxonomy csv file](https://plaid.com/documents/pfc-taxonomy-all.csv) for a full list of personal finance categories. ") - public String getPersonalFinanceCategory() { - return personalFinanceCategory; + public String getPfcDetailedCategory() { + return pfcDetailedCategory; } - public void setPersonalFinanceCategory(String personalFinanceCategory) { - this.personalFinanceCategory = personalFinanceCategory; + public void setPfcDetailedCategory(String pfcDetailedCategory) { + this.pfcDetailedCategory = pfcDetailedCategory; } @@ -178,15 +232,17 @@ public boolean equals(Object o) { } TransactionsCategoryRule transactionsCategoryRule = (TransactionsCategoryRule) o; return Objects.equals(this.id, transactionsCategoryRule.id) && - Objects.equals(this.itemId, transactionsCategoryRule.itemId) && + Objects.equals(this.userId, transactionsCategoryRule.userId) && Objects.equals(this.createdAt, transactionsCategoryRule.createdAt) && - Objects.equals(this.personalFinanceCategory, transactionsCategoryRule.personalFinanceCategory) && + Objects.equals(this.updatedAt, transactionsCategoryRule.updatedAt) && + Objects.equals(this.pfcPrimaryCategory, transactionsCategoryRule.pfcPrimaryCategory) && + Objects.equals(this.pfcDetailedCategory, transactionsCategoryRule.pfcDetailedCategory) && Objects.equals(this.ruleDetails, transactionsCategoryRule.ruleDetails); } @Override public int hashCode() { - return Objects.hash(id, itemId, createdAt, personalFinanceCategory, ruleDetails); + return Objects.hash(id, userId, createdAt, updatedAt, pfcPrimaryCategory, pfcDetailedCategory, ruleDetails); } @Override @@ -194,9 +250,11 @@ public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsCategoryRule {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); - sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); + sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n"); - sb.append(" personalFinanceCategory: ").append(toIndentedString(personalFinanceCategory)).append("\n"); + sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n"); + sb.append(" pfcPrimaryCategory: ").append(toIndentedString(pfcPrimaryCategory)).append("\n"); + sb.append(" pfcDetailedCategory: ").append(toIndentedString(pfcDetailedCategory)).append("\n"); sb.append(" ruleDetails: ").append(toIndentedString(ruleDetails)).append("\n"); sb.append("}"); return sb.toString(); diff --git a/src/main/java/com/plaid/client/model/TransactionsEnhanceGetRequest.java b/src/main/java/com/plaid/client/model/TransactionsEnhanceGetRequest.java index 5cdf45dfb..9e71437e5 100644 --- a/src/main/java/com/plaid/client/model/TransactionsEnhanceGetRequest.java +++ b/src/main/java/com/plaid/client/model/TransactionsEnhanceGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * TransactionsEnhanceGetRequest defines the request schema for `/transactions/enhance`. */ @ApiModel(description = "TransactionsEnhanceGetRequest defines the request schema for `/transactions/enhance`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsEnhanceGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransactionsEnhanceGetResponse.java b/src/main/java/com/plaid/client/model/TransactionsEnhanceGetResponse.java index bf88dd263..837aff5a0 100644 --- a/src/main/java/com/plaid/client/model/TransactionsEnhanceGetResponse.java +++ b/src/main/java/com/plaid/client/model/TransactionsEnhanceGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * TransactionsEnhanceGetResponse defines the response schema for `/beta/transactions/v1/enhance`. */ @ApiModel(description = "TransactionsEnhanceGetResponse defines the response schema for `/beta/transactions/v1/enhance`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsEnhanceGetResponse { public static final String SERIALIZED_NAME_ENHANCED_TRANSACTIONS = "enhanced_transactions"; @SerializedName(SERIALIZED_NAME_ENHANCED_TRANSACTIONS) diff --git a/src/main/java/com/plaid/client/model/TransactionsEnrichRequest.java b/src/main/java/com/plaid/client/model/TransactionsEnrichRequest.java index 91775870f..fae4bf74f 100644 --- a/src/main/java/com/plaid/client/model/TransactionsEnrichRequest.java +++ b/src/main/java/com/plaid/client/model/TransactionsEnrichRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * TransactionsEnrichRequest defines the request schema for `/transactions/enrich`. */ @ApiModel(description = "TransactionsEnrichRequest defines the request schema for `/transactions/enrich`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsEnrichRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransactionsEnrichRequestOptions.java b/src/main/java/com/plaid/client/model/TransactionsEnrichRequestOptions.java index 0588eaba2..76913f25e 100644 --- a/src/main/java/com/plaid/client/model/TransactionsEnrichRequestOptions.java +++ b/src/main/java/com/plaid/client/model/TransactionsEnrichRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An optional object to be used with the request. */ @ApiModel(description = "An optional object to be used with the request.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsEnrichRequestOptions { public static final String SERIALIZED_NAME_INCLUDE_LEGACY_CATEGORY = "include_legacy_category"; @SerializedName(SERIALIZED_NAME_INCLUDE_LEGACY_CATEGORY) diff --git a/src/main/java/com/plaid/client/model/TransactionsEnrichResponse.java b/src/main/java/com/plaid/client/model/TransactionsEnrichResponse.java index b9b9f8453..514422b6a 100644 --- a/src/main/java/com/plaid/client/model/TransactionsEnrichResponse.java +++ b/src/main/java/com/plaid/client/model/TransactionsEnrichResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * TransactionsEnrichResponse defines the response schema for `/transactions/enrich`. */ @ApiModel(description = "TransactionsEnrichResponse defines the response schema for `/transactions/enrich`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsEnrichResponse { public static final String SERIALIZED_NAME_ENRICHED_TRANSACTIONS = "enriched_transactions"; @SerializedName(SERIALIZED_NAME_ENRICHED_TRANSACTIONS) diff --git a/src/main/java/com/plaid/client/model/TransactionsGetRequest.java b/src/main/java/com/plaid/client/model/TransactionsGetRequest.java index 142933e0f..3e73c7701 100644 --- a/src/main/java/com/plaid/client/model/TransactionsGetRequest.java +++ b/src/main/java/com/plaid/client/model/TransactionsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * TransactionsGetRequest defines the request schema for `/transactions/get` */ @ApiModel(description = "TransactionsGetRequest defines the request schema for `/transactions/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransactionsGetRequestOptions.java b/src/main/java/com/plaid/client/model/TransactionsGetRequestOptions.java index 8856ef2e1..69b68d770 100644 --- a/src/main/java/com/plaid/client/model/TransactionsGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/TransactionsGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * An optional object to be used with the request. If specified, `options` must not be `null`. */ @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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) diff --git a/src/main/java/com/plaid/client/model/TransactionsGetResponse.java b/src/main/java/com/plaid/client/model/TransactionsGetResponse.java index 2ab971bef..e787237b2 100644 --- a/src/main/java/com/plaid/client/model/TransactionsGetResponse.java +++ b/src/main/java/com/plaid/client/model/TransactionsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * TransactionsGetResponse defines the response schema for `/transactions/get` */ @ApiModel(description = "TransactionsGetResponse defines the response schema for `/transactions/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsGetResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) diff --git a/src/main/java/com/plaid/client/model/TransactionsRecurringCreateInput.java b/src/main/java/com/plaid/client/model/TransactionsRecurringCreateInput.java index d32cdab15..491ed48d6 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRecurringCreateInput.java +++ b/src/main/java/com/plaid/client/model/TransactionsRecurringCreateInput.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * TransactionsRecurringCreateInput defines a single input to the `/transactions/recurring/streams/create` endpoint. */ @ApiModel(description = "TransactionsRecurringCreateInput defines a single input to the `/transactions/recurring/streams/create` endpoint.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRecurringCreateInput { public static final String SERIALIZED_NAME_TRANSACTION_IDS = "transaction_ids"; @SerializedName(SERIALIZED_NAME_TRANSACTION_IDS) diff --git a/src/main/java/com/plaid/client/model/TransactionsRecurringCreateRequest.java b/src/main/java/com/plaid/client/model/TransactionsRecurringCreateRequest.java index 3f4a39b4c..b06020478 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRecurringCreateRequest.java +++ b/src/main/java/com/plaid/client/model/TransactionsRecurringCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * TransactionsRecurringCreateRequest defined the request schema for `/transactions/recurring/streams/create` endpoint. */ @ApiModel(description = "TransactionsRecurringCreateRequest defined the request schema for `/transactions/recurring/streams/create` endpoint.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRecurringCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransactionsRecurringCreateResponse.java b/src/main/java/com/plaid/client/model/TransactionsRecurringCreateResponse.java index 770d02b95..9750eec1f 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRecurringCreateResponse.java +++ b/src/main/java/com/plaid/client/model/TransactionsRecurringCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * TransactionsRecurringCreateResponse defines the response schema for the `/transactions/recurring/streams/create` endpoint. */ @ApiModel(description = "TransactionsRecurringCreateResponse defines the response schema for the `/transactions/recurring/streams/create` endpoint.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRecurringCreateResponse { public static final String SERIALIZED_NAME_ADDED_STREAMS = "added_streams"; @SerializedName(SERIALIZED_NAME_ADDED_STREAMS) diff --git a/src/main/java/com/plaid/client/model/TransactionsRecurringGetRequest.java b/src/main/java/com/plaid/client/model/TransactionsRecurringGetRequest.java index 73c659f35..e35f4f4f3 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRecurringGetRequest.java +++ b/src/main/java/com/plaid/client/model/TransactionsRecurringGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * TransactionsRecurringGetRequest defines the request schema for `/transactions/recurring/get` */ @ApiModel(description = "TransactionsRecurringGetRequest defines the request schema for `/transactions/recurring/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRecurringGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransactionsRecurringGetRequestOptions.java b/src/main/java/com/plaid/client/model/TransactionsRecurringGetRequestOptions.java index ea2a72912..0d10a5e20 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRecurringGetRequestOptions.java +++ b/src/main/java/com/plaid/client/model/TransactionsRecurringGetRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An optional object to be used with the request. If specified, `options` must not be `null`. */ @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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRecurringGetRequestOptions { public static final String SERIALIZED_NAME_INCLUDE_PERSONAL_FINANCE_CATEGORY = "include_personal_finance_category"; @SerializedName(SERIALIZED_NAME_INCLUDE_PERSONAL_FINANCE_CATEGORY) diff --git a/src/main/java/com/plaid/client/model/TransactionsRecurringGetResponse.java b/src/main/java/com/plaid/client/model/TransactionsRecurringGetResponse.java index f82c9ab9b..6bd2fd873 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRecurringGetResponse.java +++ b/src/main/java/com/plaid/client/model/TransactionsRecurringGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * TransactionsRecurringGetResponse defines the response schema for `/transactions/recurring/get` */ @ApiModel(description = "TransactionsRecurringGetResponse defines the response schema for `/transactions/recurring/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRecurringGetResponse { public static final String SERIALIZED_NAME_INFLOW_STREAMS = "inflow_streams"; @SerializedName(SERIALIZED_NAME_INFLOW_STREAMS) diff --git a/src/main/java/com/plaid/client/model/TransactionsRecurringMergeInput.java b/src/main/java/com/plaid/client/model/TransactionsRecurringMergeInput.java index 96ce29ac9..4b2f2e4ef 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRecurringMergeInput.java +++ b/src/main/java/com/plaid/client/model/TransactionsRecurringMergeInput.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * TransactionsRecurringMergeInput defines a single input to the `/transactions/recurring/streams/merge` endpoint. */ @ApiModel(description = "TransactionsRecurringMergeInput defines a single input to the `/transactions/recurring/streams/merge` endpoint.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRecurringMergeInput { public static final String SERIALIZED_NAME_STREAM_IDS = "stream_ids"; @SerializedName(SERIALIZED_NAME_STREAM_IDS) diff --git a/src/main/java/com/plaid/client/model/TransactionsRecurringMergeRequest.java b/src/main/java/com/plaid/client/model/TransactionsRecurringMergeRequest.java index 7a9760194..0144fce72 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRecurringMergeRequest.java +++ b/src/main/java/com/plaid/client/model/TransactionsRecurringMergeRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * TransactionsRecurringMergeRequest defined the request schema for `/transactions/recurring/streams/merge` endpoint. */ @ApiModel(description = "TransactionsRecurringMergeRequest defined the request schema for `/transactions/recurring/streams/merge` endpoint.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRecurringMergeRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransactionsRecurringMergeResponse.java b/src/main/java/com/plaid/client/model/TransactionsRecurringMergeResponse.java index fa7743e0d..f80066dbe 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRecurringMergeResponse.java +++ b/src/main/java/com/plaid/client/model/TransactionsRecurringMergeResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * TransactionsRecurringMergeResponse defines the response schema for the `/transactions/recurring/streams/merge` endpoint. */ @ApiModel(description = "TransactionsRecurringMergeResponse defines the response schema for the `/transactions/recurring/streams/merge` endpoint.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRecurringMergeResponse { public static final String SERIALIZED_NAME_MODIFIED_STREAMS = "modified_streams"; @SerializedName(SERIALIZED_NAME_MODIFIED_STREAMS) diff --git a/src/main/java/com/plaid/client/model/TransactionsRecurringUpdateInput.java b/src/main/java/com/plaid/client/model/TransactionsRecurringUpdateInput.java index 0a41efc85..6e2a4f5ef 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRecurringUpdateInput.java +++ b/src/main/java/com/plaid/client/model/TransactionsRecurringUpdateInput.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * TransactionsRecurringUpdateInput defines a single operation to the `/transactions/recurring/streams/update` endpoint. */ @ApiModel(description = "TransactionsRecurringUpdateInput defines a single operation to the `/transactions/recurring/streams/update` endpoint.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRecurringUpdateInput { public static final String SERIALIZED_NAME_STREAM_ID = "stream_id"; @SerializedName(SERIALIZED_NAME_STREAM_ID) diff --git a/src/main/java/com/plaid/client/model/TransactionsRecurringUpdateRequest.java b/src/main/java/com/plaid/client/model/TransactionsRecurringUpdateRequest.java index deb7856ad..2543721b0 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRecurringUpdateRequest.java +++ b/src/main/java/com/plaid/client/model/TransactionsRecurringUpdateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * TransactionsRecurringUpdateRequest defined the request schema for `/transactions/recurring/streams/update` endpoint. */ @ApiModel(description = "TransactionsRecurringUpdateRequest defined the request schema for `/transactions/recurring/streams/update` endpoint.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRecurringUpdateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransactionsRecurringUpdateResponse.java b/src/main/java/com/plaid/client/model/TransactionsRecurringUpdateResponse.java index 38b897339..503e6443b 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRecurringUpdateResponse.java +++ b/src/main/java/com/plaid/client/model/TransactionsRecurringUpdateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * TransactionsRecurringUpdateResponse defines the response schema for the `/transactions/recurring/streams/update` endpoint. */ @ApiModel(description = "TransactionsRecurringUpdateResponse defines the response schema for the `/transactions/recurring/streams/update` endpoint.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRecurringUpdateResponse { public static final String SERIALIZED_NAME_MODIFIED_STREAMS = "modified_streams"; @SerializedName(SERIALIZED_NAME_MODIFIED_STREAMS) diff --git a/src/main/java/com/plaid/client/model/TransactionsRefreshRequest.java b/src/main/java/com/plaid/client/model/TransactionsRefreshRequest.java index 1b3f20dbb..22eb20fb6 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRefreshRequest.java +++ b/src/main/java/com/plaid/client/model/TransactionsRefreshRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * TransactionsRefreshRequest defines the request schema for `/transactions/refresh` */ @ApiModel(description = "TransactionsRefreshRequest defines the request schema for `/transactions/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRefreshRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransactionsRefreshResponse.java b/src/main/java/com/plaid/client/model/TransactionsRefreshResponse.java index 3f50b301d..b42cc8afa 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRefreshResponse.java +++ b/src/main/java/com/plaid/client/model/TransactionsRefreshResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * TransactionsRefreshResponse defines the response schema for `/transactions/refresh` */ @ApiModel(description = "TransactionsRefreshResponse defines the response schema for `/transactions/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRefreshResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/TransactionsRemovedWebhook.java b/src/main/java/com/plaid/client/model/TransactionsRemovedWebhook.java index 5d44eb6a5..f6dc1cb16 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRemovedWebhook.java +++ b/src/main/java/com/plaid/client/model/TransactionsRemovedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Fired when transaction(s) for an Item are deleted. The deleted transaction IDs are included in the webhook payload. Plaid will typically check for deleted transaction data several times a day. This webhook is intended for use with `/transactions/get`; if you are using the newer `/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead. */ @ApiModel(description = "Fired when transaction(s) for an Item are deleted. The deleted transaction IDs are included in the webhook payload. Plaid will typically check for deleted transaction data several times a day. This webhook is intended for use with `/transactions/get`; if you are using the newer `/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRemovedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/TransactionsRuleDetails.java b/src/main/java/com/plaid/client/model/TransactionsRuleDetails.java index 9a64db5f1..2bdbdcda1 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRuleDetails.java +++ b/src/main/java/com/plaid/client/model/TransactionsRuleDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * A representation of transactions rule details. */ @ApiModel(description = "A representation of transactions rule details.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRuleDetails { public static final String SERIALIZED_NAME_FIELD = "field"; @SerializedName(SERIALIZED_NAME_FIELD) diff --git a/src/main/java/com/plaid/client/model/TransactionsRuleField.java b/src/main/java/com/plaid/client/model/TransactionsRuleField.java index 850bd8825..45ebecce2 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRuleField.java +++ b/src/main/java/com/plaid/client/model/TransactionsRuleField.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ public enum TransactionsRuleField { TRANSACTION_ID("TRANSACTION_ID"), - NAME("NAME"), + MERCHANT_NAME("MERCHANT_NAME"), // 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. diff --git a/src/main/java/com/plaid/client/model/TransactionsRuleType.java b/src/main/java/com/plaid/client/model/TransactionsRuleType.java index 22c7ce020..b83e76ee8 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRuleType.java +++ b/src/main/java/com/plaid/client/model/TransactionsRuleType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransactionsRulesCreateRequest.java b/src/main/java/com/plaid/client/model/TransactionsRulesCreateRequest.java index e223c37e6..99c69d841 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRulesCreateRequest.java +++ b/src/main/java/com/plaid/client/model/TransactionsRulesCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,23 +29,27 @@ * TransactionsRulesCreateRequest defines the request schema for `beta/transactions/rules/v1/create` */ @ApiModel(description = "TransactionsRulesCreateRequest defines the request schema for `beta/transactions/rules/v1/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRulesCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; - public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; - @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) - private String accessToken; - public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; - public static final String SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY = "personal_finance_category"; - @SerializedName(SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY) - private String personalFinanceCategory; + 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_PFC_PRIMARY_CATEGORY = "pfc_primary_category"; + @SerializedName(SERIALIZED_NAME_PFC_PRIMARY_CATEGORY) + private String pfcPrimaryCategory; + + public static final String SERIALIZED_NAME_PFC_DETAILED_CATEGORY = "pfc_detailed_category"; + @SerializedName(SERIALIZED_NAME_PFC_DETAILED_CATEGORY) + private String pfcDetailedCategory; public static final String SERIALIZED_NAME_RULE_DETAILS = "rule_details"; @SerializedName(SERIALIZED_NAME_RULE_DETAILS) @@ -75,70 +79,92 @@ public void setClientId(String clientId) { } - public TransactionsRulesCreateRequest accessToken(String accessToken) { + public TransactionsRulesCreateRequest secret(String secret) { - this.accessToken = accessToken; + this.secret = secret; return this; } /** - * The access token associated with the Item data is being requested for. - * @return accessToken + * 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. + * @return secret **/ - @ApiModelProperty(required = true, value = "The access token associated with the Item data is being requested for.") + @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 getAccessToken() { - return accessToken; + public String getSecret() { + return secret; } - public void setAccessToken(String accessToken) { - this.accessToken = accessToken; + public void setSecret(String secret) { + this.secret = secret; } - public TransactionsRulesCreateRequest secret(String secret) { + public TransactionsRulesCreateRequest clientUserId(String clientUserId) { - this.secret = secret; + this.clientUserId = clientUserId; return this; } /** - * 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. - * @return secret + * A unique ID representing the end user. This ID is used to associate rules with a specific user. + * @return clientUserId **/ - @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.") + @ApiModelProperty(required = true, value = "A unique ID representing the end user. This ID is used to associate rules with a specific user.") - public String getSecret() { - return secret; + public String getClientUserId() { + return clientUserId; } - public void setSecret(String secret) { - this.secret = secret; + public void setClientUserId(String clientUserId) { + this.clientUserId = clientUserId; + } + + + public TransactionsRulesCreateRequest pfcPrimaryCategory(String pfcPrimaryCategory) { + + this.pfcPrimaryCategory = pfcPrimaryCategory; + return this; + } + + /** + * A personal finance primary category. See the [taxonomy csv file](https://plaid.com/documents/pfc-taxonomy-all.csv) for a full list of personal finance categories. + * @return pfcPrimaryCategory + **/ + @ApiModelProperty(required = true, value = "A personal finance primary category. See the [taxonomy csv file](https://plaid.com/documents/pfc-taxonomy-all.csv) for a full list of personal finance categories. ") + + public String getPfcPrimaryCategory() { + return pfcPrimaryCategory; + } + + + public void setPfcPrimaryCategory(String pfcPrimaryCategory) { + this.pfcPrimaryCategory = pfcPrimaryCategory; } - public TransactionsRulesCreateRequest personalFinanceCategory(String personalFinanceCategory) { + public TransactionsRulesCreateRequest pfcDetailedCategory(String pfcDetailedCategory) { - this.personalFinanceCategory = personalFinanceCategory; + this.pfcDetailedCategory = pfcDetailedCategory; return this; } /** - * Personal finance detailed category. All implementations are encouraged to use this field instead of `category`, as it provides more meaningful and accurate categorization. See the [taxonomy csv file](https://plaid.com/documents/pfc-taxonomy-all.csv) for a full list of personal finance categories. - * @return personalFinanceCategory + * A personal finance detailed category. See the [taxonomy csv file](https://plaid.com/documents/pfc-taxonomy-all.csv) for a full list of personal finance categories. + * @return pfcDetailedCategory **/ - @ApiModelProperty(required = true, value = "Personal finance detailed category. All implementations are encouraged to use this field instead of `category`, as it provides more meaningful and accurate categorization. See the [taxonomy csv file](https://plaid.com/documents/pfc-taxonomy-all.csv) for a full list of personal finance categories. ") + @ApiModelProperty(required = true, value = "A personal finance detailed category. See the [taxonomy csv file](https://plaid.com/documents/pfc-taxonomy-all.csv) for a full list of personal finance categories. ") - public String getPersonalFinanceCategory() { - return personalFinanceCategory; + public String getPfcDetailedCategory() { + return pfcDetailedCategory; } - public void setPersonalFinanceCategory(String personalFinanceCategory) { - this.personalFinanceCategory = personalFinanceCategory; + public void setPfcDetailedCategory(String pfcDetailedCategory) { + this.pfcDetailedCategory = pfcDetailedCategory; } @@ -174,15 +200,16 @@ public boolean equals(Object o) { } TransactionsRulesCreateRequest transactionsRulesCreateRequest = (TransactionsRulesCreateRequest) o; return Objects.equals(this.clientId, transactionsRulesCreateRequest.clientId) && - Objects.equals(this.accessToken, transactionsRulesCreateRequest.accessToken) && Objects.equals(this.secret, transactionsRulesCreateRequest.secret) && - Objects.equals(this.personalFinanceCategory, transactionsRulesCreateRequest.personalFinanceCategory) && + Objects.equals(this.clientUserId, transactionsRulesCreateRequest.clientUserId) && + Objects.equals(this.pfcPrimaryCategory, transactionsRulesCreateRequest.pfcPrimaryCategory) && + Objects.equals(this.pfcDetailedCategory, transactionsRulesCreateRequest.pfcDetailedCategory) && Objects.equals(this.ruleDetails, transactionsRulesCreateRequest.ruleDetails); } @Override public int hashCode() { - return Objects.hash(clientId, accessToken, secret, personalFinanceCategory, ruleDetails); + return Objects.hash(clientId, secret, clientUserId, pfcPrimaryCategory, pfcDetailedCategory, ruleDetails); } @Override @@ -190,9 +217,10 @@ public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsRulesCreateRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); - sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); - sb.append(" personalFinanceCategory: ").append(toIndentedString(personalFinanceCategory)).append("\n"); + sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); + sb.append(" pfcPrimaryCategory: ").append(toIndentedString(pfcPrimaryCategory)).append("\n"); + sb.append(" pfcDetailedCategory: ").append(toIndentedString(pfcDetailedCategory)).append("\n"); sb.append(" ruleDetails: ").append(toIndentedString(ruleDetails)).append("\n"); sb.append("}"); return sb.toString(); diff --git a/src/main/java/com/plaid/client/model/TransactionsRulesCreateResponse.java b/src/main/java/com/plaid/client/model/TransactionsRulesCreateResponse.java index beab51de9..bd1ff2626 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRulesCreateResponse.java +++ b/src/main/java/com/plaid/client/model/TransactionsRulesCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * TransactionsRulesCreateResponse defines the response schema for `/beta/transactions/rules/v1/create` */ @ApiModel(description = "TransactionsRulesCreateResponse defines the response schema for `/beta/transactions/rules/v1/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRulesCreateResponse { public static final String SERIALIZED_NAME_RULE = "rule"; @SerializedName(SERIALIZED_NAME_RULE) diff --git a/src/main/java/com/plaid/client/model/TransactionsRulesListRequest.java b/src/main/java/com/plaid/client/model/TransactionsRulesListRequest.java index d6b083b69..dd387f6e2 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRulesListRequest.java +++ b/src/main/java/com/plaid/client/model/TransactionsRulesListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,20 +28,20 @@ * TransactionsRulesListRequest defines the request schema for `/beta/transactions/rules/v1/list` */ @ApiModel(description = "TransactionsRulesListRequest defines the request schema for `/beta/transactions/rules/v1/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRulesListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; - public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; - @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) - private String accessToken; - public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; + public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id"; + @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) + private String clientUserId; + public TransactionsRulesListRequest clientId(String clientId) { @@ -66,48 +66,48 @@ public void setClientId(String clientId) { } - public TransactionsRulesListRequest accessToken(String accessToken) { + public TransactionsRulesListRequest secret(String secret) { - this.accessToken = accessToken; + this.secret = secret; return this; } /** - * The access token associated with the Item data is being requested for. - * @return accessToken + * 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. + * @return secret **/ - @ApiModelProperty(required = true, value = "The access token associated with the Item data is being requested for.") + @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 getAccessToken() { - return accessToken; + public String getSecret() { + return secret; } - public void setAccessToken(String accessToken) { - this.accessToken = accessToken; + public void setSecret(String secret) { + this.secret = secret; } - public TransactionsRulesListRequest secret(String secret) { + public TransactionsRulesListRequest clientUserId(String clientUserId) { - this.secret = secret; + this.clientUserId = clientUserId; return this; } /** - * 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. - * @return secret + * A unique ID representing the end user whose rules should be listed. + * @return clientUserId **/ - @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.") + @ApiModelProperty(required = true, value = "A unique ID representing the end user whose rules should be listed.") - public String getSecret() { - return secret; + public String getClientUserId() { + return clientUserId; } - public void setSecret(String secret) { - this.secret = secret; + public void setClientUserId(String clientUserId) { + this.clientUserId = clientUserId; } @@ -121,13 +121,13 @@ public boolean equals(Object o) { } TransactionsRulesListRequest transactionsRulesListRequest = (TransactionsRulesListRequest) o; return Objects.equals(this.clientId, transactionsRulesListRequest.clientId) && - Objects.equals(this.accessToken, transactionsRulesListRequest.accessToken) && - Objects.equals(this.secret, transactionsRulesListRequest.secret); + Objects.equals(this.secret, transactionsRulesListRequest.secret) && + Objects.equals(this.clientUserId, transactionsRulesListRequest.clientUserId); } @Override public int hashCode() { - return Objects.hash(clientId, accessToken, secret); + return Objects.hash(clientId, secret, clientUserId); } @Override @@ -135,8 +135,8 @@ public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsRulesListRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); - sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); + sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); sb.append("}"); return sb.toString(); } diff --git a/src/main/java/com/plaid/client/model/TransactionsRulesListResponse.java b/src/main/java/com/plaid/client/model/TransactionsRulesListResponse.java index afd41d1ab..b86c4f169 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRulesListResponse.java +++ b/src/main/java/com/plaid/client/model/TransactionsRulesListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * TransactionsRulesListResponse defines the response schema for `/beta/transactions/rules/v1/list` */ @ApiModel(description = "TransactionsRulesListResponse defines the response schema for `/beta/transactions/rules/v1/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRulesListResponse { public static final String SERIALIZED_NAME_RULES = "rules"; @SerializedName(SERIALIZED_NAME_RULES) @@ -54,10 +54,10 @@ public TransactionsRulesListResponse addRulesItem(TransactionsCategoryRule rules } /** - * A list of the Item's transaction rules + * A list of the user's transaction rules * @return rules **/ - @ApiModelProperty(required = true, value = "A list of the Item's transaction rules") + @ApiModelProperty(required = true, value = "A list of the user's transaction rules") public List getRules() { return rules; diff --git a/src/main/java/com/plaid/client/model/TransactionsRulesRemoveRequest.java b/src/main/java/com/plaid/client/model/TransactionsRulesRemoveRequest.java index 7244b97e3..ce8285adc 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRulesRemoveRequest.java +++ b/src/main/java/com/plaid/client/model/TransactionsRulesRemoveRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,20 +28,20 @@ * TransactionsRulesRemoveRequest defines the request schema for `/beta/transactions/rules/v1/remove` */ @ApiModel(description = "TransactionsRulesRemoveRequest defines the request schema for `/beta/transactions/rules/v1/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRulesRemoveRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; - public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; - @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) - private String accessToken; - public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; + 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_RULE_ID = "rule_id"; @SerializedName(SERIALIZED_NAME_RULE_ID) private String ruleId; @@ -70,48 +70,48 @@ public void setClientId(String clientId) { } - public TransactionsRulesRemoveRequest accessToken(String accessToken) { + public TransactionsRulesRemoveRequest secret(String secret) { - this.accessToken = accessToken; + this.secret = secret; return this; } /** - * The access token associated with the Item data is being requested for. - * @return accessToken + * 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. + * @return secret **/ - @ApiModelProperty(required = true, value = "The access token associated with the Item data is being requested for.") + @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 getAccessToken() { - return accessToken; + public String getSecret() { + return secret; } - public void setAccessToken(String accessToken) { - this.accessToken = accessToken; + public void setSecret(String secret) { + this.secret = secret; } - public TransactionsRulesRemoveRequest secret(String secret) { + public TransactionsRulesRemoveRequest clientUserId(String clientUserId) { - this.secret = secret; + this.clientUserId = clientUserId; return this; } /** - * 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. - * @return secret + * A unique ID representing the end user the rule belongs to. + * @return clientUserId **/ - @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.") + @ApiModelProperty(required = true, value = "A unique ID representing the end user the rule belongs to.") - public String getSecret() { - return secret; + public String getClientUserId() { + return clientUserId; } - public void setSecret(String secret) { - this.secret = secret; + public void setClientUserId(String clientUserId) { + this.clientUserId = clientUserId; } @@ -147,14 +147,14 @@ public boolean equals(Object o) { } TransactionsRulesRemoveRequest transactionsRulesRemoveRequest = (TransactionsRulesRemoveRequest) o; return Objects.equals(this.clientId, transactionsRulesRemoveRequest.clientId) && - Objects.equals(this.accessToken, transactionsRulesRemoveRequest.accessToken) && Objects.equals(this.secret, transactionsRulesRemoveRequest.secret) && + Objects.equals(this.clientUserId, transactionsRulesRemoveRequest.clientUserId) && Objects.equals(this.ruleId, transactionsRulesRemoveRequest.ruleId); } @Override public int hashCode() { - return Objects.hash(clientId, accessToken, secret, ruleId); + return Objects.hash(clientId, secret, clientUserId, ruleId); } @Override @@ -162,8 +162,8 @@ public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsRulesRemoveRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); - sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); + sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); sb.append(" ruleId: ").append(toIndentedString(ruleId)).append("\n"); sb.append("}"); return sb.toString(); diff --git a/src/main/java/com/plaid/client/model/TransactionsRulesRemoveResponse.java b/src/main/java/com/plaid/client/model/TransactionsRulesRemoveResponse.java index ff4052af3..5efc736f2 100644 --- a/src/main/java/com/plaid/client/model/TransactionsRulesRemoveResponse.java +++ b/src/main/java/com/plaid/client/model/TransactionsRulesRemoveResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * TransactionsRulesRemoveResponse defines the response schema for `/beta/transactions/rules/v1/remove` */ @ApiModel(description = "TransactionsRulesRemoveResponse defines the response schema for `/beta/transactions/rules/v1/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsRulesRemoveResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/TransactionsSyncRequest.java b/src/main/java/com/plaid/client/model/TransactionsSyncRequest.java index feb384f7b..1e4f8bac4 100644 --- a/src/main/java/com/plaid/client/model/TransactionsSyncRequest.java +++ b/src/main/java/com/plaid/client/model/TransactionsSyncRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * TransactionsSyncRequest defines the request schema for `/transactions/sync` */ @ApiModel(description = "TransactionsSyncRequest defines the request schema for `/transactions/sync`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsSyncRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransactionsSyncRequestOptions.java b/src/main/java/com/plaid/client/model/TransactionsSyncRequestOptions.java index e5704920c..bbdbd06dc 100644 --- a/src/main/java/com/plaid/client/model/TransactionsSyncRequestOptions.java +++ b/src/main/java/com/plaid/client/model/TransactionsSyncRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An optional object to be used with the request. If specified, `options` must not be `null`. */ @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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsSyncRequestOptions { public static final String SERIALIZED_NAME_INCLUDE_ORIGINAL_DESCRIPTION = "include_original_description"; @SerializedName(SERIALIZED_NAME_INCLUDE_ORIGINAL_DESCRIPTION) diff --git a/src/main/java/com/plaid/client/model/TransactionsSyncResponse.java b/src/main/java/com/plaid/client/model/TransactionsSyncResponse.java index 483c542ca..d6da9384c 100644 --- a/src/main/java/com/plaid/client/model/TransactionsSyncResponse.java +++ b/src/main/java/com/plaid/client/model/TransactionsSyncResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * TransactionsSyncResponse defines the response schema for `/transactions/sync` */ @ApiModel(description = "TransactionsSyncResponse defines the response schema for `/transactions/sync`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsSyncResponse { public static final String SERIALIZED_NAME_TRANSACTIONS_UPDATE_STATUS = "transactions_update_status"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS_UPDATE_STATUS) diff --git a/src/main/java/com/plaid/client/model/TransactionsUpdateStatus.java b/src/main/java/com/plaid/client/model/TransactionsUpdateStatus.java index 58849c6ad..0e1f7fa32 100644 --- a/src/main/java/com/plaid/client/model/TransactionsUpdateStatus.java +++ b/src/main/java/com/plaid/client/model/TransactionsUpdateStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransactionsUserInsightsGetRequest.java b/src/main/java/com/plaid/client/model/TransactionsUserInsightsGetRequest.java index 5a0272eff..d2d40fea4 100644 --- a/src/main/java/com/plaid/client/model/TransactionsUserInsightsGetRequest.java +++ b/src/main/java/com/plaid/client/model/TransactionsUserInsightsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * TransactionsUserInsightsGetRequest defines the request schema for `/beta/transactions/user_insights/v1/get`. */ @ApiModel(description = "TransactionsUserInsightsGetRequest defines the request schema for `/beta/transactions/user_insights/v1/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsUserInsightsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransactionsUserInsightsGetResponse.java b/src/main/java/com/plaid/client/model/TransactionsUserInsightsGetResponse.java index de0925154..4b187a6e9 100644 --- a/src/main/java/com/plaid/client/model/TransactionsUserInsightsGetResponse.java +++ b/src/main/java/com/plaid/client/model/TransactionsUserInsightsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * TransactionsUserInsightsGetResponse defines the response schema for `/beta/transactions/user_insights/v1/get`. */ @ApiModel(description = "TransactionsUserInsightsGetResponse defines the response schema for `/beta/transactions/user_insights/v1/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransactionsUserInsightsGetResponse { public static final String SERIALIZED_NAME_USER_DATA_OVERVIEW = "user_data_overview"; @SerializedName(SERIALIZED_NAME_USER_DATA_OVERVIEW) diff --git a/src/main/java/com/plaid/client/model/Transfer.java b/src/main/java/com/plaid/client/model/Transfer.java index 6f48c3655..1c62ce852 100644 --- a/src/main/java/com/plaid/client/model/Transfer.java +++ b/src/main/java/com/plaid/client/model/Transfer.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -47,7 +47,7 @@ * Represents a transfer within the Transfers API. */ @ApiModel(description = "Represents a transfer within the Transfers API.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Transfer { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/TransferACHNetwork.java b/src/main/java/com/plaid/client/model/TransferACHNetwork.java index ed0de6e6d..cc0458954 100644 --- a/src/main/java/com/plaid/client/model/TransferACHNetwork.java +++ b/src/main/java/com/plaid/client/model/TransferACHNetwork.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferAuthorization.java b/src/main/java/com/plaid/client/model/TransferAuthorization.java index ffd93d380..24ac45950 100644 --- a/src/main/java/com/plaid/client/model/TransferAuthorization.java +++ b/src/main/java/com/plaid/client/model/TransferAuthorization.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * Contains the authorization decision for a proposed transfer. */ @ApiModel(description = "Contains the authorization decision for a proposed transfer.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferAuthorization { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/TransferAuthorizationCancelRequest.java b/src/main/java/com/plaid/client/model/TransferAuthorizationCancelRequest.java index be771a021..be100d4b2 100644 --- a/src/main/java/com/plaid/client/model/TransferAuthorizationCancelRequest.java +++ b/src/main/java/com/plaid/client/model/TransferAuthorizationCancelRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/authorization/cancel` */ @ApiModel(description = "Defines the request schema for `/transfer/authorization/cancel`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferAuthorizationCancelRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferAuthorizationCancelResponse.java b/src/main/java/com/plaid/client/model/TransferAuthorizationCancelResponse.java index c41b33faa..745e07162 100644 --- a/src/main/java/com/plaid/client/model/TransferAuthorizationCancelResponse.java +++ b/src/main/java/com/plaid/client/model/TransferAuthorizationCancelResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/transfer/authorization/cancel` */ @ApiModel(description = "Defines the response schema for `/transfer/authorization/cancel`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferAuthorizationCancelResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/TransferAuthorizationCreateRequest.java b/src/main/java/com/plaid/client/model/TransferAuthorizationCreateRequest.java index d4e92490f..ac19513ae 100644 --- a/src/main/java/com/plaid/client/model/TransferAuthorizationCreateRequest.java +++ b/src/main/java/com/plaid/client/model/TransferAuthorizationCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * Defines the request schema for `/transfer/authorization/create` */ @ApiModel(description = "Defines the request schema for `/transfer/authorization/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferAuthorizationCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferAuthorizationCreateResponse.java b/src/main/java/com/plaid/client/model/TransferAuthorizationCreateResponse.java index 4fdc1cb37..2894d8eb3 100644 --- a/src/main/java/com/plaid/client/model/TransferAuthorizationCreateResponse.java +++ b/src/main/java/com/plaid/client/model/TransferAuthorizationCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/transfer/authorization/create` */ @ApiModel(description = "Defines the response schema for `/transfer/authorization/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferAuthorizationCreateResponse { public static final String SERIALIZED_NAME_AUTHORIZATION = "authorization"; @SerializedName(SERIALIZED_NAME_AUTHORIZATION) diff --git a/src/main/java/com/plaid/client/model/TransferAuthorizationDecision.java b/src/main/java/com/plaid/client/model/TransferAuthorizationDecision.java index d21890099..95f6b4f95 100644 --- a/src/main/java/com/plaid/client/model/TransferAuthorizationDecision.java +++ b/src/main/java/com/plaid/client/model/TransferAuthorizationDecision.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -25,7 +25,7 @@ import com.google.gson.stream.JsonWriter; /** - * A decision regarding the proposed transfer. `approved` – The proposed transfer has received the end user's consent and has been approved for processing by Plaid. The `decision_rationale` field is set if Plaid was unable to fetch the account information. You may proceed with the transfer, but further review is recommended. Refer to the `code` field in the `decision_rationale` object for details. `declined` – Plaid reviewed the proposed transfer and declined processing. Refer to the `code` field in the `decision_rationale` object for details. `user_action_required` – An action is required before Plaid can assess the transfer risk and make a decision. The most common scenario is to update authentication for an Item. To complete the required action, initialize Link by setting `transfer.authorization_id` in the request of `/link/token/create`. After Link flow is completed, you may re-attempt the authorization request. For `guarantee` requests, `approved` indicates the transfer is eligible for Plaid's guarantee, and `declined` indicates Plaid will not provide guarantee coverage for the transfer. + * A decision regarding the proposed transfer. `approved` – The proposed transfer has received the end user's consent and has been approved for processing by Plaid. The `decision_rationale` field is set if Plaid was unable to fetch the account information. You may proceed with the transfer, but further review is recommended. Refer to the `code` field in the `decision_rationale` object for details. `declined` – Plaid reviewed the proposed transfer and declined processing. Refer to the `code` field in the `decision_rationale` object for details. `user_action_required` – An action is required before Plaid can assess the transfer risk and make a decision. The most common scenario is to update authentication for an Item. To complete the required action, initialize Link by setting `transfer.authorization_id` in the request of `/link/token/create`. After Link flow is completed, you may re-attempt the authorization request. For `guarantee` requests, `approved` indicates the transfer is eligible for Plaid's guarantee, and `declined` indicates Plaid will not provide guarantee coverage for the transfer. `user_action_required` indicates you should follow the above guidance before re-attempting. */ @JsonAdapter(TransferAuthorizationDecision.Adapter.class) public enum TransferAuthorizationDecision { diff --git a/src/main/java/com/plaid/client/model/TransferAuthorizationDecisionRationale.java b/src/main/java/com/plaid/client/model/TransferAuthorizationDecisionRationale.java index e12b500b5..173c047ff 100644 --- a/src/main/java/com/plaid/client/model/TransferAuthorizationDecisionRationale.java +++ b/src/main/java/com/plaid/client/model/TransferAuthorizationDecisionRationale.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The rationale for Plaid's decision regarding a proposed transfer. It is always set for `declined` decisions, and may or may not be null for `approved` decisions. */ @ApiModel(description = "The rationale for Plaid's decision regarding a proposed transfer. It is always set for `declined` decisions, and may or may not be null for `approved` decisions.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferAuthorizationDecisionRationale { public static final String SERIALIZED_NAME_CODE = "code"; @SerializedName(SERIALIZED_NAME_CODE) diff --git a/src/main/java/com/plaid/client/model/TransferAuthorizationDecisionRationaleCode.java b/src/main/java/com/plaid/client/model/TransferAuthorizationDecisionRationaleCode.java index aff89128f..1ca7d3c1e 100644 --- a/src/main/java/com/plaid/client/model/TransferAuthorizationDecisionRationaleCode.java +++ b/src/main/java/com/plaid/client/model/TransferAuthorizationDecisionRationaleCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferAuthorizationDevice.java b/src/main/java/com/plaid/client/model/TransferAuthorizationDevice.java index 0f8e0b781..8e5bfe047 100644 --- a/src/main/java/com/plaid/client/model/TransferAuthorizationDevice.java +++ b/src/main/java/com/plaid/client/model/TransferAuthorizationDevice.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Information about the device being used to initiate the authorization. These fields are not currently incorporated into the risk check. */ @ApiModel(description = "Information about the device being used to initiate the authorization. These fields are not currently incorporated into the risk check.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferAuthorizationDevice { public static final String SERIALIZED_NAME_IP_ADDRESS = "ip_address"; @SerializedName(SERIALIZED_NAME_IP_ADDRESS) diff --git a/src/main/java/com/plaid/client/model/TransferAuthorizationGuaranteeDecision.java b/src/main/java/com/plaid/client/model/TransferAuthorizationGuaranteeDecision.java index 6ef60725b..a4ddea26a 100644 --- a/src/main/java/com/plaid/client/model/TransferAuthorizationGuaranteeDecision.java +++ b/src/main/java/com/plaid/client/model/TransferAuthorizationGuaranteeDecision.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferAuthorizationGuaranteeDecisionRationale.java b/src/main/java/com/plaid/client/model/TransferAuthorizationGuaranteeDecisionRationale.java index ed2036767..4a51c0ab7 100644 --- a/src/main/java/com/plaid/client/model/TransferAuthorizationGuaranteeDecisionRationale.java +++ b/src/main/java/com/plaid/client/model/TransferAuthorizationGuaranteeDecisionRationale.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The rationale for Plaid's decision to not guarantee a transfer. Will be `null` unless `guarantee_decision` is `NOT_GUARANTEED`. */ @ApiModel(description = "The rationale for Plaid's decision to not guarantee a transfer. Will be `null` unless `guarantee_decision` is `NOT_GUARANTEED`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferAuthorizationGuaranteeDecisionRationale { public static final String SERIALIZED_NAME_CODE = "code"; @SerializedName(SERIALIZED_NAME_CODE) diff --git a/src/main/java/com/plaid/client/model/TransferAuthorizationGuaranteeDecisionRationaleCode.java b/src/main/java/com/plaid/client/model/TransferAuthorizationGuaranteeDecisionRationaleCode.java index a3eb22bbd..882c59fe5 100644 --- a/src/main/java/com/plaid/client/model/TransferAuthorizationGuaranteeDecisionRationaleCode.java +++ b/src/main/java/com/plaid/client/model/TransferAuthorizationGuaranteeDecisionRationaleCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferAuthorizationPaymentRisk.java b/src/main/java/com/plaid/client/model/TransferAuthorizationPaymentRisk.java index b9be1a824..fb9a388ea 100644 --- a/src/main/java/com/plaid/client/model/TransferAuthorizationPaymentRisk.java +++ b/src/main/java/com/plaid/client/model/TransferAuthorizationPaymentRisk.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * This object includes the scores and risk level. This response is offered as an add-on to /transfer/authorization/create. To request access to these fields please contact your Plaid account manager. */ @ApiModel(description = "This object includes the scores and risk level. This response is offered as an add-on to /transfer/authorization/create. To request access to these fields please contact your Plaid account manager.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferAuthorizationPaymentRisk { public static final String SERIALIZED_NAME_BANK_INITIATED_RETURN_SCORE = "bank_initiated_return_score"; @SerializedName(SERIALIZED_NAME_BANK_INITIATED_RETURN_SCORE) diff --git a/src/main/java/com/plaid/client/model/TransferAuthorizationProposedTransfer.java b/src/main/java/com/plaid/client/model/TransferAuthorizationProposedTransfer.java index 81b6a439c..11bf8c72c 100644 --- a/src/main/java/com/plaid/client/model/TransferAuthorizationProposedTransfer.java +++ b/src/main/java/com/plaid/client/model/TransferAuthorizationProposedTransfer.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Details regarding the proposed transfer. */ @ApiModel(description = "Details regarding the proposed transfer.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferAuthorizationProposedTransfer { public static final String SERIALIZED_NAME_ACH_CLASS = "ach_class"; @SerializedName(SERIALIZED_NAME_ACH_CLASS) diff --git a/src/main/java/com/plaid/client/model/TransferAuthorizationRiskLevel.java b/src/main/java/com/plaid/client/model/TransferAuthorizationRiskLevel.java index 64d92bfa2..8324d4616 100644 --- a/src/main/java/com/plaid/client/model/TransferAuthorizationRiskLevel.java +++ b/src/main/java/com/plaid/client/model/TransferAuthorizationRiskLevel.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferAuthorizationUserInRequest.java b/src/main/java/com/plaid/client/model/TransferAuthorizationUserInRequest.java index be9920fb7..a6fffd2fb 100644 --- a/src/main/java/com/plaid/client/model/TransferAuthorizationUserInRequest.java +++ b/src/main/java/com/plaid/client/model/TransferAuthorizationUserInRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The legal name and other information for the account holder. If the account has multiple account holders, provide the information for the account holder on whose behalf the authorization is being requested. The `user.legal_name` field is required. Other fields are not currently used and are present to support planned future functionality. */ @ApiModel(description = "The legal name and other information for the account holder. If the account has multiple account holders, provide the information for the account holder on whose behalf the authorization is being requested. The `user.legal_name` field is required. Other fields are not currently used and are present to support planned future functionality.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferAuthorizationUserInRequest { public static final String SERIALIZED_NAME_LEGAL_NAME = "legal_name"; @SerializedName(SERIALIZED_NAME_LEGAL_NAME) diff --git a/src/main/java/com/plaid/client/model/TransferBalance.java b/src/main/java/com/plaid/client/model/TransferBalance.java index 293632c32..1f3c7b303 100644 --- a/src/main/java/com/plaid/client/model/TransferBalance.java +++ b/src/main/java/com/plaid/client/model/TransferBalance.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Information about the balance held with Plaid. */ @ApiModel(description = "Information about the balance held with Plaid.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferBalance { public static final String SERIALIZED_NAME_AVAILABLE = "available"; @SerializedName(SERIALIZED_NAME_AVAILABLE) diff --git a/src/main/java/com/plaid/client/model/TransferBalanceGetRequest.java b/src/main/java/com/plaid/client/model/TransferBalanceGetRequest.java index 2f5ec8628..6f11cad16 100644 --- a/src/main/java/com/plaid/client/model/TransferBalanceGetRequest.java +++ b/src/main/java/com/plaid/client/model/TransferBalanceGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the request schema for `/transfer/balance/get` */ @ApiModel(description = "Defines the request schema for `/transfer/balance/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferBalanceGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferBalanceGetResponse.java b/src/main/java/com/plaid/client/model/TransferBalanceGetResponse.java index c14617a47..15713f5ca 100644 --- a/src/main/java/com/plaid/client/model/TransferBalanceGetResponse.java +++ b/src/main/java/com/plaid/client/model/TransferBalanceGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/transfer/balance/get` */ @ApiModel(description = "Defines the response schema for `/transfer/balance/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferBalanceGetResponse { public static final String SERIALIZED_NAME_BALANCE = "balance"; @SerializedName(SERIALIZED_NAME_BALANCE) diff --git a/src/main/java/com/plaid/client/model/TransferBalanceType.java b/src/main/java/com/plaid/client/model/TransferBalanceType.java index 1925ac50d..40a0aa4ac 100644 --- a/src/main/java/com/plaid/client/model/TransferBalanceType.java +++ b/src/main/java/com/plaid/client/model/TransferBalanceType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferCancelRequest.java b/src/main/java/com/plaid/client/model/TransferCancelRequest.java index 561bb3ee5..bae6de9db 100644 --- a/src/main/java/com/plaid/client/model/TransferCancelRequest.java +++ b/src/main/java/com/plaid/client/model/TransferCancelRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the request schema for `/transfer/cancel` */ @ApiModel(description = "Defines the request schema for `/transfer/cancel`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferCancelRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferCancelResponse.java b/src/main/java/com/plaid/client/model/TransferCancelResponse.java index 4ca53af9c..255120cbc 100644 --- a/src/main/java/com/plaid/client/model/TransferCancelResponse.java +++ b/src/main/java/com/plaid/client/model/TransferCancelResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/transfer/cancel` */ @ApiModel(description = "Defines the response schema for `/transfer/cancel`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferCancelResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/TransferCapabilitiesGetRTP.java b/src/main/java/com/plaid/client/model/TransferCapabilitiesGetRTP.java index fa3cd24be..152f105f7 100644 --- a/src/main/java/com/plaid/client/model/TransferCapabilitiesGetRTP.java +++ b/src/main/java/com/plaid/client/model/TransferCapabilitiesGetRTP.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Contains the supported service types in RTP */ @ApiModel(description = "Contains the supported service types in RTP") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferCapabilitiesGetRTP { public static final String SERIALIZED_NAME_CREDIT = "credit"; @SerializedName(SERIALIZED_NAME_CREDIT) diff --git a/src/main/java/com/plaid/client/model/TransferCapabilitiesGetRequest.java b/src/main/java/com/plaid/client/model/TransferCapabilitiesGetRequest.java index a99390af0..eef501c39 100644 --- a/src/main/java/com/plaid/client/model/TransferCapabilitiesGetRequest.java +++ b/src/main/java/com/plaid/client/model/TransferCapabilitiesGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/capabilities/get` */ @ApiModel(description = "Defines the request schema for `/transfer/capabilities/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferCapabilitiesGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferCapabilitiesGetResponse.java b/src/main/java/com/plaid/client/model/TransferCapabilitiesGetResponse.java index 4f61cde94..12cf221c7 100644 --- a/src/main/java/com/plaid/client/model/TransferCapabilitiesGetResponse.java +++ b/src/main/java/com/plaid/client/model/TransferCapabilitiesGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/transfer/capabilities/get` */ @ApiModel(description = "Defines the response schema for `/transfer/capabilities/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferCapabilitiesGetResponse { public static final String SERIALIZED_NAME_INSTITUTION_SUPPORTED_NETWORKS = "institution_supported_networks"; @SerializedName(SERIALIZED_NAME_INSTITUTION_SUPPORTED_NETWORKS) diff --git a/src/main/java/com/plaid/client/model/TransferCapabilitiesGetRfP.java b/src/main/java/com/plaid/client/model/TransferCapabilitiesGetRfP.java index 53c6dd1ce..bf932bc35 100644 --- a/src/main/java/com/plaid/client/model/TransferCapabilitiesGetRfP.java +++ b/src/main/java/com/plaid/client/model/TransferCapabilitiesGetRfP.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Contains the supported service types in RfP */ @ApiModel(description = "Contains the supported service types in RfP") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferCapabilitiesGetRfP { public static final String SERIALIZED_NAME_DEBIT = "debit"; @SerializedName(SERIALIZED_NAME_DEBIT) diff --git a/src/main/java/com/plaid/client/model/TransferConfigurationGetRequest.java b/src/main/java/com/plaid/client/model/TransferConfigurationGetRequest.java index cb27db121..3e8d24e89 100644 --- a/src/main/java/com/plaid/client/model/TransferConfigurationGetRequest.java +++ b/src/main/java/com/plaid/client/model/TransferConfigurationGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/configuration/get` */ @ApiModel(description = "Defines the request schema for `/transfer/configuration/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferConfigurationGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferConfigurationGetResponse.java b/src/main/java/com/plaid/client/model/TransferConfigurationGetResponse.java index 0b0b5e3d2..6bc433690 100644 --- a/src/main/java/com/plaid/client/model/TransferConfigurationGetResponse.java +++ b/src/main/java/com/plaid/client/model/TransferConfigurationGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/transfer/configuration/get` */ @ApiModel(description = "Defines the response schema for `/transfer/configuration/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferConfigurationGetResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/TransferCreateRequest.java b/src/main/java/com/plaid/client/model/TransferCreateRequest.java index 24a612c87..9f1cc2f31 100644 --- a/src/main/java/com/plaid/client/model/TransferCreateRequest.java +++ b/src/main/java/com/plaid/client/model/TransferCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * Defines the request schema for `/transfer/create` */ @ApiModel(description = "Defines the request schema for `/transfer/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferCreateResponse.java b/src/main/java/com/plaid/client/model/TransferCreateResponse.java index 28da59f6a..6d5f34625 100644 --- a/src/main/java/com/plaid/client/model/TransferCreateResponse.java +++ b/src/main/java/com/plaid/client/model/TransferCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/transfer/create` */ @ApiModel(description = "Defines the response schema for `/transfer/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferCreateResponse { public static final String SERIALIZED_NAME_TRANSFER = "transfer"; @SerializedName(SERIALIZED_NAME_TRANSFER) diff --git a/src/main/java/com/plaid/client/model/TransferCreditFundsSource.java b/src/main/java/com/plaid/client/model/TransferCreditFundsSource.java index afec71236..ed2fec628 100644 --- a/src/main/java/com/plaid/client/model/TransferCreditFundsSource.java +++ b/src/main/java/com/plaid/client/model/TransferCreditFundsSource.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferCreditUsageConfiguration.java b/src/main/java/com/plaid/client/model/TransferCreditUsageConfiguration.java index add9da05a..cec804797 100644 --- a/src/main/java/com/plaid/client/model/TransferCreditUsageConfiguration.java +++ b/src/main/java/com/plaid/client/model/TransferCreditUsageConfiguration.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Specifies the originator's expected usage of credits. For all dollar amounts, use a decimal string with two digits of precision e.g. \"10.00\". This field is required if the originator is expected to process credit transfers. */ @ApiModel(description = "Specifies the originator's expected usage of credits. For all dollar amounts, use a decimal string with two digits of precision e.g. \"10.00\". This field is required if the originator is expected to process credit transfers.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferCreditUsageConfiguration { public static final String SERIALIZED_NAME_EXPECTED_FREQUENCY = "expected_frequency"; @SerializedName(SERIALIZED_NAME_EXPECTED_FREQUENCY) diff --git a/src/main/java/com/plaid/client/model/TransferDebitUsageConfiguration.java b/src/main/java/com/plaid/client/model/TransferDebitUsageConfiguration.java index 59e7e9654..a3a06857b 100644 --- a/src/main/java/com/plaid/client/model/TransferDebitUsageConfiguration.java +++ b/src/main/java/com/plaid/client/model/TransferDebitUsageConfiguration.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Specifies the originator's expected usage of debits. For all dollar amounts, use a decimal string with two digits of precision e.g. \"10.00\". This field is required if the originator is expected to process debit transfers. */ @ApiModel(description = "Specifies the originator's expected usage of debits. For all dollar amounts, use a decimal string with two digits of precision e.g. \"10.00\". This field is required if the originator is expected to process debit transfers.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferDebitUsageConfiguration { public static final String SERIALIZED_NAME_EXPECTED_FREQUENCY = "expected_frequency"; @SerializedName(SERIALIZED_NAME_EXPECTED_FREQUENCY) diff --git a/src/main/java/com/plaid/client/model/TransferDevice.java b/src/main/java/com/plaid/client/model/TransferDevice.java index 6eba00378..db5317d34 100644 --- a/src/main/java/com/plaid/client/model/TransferDevice.java +++ b/src/main/java/com/plaid/client/model/TransferDevice.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Information about the device being used to initiate the authorization. */ @ApiModel(description = "Information about the device being used to initiate the authorization.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferDevice { public static final String SERIALIZED_NAME_IP_ADDRESS = "ip_address"; @SerializedName(SERIALIZED_NAME_IP_ADDRESS) diff --git a/src/main/java/com/plaid/client/model/TransferDiligenceDocumentUploadRequest.java b/src/main/java/com/plaid/client/model/TransferDiligenceDocumentUploadRequest.java index cecba0a9d..8cdd59a32 100644 --- a/src/main/java/com/plaid/client/model/TransferDiligenceDocumentUploadRequest.java +++ b/src/main/java/com/plaid/client/model/TransferDiligenceDocumentUploadRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Defines the request schema for `/transfer/diligence/document/upload` */ @ApiModel(description = "Defines the request schema for `/transfer/diligence/document/upload`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferDiligenceDocumentUploadRequest { public static final String SERIALIZED_NAME_ORIGINATOR_CLIENT_ID = "originator_client_id"; @SerializedName(SERIALIZED_NAME_ORIGINATOR_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferDiligenceDocumentUploadResponse.java b/src/main/java/com/plaid/client/model/TransferDiligenceDocumentUploadResponse.java index 4540ee276..76449cda3 100644 --- a/src/main/java/com/plaid/client/model/TransferDiligenceDocumentUploadResponse.java +++ b/src/main/java/com/plaid/client/model/TransferDiligenceDocumentUploadResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/transfer/diligence/document/upload` */ @ApiModel(description = "Defines the response schema for `/transfer/diligence/document/upload`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferDiligenceDocumentUploadResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/TransferDiligenceStatus.java b/src/main/java/com/plaid/client/model/TransferDiligenceStatus.java index 0c7f0498d..11dedcb2c 100644 --- a/src/main/java/com/plaid/client/model/TransferDiligenceStatus.java +++ b/src/main/java/com/plaid/client/model/TransferDiligenceStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferDiligenceSubmitRequest.java b/src/main/java/com/plaid/client/model/TransferDiligenceSubmitRequest.java index 64600f2a6..994cfb789 100644 --- a/src/main/java/com/plaid/client/model/TransferDiligenceSubmitRequest.java +++ b/src/main/java/com/plaid/client/model/TransferDiligenceSubmitRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the request schema for `/transfer/diligence/submit` */ @ApiModel(description = "Defines the request schema for `/transfer/diligence/submit`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferDiligenceSubmitRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferDiligenceSubmitResponse.java b/src/main/java/com/plaid/client/model/TransferDiligenceSubmitResponse.java index 63ece6603..b42bfc175 100644 --- a/src/main/java/com/plaid/client/model/TransferDiligenceSubmitResponse.java +++ b/src/main/java/com/plaid/client/model/TransferDiligenceSubmitResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/transfer/diligence/submit` */ @ApiModel(description = "Defines the response schema for `/transfer/diligence/submit`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferDiligenceSubmitResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/TransferDocumentPurpose.java b/src/main/java/com/plaid/client/model/TransferDocumentPurpose.java index 79d0d7063..1b221ec79 100644 --- a/src/main/java/com/plaid/client/model/TransferDocumentPurpose.java +++ b/src/main/java/com/plaid/client/model/TransferDocumentPurpose.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferEvent.java b/src/main/java/com/plaid/client/model/TransferEvent.java index b98e05f35..02eeea800 100644 --- a/src/main/java/com/plaid/client/model/TransferEvent.java +++ b/src/main/java/com/plaid/client/model/TransferEvent.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Represents an event in the Transfers API. */ @ApiModel(description = "Represents an event in the Transfers API.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferEvent { public static final String SERIALIZED_NAME_EVENT_ID = "event_id"; @SerializedName(SERIALIZED_NAME_EVENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferEventListRequest.java b/src/main/java/com/plaid/client/model/TransferEventListRequest.java index ffce53745..edb71823a 100644 --- a/src/main/java/com/plaid/client/model/TransferEventListRequest.java +++ b/src/main/java/com/plaid/client/model/TransferEventListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Defines the request schema for `/transfer/event/list` */ @ApiModel(description = "Defines the request schema for `/transfer/event/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferEventListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferEventListResponse.java b/src/main/java/com/plaid/client/model/TransferEventListResponse.java index 32492cc3f..6bc7b2413 100644 --- a/src/main/java/com/plaid/client/model/TransferEventListResponse.java +++ b/src/main/java/com/plaid/client/model/TransferEventListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Defines the response schema for `/transfer/event/list` */ @ApiModel(description = "Defines the response schema for `/transfer/event/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferEventListResponse { public static final String SERIALIZED_NAME_TRANSFER_EVENTS = "transfer_events"; @SerializedName(SERIALIZED_NAME_TRANSFER_EVENTS) diff --git a/src/main/java/com/plaid/client/model/TransferEventListTransferType.java b/src/main/java/com/plaid/client/model/TransferEventListTransferType.java index 6c6a8b181..ca5ad0109 100644 --- a/src/main/java/com/plaid/client/model/TransferEventListTransferType.java +++ b/src/main/java/com/plaid/client/model/TransferEventListTransferType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferEventSyncRequest.java b/src/main/java/com/plaid/client/model/TransferEventSyncRequest.java index 330c75148..26429bf5a 100644 --- a/src/main/java/com/plaid/client/model/TransferEventSyncRequest.java +++ b/src/main/java/com/plaid/client/model/TransferEventSyncRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/event/sync` */ @ApiModel(description = "Defines the request schema for `/transfer/event/sync`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferEventSyncRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferEventSyncResponse.java b/src/main/java/com/plaid/client/model/TransferEventSyncResponse.java index c98600ec5..1356b3a5d 100644 --- a/src/main/java/com/plaid/client/model/TransferEventSyncResponse.java +++ b/src/main/java/com/plaid/client/model/TransferEventSyncResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Defines the response schema for `/transfer/event/sync` */ @ApiModel(description = "Defines the response schema for `/transfer/event/sync`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferEventSyncResponse { public static final String SERIALIZED_NAME_TRANSFER_EVENTS = "transfer_events"; @SerializedName(SERIALIZED_NAME_TRANSFER_EVENTS) diff --git a/src/main/java/com/plaid/client/model/TransferEventType.java b/src/main/java/com/plaid/client/model/TransferEventType.java index 0b2151558..5a133dc83 100644 --- a/src/main/java/com/plaid/client/model/TransferEventType.java +++ b/src/main/java/com/plaid/client/model/TransferEventType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferEventsUpdateWebhook.java b/src/main/java/com/plaid/client/model/TransferEventsUpdateWebhook.java index 39bea1927..a15bd3357 100644 --- a/src/main/java/com/plaid/client/model/TransferEventsUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/TransferEventsUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when new transfer events are available. Receiving this webhook indicates you should fetch the new events from `/transfer/event/sync`. If multiple transfer events occur within a single minute, only one webhook will be fired, so a single webhook instance may correspond to multiple transfer events. */ @ApiModel(description = "Fired when new transfer events are available. Receiving this webhook indicates you should fetch the new events from `/transfer/event/sync`. If multiple transfer events occur within a single minute, only one webhook will be fired, so a single webhook instance may correspond to multiple transfer events.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferEventsUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/TransferExpectedSweepSettlementScheduleItem.java b/src/main/java/com/plaid/client/model/TransferExpectedSweepSettlementScheduleItem.java index 55bba72da..28a5eb318 100644 --- a/src/main/java/com/plaid/client/model/TransferExpectedSweepSettlementScheduleItem.java +++ b/src/main/java/com/plaid/client/model/TransferExpectedSweepSettlementScheduleItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines an expected sweep date and amount. */ @ApiModel(description = "Defines an expected sweep date and amount.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferExpectedSweepSettlementScheduleItem { public static final String SERIALIZED_NAME_SWEEP_SETTLEMENT_DATE = "sweep_settlement_date"; @SerializedName(SERIALIZED_NAME_SWEEP_SETTLEMENT_DATE) diff --git a/src/main/java/com/plaid/client/model/TransferFailure.java b/src/main/java/com/plaid/client/model/TransferFailure.java index 19a8c670d..f33f97ca8 100644 --- a/src/main/java/com/plaid/client/model/TransferFailure.java +++ b/src/main/java/com/plaid/client/model/TransferFailure.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The failure reason if the event type for a transfer is `\"failed\"` or `\"returned\"`. Null value otherwise. */ @ApiModel(description = "The failure reason if the event type for a transfer is `\"failed\"` or `\"returned\"`. Null value otherwise.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferFailure { public static final String SERIALIZED_NAME_FAILURE_CODE = "failure_code"; @SerializedName(SERIALIZED_NAME_FAILURE_CODE) diff --git a/src/main/java/com/plaid/client/model/TransferFundingAccount.java b/src/main/java/com/plaid/client/model/TransferFundingAccount.java index f20f40666..871b2f647 100644 --- a/src/main/java/com/plaid/client/model/TransferFundingAccount.java +++ b/src/main/java/com/plaid/client/model/TransferFundingAccount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The originator's funding account, linked with Plaid Link or `/transfer/migrate_account`. */ @ApiModel(description = "The originator's funding account, linked with Plaid Link or `/transfer/migrate_account`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferFundingAccount { public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) diff --git a/src/main/java/com/plaid/client/model/TransferFundingAccountWithDisplayName.java b/src/main/java/com/plaid/client/model/TransferFundingAccountWithDisplayName.java index 931803317..636b1200e 100644 --- a/src/main/java/com/plaid/client/model/TransferFundingAccountWithDisplayName.java +++ b/src/main/java/com/plaid/client/model/TransferFundingAccountWithDisplayName.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The originator's funding account, linked with Plaid Link or `/transfer/migrate_account`. */ @ApiModel(description = "The originator's funding account, linked with Plaid Link or `/transfer/migrate_account`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferFundingAccountWithDisplayName { public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) diff --git a/src/main/java/com/plaid/client/model/TransferFundingAccountWithDisplayNameAllOf.java b/src/main/java/com/plaid/client/model/TransferFundingAccountWithDisplayNameAllOf.java index 56f6d201e..a966d8daf 100644 --- a/src/main/java/com/plaid/client/model/TransferFundingAccountWithDisplayNameAllOf.java +++ b/src/main/java/com/plaid/client/model/TransferFundingAccountWithDisplayNameAllOf.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -27,7 +27,7 @@ /** * TransferFundingAccountWithDisplayNameAllOf */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferFundingAccountWithDisplayNameAllOf { public static final String SERIALIZED_NAME_DISPLAY_NAME = "display_name"; @SerializedName(SERIALIZED_NAME_DISPLAY_NAME) diff --git a/src/main/java/com/plaid/client/model/TransferGetRequest.java b/src/main/java/com/plaid/client/model/TransferGetRequest.java index a9e444998..83f832fcc 100644 --- a/src/main/java/com/plaid/client/model/TransferGetRequest.java +++ b/src/main/java/com/plaid/client/model/TransferGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/get` */ @ApiModel(description = "Defines the request schema for `/transfer/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferGetResponse.java b/src/main/java/com/plaid/client/model/TransferGetResponse.java index b488ea786..d59256478 100644 --- a/src/main/java/com/plaid/client/model/TransferGetResponse.java +++ b/src/main/java/com/plaid/client/model/TransferGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/transfer/get` */ @ApiModel(description = "Defines the response schema for `/transfer/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferGetResponse { public static final String SERIALIZED_NAME_TRANSFER = "transfer"; @SerializedName(SERIALIZED_NAME_TRANSFER) diff --git a/src/main/java/com/plaid/client/model/TransferIntentAuthorizationDecision.java b/src/main/java/com/plaid/client/model/TransferIntentAuthorizationDecision.java index d53d3cfd8..7e06a8457 100644 --- a/src/main/java/com/plaid/client/model/TransferIntentAuthorizationDecision.java +++ b/src/main/java/com/plaid/client/model/TransferIntentAuthorizationDecision.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferIntentCreate.java b/src/main/java/com/plaid/client/model/TransferIntentCreate.java index c47453ddb..c96a516ef 100644 --- a/src/main/java/com/plaid/client/model/TransferIntentCreate.java +++ b/src/main/java/com/plaid/client/model/TransferIntentCreate.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -37,7 +37,7 @@ * Represents a transfer intent within Transfer UI. */ @ApiModel(description = "Represents a transfer intent within Transfer UI.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferIntentCreate { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/TransferIntentCreateMode.java b/src/main/java/com/plaid/client/model/TransferIntentCreateMode.java index 24b11d337..be21090e0 100644 --- a/src/main/java/com/plaid/client/model/TransferIntentCreateMode.java +++ b/src/main/java/com/plaid/client/model/TransferIntentCreateMode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferIntentCreateNetwork.java b/src/main/java/com/plaid/client/model/TransferIntentCreateNetwork.java index 2206d0229..a23932fbd 100644 --- a/src/main/java/com/plaid/client/model/TransferIntentCreateNetwork.java +++ b/src/main/java/com/plaid/client/model/TransferIntentCreateNetwork.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferIntentCreateRequest.java b/src/main/java/com/plaid/client/model/TransferIntentCreateRequest.java index 87762001d..d27f5e5d2 100644 --- a/src/main/java/com/plaid/client/model/TransferIntentCreateRequest.java +++ b/src/main/java/com/plaid/client/model/TransferIntentCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -35,7 +35,7 @@ * Defines the request schema for `/transfer/intent/create` */ @ApiModel(description = "Defines the request schema for `/transfer/intent/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferIntentCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferIntentCreateResponse.java b/src/main/java/com/plaid/client/model/TransferIntentCreateResponse.java index 6be7cb9f3..41b85a184 100644 --- a/src/main/java/com/plaid/client/model/TransferIntentCreateResponse.java +++ b/src/main/java/com/plaid/client/model/TransferIntentCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/transfer/intent/create` */ @ApiModel(description = "Defines the response schema for `/transfer/intent/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferIntentCreateResponse { public static final String SERIALIZED_NAME_TRANSFER_INTENT = "transfer_intent"; @SerializedName(SERIALIZED_NAME_TRANSFER_INTENT) diff --git a/src/main/java/com/plaid/client/model/TransferIntentGet.java b/src/main/java/com/plaid/client/model/TransferIntentGet.java index 5b08361be..e1077bc97 100644 --- a/src/main/java/com/plaid/client/model/TransferIntentGet.java +++ b/src/main/java/com/plaid/client/model/TransferIntentGet.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -42,7 +42,7 @@ * Represents a transfer intent within Transfer UI. */ @ApiModel(description = "Represents a transfer intent within Transfer UI.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferIntentGet { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/TransferIntentGetFailureReason.java b/src/main/java/com/plaid/client/model/TransferIntentGetFailureReason.java index 460476b1a..ced5ee7bc 100644 --- a/src/main/java/com/plaid/client/model/TransferIntentGetFailureReason.java +++ b/src/main/java/com/plaid/client/model/TransferIntentGetFailureReason.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The reason for a failed transfer intent. Returned only if the transfer intent status is `failed`. Null otherwise. */ @ApiModel(description = "The reason for a failed transfer intent. Returned only if the transfer intent status is `failed`. Null otherwise.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferIntentGetFailureReason { public static final String SERIALIZED_NAME_ERROR_TYPE = "error_type"; @SerializedName(SERIALIZED_NAME_ERROR_TYPE) diff --git a/src/main/java/com/plaid/client/model/TransferIntentGetRequest.java b/src/main/java/com/plaid/client/model/TransferIntentGetRequest.java index 2dbce37d7..4b87f8a3d 100644 --- a/src/main/java/com/plaid/client/model/TransferIntentGetRequest.java +++ b/src/main/java/com/plaid/client/model/TransferIntentGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/intent/get` */ @ApiModel(description = "Defines the request schema for `/transfer/intent/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferIntentGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferIntentGetResponse.java b/src/main/java/com/plaid/client/model/TransferIntentGetResponse.java index 5cc258964..d91d5c1c0 100644 --- a/src/main/java/com/plaid/client/model/TransferIntentGetResponse.java +++ b/src/main/java/com/plaid/client/model/TransferIntentGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/transfer/intent/get` */ @ApiModel(description = "Defines the response schema for `/transfer/intent/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferIntentGetResponse { public static final String SERIALIZED_NAME_TRANSFER_INTENT = "transfer_intent"; @SerializedName(SERIALIZED_NAME_TRANSFER_INTENT) diff --git a/src/main/java/com/plaid/client/model/TransferIntentStatus.java b/src/main/java/com/plaid/client/model/TransferIntentStatus.java index ada5e20de..62eab0c4e 100644 --- a/src/main/java/com/plaid/client/model/TransferIntentStatus.java +++ b/src/main/java/com/plaid/client/model/TransferIntentStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferLedgerBalance.java b/src/main/java/com/plaid/client/model/TransferLedgerBalance.java index 3f1cec8c3..881fbf7e3 100644 --- a/src/main/java/com/plaid/client/model/TransferLedgerBalance.java +++ b/src/main/java/com/plaid/client/model/TransferLedgerBalance.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Information about the balance of the ledger held with Plaid. */ @ApiModel(description = "Information about the balance of the ledger held with Plaid.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferLedgerBalance { public static final String SERIALIZED_NAME_AVAILABLE = "available"; @SerializedName(SERIALIZED_NAME_AVAILABLE) diff --git a/src/main/java/com/plaid/client/model/TransferLedgerDepositRequest.java b/src/main/java/com/plaid/client/model/TransferLedgerDepositRequest.java index 5be4f56cb..516709811 100644 --- a/src/main/java/com/plaid/client/model/TransferLedgerDepositRequest.java +++ b/src/main/java/com/plaid/client/model/TransferLedgerDepositRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the request schema for `/transfer/ledger/deposit` */ @ApiModel(description = "Defines the request schema for `/transfer/ledger/deposit`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferLedgerDepositRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferLedgerDepositResponse.java b/src/main/java/com/plaid/client/model/TransferLedgerDepositResponse.java index 0289a3b3f..086bbc5e7 100644 --- a/src/main/java/com/plaid/client/model/TransferLedgerDepositResponse.java +++ b/src/main/java/com/plaid/client/model/TransferLedgerDepositResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/transfer/ledger/deposit` */ @ApiModel(description = "Defines the response schema for `/transfer/ledger/deposit`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferLedgerDepositResponse { public static final String SERIALIZED_NAME_SWEEP = "sweep"; @SerializedName(SERIALIZED_NAME_SWEEP) diff --git a/src/main/java/com/plaid/client/model/TransferLedgerDistributeRequest.java b/src/main/java/com/plaid/client/model/TransferLedgerDistributeRequest.java index db59dfc86..8b1dd9568 100644 --- a/src/main/java/com/plaid/client/model/TransferLedgerDistributeRequest.java +++ b/src/main/java/com/plaid/client/model/TransferLedgerDistributeRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/ledger/distribute` */ @ApiModel(description = "Defines the request schema for `/transfer/ledger/distribute`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferLedgerDistributeRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferLedgerDistributeResponse.java b/src/main/java/com/plaid/client/model/TransferLedgerDistributeResponse.java index 6d8c4171b..dcfc2edfc 100644 --- a/src/main/java/com/plaid/client/model/TransferLedgerDistributeResponse.java +++ b/src/main/java/com/plaid/client/model/TransferLedgerDistributeResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/transfer/ledger/distribute` */ @ApiModel(description = "Defines the response schema for `/transfer/ledger/distribute`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferLedgerDistributeResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/TransferLedgerEvent.java b/src/main/java/com/plaid/client/model/TransferLedgerEvent.java index 46f86190f..2b3abe165 100644 --- a/src/main/java/com/plaid/client/model/TransferLedgerEvent.java +++ b/src/main/java/com/plaid/client/model/TransferLedgerEvent.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Represents a ledger event in the Transfers API. */ @ApiModel(description = "Represents a ledger event in the Transfers API.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferLedgerEvent { public static final String SERIALIZED_NAME_LEDGER_EVENT_ID = "ledger_event_id"; @SerializedName(SERIALIZED_NAME_LEDGER_EVENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferLedgerEventListRequest.java b/src/main/java/com/plaid/client/model/TransferLedgerEventListRequest.java index 7ede46f4f..2c6f4cfb4 100644 --- a/src/main/java/com/plaid/client/model/TransferLedgerEventListRequest.java +++ b/src/main/java/com/plaid/client/model/TransferLedgerEventListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Defines the request schema for `/transfer/ledger/event/list` */ @ApiModel(description = "Defines the request schema for `/transfer/ledger/event/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferLedgerEventListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferLedgerEventListResponse.java b/src/main/java/com/plaid/client/model/TransferLedgerEventListResponse.java index 3f241e83f..65ff0a7cd 100644 --- a/src/main/java/com/plaid/client/model/TransferLedgerEventListResponse.java +++ b/src/main/java/com/plaid/client/model/TransferLedgerEventListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Defines the response schema for `/transfer/ledger/event/list` */ @ApiModel(description = "Defines the response schema for `/transfer/ledger/event/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferLedgerEventListResponse { public static final String SERIALIZED_NAME_LEDGER_EVENTS = "ledger_events"; @SerializedName(SERIALIZED_NAME_LEDGER_EVENTS) diff --git a/src/main/java/com/plaid/client/model/TransferLedgerGetRequest.java b/src/main/java/com/plaid/client/model/TransferLedgerGetRequest.java index badb18d3c..11fdac798 100644 --- a/src/main/java/com/plaid/client/model/TransferLedgerGetRequest.java +++ b/src/main/java/com/plaid/client/model/TransferLedgerGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/ledger/get` */ @ApiModel(description = "Defines the request schema for `/transfer/ledger/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferLedgerGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferLedgerGetResponse.java b/src/main/java/com/plaid/client/model/TransferLedgerGetResponse.java index b9da121b9..a4a7319ce 100644 --- a/src/main/java/com/plaid/client/model/TransferLedgerGetResponse.java +++ b/src/main/java/com/plaid/client/model/TransferLedgerGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/transfer/ledger/get` */ @ApiModel(description = "Defines the response schema for `/transfer/ledger/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferLedgerGetResponse { public static final String SERIALIZED_NAME_LEDGER_ID = "ledger_id"; @SerializedName(SERIALIZED_NAME_LEDGER_ID) diff --git a/src/main/java/com/plaid/client/model/TransferLedgerSweepSimulateEventType.java b/src/main/java/com/plaid/client/model/TransferLedgerSweepSimulateEventType.java index d589a97e1..8dfeed6ff 100644 --- a/src/main/java/com/plaid/client/model/TransferLedgerSweepSimulateEventType.java +++ b/src/main/java/com/plaid/client/model/TransferLedgerSweepSimulateEventType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferLedgerWithdrawRequest.java b/src/main/java/com/plaid/client/model/TransferLedgerWithdrawRequest.java index dd94eb668..fce66d3b3 100644 --- a/src/main/java/com/plaid/client/model/TransferLedgerWithdrawRequest.java +++ b/src/main/java/com/plaid/client/model/TransferLedgerWithdrawRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the request schema for `/transfer/ledger/withdraw` */ @ApiModel(description = "Defines the request schema for `/transfer/ledger/withdraw`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferLedgerWithdrawRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferLedgerWithdrawResponse.java b/src/main/java/com/plaid/client/model/TransferLedgerWithdrawResponse.java index 70dc0a251..1c056906d 100644 --- a/src/main/java/com/plaid/client/model/TransferLedgerWithdrawResponse.java +++ b/src/main/java/com/plaid/client/model/TransferLedgerWithdrawResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/transfer/ledger/withdraw` */ @ApiModel(description = "Defines the response schema for `/transfer/ledger/withdraw`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferLedgerWithdrawResponse { public static final String SERIALIZED_NAME_SWEEP = "sweep"; @SerializedName(SERIALIZED_NAME_SWEEP) diff --git a/src/main/java/com/plaid/client/model/TransferListRequest.java b/src/main/java/com/plaid/client/model/TransferListRequest.java index 19c5cd95e..aa06525a2 100644 --- a/src/main/java/com/plaid/client/model/TransferListRequest.java +++ b/src/main/java/com/plaid/client/model/TransferListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the request schema for `/transfer/list` */ @ApiModel(description = "Defines the request schema for `/transfer/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferListResponse.java b/src/main/java/com/plaid/client/model/TransferListResponse.java index 07da1aa9f..8e1bf72fc 100644 --- a/src/main/java/com/plaid/client/model/TransferListResponse.java +++ b/src/main/java/com/plaid/client/model/TransferListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Defines the response schema for `/transfer/list` */ @ApiModel(description = "Defines the response schema for `/transfer/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferListResponse { public static final String SERIALIZED_NAME_TRANSFERS = "transfers"; @SerializedName(SERIALIZED_NAME_TRANSFERS) diff --git a/src/main/java/com/plaid/client/model/TransferMetricsGetAuthorizationUsage.java b/src/main/java/com/plaid/client/model/TransferMetricsGetAuthorizationUsage.java index af43ca9fa..c83aa8d75 100644 --- a/src/main/java/com/plaid/client/model/TransferMetricsGetAuthorizationUsage.java +++ b/src/main/java/com/plaid/client/model/TransferMetricsGetAuthorizationUsage.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Details regarding authorization usage. */ @ApiModel(description = "Details regarding authorization usage.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferMetricsGetAuthorizationUsage { public static final String SERIALIZED_NAME_DAILY_CREDIT_UTILIZATION = "daily_credit_utilization"; @SerializedName(SERIALIZED_NAME_DAILY_CREDIT_UTILIZATION) diff --git a/src/main/java/com/plaid/client/model/TransferMetricsGetRequest.java b/src/main/java/com/plaid/client/model/TransferMetricsGetRequest.java index 89c3910dc..0531a4260 100644 --- a/src/main/java/com/plaid/client/model/TransferMetricsGetRequest.java +++ b/src/main/java/com/plaid/client/model/TransferMetricsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/metrics/get` */ @ApiModel(description = "Defines the request schema for `/transfer/metrics/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferMetricsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferMetricsGetResponse.java b/src/main/java/com/plaid/client/model/TransferMetricsGetResponse.java index d1af35986..d69de2340 100644 --- a/src/main/java/com/plaid/client/model/TransferMetricsGetResponse.java +++ b/src/main/java/com/plaid/client/model/TransferMetricsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Defines the response schema for `/transfer/metrics/get` */ @ApiModel(description = "Defines the response schema for `/transfer/metrics/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferMetricsGetResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/TransferMetricsGetReturnRates.java b/src/main/java/com/plaid/client/model/TransferMetricsGetReturnRates.java index 6cc3d3f0b..f51c6f3a5 100644 --- a/src/main/java/com/plaid/client/model/TransferMetricsGetReturnRates.java +++ b/src/main/java/com/plaid/client/model/TransferMetricsGetReturnRates.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Details regarding return rates. */ @ApiModel(description = "Details regarding return rates.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferMetricsGetReturnRates { public static final String SERIALIZED_NAME_LAST60D = "last_60d"; @SerializedName(SERIALIZED_NAME_LAST60D) diff --git a/src/main/java/com/plaid/client/model/TransferMetricsGetReturnRatesOverInterval.java b/src/main/java/com/plaid/client/model/TransferMetricsGetReturnRatesOverInterval.java index 1470e9b6e..b29a51620 100644 --- a/src/main/java/com/plaid/client/model/TransferMetricsGetReturnRatesOverInterval.java +++ b/src/main/java/com/plaid/client/model/TransferMetricsGetReturnRatesOverInterval.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Details regarding return rates. */ @ApiModel(description = "Details regarding return rates.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferMetricsGetReturnRatesOverInterval { public static final String SERIALIZED_NAME_OVERALL_RETURN_RATE = "overall_return_rate"; @SerializedName(SERIALIZED_NAME_OVERALL_RETURN_RATE) diff --git a/src/main/java/com/plaid/client/model/TransferMigrateAccountRequest.java b/src/main/java/com/plaid/client/model/TransferMigrateAccountRequest.java index 2cbd231fa..4b591a61b 100644 --- a/src/main/java/com/plaid/client/model/TransferMigrateAccountRequest.java +++ b/src/main/java/com/plaid/client/model/TransferMigrateAccountRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/migrate_account` */ @ApiModel(description = "Defines the request schema for `/transfer/migrate_account`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferMigrateAccountRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferMigrateAccountResponse.java b/src/main/java/com/plaid/client/model/TransferMigrateAccountResponse.java index d1f19b407..c8f1f631e 100644 --- a/src/main/java/com/plaid/client/model/TransferMigrateAccountResponse.java +++ b/src/main/java/com/plaid/client/model/TransferMigrateAccountResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/transfer/migrate_account` */ @ApiModel(description = "Defines the response schema for `/transfer/migrate_account`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferMigrateAccountResponse { public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) diff --git a/src/main/java/com/plaid/client/model/TransferNetwork.java b/src/main/java/com/plaid/client/model/TransferNetwork.java index 05fe4abf8..300c5496f 100644 --- a/src/main/java/com/plaid/client/model/TransferNetwork.java +++ b/src/main/java/com/plaid/client/model/TransferNetwork.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferOriginatorAddress.java b/src/main/java/com/plaid/client/model/TransferOriginatorAddress.java index 930f976f4..4d275f7d4 100644 --- a/src/main/java/com/plaid/client/model/TransferOriginatorAddress.java +++ b/src/main/java/com/plaid/client/model/TransferOriginatorAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The originator's address. */ @ApiModel(description = "The originator's address.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferOriginatorAddress { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/TransferOriginatorCreateRequest.java b/src/main/java/com/plaid/client/model/TransferOriginatorCreateRequest.java index 15484e63d..9b9945027 100644 --- a/src/main/java/com/plaid/client/model/TransferOriginatorCreateRequest.java +++ b/src/main/java/com/plaid/client/model/TransferOriginatorCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/originator/create` */ @ApiModel(description = "Defines the request schema for `/transfer/originator/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferOriginatorCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferOriginatorCreateResponse.java b/src/main/java/com/plaid/client/model/TransferOriginatorCreateResponse.java index e5fd842c9..b9c2e7946 100644 --- a/src/main/java/com/plaid/client/model/TransferOriginatorCreateResponse.java +++ b/src/main/java/com/plaid/client/model/TransferOriginatorCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/transfer/originator/create` */ @ApiModel(description = "Defines the response schema for `/transfer/originator/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferOriginatorCreateResponse { public static final String SERIALIZED_NAME_ORIGINATOR_CLIENT_ID = "originator_client_id"; @SerializedName(SERIALIZED_NAME_ORIGINATOR_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferOriginatorDiligence.java b/src/main/java/com/plaid/client/model/TransferOriginatorDiligence.java index 666a81f0d..bb008a358 100644 --- a/src/main/java/com/plaid/client/model/TransferOriginatorDiligence.java +++ b/src/main/java/com/plaid/client/model/TransferOriginatorDiligence.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * The diligence information for the originator. */ @ApiModel(description = "The diligence information for the originator.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferOriginatorDiligence { public static final String SERIALIZED_NAME_DBA = "dba"; @SerializedName(SERIALIZED_NAME_DBA) diff --git a/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountCreateRequest.java b/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountCreateRequest.java index bd04d2ce8..a8633d9db 100644 --- a/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountCreateRequest.java +++ b/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the request schema for `/transfer/originator/funding_account/create` */ @ApiModel(description = "Defines the request schema for `/transfer/originator/funding_account/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferOriginatorFundingAccountCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountCreateResponse.java b/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountCreateResponse.java index 7852346c0..34f3c943b 100644 --- a/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountCreateResponse.java +++ b/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/transfer/originator/funding_account/create` */ @ApiModel(description = "Defines the response schema for `/transfer/originator/funding_account/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferOriginatorFundingAccountCreateResponse { public static final String SERIALIZED_NAME_FUNDING_ACCOUNT_ID = "funding_account_id"; @SerializedName(SERIALIZED_NAME_FUNDING_ACCOUNT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountUpdateRequest.java b/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountUpdateRequest.java index bf40c512d..02431d76d 100644 --- a/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountUpdateRequest.java +++ b/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountUpdateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the request schema for `/transfer/originator/funding_account/update` */ @ApiModel(description = "Defines the request schema for `/transfer/originator/funding_account/update`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferOriginatorFundingAccountUpdateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountUpdateResponse.java b/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountUpdateResponse.java index 46a2dd502..d43c24d28 100644 --- a/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountUpdateResponse.java +++ b/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountUpdateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/transfer/originator/funding_account/update` */ @ApiModel(description = "Defines the response schema for `/transfer/originator/funding_account/update`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferOriginatorFundingAccountUpdateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/TransferOriginatorGetRequest.java b/src/main/java/com/plaid/client/model/TransferOriginatorGetRequest.java index 9d269cbc4..4955993df 100644 --- a/src/main/java/com/plaid/client/model/TransferOriginatorGetRequest.java +++ b/src/main/java/com/plaid/client/model/TransferOriginatorGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/originator/get` */ @ApiModel(description = "Defines the request schema for `/transfer/originator/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferOriginatorGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferOriginatorGetResponse.java b/src/main/java/com/plaid/client/model/TransferOriginatorGetResponse.java index f87dab068..4ae8e8c16 100644 --- a/src/main/java/com/plaid/client/model/TransferOriginatorGetResponse.java +++ b/src/main/java/com/plaid/client/model/TransferOriginatorGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/transfer/originator/get` */ @ApiModel(description = "Defines the response schema for `/transfer/originator/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferOriginatorGetResponse { public static final String SERIALIZED_NAME_ORIGINATOR = "originator"; @SerializedName(SERIALIZED_NAME_ORIGINATOR) diff --git a/src/main/java/com/plaid/client/model/TransferOriginatorListRequest.java b/src/main/java/com/plaid/client/model/TransferOriginatorListRequest.java index 91cbc8b02..d53188209 100644 --- a/src/main/java/com/plaid/client/model/TransferOriginatorListRequest.java +++ b/src/main/java/com/plaid/client/model/TransferOriginatorListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/originator/list` */ @ApiModel(description = "Defines the request schema for `/transfer/originator/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferOriginatorListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferOriginatorListResponse.java b/src/main/java/com/plaid/client/model/TransferOriginatorListResponse.java index 5a239d5e7..5de60e585 100644 --- a/src/main/java/com/plaid/client/model/TransferOriginatorListResponse.java +++ b/src/main/java/com/plaid/client/model/TransferOriginatorListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Defines the response schema for `/transfer/originator/list` */ @ApiModel(description = "Defines the response schema for `/transfer/originator/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferOriginatorListResponse { public static final String SERIALIZED_NAME_ORIGINATORS = "originators"; @SerializedName(SERIALIZED_NAME_ORIGINATORS) diff --git a/src/main/java/com/plaid/client/model/TransferPlatformOnboardingUpdateWebhook.java b/src/main/java/com/plaid/client/model/TransferPlatformOnboardingUpdateWebhook.java index 7eda7af3d..76b28771a 100644 --- a/src/main/java/com/plaid/client/model/TransferPlatformOnboardingUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/TransferPlatformOnboardingUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Fired when the status of an onboarding originator has been updated. Call `/transfer/originator/get` to check the latest status */ @ApiModel(description = "Fired when the status of an onboarding originator has been updated. Call `/transfer/originator/get` to check the latest status") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferPlatformOnboardingUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/TransferPlatformOriginatorCreateRequest.java b/src/main/java/com/plaid/client/model/TransferPlatformOriginatorCreateRequest.java index 794f51ad7..d0ccb38ab 100644 --- a/src/main/java/com/plaid/client/model/TransferPlatformOriginatorCreateRequest.java +++ b/src/main/java/com/plaid/client/model/TransferPlatformOriginatorCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Defines the request schema for `/transfer/platform/originator/create` */ @ApiModel(description = "Defines the request schema for `/transfer/platform/originator/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferPlatformOriginatorCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferPlatformOriginatorCreateResponse.java b/src/main/java/com/plaid/client/model/TransferPlatformOriginatorCreateResponse.java index 200aa2e0d..15a5cd85a 100644 --- a/src/main/java/com/plaid/client/model/TransferPlatformOriginatorCreateResponse.java +++ b/src/main/java/com/plaid/client/model/TransferPlatformOriginatorCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/transfer/platform/originator/create` */ @ApiModel(description = "Defines the response schema for `/transfer/platform/originator/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferPlatformOriginatorCreateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/TransferPlatformPersonAddress.java b/src/main/java/com/plaid/client/model/TransferPlatformPersonAddress.java index e372b6431..60cf849c6 100644 --- a/src/main/java/com/plaid/client/model/TransferPlatformPersonAddress.java +++ b/src/main/java/com/plaid/client/model/TransferPlatformPersonAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Home address of a person */ @ApiModel(description = "Home address of a person") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferPlatformPersonAddress { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/TransferPlatformPersonCreateRequest.java b/src/main/java/com/plaid/client/model/TransferPlatformPersonCreateRequest.java index 24665a8fb..bf793614d 100644 --- a/src/main/java/com/plaid/client/model/TransferPlatformPersonCreateRequest.java +++ b/src/main/java/com/plaid/client/model/TransferPlatformPersonCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Defines the request schema for `/transfer/platform/person/create` */ @ApiModel(description = "Defines the request schema for `/transfer/platform/person/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferPlatformPersonCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferPlatformPersonCreateResponse.java b/src/main/java/com/plaid/client/model/TransferPlatformPersonCreateResponse.java index 406ec0569..d0725c3d5 100644 --- a/src/main/java/com/plaid/client/model/TransferPlatformPersonCreateResponse.java +++ b/src/main/java/com/plaid/client/model/TransferPlatformPersonCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/transfer/platform/person/create` */ @ApiModel(description = "Defines the response schema for `/transfer/platform/person/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferPlatformPersonCreateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/TransferPlatformPersonIDNumber.java b/src/main/java/com/plaid/client/model/TransferPlatformPersonIDNumber.java index 542bf7b2a..760f31a7a 100644 --- a/src/main/java/com/plaid/client/model/TransferPlatformPersonIDNumber.java +++ b/src/main/java/com/plaid/client/model/TransferPlatformPersonIDNumber.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ID number of the person */ @ApiModel(description = "ID number of the person") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferPlatformPersonIDNumber { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) diff --git a/src/main/java/com/plaid/client/model/TransferPlatformPersonName.java b/src/main/java/com/plaid/client/model/TransferPlatformPersonName.java index fb5a08a4d..485dd147c 100644 --- a/src/main/java/com/plaid/client/model/TransferPlatformPersonName.java +++ b/src/main/java/com/plaid/client/model/TransferPlatformPersonName.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The person's legal name */ @ApiModel(description = "The person's legal name") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferPlatformPersonName { public static final String SERIALIZED_NAME_GIVEN_NAME = "given_name"; @SerializedName(SERIALIZED_NAME_GIVEN_NAME) diff --git a/src/main/java/com/plaid/client/model/TransferPlatformRequirement.java b/src/main/java/com/plaid/client/model/TransferPlatformRequirement.java index 06cc2139a..8f2b4f210 100644 --- a/src/main/java/com/plaid/client/model/TransferPlatformRequirement.java +++ b/src/main/java/com/plaid/client/model/TransferPlatformRequirement.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * A piece of information that is required for originator onboarding. */ @ApiModel(description = "A piece of information that is required for originator onboarding.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferPlatformRequirement { public static final String SERIALIZED_NAME_REQUIREMENT_TYPE = "requirement_type"; @SerializedName(SERIALIZED_NAME_REQUIREMENT_TYPE) diff --git a/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmission.java b/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmission.java index 7ad8ebc55..a4ce8b66e 100644 --- a/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmission.java +++ b/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmission.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * A single requirement submission */ @ApiModel(description = "A single requirement submission") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferPlatformRequirementSubmission { public static final String SERIALIZED_NAME_REQUIREMENT_TYPE = "requirement_type"; @SerializedName(SERIALIZED_NAME_REQUIREMENT_TYPE) diff --git a/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmitRequest.java b/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmitRequest.java index d1cf2df67..61501b590 100644 --- a/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmitRequest.java +++ b/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmitRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Defines the request schema for `/transfer/platform/requirement/submit` */ @ApiModel(description = "Defines the request schema for `/transfer/platform/requirement/submit`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferPlatformRequirementSubmitRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmitResponse.java b/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmitResponse.java index 492e53044..d6e4741b7 100644 --- a/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmitResponse.java +++ b/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmitResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/transfer/platform/requirement/submit` */ @ApiModel(description = "Defines the response schema for `/transfer/platform/requirement/submit`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferPlatformRequirementSubmitResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/TransferPlatformTOSAcceptanceMetadata.java b/src/main/java/com/plaid/client/model/TransferPlatformTOSAcceptanceMetadata.java index b2364110b..10b30c5c7 100644 --- a/src/main/java/com/plaid/client/model/TransferPlatformTOSAcceptanceMetadata.java +++ b/src/main/java/com/plaid/client/model/TransferPlatformTOSAcceptanceMetadata.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Metadata related to the acceptance of Terms of Service */ @ApiModel(description = "Metadata related to the acceptance of Terms of Service") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferPlatformTOSAcceptanceMetadata { public static final String SERIALIZED_NAME_AGREEMENT_ACCEPTED = "agreement_accepted"; @SerializedName(SERIALIZED_NAME_AGREEMENT_ACCEPTED) diff --git a/src/main/java/com/plaid/client/model/TransferQuestionnaireCreateRequest.java b/src/main/java/com/plaid/client/model/TransferQuestionnaireCreateRequest.java index ca86eafbf..0e2beb034 100644 --- a/src/main/java/com/plaid/client/model/TransferQuestionnaireCreateRequest.java +++ b/src/main/java/com/plaid/client/model/TransferQuestionnaireCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/questionnaire/create` */ @ApiModel(description = "Defines the request schema for `/transfer/questionnaire/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferQuestionnaireCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferQuestionnaireCreateResponse.java b/src/main/java/com/plaid/client/model/TransferQuestionnaireCreateResponse.java index c00ca6c6f..5b2ca4e75 100644 --- a/src/main/java/com/plaid/client/model/TransferQuestionnaireCreateResponse.java +++ b/src/main/java/com/plaid/client/model/TransferQuestionnaireCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/transfer/questionnaire/create` */ @ApiModel(description = "Defines the response schema for `/transfer/questionnaire/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferQuestionnaireCreateResponse { public static final String SERIALIZED_NAME_ONBOARDING_URL = "onboarding_url"; @SerializedName(SERIALIZED_NAME_ONBOARDING_URL) diff --git a/src/main/java/com/plaid/client/model/TransferRecurringCancelRequest.java b/src/main/java/com/plaid/client/model/TransferRecurringCancelRequest.java index 6e85dc464..76e5dc8aa 100644 --- a/src/main/java/com/plaid/client/model/TransferRecurringCancelRequest.java +++ b/src/main/java/com/plaid/client/model/TransferRecurringCancelRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/recurring/cancel` */ @ApiModel(description = "Defines the request schema for `/transfer/recurring/cancel`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRecurringCancelRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferRecurringCancelResponse.java b/src/main/java/com/plaid/client/model/TransferRecurringCancelResponse.java index 8ae2e90a3..6f2bfb4cb 100644 --- a/src/main/java/com/plaid/client/model/TransferRecurringCancelResponse.java +++ b/src/main/java/com/plaid/client/model/TransferRecurringCancelResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/transfer/recurring/cancel` */ @ApiModel(description = "Defines the response schema for `/transfer/recurring/cancel`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRecurringCancelResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/TransferRecurringCreateRequest.java b/src/main/java/com/plaid/client/model/TransferRecurringCreateRequest.java index ef17fe247..d265206d7 100644 --- a/src/main/java/com/plaid/client/model/TransferRecurringCreateRequest.java +++ b/src/main/java/com/plaid/client/model/TransferRecurringCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * Defines the request schema for `/transfer/recurring/create` */ @ApiModel(description = "Defines the request schema for `/transfer/recurring/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRecurringCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferRecurringCreateResponse.java b/src/main/java/com/plaid/client/model/TransferRecurringCreateResponse.java index 04a44a325..30a4e02a3 100644 --- a/src/main/java/com/plaid/client/model/TransferRecurringCreateResponse.java +++ b/src/main/java/com/plaid/client/model/TransferRecurringCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Defines the response schema for `/transfer/recurring/create` */ @ApiModel(description = "Defines the response schema for `/transfer/recurring/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRecurringCreateResponse { public static final String SERIALIZED_NAME_RECURRING_TRANSFER = "recurring_transfer"; @SerializedName(SERIALIZED_NAME_RECURRING_TRANSFER) diff --git a/src/main/java/com/plaid/client/model/TransferRecurringGetRequest.java b/src/main/java/com/plaid/client/model/TransferRecurringGetRequest.java index 6efda65c0..b569d3e65 100644 --- a/src/main/java/com/plaid/client/model/TransferRecurringGetRequest.java +++ b/src/main/java/com/plaid/client/model/TransferRecurringGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/recurring/get` */ @ApiModel(description = "Defines the request schema for `/transfer/recurring/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRecurringGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferRecurringGetResponse.java b/src/main/java/com/plaid/client/model/TransferRecurringGetResponse.java index 4e8cdcfa5..ec4845ada 100644 --- a/src/main/java/com/plaid/client/model/TransferRecurringGetResponse.java +++ b/src/main/java/com/plaid/client/model/TransferRecurringGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/transfer/recurring/get` */ @ApiModel(description = "Defines the response schema for `/transfer/recurring/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRecurringGetResponse { public static final String SERIALIZED_NAME_RECURRING_TRANSFER = "recurring_transfer"; @SerializedName(SERIALIZED_NAME_RECURRING_TRANSFER) diff --git a/src/main/java/com/plaid/client/model/TransferRecurringListRequest.java b/src/main/java/com/plaid/client/model/TransferRecurringListRequest.java index c376029b3..c8e5c9147 100644 --- a/src/main/java/com/plaid/client/model/TransferRecurringListRequest.java +++ b/src/main/java/com/plaid/client/model/TransferRecurringListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the request schema for `/transfer/recurring/list` */ @ApiModel(description = "Defines the request schema for `/transfer/recurring/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRecurringListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferRecurringListResponse.java b/src/main/java/com/plaid/client/model/TransferRecurringListResponse.java index b723dd5d1..be5170989 100644 --- a/src/main/java/com/plaid/client/model/TransferRecurringListResponse.java +++ b/src/main/java/com/plaid/client/model/TransferRecurringListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Defines the response schema for `/transfer/recurring/list` */ @ApiModel(description = "Defines the response schema for `/transfer/recurring/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRecurringListResponse { public static final String SERIALIZED_NAME_RECURRING_TRANSFERS = "recurring_transfers"; @SerializedName(SERIALIZED_NAME_RECURRING_TRANSFERS) diff --git a/src/main/java/com/plaid/client/model/TransferRecurringNetwork.java b/src/main/java/com/plaid/client/model/TransferRecurringNetwork.java index 1b89902a7..974ecd3c9 100644 --- a/src/main/java/com/plaid/client/model/TransferRecurringNetwork.java +++ b/src/main/java/com/plaid/client/model/TransferRecurringNetwork.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferRecurringSchedule.java b/src/main/java/com/plaid/client/model/TransferRecurringSchedule.java index a5b93b7c3..c3fcb77ae 100644 --- a/src/main/java/com/plaid/client/model/TransferRecurringSchedule.java +++ b/src/main/java/com/plaid/client/model/TransferRecurringSchedule.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The schedule that the recurring transfer will be executed on. */ @ApiModel(description = "The schedule that the recurring transfer will be executed on.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRecurringSchedule { public static final String SERIALIZED_NAME_INTERVAL_UNIT = "interval_unit"; @SerializedName(SERIALIZED_NAME_INTERVAL_UNIT) diff --git a/src/main/java/com/plaid/client/model/TransferRecurringStatus.java b/src/main/java/com/plaid/client/model/TransferRecurringStatus.java index a0c090f9f..e70a2f16f 100644 --- a/src/main/java/com/plaid/client/model/TransferRecurringStatus.java +++ b/src/main/java/com/plaid/client/model/TransferRecurringStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferRefund.java b/src/main/java/com/plaid/client/model/TransferRefund.java index 56a6d13d2..5abf22981 100644 --- a/src/main/java/com/plaid/client/model/TransferRefund.java +++ b/src/main/java/com/plaid/client/model/TransferRefund.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Represents a refund within the Transfers API. */ @ApiModel(description = "Represents a refund within the Transfers API.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRefund { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/TransferRefundCancelRequest.java b/src/main/java/com/plaid/client/model/TransferRefundCancelRequest.java index bfcc37493..7ce7d43a3 100644 --- a/src/main/java/com/plaid/client/model/TransferRefundCancelRequest.java +++ b/src/main/java/com/plaid/client/model/TransferRefundCancelRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/refund/cancel` */ @ApiModel(description = "Defines the request schema for `/transfer/refund/cancel`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRefundCancelRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferRefundCancelResponse.java b/src/main/java/com/plaid/client/model/TransferRefundCancelResponse.java index 0b130f998..2cb3af043 100644 --- a/src/main/java/com/plaid/client/model/TransferRefundCancelResponse.java +++ b/src/main/java/com/plaid/client/model/TransferRefundCancelResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the response schema for `/transfer/refund/cancel` */ @ApiModel(description = "Defines the response schema for `/transfer/refund/cancel`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRefundCancelResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/TransferRefundCreateRequest.java b/src/main/java/com/plaid/client/model/TransferRefundCreateRequest.java index 9275f41cc..642eb5811 100644 --- a/src/main/java/com/plaid/client/model/TransferRefundCreateRequest.java +++ b/src/main/java/com/plaid/client/model/TransferRefundCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/refund/create` */ @ApiModel(description = "Defines the request schema for `/transfer/refund/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRefundCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferRefundCreateResponse.java b/src/main/java/com/plaid/client/model/TransferRefundCreateResponse.java index 3ec828317..965d25b72 100644 --- a/src/main/java/com/plaid/client/model/TransferRefundCreateResponse.java +++ b/src/main/java/com/plaid/client/model/TransferRefundCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/transfer/refund/create` */ @ApiModel(description = "Defines the response schema for `/transfer/refund/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRefundCreateResponse { public static final String SERIALIZED_NAME_REFUND = "refund"; @SerializedName(SERIALIZED_NAME_REFUND) diff --git a/src/main/java/com/plaid/client/model/TransferRefundFailure.java b/src/main/java/com/plaid/client/model/TransferRefundFailure.java index ef165e7e2..f0f4c098b 100644 --- a/src/main/java/com/plaid/client/model/TransferRefundFailure.java +++ b/src/main/java/com/plaid/client/model/TransferRefundFailure.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The failure reason if the event type for a refund is `\"failed\"` or `\"returned\"`. Null value otherwise. */ @ApiModel(description = "The failure reason if the event type for a refund is `\"failed\"` or `\"returned\"`. Null value otherwise.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRefundFailure { public static final String SERIALIZED_NAME_FAILURE_CODE = "failure_code"; @SerializedName(SERIALIZED_NAME_FAILURE_CODE) diff --git a/src/main/java/com/plaid/client/model/TransferRefundGetRequest.java b/src/main/java/com/plaid/client/model/TransferRefundGetRequest.java index 1782bd032..8d279da9b 100644 --- a/src/main/java/com/plaid/client/model/TransferRefundGetRequest.java +++ b/src/main/java/com/plaid/client/model/TransferRefundGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/refund/get` */ @ApiModel(description = "Defines the request schema for `/transfer/refund/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRefundGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferRefundGetResponse.java b/src/main/java/com/plaid/client/model/TransferRefundGetResponse.java index 99ad6c169..15142c210 100644 --- a/src/main/java/com/plaid/client/model/TransferRefundGetResponse.java +++ b/src/main/java/com/plaid/client/model/TransferRefundGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/transfer/refund/get` */ @ApiModel(description = "Defines the response schema for `/transfer/refund/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRefundGetResponse { public static final String SERIALIZED_NAME_REFUND = "refund"; @SerializedName(SERIALIZED_NAME_REFUND) diff --git a/src/main/java/com/plaid/client/model/TransferRefundStatus.java b/src/main/java/com/plaid/client/model/TransferRefundStatus.java index ba36ecb49..5bdfaab7d 100644 --- a/src/main/java/com/plaid/client/model/TransferRefundStatus.java +++ b/src/main/java/com/plaid/client/model/TransferRefundStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferRepayment.java b/src/main/java/com/plaid/client/model/TransferRepayment.java index 9c6ce5698..9d9df8956 100644 --- a/src/main/java/com/plaid/client/model/TransferRepayment.java +++ b/src/main/java/com/plaid/client/model/TransferRepayment.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRepayment { public static final String SERIALIZED_NAME_REPAYMENT_ID = "repayment_id"; @SerializedName(SERIALIZED_NAME_REPAYMENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferRepaymentListRequest.java b/src/main/java/com/plaid/client/model/TransferRepaymentListRequest.java index 9721f5098..7d83f874b 100644 --- a/src/main/java/com/plaid/client/model/TransferRepaymentListRequest.java +++ b/src/main/java/com/plaid/client/model/TransferRepaymentListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the request schema for `/transfer/repayment/list` */ @ApiModel(description = "Defines the request schema for `/transfer/repayment/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRepaymentListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferRepaymentListResponse.java b/src/main/java/com/plaid/client/model/TransferRepaymentListResponse.java index ad550786b..84c32d235 100644 --- a/src/main/java/com/plaid/client/model/TransferRepaymentListResponse.java +++ b/src/main/java/com/plaid/client/model/TransferRepaymentListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Defines the response schema for `/transfer/repayments/list` */ @ApiModel(description = "Defines the response schema for `/transfer/repayments/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRepaymentListResponse { public static final String SERIALIZED_NAME_REPAYMENTS = "repayments"; @SerializedName(SERIALIZED_NAME_REPAYMENTS) diff --git a/src/main/java/com/plaid/client/model/TransferRepaymentReturn.java b/src/main/java/com/plaid/client/model/TransferRepaymentReturn.java index 5060ff6fa..a44d8581e 100644 --- a/src/main/java/com/plaid/client/model/TransferRepaymentReturn.java +++ b/src/main/java/com/plaid/client/model/TransferRepaymentReturn.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRepaymentReturn { public static final String SERIALIZED_NAME_TRANSFER_ID = "transfer_id"; @SerializedName(SERIALIZED_NAME_TRANSFER_ID) diff --git a/src/main/java/com/plaid/client/model/TransferRepaymentReturnListRequest.java b/src/main/java/com/plaid/client/model/TransferRepaymentReturnListRequest.java index 236997c90..b23c4b9b6 100644 --- a/src/main/java/com/plaid/client/model/TransferRepaymentReturnListRequest.java +++ b/src/main/java/com/plaid/client/model/TransferRepaymentReturnListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/repayment/return/list` */ @ApiModel(description = "Defines the request schema for `/transfer/repayment/return/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRepaymentReturnListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferRepaymentReturnListResponse.java b/src/main/java/com/plaid/client/model/TransferRepaymentReturnListResponse.java index d688dcb00..b34d23ea7 100644 --- a/src/main/java/com/plaid/client/model/TransferRepaymentReturnListResponse.java +++ b/src/main/java/com/plaid/client/model/TransferRepaymentReturnListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Defines the response schema for `/transfer/repayments/return/list` */ @ApiModel(description = "Defines the response schema for `/transfer/repayments/return/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferRepaymentReturnListResponse { public static final String SERIALIZED_NAME_REPAYMENT_RETURNS = "repayment_returns"; @SerializedName(SERIALIZED_NAME_REPAYMENT_RETURNS) diff --git a/src/main/java/com/plaid/client/model/TransferScheduleIntervalUnit.java b/src/main/java/com/plaid/client/model/TransferScheduleIntervalUnit.java index 2b38777ee..86b1efe51 100644 --- a/src/main/java/com/plaid/client/model/TransferScheduleIntervalUnit.java +++ b/src/main/java/com/plaid/client/model/TransferScheduleIntervalUnit.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferStatus.java b/src/main/java/com/plaid/client/model/TransferStatus.java index e0070217d..57272c830 100644 --- a/src/main/java/com/plaid/client/model/TransferStatus.java +++ b/src/main/java/com/plaid/client/model/TransferStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferSweep.java b/src/main/java/com/plaid/client/model/TransferSweep.java index b14147afd..2da523ef2 100644 --- a/src/main/java/com/plaid/client/model/TransferSweep.java +++ b/src/main/java/com/plaid/client/model/TransferSweep.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Describes a sweep of funds to / from the sweep account. A sweep is associated with many sweep events (events of type `swept` or `return_swept`) which can be retrieved by invoking the `/transfer/event/list` endpoint with the corresponding `sweep_id`. `swept` events occur when the transfer amount is credited or debited from your sweep account, depending on the `type` of the transfer. `return_swept` events occur when a transfer is returned and Plaid undoes the credit or debit. The total sum of the `swept` and `return_swept` events is equal to the `amount` of the sweep Plaid creates and matches the amount of the entry on your sweep account ledger. */ @ApiModel(description = "Describes a sweep of funds to / from the sweep account. A sweep is associated with many sweep events (events of type `swept` or `return_swept`) which can be retrieved by invoking the `/transfer/event/list` endpoint with the corresponding `sweep_id`. `swept` events occur when the transfer amount is credited or debited from your sweep account, depending on the `type` of the transfer. `return_swept` events occur when a transfer is returned and Plaid undoes the credit or debit. The total sum of the `swept` and `return_swept` events is equal to the `amount` of the sweep Plaid creates and matches the amount of the entry on your sweep account ledger.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferSweep { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/TransferSweepGetRequest.java b/src/main/java/com/plaid/client/model/TransferSweepGetRequest.java index 9689e110d..fbcdb4be9 100644 --- a/src/main/java/com/plaid/client/model/TransferSweepGetRequest.java +++ b/src/main/java/com/plaid/client/model/TransferSweepGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Defines the request schema for `/transfer/sweep/get` */ @ApiModel(description = "Defines the request schema for `/transfer/sweep/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferSweepGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferSweepGetResponse.java b/src/main/java/com/plaid/client/model/TransferSweepGetResponse.java index 2788dabcf..8bde72fa8 100644 --- a/src/main/java/com/plaid/client/model/TransferSweepGetResponse.java +++ b/src/main/java/com/plaid/client/model/TransferSweepGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the response schema for `/transfer/sweep/get` */ @ApiModel(description = "Defines the response schema for `/transfer/sweep/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferSweepGetResponse { public static final String SERIALIZED_NAME_SWEEP = "sweep"; @SerializedName(SERIALIZED_NAME_SWEEP) diff --git a/src/main/java/com/plaid/client/model/TransferSweepListRequest.java b/src/main/java/com/plaid/client/model/TransferSweepListRequest.java index 80ecf9344..8f0ae49c8 100644 --- a/src/main/java/com/plaid/client/model/TransferSweepListRequest.java +++ b/src/main/java/com/plaid/client/model/TransferSweepListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Defines the request schema for `/transfer/sweep/list` */ @ApiModel(description = "Defines the request schema for `/transfer/sweep/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferSweepListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/TransferSweepListResponse.java b/src/main/java/com/plaid/client/model/TransferSweepListResponse.java index 65d222596..475743830 100644 --- a/src/main/java/com/plaid/client/model/TransferSweepListResponse.java +++ b/src/main/java/com/plaid/client/model/TransferSweepListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Defines the response schema for `/transfer/sweep/list` */ @ApiModel(description = "Defines the response schema for `/transfer/sweep/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferSweepListResponse { public static final String SERIALIZED_NAME_SWEEPS = "sweeps"; @SerializedName(SERIALIZED_NAME_SWEEPS) diff --git a/src/main/java/com/plaid/client/model/TransferSweepStatus.java b/src/main/java/com/plaid/client/model/TransferSweepStatus.java index 01e0a1883..8a3d66c08 100644 --- a/src/main/java/com/plaid/client/model/TransferSweepStatus.java +++ b/src/main/java/com/plaid/client/model/TransferSweepStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferTestClock.java b/src/main/java/com/plaid/client/model/TransferTestClock.java index 5962beacb..a3490e409 100644 --- a/src/main/java/com/plaid/client/model/TransferTestClock.java +++ b/src/main/java/com/plaid/client/model/TransferTestClock.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Defines the test clock for a transfer. */ @ApiModel(description = "Defines the test clock for a transfer.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferTestClock { public static final String SERIALIZED_NAME_TEST_CLOCK_ID = "test_clock_id"; @SerializedName(SERIALIZED_NAME_TEST_CLOCK_ID) diff --git a/src/main/java/com/plaid/client/model/TransferType.java b/src/main/java/com/plaid/client/model/TransferType.java index 132c11f03..d6f4692dd 100644 --- a/src/main/java/com/plaid/client/model/TransferType.java +++ b/src/main/java/com/plaid/client/model/TransferType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/TransferUserAddressInRequest.java b/src/main/java/com/plaid/client/model/TransferUserAddressInRequest.java index 6d98f1c75..483803b63 100644 --- a/src/main/java/com/plaid/client/model/TransferUserAddressInRequest.java +++ b/src/main/java/com/plaid/client/model/TransferUserAddressInRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferUserAddressInRequest { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) diff --git a/src/main/java/com/plaid/client/model/TransferUserAddressInResponse.java b/src/main/java/com/plaid/client/model/TransferUserAddressInResponse.java index 68d557d0f..4efbcf810 100644 --- a/src/main/java/com/plaid/client/model/TransferUserAddressInResponse.java +++ b/src/main/java/com/plaid/client/model/TransferUserAddressInResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferUserAddressInResponse { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) diff --git a/src/main/java/com/plaid/client/model/TransferUserInRequest.java b/src/main/java/com/plaid/client/model/TransferUserInRequest.java index 717547091..763c47076 100644 --- a/src/main/java/com/plaid/client/model/TransferUserInRequest.java +++ b/src/main/java/com/plaid/client/model/TransferUserInRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The legal name and other information for the account holder. */ @ApiModel(description = "The legal name and other information for the account holder.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferUserInRequest { public static final String SERIALIZED_NAME_LEGAL_NAME = "legal_name"; @SerializedName(SERIALIZED_NAME_LEGAL_NAME) diff --git a/src/main/java/com/plaid/client/model/TransferUserInRequestDeprecated.java b/src/main/java/com/plaid/client/model/TransferUserInRequestDeprecated.java index 6ef86bf03..5b8b1a600 100644 --- a/src/main/java/com/plaid/client/model/TransferUserInRequestDeprecated.java +++ b/src/main/java/com/plaid/client/model/TransferUserInRequestDeprecated.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The legal name and other information for the account holder. */ @ApiModel(description = "The legal name and other information for the account holder.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferUserInRequestDeprecated { public static final String SERIALIZED_NAME_LEGAL_NAME = "legal_name"; @SerializedName(SERIALIZED_NAME_LEGAL_NAME) diff --git a/src/main/java/com/plaid/client/model/TransferUserInResponse.java b/src/main/java/com/plaid/client/model/TransferUserInResponse.java index 6852f4484..b11c12be3 100644 --- a/src/main/java/com/plaid/client/model/TransferUserInResponse.java +++ b/src/main/java/com/plaid/client/model/TransferUserInResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The legal name and other information for the account holder. */ @ApiModel(description = "The legal name and other information for the account holder.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferUserInResponse { public static final String SERIALIZED_NAME_LEGAL_NAME = "legal_name"; @SerializedName(SERIALIZED_NAME_LEGAL_NAME) diff --git a/src/main/java/com/plaid/client/model/TransferWireDetails.java b/src/main/java/com/plaid/client/model/TransferWireDetails.java index 86fc93789..d52228d0a 100644 --- a/src/main/java/com/plaid/client/model/TransferWireDetails.java +++ b/src/main/java/com/plaid/client/model/TransferWireDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Information specific to wire transfers. */ @ApiModel(description = "Information specific to wire transfers.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TransferWireDetails { public static final String SERIALIZED_NAME_MESSAGE_TO_BENEFICIARY = "message_to_beneficiary"; @SerializedName(SERIALIZED_NAME_MESSAGE_TO_BENEFICIARY) diff --git a/src/main/java/com/plaid/client/model/TrustIndex.java b/src/main/java/com/plaid/client/model/TrustIndex.java index b5156741e..bc38ae038 100644 --- a/src/main/java/com/plaid/client/model/TrustIndex.java +++ b/src/main/java/com/plaid/client/model/TrustIndex.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Represents a calculate Trust Index Score. */ @ApiModel(description = "Represents a calculate Trust Index Score.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TrustIndex { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) diff --git a/src/main/java/com/plaid/client/model/TrustIndexSubscore.java b/src/main/java/com/plaid/client/model/TrustIndexSubscore.java index e8f7f5f30..415f65ad7 100644 --- a/src/main/java/com/plaid/client/model/TrustIndexSubscore.java +++ b/src/main/java/com/plaid/client/model/TrustIndexSubscore.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Represents Trust Index Subscore. */ @ApiModel(description = "Represents Trust Index Subscore.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TrustIndexSubscore { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) diff --git a/src/main/java/com/plaid/client/model/TrustIndexSubscores.java b/src/main/java/com/plaid/client/model/TrustIndexSubscores.java index 43c7c6559..82318263c 100644 --- a/src/main/java/com/plaid/client/model/TrustIndexSubscores.java +++ b/src/main/java/com/plaid/client/model/TrustIndexSubscores.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Contains sub-score metadata. */ @ApiModel(description = "Contains sub-score metadata.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TrustIndexSubscores { public static final String SERIALIZED_NAME_DEVICE_AND_CONNECTION = "device_and_connection"; @SerializedName(SERIALIZED_NAME_DEVICE_AND_CONNECTION) diff --git a/src/main/java/com/plaid/client/model/TrustedDeviceData.java b/src/main/java/com/plaid/client/model/TrustedDeviceData.java index 920d1c42e..2b9ed9280 100644 --- a/src/main/java/com/plaid/client/model/TrustedDeviceData.java +++ b/src/main/java/com/plaid/client/model/TrustedDeviceData.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Trusted Device data associated with the previous Link session. */ @ApiModel(description = "Trusted Device data associated with the previous Link session.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class TrustedDeviceData { public static final String SERIALIZED_NAME_TRUST_LEVEL = "trust_level"; @SerializedName(SERIALIZED_NAME_TRUST_LEVEL) diff --git a/src/main/java/com/plaid/client/model/UpdateEntityScreeningRequestSearchTerms.java b/src/main/java/com/plaid/client/model/UpdateEntityScreeningRequestSearchTerms.java index 4c730f371..87ff4c7bf 100644 --- a/src/main/java/com/plaid/client/model/UpdateEntityScreeningRequestSearchTerms.java +++ b/src/main/java/com/plaid/client/model/UpdateEntityScreeningRequestSearchTerms.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Search terms for editing an entity watchlist screening */ @ApiModel(description = "Search terms for editing an entity watchlist screening") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UpdateEntityScreeningRequestSearchTerms { public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_PROGRAM_ID = "entity_watchlist_program_id"; @SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_PROGRAM_ID) diff --git a/src/main/java/com/plaid/client/model/UpdateIndividualScreeningRequestSearchTerms.java b/src/main/java/com/plaid/client/model/UpdateIndividualScreeningRequestSearchTerms.java index 9fe81cf9c..0f692f5f5 100644 --- a/src/main/java/com/plaid/client/model/UpdateIndividualScreeningRequestSearchTerms.java +++ b/src/main/java/com/plaid/client/model/UpdateIndividualScreeningRequestSearchTerms.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Search terms for editing an individual watchlist screening */ @ApiModel(description = "Search terms for editing an individual watchlist screening") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UpdateIndividualScreeningRequestSearchTerms { public static final String SERIALIZED_NAME_WATCHLIST_PROGRAM_ID = "watchlist_program_id"; @SerializedName(SERIALIZED_NAME_WATCHLIST_PROGRAM_ID) diff --git a/src/main/java/com/plaid/client/model/UserAccountIdentity.java b/src/main/java/com/plaid/client/model/UserAccountIdentity.java index 22f9b6f77..34b5b2eed 100644 --- a/src/main/java/com/plaid/client/model/UserAccountIdentity.java +++ b/src/main/java/com/plaid/client/model/UserAccountIdentity.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The identity data permissioned by the end user during the authorization flow. */ @ApiModel(description = "The identity data permissioned by the end user during the authorization flow.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserAccountIdentity { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/UserAccountIdentityAddress.java b/src/main/java/com/plaid/client/model/UserAccountIdentityAddress.java index 76e803e26..89282bf1b 100644 --- a/src/main/java/com/plaid/client/model/UserAccountIdentityAddress.java +++ b/src/main/java/com/plaid/client/model/UserAccountIdentityAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The user's address. */ @ApiModel(description = "The user's address.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserAccountIdentityAddress { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) diff --git a/src/main/java/com/plaid/client/model/UserAccountIdentityEditCounts.java b/src/main/java/com/plaid/client/model/UserAccountIdentityEditCounts.java index 085f455ee..bfcc84cfa 100644 --- a/src/main/java/com/plaid/client/model/UserAccountIdentityEditCounts.java +++ b/src/main/java/com/plaid/client/model/UserAccountIdentityEditCounts.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Edit counts over various time periods. */ @ApiModel(description = "Edit counts over various time periods.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserAccountIdentityEditCounts { public static final String SERIALIZED_NAME_EDITS_CURRENT = "edits_current"; @SerializedName(SERIALIZED_NAME_EDITS_CURRENT) diff --git a/src/main/java/com/plaid/client/model/UserAccountIdentityEditHistory.java b/src/main/java/com/plaid/client/model/UserAccountIdentityEditHistory.java index b103343ef..0f3af99dc 100644 --- a/src/main/java/com/plaid/client/model/UserAccountIdentityEditHistory.java +++ b/src/main/java/com/plaid/client/model/UserAccountIdentityEditHistory.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Statistics tracking the number of edits made to identity fields over various time periods. */ @ApiModel(description = "Statistics tracking the number of edits made to identity fields over various time periods.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserAccountIdentityEditHistory { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/UserAccountIdentityName.java b/src/main/java/com/plaid/client/model/UserAccountIdentityName.java index 877a03199..9fcfb40d3 100644 --- a/src/main/java/com/plaid/client/model/UserAccountIdentityName.java +++ b/src/main/java/com/plaid/client/model/UserAccountIdentityName.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * The user's first name and last name. */ @ApiModel(description = "The user's first name and last name.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserAccountIdentityName { public static final String SERIALIZED_NAME_FIRST_NAME = "first_name"; @SerializedName(SERIALIZED_NAME_FIRST_NAME) diff --git a/src/main/java/com/plaid/client/model/UserAccountIdentityOfficialDocument.java b/src/main/java/com/plaid/client/model/UserAccountIdentityOfficialDocument.java index 47a7a00d0..488f55e41 100644 --- a/src/main/java/com/plaid/client/model/UserAccountIdentityOfficialDocument.java +++ b/src/main/java/com/plaid/client/model/UserAccountIdentityOfficialDocument.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Official identity document edit statistics. */ @ApiModel(description = "Official identity document edit statistics.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserAccountIdentityOfficialDocument { public static final String SERIALIZED_NAME_SSN = "ssn"; @SerializedName(SERIALIZED_NAME_SSN) diff --git a/src/main/java/com/plaid/client/model/UserAccountItem.java b/src/main/java/com/plaid/client/model/UserAccountItem.java index 14c4423a6..2cd252939 100644 --- a/src/main/java/com/plaid/client/model/UserAccountItem.java +++ b/src/main/java/com/plaid/client/model/UserAccountItem.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An Item created during a Layer authorization session. */ @ApiModel(description = "An Item created during a Layer authorization session.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserAccountItem { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) diff --git a/src/main/java/com/plaid/client/model/UserAccountRevokedWebhook.java b/src/main/java/com/plaid/client/model/UserAccountRevokedWebhook.java index 0abfa018b..8bcd026f4 100644 --- a/src/main/java/com/plaid/client/model/UserAccountRevokedWebhook.java +++ b/src/main/java/com/plaid/client/model/UserAccountRevokedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The `USER_ACCOUNT_REVOKED` webhook is fired when an end user has revoked access to their account on the Data Provider's portal. This webhook is currently sent only for PNC Items, but may be sent in the future for other financial institutions that allow account-level permissions revocation through their portals. Upon receiving this webhook, it is recommended to delete any Plaid-derived data you have stored that is associated with the revoked account. If you are using Auth and receive this webhook, this webhook indicates that the TAN associated with the revoked account is no longer valid and cannot be used to create new transfers. You should not create new ACH transfers for the account that was revoked until access has been re-granted. You can request the user to re-grant access to their account by sending them through [update mode](https://plaid.com/docs/link/update-mode). Alternatively, they may re-grant access directly through the Data Provider's portal. After the user has re-granted access, Auth customers should call the auth endpoint again to obtain the new TAN. */ @ApiModel(description = "The `USER_ACCOUNT_REVOKED` webhook is fired when an end user has revoked access to their account on the Data Provider's portal. This webhook is currently sent only for PNC Items, but may be sent in the future for other financial institutions that allow account-level permissions revocation through their portals. Upon receiving this webhook, it is recommended to delete any Plaid-derived data you have stored that is associated with the revoked account. If you are using Auth and receive this webhook, this webhook indicates that the TAN associated with the revoked account is no longer valid and cannot be used to create new transfers. You should not create new ACH transfers for the account that was revoked until access has been re-granted. You can request the user to re-grant access to their account by sending them through [update mode](https://plaid.com/docs/link/update-mode). Alternatively, they may re-grant access directly through the Data Provider's portal. After the user has re-granted access, Auth customers should call the auth endpoint again to obtain the new TAN.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserAccountRevokedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/UserAccountSessionEvent.java b/src/main/java/com/plaid/client/model/UserAccountSessionEvent.java index f9b22844f..e94dd8fdb 100644 --- a/src/main/java/com/plaid/client/model/UserAccountSessionEvent.java +++ b/src/main/java/com/plaid/client/model/UserAccountSessionEvent.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Event data for user account session tracking */ @ApiModel(description = "Event data for user account session tracking") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserAccountSessionEvent { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/UserAccountSessionEventSendRequest.java b/src/main/java/com/plaid/client/model/UserAccountSessionEventSendRequest.java index 0c438d556..8ec4add05 100644 --- a/src/main/java/com/plaid/client/model/UserAccountSessionEventSendRequest.java +++ b/src/main/java/com/plaid/client/model/UserAccountSessionEventSendRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * UserAccountSessionEventSendRequest defines the request schema for `/user_account/session/event/send` */ @ApiModel(description = "UserAccountSessionEventSendRequest defines the request schema for `/user_account/session/event/send`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserAccountSessionEventSendRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/UserAccountSessionEventSendResponse.java b/src/main/java/com/plaid/client/model/UserAccountSessionEventSendResponse.java index 42a8dbb17..706637bc3 100644 --- a/src/main/java/com/plaid/client/model/UserAccountSessionEventSendResponse.java +++ b/src/main/java/com/plaid/client/model/UserAccountSessionEventSendResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserAccountSessionEventSendResponse defines the response schema for `/user_account/session/event/send` */ @ApiModel(description = "UserAccountSessionEventSendResponse defines the response schema for `/user_account/session/event/send`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserAccountSessionEventSendResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/UserAccountSessionGetRequest.java b/src/main/java/com/plaid/client/model/UserAccountSessionGetRequest.java index 757e13718..ad4153c0d 100644 --- a/src/main/java/com/plaid/client/model/UserAccountSessionGetRequest.java +++ b/src/main/java/com/plaid/client/model/UserAccountSessionGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserAccountSessionGetRequest defines the request schema for `/user_account/session/get` */ @ApiModel(description = "UserAccountSessionGetRequest defines the request schema for `/user_account/session/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserAccountSessionGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/UserAccountSessionGetResponse.java b/src/main/java/com/plaid/client/model/UserAccountSessionGetResponse.java index 93c76257f..002177d84 100644 --- a/src/main/java/com/plaid/client/model/UserAccountSessionGetResponse.java +++ b/src/main/java/com/plaid/client/model/UserAccountSessionGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * UserAccountSessionGetResponse defines the response schema for `/user_account/session/get` */ @ApiModel(description = "UserAccountSessionGetResponse defines the response schema for `/user_account/session/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserAccountSessionGetResponse { public static final String SERIALIZED_NAME_IDENTITY = "identity"; @SerializedName(SERIALIZED_NAME_IDENTITY) diff --git a/src/main/java/com/plaid/client/model/UserAddress.java b/src/main/java/com/plaid/client/model/UserAddress.java index 7854d8e69..708e157c1 100644 --- a/src/main/java/com/plaid/client/model/UserAddress.java +++ b/src/main/java/com/plaid/client/model/UserAddress.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Home address for the user. Supported values are: not provided, address with only country code or full address. For more context on this field, see [Input Validation by Country](https://plaid.com/docs/identity-verification/hybrid-input-validation/#input-validation-by-country). */ @ApiModel(description = "Home address for the user. Supported values are: not provided, address with only country code or full address. For more context on this field, see [Input Validation by Country](https://plaid.com/docs/identity-verification/hybrid-input-validation/#input-validation-by-country).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserAddress { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) diff --git a/src/main/java/com/plaid/client/model/UserBasedProducts.java b/src/main/java/com/plaid/client/model/UserBasedProducts.java index f8a579f42..c08fdcd36 100644 --- a/src/main/java/com/plaid/client/model/UserBasedProducts.java +++ b/src/main/java/com/plaid/client/model/UserBasedProducts.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/UserCreateRequest.java b/src/main/java/com/plaid/client/model/UserCreateRequest.java index 073e06799..bcfd5003d 100644 --- a/src/main/java/com/plaid/client/model/UserCreateRequest.java +++ b/src/main/java/com/plaid/client/model/UserCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * UserCreateRequest defines the request schema for `/user/create` */ @ApiModel(description = "UserCreateRequest defines the request schema for `/user/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/UserCreateResponse.java b/src/main/java/com/plaid/client/model/UserCreateResponse.java index 08eeb2aa3..d184d5234 100644 --- a/src/main/java/com/plaid/client/model/UserCreateResponse.java +++ b/src/main/java/com/plaid/client/model/UserCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserCreateResponse defines the response schema for `/user/create` */ @ApiModel(description = "UserCreateResponse defines the response schema for `/user/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserCreateResponse { public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) diff --git a/src/main/java/com/plaid/client/model/UserCustomPassword.java b/src/main/java/com/plaid/client/model/UserCustomPassword.java index ca93ea658..926df6c9b 100644 --- a/src/main/java/com/plaid/client/model/UserCustomPassword.java +++ b/src/main/java/com/plaid/client/model/UserCustomPassword.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Custom test accounts are configured with a JSON configuration object formulated according to the schema below. All top level fields are optional. Sending an empty object as a configuration will result in an account configured with random balances and transaction history. */ @ApiModel(description = "Custom test accounts are configured with a JSON configuration object formulated according to the schema below. All top level fields are optional. Sending an empty object as a configuration will result in an account configured with random balances and transaction history.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserCustomPassword { public static final String SERIALIZED_NAME_VERSION = "version"; @SerializedName(SERIALIZED_NAME_VERSION) diff --git a/src/main/java/com/plaid/client/model/UserDataOverview.java b/src/main/java/com/plaid/client/model/UserDataOverview.java index a7c730f3b..49eaf3871 100644 --- a/src/main/java/com/plaid/client/model/UserDataOverview.java +++ b/src/main/java/com/plaid/client/model/UserDataOverview.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * metadata for the set of insights provided in `TransactionsUserInsightsGetResponse` */ @ApiModel(description = "metadata for the set of insights provided in `TransactionsUserInsightsGetResponse`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserDataOverview { public static final String SERIALIZED_NAME_TRANSACTION_COUNT = "transaction_count"; @SerializedName(SERIALIZED_NAME_TRANSACTION_COUNT) diff --git a/src/main/java/com/plaid/client/model/UserFinancialDataRefreshRequest.java b/src/main/java/com/plaid/client/model/UserFinancialDataRefreshRequest.java index 916f1360e..7e1f36cd7 100644 --- a/src/main/java/com/plaid/client/model/UserFinancialDataRefreshRequest.java +++ b/src/main/java/com/plaid/client/model/UserFinancialDataRefreshRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserFinancialDataRefreshRequest defines the request schema for `user/financial_data/refresh` */ @ApiModel(description = "UserFinancialDataRefreshRequest defines the request schema for `user/financial_data/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserFinancialDataRefreshRequest { public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) diff --git a/src/main/java/com/plaid/client/model/UserFinancialDataRefreshResponse.java b/src/main/java/com/plaid/client/model/UserFinancialDataRefreshResponse.java index 10f1d050f..01771d699 100644 --- a/src/main/java/com/plaid/client/model/UserFinancialDataRefreshResponse.java +++ b/src/main/java/com/plaid/client/model/UserFinancialDataRefreshResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * UserFinancialDataRefreshResponse defines the response schema for `user/financial_data/refresh` */ @ApiModel(description = "UserFinancialDataRefreshResponse defines the response schema for `user/financial_data/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserFinancialDataRefreshResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/UserGetRequest.java b/src/main/java/com/plaid/client/model/UserGetRequest.java index 04dbeee24..5c8d39162 100644 --- a/src/main/java/com/plaid/client/model/UserGetRequest.java +++ b/src/main/java/com/plaid/client/model/UserGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserGetRequest defines the request schema for `/user/get`. */ @ApiModel(description = "UserGetRequest defines the request schema for `/user/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/UserGetResponse.java b/src/main/java/com/plaid/client/model/UserGetResponse.java index b65cf1214..527f7eb04 100644 --- a/src/main/java/com/plaid/client/model/UserGetResponse.java +++ b/src/main/java/com/plaid/client/model/UserGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * UserGetResponse defines the response schema for `/user/get`. */ @ApiModel(description = "UserGetResponse defines the response schema for `/user/get`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserGetResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/UserIDNumber.java b/src/main/java/com/plaid/client/model/UserIDNumber.java index 9ee8d02bc..9d4effc4b 100644 --- a/src/main/java/com/plaid/client/model/UserIDNumber.java +++ b/src/main/java/com/plaid/client/model/UserIDNumber.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * ID number submitted by the user, currently used only for the Identity Verification product. If the user has not submitted this data yet, this field will be `null`. Otherwise, both fields are guaranteed to be filled. */ @ApiModel(description = "ID number submitted by the user, currently used only for the Identity Verification product. If the user has not submitted this data yet, this field will be `null`. Otherwise, both fields are guaranteed to be filled.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserIDNumber { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) diff --git a/src/main/java/com/plaid/client/model/UserIdentityRemoveRequest.java b/src/main/java/com/plaid/client/model/UserIdentityRemoveRequest.java index 6aab3e1a1..6c26e5a1e 100644 --- a/src/main/java/com/plaid/client/model/UserIdentityRemoveRequest.java +++ b/src/main/java/com/plaid/client/model/UserIdentityRemoveRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserIdentityRemoveRequest defines the request schema for `/user/identity/remove` */ @ApiModel(description = "UserIdentityRemoveRequest defines the request schema for `/user/identity/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserIdentityRemoveRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/UserIdentityRemoveResponse.java b/src/main/java/com/plaid/client/model/UserIdentityRemoveResponse.java index 4ea161269..e7b38887b 100644 --- a/src/main/java/com/plaid/client/model/UserIdentityRemoveResponse.java +++ b/src/main/java/com/plaid/client/model/UserIdentityRemoveResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserIdentityRemoveResponse defines the response schema for `/user/identity/remove` */ @ApiModel(description = "UserIdentityRemoveResponse defines the response schema for `/user/identity/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserIdentityRemoveResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/UserItemsAssociateRequest.java b/src/main/java/com/plaid/client/model/UserItemsAssociateRequest.java index d8203eae0..11023014f 100644 --- a/src/main/java/com/plaid/client/model/UserItemsAssociateRequest.java +++ b/src/main/java/com/plaid/client/model/UserItemsAssociateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * UserItemsAssociateRequest defines the request schema for `/user/items/associate` */ @ApiModel(description = "UserItemsAssociateRequest defines the request schema for `/user/items/associate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserItemsAssociateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/UserItemsAssociateResponse.java b/src/main/java/com/plaid/client/model/UserItemsAssociateResponse.java index 202d656cc..c4045e6ea 100644 --- a/src/main/java/com/plaid/client/model/UserItemsAssociateResponse.java +++ b/src/main/java/com/plaid/client/model/UserItemsAssociateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserItemsAssociateResponse defines the response schema for `/user/items/associate` */ @ApiModel(description = "UserItemsAssociateResponse defines the response schema for `/user/items/associate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserItemsAssociateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/UserItemsGetRequest.java b/src/main/java/com/plaid/client/model/UserItemsGetRequest.java index 9c99e93e7..37de767f6 100644 --- a/src/main/java/com/plaid/client/model/UserItemsGetRequest.java +++ b/src/main/java/com/plaid/client/model/UserItemsGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserItemsGetRequest defines the request schema for `/user/items/get` */ @ApiModel(description = "UserItemsGetRequest defines the request schema for `/user/items/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserItemsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/UserItemsGetResponse.java b/src/main/java/com/plaid/client/model/UserItemsGetResponse.java index 093b9f4ba..12e10d99f 100644 --- a/src/main/java/com/plaid/client/model/UserItemsGetResponse.java +++ b/src/main/java/com/plaid/client/model/UserItemsGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * UserItemsGetResponse defines the response schema for `/user/items/get` */ @ApiModel(description = "UserItemsGetResponse defines the response schema for `/user/items/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserItemsGetResponse { public static final String SERIALIZED_NAME_ITEMS = "items"; @SerializedName(SERIALIZED_NAME_ITEMS) diff --git a/src/main/java/com/plaid/client/model/UserItemsRemoveRequest.java b/src/main/java/com/plaid/client/model/UserItemsRemoveRequest.java index 521449c1e..18a6538df 100644 --- a/src/main/java/com/plaid/client/model/UserItemsRemoveRequest.java +++ b/src/main/java/com/plaid/client/model/UserItemsRemoveRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * UserItemsRemoveRequest defines the request schema for `/user/items/remove` */ @ApiModel(description = "UserItemsRemoveRequest defines the request schema for `/user/items/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserItemsRemoveRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/UserItemsRemoveResponse.java b/src/main/java/com/plaid/client/model/UserItemsRemoveResponse.java index c07ac68ac..9c5114ee1 100644 --- a/src/main/java/com/plaid/client/model/UserItemsRemoveResponse.java +++ b/src/main/java/com/plaid/client/model/UserItemsRemoveResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserItemsRemoveResponse defines the response schema for `/user/items/remove` */ @ApiModel(description = "UserItemsRemoveResponse defines the response schema for `/user/items/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserItemsRemoveResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/UserPermissionRevokedWebhook.java b/src/main/java/com/plaid/client/model/UserPermissionRevokedWebhook.java index add65de05..a03b7ad94 100644 --- a/src/main/java/com/plaid/client/model/UserPermissionRevokedWebhook.java +++ b/src/main/java/com/plaid/client/model/UserPermissionRevokedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The `USER_PERMISSION_REVOKED` webhook may be fired when an end user has revoked the permission that they previously granted to access an Item. If the end user revoked their permissions through Plaid (such as via the Plaid Portal or by contacting Plaid Support), the webhook will fire. If the end user revoked their permissions directly through the institution, this webhook may not always fire, since some institutions’ consent portals do not trigger this webhook. To attempt to restore the Item, it can be sent through [update mode](https://plaid.com/docs/link/update-mode). Depending on the exact process the end user used to revoke permissions, it may not be possible to launch update mode for the Item. If you encounter an error when attempting to create a Link token for update mode on an Item with revoked permissions, create a fresh Link token for the user. Note that when working with tokenized account numbers with Auth or Transfer, the account number provided by Plaid will no longer work for creating transfers once user permission has been revoked, except for US Bank Items. */ @ApiModel(description = "The `USER_PERMISSION_REVOKED` webhook may be fired when an end user has revoked the permission that they previously granted to access an Item. If the end user revoked their permissions through Plaid (such as via the Plaid Portal or by contacting Plaid Support), the webhook will fire. If the end user revoked their permissions directly through the institution, this webhook may not always fire, since some institutions’ consent portals do not trigger this webhook. To attempt to restore the Item, it can be sent through [update mode](https://plaid.com/docs/link/update-mode). Depending on the exact process the end user used to revoke permissions, it may not be possible to launch update mode for the Item. If you encounter an error when attempting to create a Link token for update mode on an Item with revoked permissions, create a fresh Link token for the user. Note that when working with tokenized account numbers with Auth or Transfer, the account number provided by Plaid will no longer work for creating transfers once user permission has been revoked, except for US Bank Items.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserPermissionRevokedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/UserProductsTerminateRequest.java b/src/main/java/com/plaid/client/model/UserProductsTerminateRequest.java index d08b7261d..a4e16a41d 100644 --- a/src/main/java/com/plaid/client/model/UserProductsTerminateRequest.java +++ b/src/main/java/com/plaid/client/model/UserProductsTerminateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * UserProductsTerminateRequest defines the request schema for `/user/products/terminate` */ @ApiModel(description = "UserProductsTerminateRequest defines the request schema for `/user/products/terminate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserProductsTerminateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/UserProductsTerminateResponse.java b/src/main/java/com/plaid/client/model/UserProductsTerminateResponse.java index 9d2d21ed5..9f0efea5f 100644 --- a/src/main/java/com/plaid/client/model/UserProductsTerminateResponse.java +++ b/src/main/java/com/plaid/client/model/UserProductsTerminateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserProductsTerminateResponse defines the response schema for `/user/products/terminate` */ @ApiModel(description = "UserProductsTerminateResponse defines the response schema for `/user/products/terminate`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserProductsTerminateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/UserRemoveRequest.java b/src/main/java/com/plaid/client/model/UserRemoveRequest.java index ee06703d2..baa6c8ce8 100644 --- a/src/main/java/com/plaid/client/model/UserRemoveRequest.java +++ b/src/main/java/com/plaid/client/model/UserRemoveRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserRemoveRequest defines the request schema for `/user/remove` */ @ApiModel(description = "UserRemoveRequest defines the request schema for `/user/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserRemoveRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/UserRemoveResponse.java b/src/main/java/com/plaid/client/model/UserRemoveResponse.java index 21435f54f..a0f697db7 100644 --- a/src/main/java/com/plaid/client/model/UserRemoveResponse.java +++ b/src/main/java/com/plaid/client/model/UserRemoveResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserRemoveResponse defines the response schema for `/user/remove` */ @ApiModel(description = "UserRemoveResponse defines the response schema for `/user/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserRemoveResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/UserStatedIncomeSourceCategory.java b/src/main/java/com/plaid/client/model/UserStatedIncomeSourceCategory.java index ce6ad8d7e..0b724ae2b 100644 --- a/src/main/java/com/plaid/client/model/UserStatedIncomeSourceCategory.java +++ b/src/main/java/com/plaid/client/model/UserStatedIncomeSourceCategory.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/UserStatedIncomeSourceFrequency.java b/src/main/java/com/plaid/client/model/UserStatedIncomeSourceFrequency.java index b209729dd..87bac36ac 100644 --- a/src/main/java/com/plaid/client/model/UserStatedIncomeSourceFrequency.java +++ b/src/main/java/com/plaid/client/model/UserStatedIncomeSourceFrequency.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/UserStatedIncomeSourcePayType.java b/src/main/java/com/plaid/client/model/UserStatedIncomeSourcePayType.java index 8a28d1ff2..a2715d6aa 100644 --- a/src/main/java/com/plaid/client/model/UserStatedIncomeSourcePayType.java +++ b/src/main/java/com/plaid/client/model/UserStatedIncomeSourcePayType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/UserThirdPartyTokenCreateRequest.java b/src/main/java/com/plaid/client/model/UserThirdPartyTokenCreateRequest.java index af5273561..9de10e060 100644 --- a/src/main/java/com/plaid/client/model/UserThirdPartyTokenCreateRequest.java +++ b/src/main/java/com/plaid/client/model/UserThirdPartyTokenCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * UserThirdPartyTokenCreateRequest defines the request schema for `/user/third_party_token/create` */ @ApiModel(description = "UserThirdPartyTokenCreateRequest defines the request schema for `/user/third_party_token/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserThirdPartyTokenCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/UserThirdPartyTokenCreateResponse.java b/src/main/java/com/plaid/client/model/UserThirdPartyTokenCreateResponse.java index db8f16469..c3bc791c2 100644 --- a/src/main/java/com/plaid/client/model/UserThirdPartyTokenCreateResponse.java +++ b/src/main/java/com/plaid/client/model/UserThirdPartyTokenCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserThirdPartyTokenCreateResponse defines the response schema for `/user/third_party_token/create` */ @ApiModel(description = "UserThirdPartyTokenCreateResponse defines the response schema for `/user/third_party_token/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserThirdPartyTokenCreateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/UserThirdPartyTokenRemoveRequest.java b/src/main/java/com/plaid/client/model/UserThirdPartyTokenRemoveRequest.java index e39cc3151..b6bb4701d 100644 --- a/src/main/java/com/plaid/client/model/UserThirdPartyTokenRemoveRequest.java +++ b/src/main/java/com/plaid/client/model/UserThirdPartyTokenRemoveRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserThirdPartyTokenCreateRequest defines the request schema for `/user/third_party_token/remove` */ @ApiModel(description = "UserThirdPartyTokenCreateRequest defines the request schema for `/user/third_party_token/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserThirdPartyTokenRemoveRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/UserThirdPartyTokenRemoveResponse.java b/src/main/java/com/plaid/client/model/UserThirdPartyTokenRemoveResponse.java index ce36cd228..a8e375d12 100644 --- a/src/main/java/com/plaid/client/model/UserThirdPartyTokenRemoveResponse.java +++ b/src/main/java/com/plaid/client/model/UserThirdPartyTokenRemoveResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserThirdPartyTokenCreateResponse defines the response schema for `/user/third_party_token/remove` */ @ApiModel(description = "UserThirdPartyTokenCreateResponse defines the response schema for `/user/third_party_token/remove`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserThirdPartyTokenRemoveResponse { public static final String SERIALIZED_NAME_REMOVED = "removed"; @SerializedName(SERIALIZED_NAME_REMOVED) diff --git a/src/main/java/com/plaid/client/model/UserTransactionsRefreshRequest.java b/src/main/java/com/plaid/client/model/UserTransactionsRefreshRequest.java index ff0980b9c..749a7c074 100644 --- a/src/main/java/com/plaid/client/model/UserTransactionsRefreshRequest.java +++ b/src/main/java/com/plaid/client/model/UserTransactionsRefreshRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserTransactionsRefreshRequest defines the request schema for `user/transactions/refresh` */ @ApiModel(description = "UserTransactionsRefreshRequest defines the request schema for `user/transactions/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserTransactionsRefreshRequest { public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) diff --git a/src/main/java/com/plaid/client/model/UserTransactionsRefreshResponse.java b/src/main/java/com/plaid/client/model/UserTransactionsRefreshResponse.java index 850c9079f..054830351 100644 --- a/src/main/java/com/plaid/client/model/UserTransactionsRefreshResponse.java +++ b/src/main/java/com/plaid/client/model/UserTransactionsRefreshResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * UserTransactionsRefreshResponse defines the response schema for `user/transactions/refresh` */ @ApiModel(description = "UserTransactionsRefreshResponse defines the response schema for `user/transactions/refresh`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserTransactionsRefreshResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/UserUpdateRequest.java b/src/main/java/com/plaid/client/model/UserUpdateRequest.java index 5c7448b5d..6be0a5efb 100644 --- a/src/main/java/com/plaid/client/model/UserUpdateRequest.java +++ b/src/main/java/com/plaid/client/model/UserUpdateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * UserUpdateRequest defines the request schema for `/user/update` */ @ApiModel(description = "UserUpdateRequest defines the request schema for `/user/update`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserUpdateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/UserUpdateResponse.java b/src/main/java/com/plaid/client/model/UserUpdateResponse.java index 172084fad..e20e0a731 100644 --- a/src/main/java/com/plaid/client/model/UserUpdateResponse.java +++ b/src/main/java/com/plaid/client/model/UserUpdateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * UserUpdateResponse defines the response schema for `/user/update` */ @ApiModel(description = "UserUpdateResponse defines the response schema for `/user/update`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class UserUpdateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) diff --git a/src/main/java/com/plaid/client/model/ValidationSource.java b/src/main/java/com/plaid/client/model/ValidationSource.java index d892c4919..12668320e 100644 --- a/src/main/java/com/plaid/client/model/ValidationSource.java +++ b/src/main/java/com/plaid/client/model/ValidationSource.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ValidationSource { public static final String SERIALIZED_NAME_VALIDATION_SOURCE_NAME = "ValidationSourceName"; @SerializedName(SERIALIZED_NAME_VALIDATION_SOURCE_NAME) diff --git a/src/main/java/com/plaid/client/model/ValidationSources.java b/src/main/java/com/plaid/client/model/ValidationSources.java index e279246be..08b06c756 100644 --- a/src/main/java/com/plaid/client/model/ValidationSources.java +++ b/src/main/java/com/plaid/client/model/ValidationSources.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class ValidationSources { public static final String SERIALIZED_NAME_V_A_L_I_D_A_T_I_O_N_S_O_U_R_C_E = "VALIDATION_SOURCE"; @SerializedName(SERIALIZED_NAME_V_A_L_I_D_A_T_I_O_N_S_O_U_R_C_E) diff --git a/src/main/java/com/plaid/client/model/VerificationExpiredWebhook.java b/src/main/java/com/plaid/client/model/VerificationExpiredWebhook.java index 5046f31ef..07cc1117a 100644 --- a/src/main/java/com/plaid/client/model/VerificationExpiredWebhook.java +++ b/src/main/java/com/plaid/client/model/VerificationExpiredWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Fired when an Item was not verified via automated micro-deposits after seven days since the automated micro-deposit was made. */ @ApiModel(description = "Fired when an Item was not verified via automated micro-deposits after seven days since the automated micro-deposit was made.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class VerificationExpiredWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/VerificationOfAsset.java b/src/main/java/com/plaid/client/model/VerificationOfAsset.java index 11ba620fe..ef1c60fa2 100644 --- a/src/main/java/com/plaid/client/model/VerificationOfAsset.java +++ b/src/main/java/com/plaid/client/model/VerificationOfAsset.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class VerificationOfAsset { public static final String SERIALIZED_NAME_R_E_P_O_R_T_I_N_G_I_N_F_O_R_M_A_T_I_O_N = "REPORTING_INFORMATION"; @SerializedName(SERIALIZED_NAME_R_E_P_O_R_T_I_N_G_I_N_F_O_R_M_A_T_I_O_N) diff --git a/src/main/java/com/plaid/client/model/VerificationOfAssetResponse.java b/src/main/java/com/plaid/client/model/VerificationOfAssetResponse.java index 81449f5da..f0f696f93 100644 --- a/src/main/java/com/plaid/client/model/VerificationOfAssetResponse.java +++ b/src/main/java/com/plaid/client/model/VerificationOfAssetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class VerificationOfAssetResponse { public static final String SERIALIZED_NAME_A_S_S_E_T_S = "ASSETS"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_S) diff --git a/src/main/java/com/plaid/client/model/VerificationRefreshStatus.java b/src/main/java/com/plaid/client/model/VerificationRefreshStatus.java index 0d5fb3c6a..6b4f39049 100644 --- a/src/main/java/com/plaid/client/model/VerificationRefreshStatus.java +++ b/src/main/java/com/plaid/client/model/VerificationRefreshStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/VerificationStatus.java b/src/main/java/com/plaid/client/model/VerificationStatus.java index a0e065a10..722dec057 100644 --- a/src/main/java/com/plaid/client/model/VerificationStatus.java +++ b/src/main/java/com/plaid/client/model/VerificationStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/VerifySMSDetails.java b/src/main/java/com/plaid/client/model/VerifySMSDetails.java index 1e97fc228..0dfb654a4 100644 --- a/src/main/java/com/plaid/client/model/VerifySMSDetails.java +++ b/src/main/java/com/plaid/client/model/VerifySMSDetails.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Additional information for the `verify_sms` step. */ @ApiModel(description = "Additional information for the `verify_sms` step.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class VerifySMSDetails { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/com/plaid/client/model/VerifySMSDetailsStatus.java b/src/main/java/com/plaid/client/model/VerifySMSDetailsStatus.java index f7647146c..93d4a8fdd 100644 --- a/src/main/java/com/plaid/client/model/VerifySMSDetailsStatus.java +++ b/src/main/java/com/plaid/client/model/VerifySMSDetailsStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/W2.java b/src/main/java/com/plaid/client/model/W2.java index 77a0a926e..46586f0df 100644 --- a/src/main/java/com/plaid/client/model/W2.java +++ b/src/main/java/com/plaid/client/model/W2.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * W2 is an object that represents income data taken from a W2 tax document. */ @ApiModel(description = "W2 is an object that represents income data taken from a W2 tax document.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class W2 { public static final String SERIALIZED_NAME_EMPLOYER = "employer"; @SerializedName(SERIALIZED_NAME_EMPLOYER) diff --git a/src/main/java/com/plaid/client/model/W2Box12.java b/src/main/java/com/plaid/client/model/W2Box12.java index a447e6f77..68147c25b 100644 --- a/src/main/java/com/plaid/client/model/W2Box12.java +++ b/src/main/java/com/plaid/client/model/W2Box12.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Data on the W2 Box 12 */ @ApiModel(description = "Data on the W2 Box 12") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class W2Box12 { public static final String SERIALIZED_NAME_CODE = "code"; @SerializedName(SERIALIZED_NAME_CODE) diff --git a/src/main/java/com/plaid/client/model/W2Box12Override.java b/src/main/java/com/plaid/client/model/W2Box12Override.java index 7835c02bc..38f47d3b2 100644 --- a/src/main/java/com/plaid/client/model/W2Box12Override.java +++ b/src/main/java/com/plaid/client/model/W2Box12Override.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Data on the W2 Box 12 */ @ApiModel(description = "Data on the W2 Box 12") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class W2Box12Override { public static final String SERIALIZED_NAME_CODE = "code"; @SerializedName(SERIALIZED_NAME_CODE) diff --git a/src/main/java/com/plaid/client/model/W2Override.java b/src/main/java/com/plaid/client/model/W2Override.java index 1f70ae03b..43fd54180 100644 --- a/src/main/java/com/plaid/client/model/W2Override.java +++ b/src/main/java/com/plaid/client/model/W2Override.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * W2 is an object that represents income data taken from a W2 tax document. */ @ApiModel(description = "W2 is an object that represents income data taken from a W2 tax document.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class W2Override { public static final String SERIALIZED_NAME_EMPLOYER = "employer"; @SerializedName(SERIALIZED_NAME_EMPLOYER) diff --git a/src/main/java/com/plaid/client/model/W2StateAndLocalWages.java b/src/main/java/com/plaid/client/model/W2StateAndLocalWages.java index 8ad986d68..a5c5f0ae1 100644 --- a/src/main/java/com/plaid/client/model/W2StateAndLocalWages.java +++ b/src/main/java/com/plaid/client/model/W2StateAndLocalWages.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * W2 state and local wages */ @ApiModel(description = "W2 state and local wages") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class W2StateAndLocalWages { public static final String SERIALIZED_NAME_STATE = "state"; @SerializedName(SERIALIZED_NAME_STATE) diff --git a/src/main/java/com/plaid/client/model/W2StateAndLocalWagesOverride.java b/src/main/java/com/plaid/client/model/W2StateAndLocalWagesOverride.java index c212674a9..111da6b2b 100644 --- a/src/main/java/com/plaid/client/model/W2StateAndLocalWagesOverride.java +++ b/src/main/java/com/plaid/client/model/W2StateAndLocalWagesOverride.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * W2 state and local wages */ @ApiModel(description = "W2 state and local wages") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class W2StateAndLocalWagesOverride { public static final String SERIALIZED_NAME_STATE = "state"; @SerializedName(SERIALIZED_NAME_STATE) diff --git a/src/main/java/com/plaid/client/model/Wallet.java b/src/main/java/com/plaid/client/model/Wallet.java index cd0081c39..23568cbcb 100644 --- a/src/main/java/com/plaid/client/model/Wallet.java +++ b/src/main/java/com/plaid/client/model/Wallet.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * An object representing the e-wallet */ @ApiModel(description = "An object representing the e-wallet") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Wallet { public static final String SERIALIZED_NAME_WALLET_ID = "wallet_id"; @SerializedName(SERIALIZED_NAME_WALLET_ID) diff --git a/src/main/java/com/plaid/client/model/WalletBalance.java b/src/main/java/com/plaid/client/model/WalletBalance.java index 122227484..d35824816 100644 --- a/src/main/java/com/plaid/client/model/WalletBalance.java +++ b/src/main/java/com/plaid/client/model/WalletBalance.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * An object representing the e-wallet balance */ @ApiModel(description = "An object representing the e-wallet balance") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletBalance { public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code"; @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE) diff --git a/src/main/java/com/plaid/client/model/WalletCreateRequest.java b/src/main/java/com/plaid/client/model/WalletCreateRequest.java index 6e78813a6..00d4b6ac2 100644 --- a/src/main/java/com/plaid/client/model/WalletCreateRequest.java +++ b/src/main/java/com/plaid/client/model/WalletCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * WalletCreateRequest defines the request schema for `/wallet/create` */ @ApiModel(description = "WalletCreateRequest defines the request schema for `/wallet/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/WalletCreateResponse.java b/src/main/java/com/plaid/client/model/WalletCreateResponse.java index 7f09a0687..14c72a457 100644 --- a/src/main/java/com/plaid/client/model/WalletCreateResponse.java +++ b/src/main/java/com/plaid/client/model/WalletCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * WalletCreateResponse defines the response schema for `/wallet/create` */ @ApiModel(description = "WalletCreateResponse defines the response schema for `/wallet/create`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletCreateResponse { public static final String SERIALIZED_NAME_WALLET_ID = "wallet_id"; @SerializedName(SERIALIZED_NAME_WALLET_ID) diff --git a/src/main/java/com/plaid/client/model/WalletGetRequest.java b/src/main/java/com/plaid/client/model/WalletGetRequest.java index 1677c70c3..716ae2807 100644 --- a/src/main/java/com/plaid/client/model/WalletGetRequest.java +++ b/src/main/java/com/plaid/client/model/WalletGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * WalletGetRequest defines the request schema for `/wallet/get` */ @ApiModel(description = "WalletGetRequest defines the request schema for `/wallet/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/WalletGetResponse.java b/src/main/java/com/plaid/client/model/WalletGetResponse.java index 1bf46768e..c5a99d812 100644 --- a/src/main/java/com/plaid/client/model/WalletGetResponse.java +++ b/src/main/java/com/plaid/client/model/WalletGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * WalletGetResponse defines the response schema for `/wallet/get` */ @ApiModel(description = "WalletGetResponse defines the response schema for `/wallet/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletGetResponse { public static final String SERIALIZED_NAME_WALLET_ID = "wallet_id"; @SerializedName(SERIALIZED_NAME_WALLET_ID) diff --git a/src/main/java/com/plaid/client/model/WalletISOCurrencyCode.java b/src/main/java/com/plaid/client/model/WalletISOCurrencyCode.java index c9f75f932..1ac9d5249 100644 --- a/src/main/java/com/plaid/client/model/WalletISOCurrencyCode.java +++ b/src/main/java/com/plaid/client/model/WalletISOCurrencyCode.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/WalletListRequest.java b/src/main/java/com/plaid/client/model/WalletListRequest.java index 80e005aff..766d10523 100644 --- a/src/main/java/com/plaid/client/model/WalletListRequest.java +++ b/src/main/java/com/plaid/client/model/WalletListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * WalletListRequest defines the request schema for `/wallet/list` */ @ApiModel(description = "WalletListRequest defines the request schema for `/wallet/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/WalletListResponse.java b/src/main/java/com/plaid/client/model/WalletListResponse.java index d2c85c69b..b633a7925 100644 --- a/src/main/java/com/plaid/client/model/WalletListResponse.java +++ b/src/main/java/com/plaid/client/model/WalletListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * WalletListResponse defines the response schema for `/wallet/list` */ @ApiModel(description = "WalletListResponse defines the response schema for `/wallet/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletListResponse { public static final String SERIALIZED_NAME_WALLETS = "wallets"; @SerializedName(SERIALIZED_NAME_WALLETS) diff --git a/src/main/java/com/plaid/client/model/WalletNumbers.java b/src/main/java/com/plaid/client/model/WalletNumbers.java index 599f159a7..5e4c0912e 100644 --- a/src/main/java/com/plaid/client/model/WalletNumbers.java +++ b/src/main/java/com/plaid/client/model/WalletNumbers.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * An object representing the e-wallet account numbers */ @ApiModel(description = "An object representing the e-wallet account numbers") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletNumbers { public static final String SERIALIZED_NAME_BACS = "bacs"; @SerializedName(SERIALIZED_NAME_BACS) diff --git a/src/main/java/com/plaid/client/model/WalletPaymentScheme.java b/src/main/java/com/plaid/client/model/WalletPaymentScheme.java index da06e6f4b..c794391ef 100644 --- a/src/main/java/com/plaid/client/model/WalletPaymentScheme.java +++ b/src/main/java/com/plaid/client/model/WalletPaymentScheme.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/WalletStatus.java b/src/main/java/com/plaid/client/model/WalletStatus.java index 1c462dcae..8943109a7 100644 --- a/src/main/java/com/plaid/client/model/WalletStatus.java +++ b/src/main/java/com/plaid/client/model/WalletStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/WalletTransaction.java b/src/main/java/com/plaid/client/model/WalletTransaction.java index efc657847..e663340ee 100644 --- a/src/main/java/com/plaid/client/model/WalletTransaction.java +++ b/src/main/java/com/plaid/client/model/WalletTransaction.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -39,7 +39,7 @@ * The transaction details */ @ApiModel(description = "The transaction details") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletTransaction { public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id"; @SerializedName(SERIALIZED_NAME_TRANSACTION_ID) diff --git a/src/main/java/com/plaid/client/model/WalletTransactionAmount.java b/src/main/java/com/plaid/client/model/WalletTransactionAmount.java index 497dd4105..05483b459 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionAmount.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionAmount.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The amount and currency of a transaction */ @ApiModel(description = "The amount and currency of a transaction") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletTransactionAmount { public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code"; @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE) diff --git a/src/main/java/com/plaid/client/model/WalletTransactionCounterparty.java b/src/main/java/com/plaid/client/model/WalletTransactionCounterparty.java index 6dc3368b8..c0caa25c9 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionCounterparty.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionCounterparty.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * An object representing the e-wallet transaction's counterparty */ @ApiModel(description = "An object representing the e-wallet transaction's counterparty") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletTransactionCounterparty { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/com/plaid/client/model/WalletTransactionCounterpartyBACS.java b/src/main/java/com/plaid/client/model/WalletTransactionCounterpartyBACS.java index a6adc6cdc..0a7344ff6 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionCounterpartyBACS.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionCounterpartyBACS.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * The account number and sort code of the counterparty's account */ @ApiModel(description = "The account number and sort code of the counterparty's account") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletTransactionCounterpartyBACS { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) diff --git a/src/main/java/com/plaid/client/model/WalletTransactionCounterpartyInternational.java b/src/main/java/com/plaid/client/model/WalletTransactionCounterpartyInternational.java index 814eac102..258c2c4fd 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionCounterpartyInternational.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionCounterpartyInternational.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * International Bank Account Number for a Wallet Transaction */ @ApiModel(description = "International Bank Account Number for a Wallet Transaction") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletTransactionCounterpartyInternational { public static final String SERIALIZED_NAME_IBAN = "iban"; @SerializedName(SERIALIZED_NAME_IBAN) diff --git a/src/main/java/com/plaid/client/model/WalletTransactionCounterpartyNumbers.java b/src/main/java/com/plaid/client/model/WalletTransactionCounterpartyNumbers.java index 1b9fb88ea..406ab9ec8 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionCounterpartyNumbers.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionCounterpartyNumbers.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * The counterparty's bank account numbers. Exactly one of IBAN or BACS data is required. */ @ApiModel(description = "The counterparty's bank account numbers. Exactly one of IBAN or BACS data is required.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletTransactionCounterpartyNumbers { public static final String SERIALIZED_NAME_BACS = "bacs"; @SerializedName(SERIALIZED_NAME_BACS) diff --git a/src/main/java/com/plaid/client/model/WalletTransactionExecuteRequest.java b/src/main/java/com/plaid/client/model/WalletTransactionExecuteRequest.java index b194ac852..a1dacbd10 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionExecuteRequest.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionExecuteRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * WalletTransactionExecuteRequest defines the request schema for `/wallet/transaction/execute` */ @ApiModel(description = "WalletTransactionExecuteRequest defines the request schema for `/wallet/transaction/execute`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletTransactionExecuteRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/WalletTransactionExecuteResponse.java b/src/main/java/com/plaid/client/model/WalletTransactionExecuteResponse.java index aeedb6475..9583d31de 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionExecuteResponse.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionExecuteResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * WalletTransactionExecuteResponse defines the response schema for `/wallet/transaction/execute` */ @ApiModel(description = "WalletTransactionExecuteResponse defines the response schema for `/wallet/transaction/execute`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletTransactionExecuteResponse { public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id"; @SerializedName(SERIALIZED_NAME_TRANSACTION_ID) diff --git a/src/main/java/com/plaid/client/model/WalletTransactionFailureReason.java b/src/main/java/com/plaid/client/model/WalletTransactionFailureReason.java index d8f2d84ab..c2bc9171c 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionFailureReason.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionFailureReason.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/WalletTransactionGetRequest.java b/src/main/java/com/plaid/client/model/WalletTransactionGetRequest.java index 5a2f57ae7..2292c20be 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionGetRequest.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * WalletTransactionGetRequest defines the request schema for `/wallet/transaction/get` */ @ApiModel(description = "WalletTransactionGetRequest defines the request schema for `/wallet/transaction/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletTransactionGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/WalletTransactionGetResponse.java b/src/main/java/com/plaid/client/model/WalletTransactionGetResponse.java index ba86d401d..cefe4c222 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionGetResponse.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -41,7 +41,7 @@ * WalletTransactionGetResponse defines the response schema for `/wallet/transaction/get` */ @ApiModel(description = "WalletTransactionGetResponse defines the response schema for `/wallet/transaction/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletTransactionGetResponse { public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id"; @SerializedName(SERIALIZED_NAME_TRANSACTION_ID) diff --git a/src/main/java/com/plaid/client/model/WalletTransactionListRequest.java b/src/main/java/com/plaid/client/model/WalletTransactionListRequest.java index fd17617e4..c9771e172 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionListRequest.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * WalletTransactionListRequest defines the request schema for `/wallet/transaction/list` */ @ApiModel(description = "WalletTransactionListRequest defines the request schema for `/wallet/transaction/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletTransactionListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/WalletTransactionListRequestOptions.java b/src/main/java/com/plaid/client/model/WalletTransactionListRequestOptions.java index a23f58098..5a4518353 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionListRequestOptions.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionListRequestOptions.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Additional wallet transaction options */ @ApiModel(description = "Additional wallet transaction options") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletTransactionListRequestOptions { public static final String SERIALIZED_NAME_START_TIME = "start_time"; @SerializedName(SERIALIZED_NAME_START_TIME) diff --git a/src/main/java/com/plaid/client/model/WalletTransactionListResponse.java b/src/main/java/com/plaid/client/model/WalletTransactionListResponse.java index d4fdee9de..8ee16ed59 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionListResponse.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * WalletTransactionListResponse defines the response schema for `/wallet/transaction/list` */ @ApiModel(description = "WalletTransactionListResponse defines the response schema for `/wallet/transaction/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletTransactionListResponse { public static final String SERIALIZED_NAME_TRANSACTIONS = "transactions"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS) diff --git a/src/main/java/com/plaid/client/model/WalletTransactionPayeeVerificationStatus.java b/src/main/java/com/plaid/client/model/WalletTransactionPayeeVerificationStatus.java index 151a763cc..da302cfb1 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionPayeeVerificationStatus.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionPayeeVerificationStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/WalletTransactionRelation.java b/src/main/java/com/plaid/client/model/WalletTransactionRelation.java index ff137a93f..341fa96c1 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionRelation.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionRelation.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Transactions are related when they have a logical connection. For example, a `PAYOUT` transaction can be returned by the sender, creating a `RETURN` transaction. Each `PAYOUT` transaction can have at most one corresponding `RETURN` transaction in case of reversal. These relationships are bi-directional, meaning that both entities have references to each other. For instance, when a transaction of type RETURN occurs, it is linked to the original transaction being returned. Likewise, the original transaction has a reference back to the RETURN transaction that represents the return. This field is only populated for transactions of type `RETURN`, `FUNDS_SWEEP`, `REFUND` and `PAYOUT`. The relationship between a `PIS_PAY_IN` payment and its corresponding `REFUND` transactions is only available through `refund_ids` property in the payment object. See[`/payment_initiation/payment/get`](https://plaid.com/docs/api/products/payment-initiation/#payment_initiation-payment-get-response-refund-ids). */ @ApiModel(description = "Transactions are related when they have a logical connection. For example, a `PAYOUT` transaction can be returned by the sender, creating a `RETURN` transaction. Each `PAYOUT` transaction can have at most one corresponding `RETURN` transaction in case of reversal. These relationships are bi-directional, meaning that both entities have references to each other. For instance, when a transaction of type RETURN occurs, it is linked to the original transaction being returned. Likewise, the original transaction has a reference back to the RETURN transaction that represents the return. This field is only populated for transactions of type `RETURN`, `FUNDS_SWEEP`, `REFUND` and `PAYOUT`. The relationship between a `PIS_PAY_IN` payment and its corresponding `REFUND` transactions is only available through `refund_ids` property in the payment object. See[`/payment_initiation/payment/get`](https://plaid.com/docs/api/products/payment-initiation/#payment_initiation-payment-get-response-refund-ids).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletTransactionRelation { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/WalletTransactionStatus.java b/src/main/java/com/plaid/client/model/WalletTransactionStatus.java index 34b310554..2dfa42ae5 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionStatus.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/WalletTransactionStatusUpdateWebhook.java b/src/main/java/com/plaid/client/model/WalletTransactionStatusUpdateWebhook.java index 72ee04336..e3395a5a6 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionStatusUpdateWebhook.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionStatusUpdateWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,7 +32,7 @@ * Fired when the status of a wallet transaction has changed. */ @ApiModel(description = "Fired when the status of a wallet transaction has changed.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletTransactionStatusUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/WalletTransactionsListRequest.java b/src/main/java/com/plaid/client/model/WalletTransactionsListRequest.java index f19ab71c9..e76c159c6 100644 --- a/src/main/java/com/plaid/client/model/WalletTransactionsListRequest.java +++ b/src/main/java/com/plaid/client/model/WalletTransactionsListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * WalletTransactionListRequest defines the request schema for `/wallet/transaction/list` */ @ApiModel(description = "WalletTransactionListRequest defines the request schema for `/wallet/transaction/list`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WalletTransactionsListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/Warning.java b/src/main/java/com/plaid/client/model/Warning.java index d3d1ba1bc..899eb5d29 100644 --- a/src/main/java/com/plaid/client/model/Warning.java +++ b/src/main/java/com/plaid/client/model/Warning.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * It is possible for an Asset Report to be returned with missing account owner information. In such cases, the Asset Report will contain warning data in the response, indicating why obtaining the owner information failed. */ @ApiModel(description = "It is possible for an Asset Report to be returned with missing account owner information. In such cases, the Asset Report will contain warning data in the response, indicating why obtaining the owner information failed.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class Warning { public static final String SERIALIZED_NAME_WARNING_TYPE = "warning_type"; @SerializedName(SERIALIZED_NAME_WARNING_TYPE) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningAuditTrail.java b/src/main/java/com/plaid/client/model/WatchlistScreeningAuditTrail.java index 8197e63fd..3d7203983 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningAuditTrail.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningAuditTrail.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Information about the last change made to the parent object specifying what caused the change as well as when it occurred. */ @ApiModel(description = "Information about the last change made to the parent object specifying what caused the change as well as when it occurred.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningAuditTrail { public static final String SERIALIZED_NAME_SOURCE = "source"; @SerializedName(SERIALIZED_NAME_SOURCE) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningDocument.java b/src/main/java/com/plaid/client/model/WatchlistScreeningDocument.java index 2fe49ca0f..a891e1861 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningDocument.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningDocument.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * An official document, usually issued by a governing body or institution, with an associated identifier. */ @ApiModel(description = "An official document, usually issued by a governing body or institution, with an associated identifier.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningDocument { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningDocumentType.java b/src/main/java/com/plaid/client/model/WatchlistScreeningDocumentType.java index 6ba899f54..387fac520 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningDocumentType.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningDocumentType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityCreateRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityCreateRequest.java index ac23cec09..8bfd8848a 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityCreateRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Request input for creating an entity screening review */ @ApiModel(description = "Request input for creating an entity screening review") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityCreateRequest { public static final String SERIALIZED_NAME_SEARCH_TERMS = "search_terms"; @SerializedName(SERIALIZED_NAME_SEARCH_TERMS) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityCreateResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityCreateResponse.java index ae61c5897..01d9b9967 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityCreateResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The entity screening object allows you to represent an entity in your system, update its profile, and search for it on various watchlists. Note: Rejected entity screenings will not receive new hits, regardless of entity program configuration. */ @ApiModel(description = "The entity screening object allows you to represent an entity in your system, update its profile, and search for it on various watchlists. Note: Rejected entity screenings will not receive new hits, regardless of entity program configuration.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityCreateResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityGetRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityGetRequest.java index 1df6396b4..964df460c 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityGetRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for fetching an entity watchlist screening */ @ApiModel(description = "Request input for fetching an entity watchlist screening") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityGetRequest { public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENING_ID = "entity_watchlist_screening_id"; @SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENING_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityGetResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityGetResponse.java index 11ec1ebb2..d96980091 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityGetResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The entity screening object allows you to represent an entity in your system, update its profile, and search for it on various watchlists. Note: Rejected entity screenings will not receive new hits, regardless of entity program configuration. */ @ApiModel(description = "The entity screening object allows you to represent an entity in your system, update its profile, and search for it on various watchlists. Note: Rejected entity screenings will not receive new hits, regardless of entity program configuration.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityGetResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityHistoryListRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityHistoryListRequest.java index 948214b9e..e48cd75d6 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityHistoryListRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityHistoryListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for listing changes to entity watchlist screenings */ @ApiModel(description = "Request input for listing changes to entity watchlist screenings") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityHistoryListRequest { public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityHistoryListResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityHistoryListResponse.java index b5ea1f2f4..0dfb50f8d 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityHistoryListResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityHistoryListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Paginated list of entity watchlist screenings */ @ApiModel(description = "Paginated list of entity watchlist screenings") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityHistoryListResponse { public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENINGS = "entity_watchlist_screenings"; @SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENINGS) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityHitListRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityHitListRequest.java index 933c71cbe..17b6d6a57 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityHitListRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityHitListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for listing hits for an entity watchlist screening */ @ApiModel(description = "Request input for listing hits for an entity watchlist screening") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityHitListRequest { public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityHitListResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityHitListResponse.java index 4d2293598..a3c21d9c5 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityHitListResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityHitListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Paginated list of entity watchlist screening hits */ @ApiModel(description = "Paginated list of entity watchlist screening hits") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityHitListResponse { public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENING_HITS = "entity_watchlist_screening_hits"; @SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENING_HITS) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityListRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityListRequest.java index 6a08b26bf..a8e63c111 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityListRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Request input for listing entity watchlist screenings */ @ApiModel(description = "Request input for listing entity watchlist screenings") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityListRequest { public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityListResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityListResponse.java index 6332f0f39..eb0be6f80 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityListResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Paginated list of entity watchlist screenings */ @ApiModel(description = "Paginated list of entity watchlist screenings") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityListResponse { public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENINGS = "entity_watchlist_screenings"; @SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENINGS) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramGetRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramGetRequest.java index 33e1fc329..d973d0f20 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramGetRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for fetching an entity watchlist program */ @ApiModel(description = "Request input for fetching an entity watchlist program") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityProgramGetRequest { public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_PROGRAM_ID = "entity_watchlist_program_id"; @SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_PROGRAM_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramGetResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramGetResponse.java index 053a479fd..95dfcf312 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramGetResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * A program that configures the active lists, search parameters, and other behavior for initial and ongoing screening of entities. */ @ApiModel(description = "A program that configures the active lists, search parameters, and other behavior for initial and ongoing screening of entities.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityProgramGetResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramListRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramListRequest.java index 6d884a413..888a15f34 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramListRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for listing entity watchlist screening programs */ @ApiModel(description = "Request input for listing entity watchlist screening programs") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityProgramListRequest { public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramListResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramListResponse.java index f8243c0db..7f775824d 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramListResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Paginated list of entity watchlist screening programs */ @ApiModel(description = "Paginated list of entity watchlist screening programs") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityProgramListResponse { public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_PROGRAMS = "entity_watchlist_programs"; @SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_PROGRAMS) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewCreateRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewCreateRequest.java index edee26b68..9622b461e 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewCreateRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Request input for creating a review for an entity screening */ @ApiModel(description = "Request input for creating a review for an entity screening") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityReviewCreateRequest { public static final String SERIALIZED_NAME_CONFIRMED_HITS = "confirmed_hits"; @SerializedName(SERIALIZED_NAME_CONFIRMED_HITS) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewCreateResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewCreateResponse.java index 3b86b6103..89c542a9a 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewCreateResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A review submitted by a team member for an entity watchlist screening. A review can be either a comment on the current screening state, actions taken against hits attached to the watchlist screening, or both. */ @ApiModel(description = "A review submitted by a team member for an entity watchlist screening. A review can be either a comment on the current screening state, actions taken against hits attached to the watchlist screening, or both.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityReviewCreateResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewListRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewListRequest.java index 0ef09f8fe..9a6dc7b6e 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewListRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for listing reviews for an entity watchlist screening */ @ApiModel(description = "Request input for listing reviews for an entity watchlist screening") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityReviewListRequest { public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewListResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewListResponse.java index 3d25639c7..74b0725fc 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewListResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Paginated list of entity watchlist screening reviews */ @ApiModel(description = "Paginated list of entity watchlist screening reviews") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityReviewListResponse { public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENING_REVIEWS = "entity_watchlist_screening_reviews"; @SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENING_REVIEWS) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityUpdateRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityUpdateRequest.java index f1abf4702..264ef451b 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityUpdateRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityUpdateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Request input for editing an entity watchlist screening */ @ApiModel(description = "Request input for editing an entity watchlist screening") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityUpdateRequest { public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENING_ID = "entity_watchlist_screening_id"; @SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENING_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityUpdateRequestResettableField.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityUpdateRequestResettableField.java index fdf6a197a..96783ecfb 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityUpdateRequestResettableField.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityUpdateRequestResettableField.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityUpdateResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityUpdateResponse.java index 06edeccd0..efaea588b 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningEntityUpdateResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningEntityUpdateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The entity screening object allows you to represent an entity in your system, update its profile, and search for it on various watchlists. Note: Rejected entity screenings will not receive new hits, regardless of entity program configuration. */ @ApiModel(description = "The entity screening object allows you to represent an entity in your system, update its profile, and search for it on various watchlists. Note: Rejected entity screenings will not receive new hits, regardless of entity program configuration.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningEntityUpdateResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningHit.java b/src/main/java/com/plaid/client/model/WatchlistScreeningHit.java index 5018826fa..94d6a7f3d 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningHit.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningHit.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Data from a government watchlist or PEP list that has been attached to the screening. */ @ApiModel(description = "Data from a government watchlist or PEP list that has been attached to the screening.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningHit { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningHitLocations.java b/src/main/java/com/plaid/client/model/WatchlistScreeningHitLocations.java index 030cb2a62..cccee7c3f 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningHitLocations.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningHitLocations.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Location information for the associated individual watchlist hit */ @ApiModel(description = "Location information for the associated individual watchlist hit") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningHitLocations { public static final String SERIALIZED_NAME_FULL = "full"; @SerializedName(SERIALIZED_NAME_FULL) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningHitStatus.java b/src/main/java/com/plaid/client/model/WatchlistScreeningHitStatus.java index 9c6f00db1..3eafa33b9 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningHitStatus.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningHitStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividual.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividual.java index 0d60257c0..a56023af6 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividual.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividual.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The screening object allows you to represent a customer in your system, update their profile, and search for them on various watchlists. Note: Rejected customers will not receive new hits, regardless of program configuration. */ @ApiModel(description = "The screening object allows you to represent a customer in your system, update their profile, and search for them on various watchlists. Note: Rejected customers will not receive new hits, regardless of program configuration.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividual { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualCreateRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualCreateRequest.java index 491019263..059f430f4 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualCreateRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Request input for creating an individual watchlist screening */ @ApiModel(description = "Request input for creating an individual watchlist screening") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualCreateRequest { public static final String SERIALIZED_NAME_SEARCH_TERMS = "search_terms"; @SerializedName(SERIALIZED_NAME_SEARCH_TERMS) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualCreateResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualCreateResponse.java index 8f8ba8e76..b14cf9387 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualCreateResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The screening object allows you to represent a customer in your system, update their profile, and search for them on various watchlists. Note: Rejected customers will not receive new hits, regardless of program configuration. */ @ApiModel(description = "The screening object allows you to represent a customer in your system, update their profile, and search for them on various watchlists. Note: Rejected customers will not receive new hits, regardless of program configuration.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualCreateResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualGetRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualGetRequest.java index 2d8f65953..5cb994447 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualGetRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for fetching an individual watchlist screening */ @ApiModel(description = "Request input for fetching an individual watchlist screening") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualGetRequest { public static final String SERIALIZED_NAME_WATCHLIST_SCREENING_ID = "watchlist_screening_id"; @SerializedName(SERIALIZED_NAME_WATCHLIST_SCREENING_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualGetResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualGetResponse.java index a2c4b2883..4eacc0dd6 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualGetResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The screening object allows you to represent a customer in your system, update their profile, and search for them on various watchlists. Note: Rejected customers will not receive new hits, regardless of program configuration. */ @ApiModel(description = "The screening object allows you to represent a customer in your system, update their profile, and search for them on various watchlists. Note: Rejected customers will not receive new hits, regardless of program configuration.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualGetResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHistoryListRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHistoryListRequest.java index 58c001b27..4ee1ee630 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHistoryListRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHistoryListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for listing changes to watchlist screenings for individuals */ @ApiModel(description = "Request input for listing changes to watchlist screenings for individuals") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualHistoryListRequest { public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHistoryListResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHistoryListResponse.java index ea9c070f5..89c5e7b61 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHistoryListResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHistoryListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Paginated list of individual watchlist screenings. */ @ApiModel(description = "Paginated list of individual watchlist screenings.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualHistoryListResponse { public static final String SERIALIZED_NAME_WATCHLIST_SCREENINGS = "watchlist_screenings"; @SerializedName(SERIALIZED_NAME_WATCHLIST_SCREENINGS) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHitListRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHitListRequest.java index a60a25995..2107bb0ee 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHitListRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHitListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for listing hits for an individual watchlist screening */ @ApiModel(description = "Request input for listing hits for an individual watchlist screening") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualHitListRequest { public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHitListResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHitListResponse.java index 2a22a388e..76c30fe09 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHitListResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHitListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Paginated list of individual watchlist screening hits */ @ApiModel(description = "Paginated list of individual watchlist screening hits") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualHitListResponse { public static final String SERIALIZED_NAME_WATCHLIST_SCREENING_HITS = "watchlist_screening_hits"; @SerializedName(SERIALIZED_NAME_WATCHLIST_SCREENING_HITS) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualListRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualListRequest.java index d6a0947fc..b21b8af05 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualListRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Request input for listinging watchlist screenings for individuals */ @ApiModel(description = "Request input for listinging watchlist screenings for individuals") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualListRequest { public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualListResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualListResponse.java index 0a70c0661..a3115036f 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualListResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Paginated list of individual watchlist screenings. */ @ApiModel(description = "Paginated list of individual watchlist screenings.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualListResponse { public static final String SERIALIZED_NAME_WATCHLIST_SCREENINGS = "watchlist_screenings"; @SerializedName(SERIALIZED_NAME_WATCHLIST_SCREENINGS) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramGetRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramGetRequest.java index b14bd0f6d..79dcd776b 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramGetRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for fetching an individual watchlist program */ @ApiModel(description = "Request input for fetching an individual watchlist program") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualProgramGetRequest { public static final String SERIALIZED_NAME_WATCHLIST_PROGRAM_ID = "watchlist_program_id"; @SerializedName(SERIALIZED_NAME_WATCHLIST_PROGRAM_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramGetResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramGetResponse.java index 8afc42fe1..32f3e3757 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramGetResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -34,7 +34,7 @@ * A program that configures the active lists, search parameters, and other behavior for initial and ongoing screening of individuals. */ @ApiModel(description = "A program that configures the active lists, search parameters, and other behavior for initial and ongoing screening of individuals.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualProgramGetResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramListRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramListRequest.java index 23cce5a5b..cda0dc9b4 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramListRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for listing watchlist screening programs for individuals */ @ApiModel(description = "Request input for listing watchlist screening programs for individuals") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualProgramListRequest { public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramListResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramListResponse.java index 0cf06fc9b..efbf15ab9 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramListResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Paginated list of individual watchlist screening programs */ @ApiModel(description = "Paginated list of individual watchlist screening programs") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualProgramListResponse { public static final String SERIALIZED_NAME_WATCHLIST_PROGRAMS = "watchlist_programs"; @SerializedName(SERIALIZED_NAME_WATCHLIST_PROGRAMS) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewCreateRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewCreateRequest.java index a7447ffba..ff6aedf0b 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewCreateRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewCreateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Request input for creating a screening review */ @ApiModel(description = "Request input for creating a screening review") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualReviewCreateRequest { public static final String SERIALIZED_NAME_CONFIRMED_HITS = "confirmed_hits"; @SerializedName(SERIALIZED_NAME_CONFIRMED_HITS) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewCreateResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewCreateResponse.java index 31522102d..4e1ef0b41 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewCreateResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewCreateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A review submitted by a team member for an individual watchlist screening. A review can be either a comment on the current screening state, actions taken against hits attached to the watchlist screening, or both. */ @ApiModel(description = "A review submitted by a team member for an individual watchlist screening. A review can be either a comment on the current screening state, actions taken against hits attached to the watchlist screening, or both.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualReviewCreateResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewListRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewListRequest.java index d0877ac81..4fecc131f 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewListRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewListRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * Request input for listing reviews for an individual watchlist screening */ @ApiModel(description = "Request input for listing reviews for an individual watchlist screening") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualReviewListRequest { public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewListResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewListResponse.java index 7cff2aa15..fa9da9849 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewListResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewListResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * Paginated list of screening reviews */ @ApiModel(description = "Paginated list of screening reviews") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualReviewListResponse { public static final String SERIALIZED_NAME_WATCHLIST_SCREENING_REVIEWS = "watchlist_screening_reviews"; @SerializedName(SERIALIZED_NAME_WATCHLIST_SCREENING_REVIEWS) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualUpdateRequest.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualUpdateRequest.java index 294149cd8..051df6804 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualUpdateRequest.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualUpdateRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -33,7 +33,7 @@ * Request input for editing an individual watchlist screening */ @ApiModel(description = "Request input for editing an individual watchlist screening") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualUpdateRequest { public static final String SERIALIZED_NAME_WATCHLIST_SCREENING_ID = "watchlist_screening_id"; @SerializedName(SERIALIZED_NAME_WATCHLIST_SCREENING_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualUpdateRequestResettableField.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualUpdateRequestResettableField.java index 2ab1711b5..704351269 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualUpdateRequestResettableField.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualUpdateRequestResettableField.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualUpdateResponse.java b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualUpdateResponse.java index c1b42c257..d6302ee6f 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualUpdateResponse.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualUpdateResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * The screening object allows you to represent a customer in your system, update their profile, and search for them on various watchlists. Note: Rejected customers will not receive new hits, regardless of program configuration. */ @ApiModel(description = "The screening object allows you to represent a customer in your system, update their profile, and search for them on various watchlists. Note: Rejected customers will not receive new hits, regardless of program configuration.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningIndividualUpdateResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningRequestSearchTerms.java b/src/main/java/com/plaid/client/model/WatchlistScreeningRequestSearchTerms.java index 09fab252e..44939886d 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningRequestSearchTerms.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningRequestSearchTerms.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Search inputs for creating a watchlist screening */ @ApiModel(description = "Search inputs for creating a watchlist screening") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningRequestSearchTerms { public static final String SERIALIZED_NAME_WATCHLIST_PROGRAM_ID = "watchlist_program_id"; @SerializedName(SERIALIZED_NAME_WATCHLIST_PROGRAM_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningReview.java b/src/main/java/com/plaid/client/model/WatchlistScreeningReview.java index 9aa3b41ed..a19f028ae 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningReview.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningReview.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -31,7 +31,7 @@ * A review submitted by a team member for an individual watchlist screening. A review can be either a comment on the current screening state, actions taken against hits attached to the watchlist screening, or both. */ @ApiModel(description = "A review submitted by a team member for an individual watchlist screening. A review can be either a comment on the current screening state, actions taken against hits attached to the watchlist screening, or both.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningReview { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningSearchTerms.java b/src/main/java/com/plaid/client/model/WatchlistScreeningSearchTerms.java index 48e848179..f59292c8c 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningSearchTerms.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningSearchTerms.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Search terms for creating an individual watchlist screening */ @ApiModel(description = "Search terms for creating an individual watchlist screening") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WatchlistScreeningSearchTerms { public static final String SERIALIZED_NAME_WATCHLIST_PROGRAM_ID = "watchlist_program_id"; @SerializedName(SERIALIZED_NAME_WATCHLIST_PROGRAM_ID) diff --git a/src/main/java/com/plaid/client/model/WatchlistScreeningStatus.java b/src/main/java/com/plaid/client/model/WatchlistScreeningStatus.java index 56348efeb..444d838e8 100644 --- a/src/main/java/com/plaid/client/model/WatchlistScreeningStatus.java +++ b/src/main/java/com/plaid/client/model/WatchlistScreeningStatus.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/WeakAliasDetermination.java b/src/main/java/com/plaid/client/model/WeakAliasDetermination.java index 790784242..2a03c9743 100644 --- a/src/main/java/com/plaid/client/model/WeakAliasDetermination.java +++ b/src/main/java/com/plaid/client/model/WeakAliasDetermination.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/WebhookEnvironmentValues.java b/src/main/java/com/plaid/client/model/WebhookEnvironmentValues.java index a851eaaaf..d4ac4fd86 100644 --- a/src/main/java/com/plaid/client/model/WebhookEnvironmentValues.java +++ b/src/main/java/com/plaid/client/model/WebhookEnvironmentValues.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/WebhookType.java b/src/main/java/com/plaid/client/model/WebhookType.java index 63a86efa6..d9030856b 100644 --- a/src/main/java/com/plaid/client/model/WebhookType.java +++ b/src/main/java/com/plaid/client/model/WebhookType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/model/WebhookUpdateAcknowledgedWebhook.java b/src/main/java/com/plaid/client/model/WebhookUpdateAcknowledgedWebhook.java index 58d059e31..3090d13f1 100644 --- a/src/main/java/com/plaid/client/model/WebhookUpdateAcknowledgedWebhook.java +++ b/src/main/java/com/plaid/client/model/WebhookUpdateAcknowledgedWebhook.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Fired when an Item's webhook is updated. This will be sent to the newly specified webhook. */ @ApiModel(description = "Fired when an Item's webhook is updated. This will be sent to the newly specified webhook.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WebhookUpdateAcknowledgedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) diff --git a/src/main/java/com/plaid/client/model/WebhookVerificationKeyGetRequest.java b/src/main/java/com/plaid/client/model/WebhookVerificationKeyGetRequest.java index d2e221caf..e300706c1 100644 --- a/src/main/java/com/plaid/client/model/WebhookVerificationKeyGetRequest.java +++ b/src/main/java/com/plaid/client/model/WebhookVerificationKeyGetRequest.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -28,7 +28,7 @@ * WebhookVerificationKeyGetRequest defines the request schema for `/webhook_verification_key/get` */ @ApiModel(description = "WebhookVerificationKeyGetRequest defines the request schema for `/webhook_verification_key/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WebhookVerificationKeyGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) diff --git a/src/main/java/com/plaid/client/model/WebhookVerificationKeyGetResponse.java b/src/main/java/com/plaid/client/model/WebhookVerificationKeyGetResponse.java index fd8f2063f..03de2147f 100644 --- a/src/main/java/com/plaid/client/model/WebhookVerificationKeyGetResponse.java +++ b/src/main/java/com/plaid/client/model/WebhookVerificationKeyGetResponse.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * WebhookVerificationKeyGetResponse defines the response schema for `/webhook_verification_key/get` */ @ApiModel(description = "WebhookVerificationKeyGetResponse defines the response schema for `/webhook_verification_key/get`") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class WebhookVerificationKeyGetResponse { public static final String SERIALIZED_NAME_KEY = "key"; @SerializedName(SERIALIZED_NAME_KEY) diff --git a/src/main/java/com/plaid/client/model/YTDGrossIncomeSummaryFieldNumber.java b/src/main/java/com/plaid/client/model/YTDGrossIncomeSummaryFieldNumber.java index ecafe2807..6ee28901f 100644 --- a/src/main/java/com/plaid/client/model/YTDGrossIncomeSummaryFieldNumber.java +++ b/src/main/java/com/plaid/client/model/YTDGrossIncomeSummaryFieldNumber.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * Year-to-date pre-tax earnings, as reported on the paystub. */ @ApiModel(description = "Year-to-date pre-tax earnings, as reported on the paystub.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class YTDGrossIncomeSummaryFieldNumber { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) diff --git a/src/main/java/com/plaid/client/model/YTDNetIncomeSummaryFieldNumber.java b/src/main/java/com/plaid/client/model/YTDNetIncomeSummaryFieldNumber.java index 6425d6b30..1fb503194 100644 --- a/src/main/java/com/plaid/client/model/YTDNetIncomeSummaryFieldNumber.java +++ b/src/main/java/com/plaid/client/model/YTDNetIncomeSummaryFieldNumber.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -30,7 +30,7 @@ * 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 = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class YTDNetIncomeSummaryFieldNumber { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) diff --git a/src/main/java/com/plaid/client/model/YieldRate.java b/src/main/java/com/plaid/client/model/YieldRate.java index 7c6878ae3..23fedcad0 100644 --- a/src/main/java/com/plaid/client/model/YieldRate.java +++ b/src/main/java/com/plaid/client/model/YieldRate.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -29,7 +29,7 @@ * Details about a fixed income security's expected rate of return. */ @ApiModel(description = "Details about a fixed income security's expected rate of return.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-02-18T22:27:15.254508Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-03-04T22:54:39.300671Z[Etc/UTC]") public class YieldRate { public static final String SERIALIZED_NAME_PERCENTAGE = "percentage"; @SerializedName(SERIALIZED_NAME_PERCENTAGE) diff --git a/src/main/java/com/plaid/client/model/YieldRateType.java b/src/main/java/com/plaid/client/model/YieldRateType.java index 13d513505..97f87ff53 100644 --- a/src/main/java/com/plaid/client/model/YieldRateType.java +++ b/src/main/java/com/plaid/client/model/YieldRateType.java @@ -2,7 +2,7 @@ * 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.681.5 + * The version of the OpenAPI document: 2020-09-14_1.682.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/com/plaid/client/request/PlaidApi.java b/src/main/java/com/plaid/client/request/PlaidApi.java index ea80e96f7..698006bf1 100644 --- a/src/main/java/com/plaid/client/request/PlaidApi.java +++ b/src/main/java/com/plaid/client/request/PlaidApi.java @@ -874,11 +874,11 @@ Call authGet( /** * Verify auth data - * The `/auth/verify` endpoint verifies bank account numbers against Plaid's database via Database Auth. + * The `/auth/verify` endpoint verifies bank account and routing numbers and (optionally) account owner names against Plaid's database via [Database Auth](https://plaid.com/docs/auth/coverage/database-auth/). It can be used to verify account numbers that were not collected via the Plaid Link flow. This endpoint is currently in Early Availability; contact Sales or your Plaid account manager to request access. * @param authVerifyRequest (required) * @return Call<AuthVerifyResponse> * - * @see Verify auth data Documentation + * @see Verify auth data Documentation */ @Headers({ "Content-Type:application/json" @@ -1516,7 +1516,7 @@ Call craCheckReportCashflowInsightsGe /** * Refresh or create a Consumer Report - * The primary purpose of `/cra/check_report/create` is to refresh data in an existing report. A Consumer Report will last for 24 hours before expiring; you should call any `/get` endpoints on the report before it expires. If a report expires, you can call `/cra/check_report/create` again to re-generate it and refresh the data in the report. `/cra/check_report/create` can also be used to create a new report if `consumer_report_permissible_purpose` was omitted during Link token creation. However, using the endpoint in this way is not recommended. Instead, `consumer_report_permissible_purpose` should always be specified when calling `/link/token/create` for Plaid CRA products; this will reduce latency and simplify the integration process. If you provide a `consumer_report_permissible_purpose` during Link token creation, then Plaid Check will automatically begin creating a Consumer Report once the user completes the Link process, and it is not necessary to call `/cra/check_report/create` before retrieving the report. + * Use `/cra/check_report/create` to refresh data in an existing report. A Consumer Report will last for 24 hours before expiring; you should call any `/get` endpoints on the report before it expires. If a report expires, you can call `/cra/check_report/create` again to re-generate it and refresh the data in the report. * @param craCheckReportCreateRequest (required) * @return Call<CraCheckReportCreateResponse> * @@ -3695,7 +3695,7 @@ Call profileNetworkStatusGet( /** * Compute Protect Trust Index Score - * Use this endpoint to compute a Protect Trust Index score and retrieve fraud attributes + * Use this endpoint to compute a Protect Trust Index score and retrieve fraud attributes. For link-session models, if the Link session is not yet complete, the endpoint returns HTTP 400 with `error_type` = `INVALID_REQUEST` and `error_code` = `FAILED_PRECONDITION`. * @param protectComputeRequest (required) * @return Call<ProtectComputeResponse> *