diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8c8923da9..251fc4ddb 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).
+# 38.2.0
+- Updating to OAS 2020-09-14_1.672.0
+
+## OpenAPI Schema Changes
+### 2020-09-14_1.672.0
+- Add sub-fields to new Account Insights (Europe only) object: `minimum_balance`, `transfers_in`, `total_income`, and `income_excluding_transfers`.
+- Fix `category_details` missing a `type` definition (`type: array`) within the `LoanDisbursementsIndicators` object.
+- Add document `issue_date` to Identity Verification endpoints
+
+### 2020-09-14_1.671.6
+- Add CFU V2 webhook object
+
+### 2020-09-14_1.671.5
+
+### 2020-09-14_1.671.4
+
+### 2020-09-14_1.671.4
+- (beta) Rename `require_upgraded_user` boolean field in `/user/create` to `with_upgraded_user`
+
+### 2020-09-14_1.671.3
+- Add `IncomeProvider` to `/cra/check_report/income_insights/get`
+
+### 2020-09-14_1.671.2
+- (beta) Add `require_upgraded_user` boolean field to the `/user/create` request
+
+### 2020-09-14_1.671.1
+- Remove PlaidError schema from irrelevant endpoints
+
+### 2020-09-14_1.671.0
+- Add missing PlaidError schema to all endpoints
+
# 38.1.0
- Updating to OAS 2020-09-14_1.670.0
diff --git a/pom.xml b/pom.xml
index 04c580ec9..4c54e50e3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.plaid
plaid-java
- 38.1.0-SNAPSHOT
+ 38.2.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 f7e0e1018..0521a3e4d 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 v38.1.0")
+ .header("User-Agent", "Plaid Java v38.2.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 50f6ba385..751aef725 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 e440bd6ad..8c534d806 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 16926c664..c723aba79 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ea6155eb9..8505873f9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 42df6417c..e7de69e0b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 819cd9c37..b7703b5c2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 78eed0cac..765f9bfc0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3cf1794b5..4c3243161 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9a741405a..e5d8c4d17 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 01fc14931..c257b94e8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 97bdf6aef..1031019d1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1b904bcf1..c356ff72c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f5742df2a..c33919908 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6f5ee6266..91b08571a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 159158e0b..ca7b060e7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 0d8b72eb9..fa6fe8b5f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d4c7cd482..750e8a91f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ee1d93f33..34ea988f5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 de9069f3c..39a918831 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6bf6229e2..c46c872c8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 70654e338..3cf68cf9d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4669bd94d..7e33dc965 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9611c54b6..ce1a8c785 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a8a749885..86c8cfa93 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 272627f51..16486d8c2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 00675766f..906e6e382 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 9c7fbbc2d..728da73db 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 4b0601e5a..85613cf8e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class AccountVerificationInsights {
public static final String SERIALIZED_NAME_NAME_MATCH_SCORE = "name_match_score";
@SerializedName(SERIALIZED_NAME_NAME_MATCH_SCORE)
diff --git a/src/main/java/com/plaid/client/model/AccountVerificationInsightsAccountNumberFormat.java b/src/main/java/com/plaid/client/model/AccountVerificationInsightsAccountNumberFormat.java
index 9ecde9005..0d346a58f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 70d4eaea6..e56736d0a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cb2b67b6f..974decdd8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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)
diff --git a/src/main/java/com/plaid/client/model/AccountsBalanceGetRequest.java b/src/main/java/com/plaid/client/model/AccountsBalanceGetRequest.java
index 22b27f832..465f3bd24 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0b71b7694..859abbcc3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a109d8951..ff5e34184 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bb669a563..d1c65ebeb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f582054f0..866467374 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 13f4bf571..2343d86d8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 a861191b5..f3d19bf60 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 531303096..75d654d10 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 4eb0191ff..8cac695ed 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8db65125f..29ee1469d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c760e8f67..c638ae185 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5862cbfa7..ef9d24f52 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 aaceff784..87b849c59 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e457d0b6f..2203659a9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 75002582e..bcf00340f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6595c4e2d..eb4fc78db 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 1fda3d1e6..d1d789577 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -21,15 +21,16 @@
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.ExpenditureInsights;
+import com.plaid.client.model.IncomeInsights;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
- * 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 / expenses, disposable income, average expenditure, etc., helping lenders gauge the level of affordability of a borrower.
+ * 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 / 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@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 = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class AffordabilityInsights {
public static final String SERIALIZED_NAME_EXPENDITURE = "expenditure";
@SerializedName(SERIALIZED_NAME_EXPENDITURE)
@@ -37,7 +38,7 @@ public class AffordabilityInsights {
public static final String SERIALIZED_NAME_INCOME = "income";
@SerializedName(SERIALIZED_NAME_INCOME)
- private Object income;
+ private IncomeInsights income;
public AffordabilityInsights expenditure(ExpenditureInsights expenditure) {
@@ -63,25 +64,25 @@ public void setExpenditure(ExpenditureInsights expenditure) {
}
- public AffordabilityInsights income(Object income) {
+ public AffordabilityInsights income(IncomeInsights income) {
this.income = income;
return this;
}
/**
- * Comprehensive income analysis including total income, income excluding transfers, and inbound transfer amounts.
+ * Get income
* @return income
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "Comprehensive income analysis including total income, income excluding transfers, and inbound transfer amounts.")
+ @ApiModelProperty(value = "")
- public Object getIncome() {
+ public IncomeInsights getIncome() {
return income;
}
- public void setIncome(Object income) {
+ public void setIncome(IncomeInsights income) {
this.income = income;
}
diff --git a/src/main/java/com/plaid/client/model/AmountWithCurrency.java b/src/main/java/com/plaid/client/model/AmountWithCurrency.java
index 7d46f50ec..9f2f53915 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class AmountWithCurrency {
public static final String SERIALIZED_NAME_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
@@ -50,11 +50,11 @@ public AmountWithCurrency amount(Double amount) {
}
/**
- * The value of the aggregated transactions for this particular transactions group.
+ * If object represents a category of transactions, such as `total_amount`, `transfers_in`, `total_income`, etc. the amount represents the sum of all of the transactions in the group. If object is `cash_flow`, the amount represents the total value of all the inflows minus all the outflows across all the accounts in the report in the given time window. If object is `minimum_balance`, the amount represents the lowest balance of the account during the given time window.
* @return amount
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "The value of the aggregated transactions for this particular transactions group.")
+ @ApiModelProperty(value = "If object represents a category of transactions, such as `total_amount`, `transfers_in`, `total_income`, etc. the amount represents the sum of all of the transactions in the group. If object is `cash_flow`, the amount represents the total value of all the inflows minus all the outflows across all the accounts in the report in the given time window. If object is `minimum_balance`, the amount represents the lowest balance of the account during the given time window.")
public Double getAmount() {
return amount;
diff --git a/src/main/java/com/plaid/client/model/AmountWithCurrencyWithMonthlyAverage.java b/src/main/java/com/plaid/client/model/AmountWithCurrencyWithMonthlyAverage.java
new file mode 100644
index 000000000..602665edc
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/AmountWithCurrencyWithMonthlyAverage.java
@@ -0,0 +1,159 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+
+package com.plaid.client.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import com.google.gson.TypeAdapter;
+import com.google.gson.annotations.JsonAdapter;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.stream.JsonReader;
+import com.google.gson.stream.JsonWriter;
+import com.plaid.client.model.AmountWithCurrency;
+import com.plaid.client.model.MonthlyAverage;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+
+/**
+ * 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 = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
+public class AmountWithCurrencyWithMonthlyAverage {
+ public static final String SERIALIZED_NAME_AMOUNT = "amount";
+ @SerializedName(SERIALIZED_NAME_AMOUNT)
+ private Double amount;
+
+ public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code";
+ @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE)
+ private String isoCurrencyCode;
+
+ public static final String SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE = "unofficial_currency_code";
+ @SerializedName(SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE)
+ private String unofficialCurrencyCode;
+
+
+ public AmountWithCurrencyWithMonthlyAverage amount(Double amount) {
+
+ this.amount = amount;
+ return this;
+ }
+
+ /**
+ * The monthly average amount of all the aggregated transactions of the given category, across all the accounts for the given time window. The average is calculated by dividing the total amount of the transactions by the number of calendar months in the given time window.
+ * @return amount
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "The monthly average amount of all the aggregated transactions of the given category, across all the accounts for the given time window. The average is calculated by dividing the total amount of the transactions by the number of calendar months in the given time window.")
+
+ public Double getAmount() {
+ return amount;
+ }
+
+
+ public void setAmount(Double amount) {
+ this.amount = amount;
+ }
+
+
+ public AmountWithCurrencyWithMonthlyAverage isoCurrencyCode(String isoCurrencyCode) {
+
+ this.isoCurrencyCode = isoCurrencyCode;
+ return this;
+ }
+
+ /**
+ * The ISO-4217 currency code of the amount. Always `null` if `unofficial_currency_code` is non-`null`.
+ * @return isoCurrencyCode
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "The ISO-4217 currency code of the amount. Always `null` if `unofficial_currency_code` is non-`null`.")
+
+ public String getIsoCurrencyCode() {
+ return isoCurrencyCode;
+ }
+
+
+ public void setIsoCurrencyCode(String isoCurrencyCode) {
+ this.isoCurrencyCode = isoCurrencyCode;
+ }
+
+
+ public AmountWithCurrencyWithMonthlyAverage unofficialCurrencyCode(String unofficialCurrencyCode) {
+
+ this.unofficialCurrencyCode = unofficialCurrencyCode;
+ return this;
+ }
+
+ /**
+ * The unofficial currency code associated with the amount. Always `null` if `iso_currency_code` is non-`null`. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `unofficial_currency_code`s.
+ * @return unofficialCurrencyCode
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "The unofficial currency code associated with the amount. Always `null` if `iso_currency_code` is non-`null`. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `unofficial_currency_code`s.")
+
+ public String getUnofficialCurrencyCode() {
+ return unofficialCurrencyCode;
+ }
+
+
+ public void setUnofficialCurrencyCode(String unofficialCurrencyCode) {
+ this.unofficialCurrencyCode = unofficialCurrencyCode;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ AmountWithCurrencyWithMonthlyAverage amountWithCurrencyWithMonthlyAverage = (AmountWithCurrencyWithMonthlyAverage) o;
+ return Objects.equals(this.amount, amountWithCurrencyWithMonthlyAverage.amount) &&
+ Objects.equals(this.isoCurrencyCode, amountWithCurrencyWithMonthlyAverage.isoCurrencyCode) &&
+ Objects.equals(this.unofficialCurrencyCode, amountWithCurrencyWithMonthlyAverage.unofficialCurrencyCode);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class AmountWithCurrencyWithMonthlyAverage {\n");
+ sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
+ sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n");
+ sb.append(" unofficialCurrencyCode: ").append(toIndentedString(unofficialCurrencyCode)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces
+ * (except the first line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+}
+
diff --git a/src/main/java/com/plaid/client/model/Application.java b/src/main/java/com/plaid/client/model/Application.java
index 0f1fc6263..61c182751 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9ed80aa41..3175ffc8e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a2349fb45..c86e419f4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e3ed0cc44..9d16d378e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5439d9021..84f5d8205 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 17f8b95a3..1a6955396 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f15b0a69a..5a6ee66b7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 75a679b15..c0b2f8710 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f029eb5f6..82e4f7f70 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 373d94007..886835471 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 d522ef0d8..94179b283 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 60fb03df4..a885c3331 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c4c35651a..d5ba2483b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4f19456f6..990505cbc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9c0e413ec..22b872ec5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 05625b0d7..0535ffb07 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2f3121f7b..698dc8b03 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6030b9341..8fda85aa9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 578014b55..7f8fd610a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3621d55f3..bce60e137 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5788fa3f2..bb4a92e32 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0a35fb3d1..77bf9d383 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6f9ecc5b3..5a70c0411 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5d72e5ad7..08cddc39b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 50fcd2baf..18aace4b1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 844567f1e..e47bdbad5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 782f343cd..c0ee222f8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ad268d231..ec613069d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f305c7744..03a4881c6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5cc0179a4..496547791 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c363361b0..915cfa5ee 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 168a7badd..9203af40f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 917b89738..6ce6c9cbe 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 927c6d30f..edce5aeb5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 21f4e4991..077016aeb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2665953d0..cdf1ec07a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0e0d8065c..44d5b7904 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fcea9f38b..bf308fd77 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6fe96185d..4f7efdcc1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 91297e256..ed40cd7a4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a178277b9..2e2f9b505 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6a47d7ff6..7d0f09616 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 16f71da6a..d7d38f6cc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 396039cc8..47d0ca8c5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6475e728d..74e9bf5d8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5b228abcf..fada3c117 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 b537d42cd..b80c2760a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 344e0c32e..5b80e1819 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1ebaf8e5c..a37a496b3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5c01140c3..9a3f1ff98 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 57cb1188a..76ab7d033 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1b54a753a..2ef43d76b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0c4ed7adf..001b20387 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 deb75cb9c..0125725d7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4170f4b24..223e7c549 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 447395dd9..b8436a74c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f95ae524c..f3f6928ae 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 656f73d40..bae9fc32a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9fa2bcc70..5497fd741 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 284b3dd36..e4fe7e2d2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 68012144c..00f1faafb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a1615bd9a..afd24a703 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 dc6fdadc3..331cdcbf6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3ac3e92d6..31d1cedfe 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7da998c84..4b52d0b5f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7dd2e907c..758a99eaa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 389a884ff..c03f3249c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4ca4cc492..7cec41288 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b276c4cd3..b895b3132 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 dd1eefc54..a106dc027 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4a134c573..ab9215be6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a4334c8de..4d8a5b485 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 bc811d114..3249b2f68 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ed6a53a84..d1c52040b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 5451ad58a..c296a480e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0dffa3fb3..6897c6d06 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9bfe68e9a..323efa7a8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 816bb6f8d..ad17f6af7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class BankPenaltiesIndicators {
public static final String SERIALIZED_NAME_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
@@ -279,11 +279,11 @@ public BankPenaltiesIndicators percentageOfIncome(Double percentageOfIncome) {
}
/**
- * The percentage of the user's monthly inflows that was spent on transactions that fall into the `BANK_PENALTIES` credit category within the given time window, across all the accounts in the report. Valid values start and 0, with a value of 100 representing '100% of the inflows were spent on transactions that fall into the `BANK_PENALTIES` credit category'. If there's no available income for the giving time period, this field value will be `-1`
+ * The percentage of the user's monthly inflows that was spent on transactions that fall into the `BANK_PENALTIES` credit category within the given time window, across all the accounts in the report. For example, a value of 100 represents that 100% of the inflows were spent on transactions that fall into the `BANK_PENALTIES` credit category. If there's no available income for the giving time period, this field value will be `-1`.
* @return percentageOfIncome
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "The percentage of the user's monthly inflows that was spent on transactions that fall into the `BANK_PENALTIES` credit category within the given time window, across all the accounts in the report. Valid values start and 0, with a value of 100 representing '100% of the inflows were spent on transactions that fall into the `BANK_PENALTIES` credit category'. If there's no available income for the giving time period, this field value will be `-1`")
+ @ApiModelProperty(value = "The percentage of the user's monthly inflows that was spent on transactions that fall into the `BANK_PENALTIES` credit category within the given time window, across all the accounts in the report. For example, a value of 100 represents that 100% of the inflows were spent on transactions that fall into the `BANK_PENALTIES` credit category. If there's no available income for the giving time period, this field value will be `-1`.")
public Double getPercentageOfIncome() {
return percentageOfIncome;
diff --git a/src/main/java/com/plaid/client/model/BankTransfer.java b/src/main/java/com/plaid/client/model/BankTransfer.java
index 7f4dcbc5f..09986db0d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 de6f13105..65c0d8278 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8e4b2485e..63c229a37 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c23b1709e..7d0c0e6b0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 804ab042b..2cb1f07c6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 00bd35e84..3fd2570d4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fd7af7cfe..2822ed454 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 202e9f49e..20dd26c0a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4f35d81cb..b81bd530e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 f52bc318c..29a4ce17a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ce0700ef0..2a481c59e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 ead40a74e..7b3f434ef 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 15d45491b..a5845db8a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a404944de..1c3564fcd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 86217b435..871201bf8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 62dff9ae0..635ac37e1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 44b3ab5f9..1535e89af 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 4279ada36..ed0af949f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fbfc86b54..e6df5383e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 990e84900..3da25cb2e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2d2469134..a1a4e41b8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9e5481603..1e6990e0f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 af4be8d1d..c59508b0a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2f13e1b11..ec71bf6dd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 597f0c1da..55a7ee84d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 035b37ef3..9fcf83a67 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 e3b81f205..530e78927 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7be70823d..d50d558db 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e3e64a270..54e9c91c6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1ff5d1d92..1b62439ef 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c5a67224d..acd843649 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c4f9d9783..85b014326 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 693f9b00f..413f41bbd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 027c5c182..f3f777d60 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4bd257b07..3bfa1c7a3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9801210e0..e26046787 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 067e2baf4..67507f13e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 384d8324a..da33221c1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ae4b3b4f5..7275be0cf 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7fdf6565d..902c3a0ea 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2847a9529..16c44430f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class BaseReportAttributes {
public static final String SERIALIZED_NAME_IS_PRIMARY_ACCOUNT = "is_primary_account";
@SerializedName(SERIALIZED_NAME_IS_PRIMARY_ACCOUNT)
@@ -149,11 +149,11 @@ public BaseReportAttributes nsfOverdraftTransactionsCount(Integer nsfOverdraftTr
}
/**
- * The number of NSF and overdraft fee transactions in the time range for the report in the given account.
+ * The number of net NSF fee transactions for a given account within the report time range (not counting any fees that were reversed within the time range).
* @return nsfOverdraftTransactionsCount
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "The number of NSF and overdraft fee transactions in the time range for the report in the given account.")
+ @ApiModelProperty(value = "The number of net NSF fee transactions for a given account within the report time range (not counting any fees that were reversed within the time range).")
public Integer getNsfOverdraftTransactionsCount() {
return nsfOverdraftTransactionsCount;
@@ -172,11 +172,11 @@ public BaseReportAttributes nsfOverdraftTransactionsCount30d(Integer nsfOverdraf
}
/**
- * The number of NSF and overdraft fee transactions in the last 30 days for a given account.
+ * The number of net NSF fee transactions within the last 30 days for a given account (not counting any fees that were reversed within the time range).
* @return nsfOverdraftTransactionsCount30d
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "The number of NSF and overdraft fee transactions in the last 30 days for a given account.")
+ @ApiModelProperty(value = "The number of net NSF fee transactions within the last 30 days for a given account (not counting any fees that were reversed within the time range).")
public Integer getNsfOverdraftTransactionsCount30d() {
return nsfOverdraftTransactionsCount30d;
@@ -195,11 +195,11 @@ public BaseReportAttributes nsfOverdraftTransactionsCount60d(Integer nsfOverdraf
}
/**
- * The number of NSF and overdraft fee transactions in the last 60 days for a given account.
+ * The number of net NSF fee transactions within the last 60 days for a given account (not counting any fees that were reversed within the time range).
* @return nsfOverdraftTransactionsCount60d
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "The number of NSF and overdraft fee transactions in the last 60 days for a given account.")
+ @ApiModelProperty(value = "The number of net NSF fee transactions within the last 60 days for a given account (not counting any fees that were reversed within the time range).")
public Integer getNsfOverdraftTransactionsCount60d() {
return nsfOverdraftTransactionsCount60d;
@@ -218,11 +218,11 @@ public BaseReportAttributes nsfOverdraftTransactionsCount90d(Integer nsfOverdraf
}
/**
- * The number of NSF and overdraft fee transactions in the last 90 days for a given account.
+ * The number of net NSF fee transactions within the last 90 days for a given account (not counting any fees that were reversed within the time range).
* @return nsfOverdraftTransactionsCount90d
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "The number of NSF and overdraft fee transactions in the last 90 days for a given account.")
+ @ApiModelProperty(value = "The number of net NSF fee transactions within the last 90 days for a given account (not counting any fees that were reversed within the time range).")
public Integer getNsfOverdraftTransactionsCount90d() {
return nsfOverdraftTransactionsCount90d;
diff --git a/src/main/java/com/plaid/client/model/BaseReportAverageFlowInsights.java b/src/main/java/com/plaid/client/model/BaseReportAverageFlowInsights.java
index 5608035da..b96062381 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9d04dd0cc..6ad5291d6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c577169d4..7fd50690e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5d7d258d0..fe2a1cae1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2c889774d..16fc67a30 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 81142f296..69b76bdb1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b41453c6e..7320ec9bc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 628018f87..66865592c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9407e7a69..bfe51e63f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 dabcb32d7..64d0b45e0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 72cf40065..191f4bda9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class BaseReportTransaction {
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/BaseReportTransactionType.java b/src/main/java/com/plaid/client/model/BaseReportTransactionType.java
index b09e66cb8..7e95ad9d1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 addca8761..4911120d7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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)
@@ -94,11 +94,11 @@ public BaseReportUserAttributes nsfOverdraftTransactionsCount(Integer nsfOverdra
}
/**
- * The number of NSF and overdraft fee transactions in the time range for the report in the given report.
+ * The number of net NSF fee transactions in the time range for the report (not counting any fees that were reversed within that time range).
* @return nsfOverdraftTransactionsCount
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "The number of NSF and overdraft fee transactions in the time range for the report in the given report.")
+ @ApiModelProperty(value = "The number of net NSF fee transactions in the time range for the report (not counting any fees that were reversed within that time range).")
public Integer getNsfOverdraftTransactionsCount() {
return nsfOverdraftTransactionsCount;
@@ -117,11 +117,11 @@ public BaseReportUserAttributes nsfOverdraftTransactionsCount30d(Integer nsfOver
}
/**
- * The number of NSF and overdraft fee transactions in the last 30 days for a given report.
+ * The number of net NSF fee transactions in the last 30 days in the report (not counting any fees that were reversed within that time range).
* @return nsfOverdraftTransactionsCount30d
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "The number of NSF and overdraft fee transactions in the last 30 days for a given report.")
+ @ApiModelProperty(value = "The number of net NSF fee transactions in the last 30 days in the report (not counting any fees that were reversed within that time range).")
public Integer getNsfOverdraftTransactionsCount30d() {
return nsfOverdraftTransactionsCount30d;
@@ -140,11 +140,11 @@ public BaseReportUserAttributes nsfOverdraftTransactionsCount60d(Integer nsfOver
}
/**
- * The number of NSF and overdraft fee transactions in the last 60 days for a given report.
+ * The number of net NSF fee transactions in the last 60 days in the report (not counting any fees that were reversed within that time range).
* @return nsfOverdraftTransactionsCount60d
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "The number of NSF and overdraft fee transactions in the last 60 days for a given report.")
+ @ApiModelProperty(value = "The number of net NSF fee transactions in the last 60 days in the report (not counting any fees that were reversed within that time range).")
public Integer getNsfOverdraftTransactionsCount60d() {
return nsfOverdraftTransactionsCount60d;
@@ -163,11 +163,11 @@ public BaseReportUserAttributes nsfOverdraftTransactionsCount90d(Integer nsfOver
}
/**
- * The number of NSF and overdraft fee transactions in the last 90 days for a given report.
+ * The number of net NSF fee transactions in the last 90 days in the report (not counting any fees that were reversed within that time range).
* @return nsfOverdraftTransactionsCount90d
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "The number of NSF and overdraft fee transactions in the last 90 days for a given report.")
+ @ApiModelProperty(value = "The number of net NSF fee transactions in the last 90 days in the report (not counting any fees that were reversed within that time range).")
public Integer getNsfOverdraftTransactionsCount90d() {
return nsfOverdraftTransactionsCount90d;
diff --git a/src/main/java/com/plaid/client/model/BaseReportWarning.java b/src/main/java/com/plaid/client/model/BaseReportWarning.java
index b4f560696..1ed3de3de 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bf6de5dd8..3fc2c043a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 1ca608a22..b90d70184 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8a0c68884..3f13fff19 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 95830c99c..37a1acf02 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 756b2f97c..d54299555 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3c8f8dc6d..21cc8e089 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 6541ccb10..f9b30e7d0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f09933ae4..89d379a84 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ffce6b83b..1559dc2f2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7eda266d3..6688771d6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4abe6bd79..8baa203cb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 51b4aa95c..a88fa2f4c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bc7e47ab0..f3d567800 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a57a53bce..1a0222e19 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bb0201728..368821e7a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c72839f93..5ae551138 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c18910a6a..9910b30a7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 262c96ec6..054c621a4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 c0f5abd31..c1fcd002d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 08d6ce7e0..a0831a6a4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c176e3364..fa44a1839 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5aef62378..8fa1a3d19 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 1df6f4834..f6f25e5c1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 214247288..1ae311c9a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5bdac37cd..a3f445bfc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 65f236bc5..6809d0284 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 57d9438f5..48f6d2b44 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bb71e64d2..3bb0bf3d4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 13fdc770f..3d8072be6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0449ebf38..d43d7d7f2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 90a9ef845..239af97f3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 829c67c98..184753b27 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d0a7a6f0e..55e574397 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5b411fe9f..5133702b6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 caa4b2dcd..9992844fa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5a24d73bf..9be1ca569 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 fdf69a5a5..1c0eec9b3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5d2f0590c..818a6419c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3b5406ae6..9dc2da339 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3a2320b4d..7c2bd9b20 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 68656aa1d..e06cf3d89 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ddf652b3a..142fa7381 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 319edead7..c021e4aa0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bf259eed9..db17ddf95 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bccef92f0..2c1662941 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 735bae3c4..8113ff7fa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e6d306ced..a1522353b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 92ca147b2..23bc796d7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f53dd94e6..347686d86 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 aaef0e6ca..27af32c34 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fb5428099..939bd61d9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 410c244c7..43cad0b51 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d323df790..e35e92512 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3a6dbf463..28ff1e004 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 545bb7a92..b46f0393a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4a2049b0d..6c5b20b2b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8e2c8f7a4..36add40bc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0b802e8e7..b460a8b02 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d0f24afe4..508f906ff 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 af842da9c..7515b5136 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 a3d81a5cb..30994f118 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 de0e2ba64..ba5bf91f0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ba6849a8e..4fd5f9734 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 75c66a714..72e58a7dd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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
new file mode 100644
index 000000000..2a27318d5
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/BetaEwaReportV1GetRequest.java
@@ -0,0 +1,156 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+
+package com.plaid.client.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import com.google.gson.TypeAdapter;
+import com.google.gson.annotations.JsonAdapter;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.stream.JsonReader;
+import com.google.gson.stream.JsonWriter;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+
+/**
+ * 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 = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
+public class BetaEwaReportV1GetRequest {
+ public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token";
+ @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN)
+ private String accessToken;
+
+ public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
+ @SerializedName(SERIALIZED_NAME_CLIENT_ID)
+ private String clientId;
+
+ public static final String SERIALIZED_NAME_SECRET = "secret";
+ @SerializedName(SERIALIZED_NAME_SECRET)
+ private String secret;
+
+
+ public BetaEwaReportV1GetRequest accessToken(String accessToken) {
+
+ this.accessToken = accessToken;
+ return this;
+ }
+
+ /**
+ * The access token associated with the Item data is being requested for.
+ * @return accessToken
+ **/
+ @ApiModelProperty(required = true, value = "The access token associated with the Item data is being requested for.")
+
+ public String getAccessToken() {
+ return accessToken;
+ }
+
+
+ public void setAccessToken(String accessToken) {
+ this.accessToken = accessToken;
+ }
+
+
+ public BetaEwaReportV1GetRequest clientId(String clientId) {
+
+ this.clientId = clientId;
+ return this;
+ }
+
+ /**
+ * Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
+ * @return clientId
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
+
+ public String getClientId() {
+ return clientId;
+ }
+
+
+ public void setClientId(String clientId) {
+ this.clientId = clientId;
+ }
+
+
+ public BetaEwaReportV1GetRequest secret(String secret) {
+
+ this.secret = secret;
+ 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
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
+
+ public String getSecret() {
+ return secret;
+ }
+
+
+ public void setSecret(String secret) {
+ this.secret = secret;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ BetaEwaReportV1GetRequest betaEwaReportV1GetRequest = (BetaEwaReportV1GetRequest) o;
+ return Objects.equals(this.accessToken, betaEwaReportV1GetRequest.accessToken) &&
+ Objects.equals(this.clientId, betaEwaReportV1GetRequest.clientId) &&
+ Objects.equals(this.secret, betaEwaReportV1GetRequest.secret);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(accessToken, clientId, secret);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class BetaEwaReportV1GetRequest {\n");
+ sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n");
+ sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
+ sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces
+ * (except the first line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+}
+
diff --git a/src/main/java/com/plaid/client/model/BetaEwaReportV1GetResponse.java b/src/main/java/com/plaid/client/model/BetaEwaReportV1GetResponse.java
new file mode 100644
index 000000000..10cbceb5f
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/BetaEwaReportV1GetResponse.java
@@ -0,0 +1,198 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+
+package com.plaid.client.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import com.google.gson.TypeAdapter;
+import com.google.gson.annotations.JsonAdapter;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.stream.JsonReader;
+import com.google.gson.stream.JsonWriter;
+import com.plaid.client.model.EWAScore;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+import java.time.OffsetDateTime;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * 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 = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
+public class BetaEwaReportV1GetResponse {
+ public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
+ @SerializedName(SERIALIZED_NAME_REQUEST_ID)
+ private String requestId;
+
+ public static final String SERIALIZED_NAME_EWA_REPORT_ID = "ewa_report_id";
+ @SerializedName(SERIALIZED_NAME_EWA_REPORT_ID)
+ private String ewaReportId;
+
+ public static final String SERIALIZED_NAME_GENERATION_TIME = "generation_time";
+ @SerializedName(SERIALIZED_NAME_GENERATION_TIME)
+ private OffsetDateTime generationTime;
+
+ public static final String SERIALIZED_NAME_EWA_SCORES = "ewa_scores";
+ @SerializedName(SERIALIZED_NAME_EWA_SCORES)
+ private List ewaScores = null;
+
+
+ public BetaEwaReportV1GetResponse requestId(String requestId) {
+
+ this.requestId = requestId;
+ return this;
+ }
+
+ /**
+ * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
+ * @return requestId
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
+
+ public String getRequestId() {
+ return requestId;
+ }
+
+
+ public void setRequestId(String requestId) {
+ this.requestId = requestId;
+ }
+
+
+ public BetaEwaReportV1GetResponse ewaReportId(String ewaReportId) {
+
+ this.ewaReportId = ewaReportId;
+ return this;
+ }
+
+ /**
+ * Unique identifier for the generated EWA score group.
+ * @return ewaReportId
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "Unique identifier for the generated EWA score group.")
+
+ public String getEwaReportId() {
+ return ewaReportId;
+ }
+
+
+ public void setEwaReportId(String ewaReportId) {
+ this.ewaReportId = ewaReportId;
+ }
+
+
+ public BetaEwaReportV1GetResponse generationTime(OffsetDateTime generationTime) {
+
+ this.generationTime = generationTime;
+ return this;
+ }
+
+ /**
+ * The date and time when `ewa_scores` was generated, in ISO 8601 format (e.g. \"2018-04-12T03:32:11Z\").
+ * @return generationTime
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "The date and time when `ewa_scores` was generated, in ISO 8601 format (e.g. \"2018-04-12T03:32:11Z\").")
+
+ public OffsetDateTime getGenerationTime() {
+ return generationTime;
+ }
+
+
+ public void setGenerationTime(OffsetDateTime generationTime) {
+ this.generationTime = generationTime;
+ }
+
+
+ public BetaEwaReportV1GetResponse ewaScores(List ewaScores) {
+
+ this.ewaScores = ewaScores;
+ return this;
+ }
+
+ public BetaEwaReportV1GetResponse addEwaScoresItem(EWAScore ewaScoresItem) {
+ if (this.ewaScores == null) {
+ this.ewaScores = new ArrayList<>();
+ }
+ this.ewaScores.add(ewaScoresItem);
+ return this;
+ }
+
+ /**
+ * A list of earned wage access (EWA) scoring entries that map potential advance amounts to repayment likelihood scores. The predefined advance amount ranges are `[0, 25]`, `[25, 50]`, `[50, 100]`, `[100, 200]`, `[200, 300]`, `[300, 400]`, and `[400, 500]`.
+ * @return ewaScores
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "A list of earned wage access (EWA) scoring entries that map potential advance amounts to repayment likelihood scores. The predefined advance amount ranges are `[0, 25]`, `[25, 50]`, `[50, 100]`, `[100, 200]`, `[200, 300]`, `[300, 400]`, and `[400, 500]`.")
+
+ public List getEwaScores() {
+ return ewaScores;
+ }
+
+
+ public void setEwaScores(List ewaScores) {
+ this.ewaScores = ewaScores;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ BetaEwaReportV1GetResponse betaEwaReportV1GetResponse = (BetaEwaReportV1GetResponse) o;
+ return Objects.equals(this.requestId, betaEwaReportV1GetResponse.requestId) &&
+ Objects.equals(this.ewaReportId, betaEwaReportV1GetResponse.ewaReportId) &&
+ Objects.equals(this.generationTime, betaEwaReportV1GetResponse.generationTime) &&
+ Objects.equals(this.ewaScores, betaEwaReportV1GetResponse.ewaScores);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(requestId, ewaReportId, generationTime, ewaScores);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class BetaEwaReportV1GetResponse {\n");
+ sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
+ sb.append(" ewaReportId: ").append(toIndentedString(ewaReportId)).append("\n");
+ sb.append(" generationTime: ").append(toIndentedString(generationTime)).append("\n");
+ sb.append(" ewaScores: ").append(toIndentedString(ewaScores)).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/BetaPartnerCustomerV1CreateRequest.java b/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1CreateRequest.java
index bc393b7bc..f050a8a20 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f3422a8fc..cdd5db7e5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 251432c6e..0d9ea3fcf 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cec7f71a5..c3f706677 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 eb1a3ef13..f14d5bd63 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 25eb696e2..6bff6ab35 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 73a291dd3..2aa070c5a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 827790dfc..4c81c0977 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8fab39e87..f6a4d9fb2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 84f25eead..a03e41f8c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 43d10d55b..e3dce9576 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 74af99637..9c9131e58 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/BusinessFinanceCategory.java b/src/main/java/com/plaid/client/model/BusinessFinanceCategory.java
index 21f0fa72e..3014857ed 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/CRALoansRegisterRequest.java b/src/main/java/com/plaid/client/model/CRALoansRegisterRequest.java
index df5aabb0d..1fac9634d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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
new file mode 100644
index 000000000..ebf2bee24
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/CashFlowInsight.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.672.0
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+
+package com.plaid.client.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import io.swagger.annotations.ApiModel;
+import com.google.gson.annotations.SerializedName;
+
+import java.io.IOException;
+import com.google.gson.TypeAdapter;
+import com.google.gson.annotations.JsonAdapter;
+import com.google.gson.stream.JsonReader;
+import com.google.gson.stream.JsonWriter;
+
+/**
+ * An insight that can be detected by the Cash Flow Updates product
+ */
+@JsonAdapter(CashFlowInsight.Adapter.class)
+public enum CashFlowInsight {
+
+ LARGE_DEPOSIT_DETECTED("LARGE_DEPOSIT_DETECTED"),
+
+ LOW_BALANCE_DETECTED("LOW_BALANCE_DETECTED"),
+
+ NEW_LOAN_PAYMENT_DETECTED("NEW_LOAN_PAYMENT_DETECTED"),
+
+ NSF_OVERDRAFT_DETECTED("NSF_OVERDRAFT_DETECTED"),
+
+ // 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;
+
+ CashFlowInsight(String value) {
+ this.value = value;
+ }
+
+ public String getValue() {
+ return value;
+ }
+
+ @Override
+ public String toString() {
+ return String.valueOf(value);
+ }
+
+ public static CashFlowInsight fromValue(String value) {
+ for (CashFlowInsight b : CashFlowInsight.values()) {
+ if (b.value.equals(value)) {
+ return b;
+ }
+ }
+
+ return CashFlowInsight.ENUM_UNKNOWN;
+ }
+
+ public static class Adapter extends TypeAdapter {
+ @Override
+ public void write(final JsonWriter jsonWriter, final CashFlowInsight enumeration) throws IOException {
+ jsonWriter.value(enumeration.getValue());
+ }
+
+ @Override
+ public CashFlowInsight read(final JsonReader jsonReader) throws IOException {
+ String value = jsonReader.nextString();
+ return CashFlowInsight.fromValue(value);
+ }
+ }
+}
+
diff --git a/src/main/java/com/plaid/client/model/CashFlowUpdatesEventWebhookCodes.java b/src/main/java/com/plaid/client/model/CashFlowUpdatesEventWebhookCodes.java
index b67891493..010de9c9a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 c9b3dce0d..863176ec0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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
new file mode 100644
index 000000000..d1fae91d6
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/CashFlowUpdatesInsightsV2Webhook.java
@@ -0,0 +1,248 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+
+package com.plaid.client.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import com.google.gson.TypeAdapter;
+import com.google.gson.annotations.JsonAdapter;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.stream.JsonReader;
+import com.google.gson.stream.JsonWriter;
+import com.plaid.client.model.CashFlowInsight;
+import com.plaid.client.model.MonitoringInsightsStatus;
+import com.plaid.client.model.WebhookEnvironmentValues;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * 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 = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
+public class CashFlowUpdatesInsightsV2Webhook {
+ public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type";
+ @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE)
+ private String webhookType;
+
+ public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code";
+ @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE)
+ private String webhookCode;
+
+ public static final String SERIALIZED_NAME_STATUS = "status";
+ @SerializedName(SERIALIZED_NAME_STATUS)
+ private MonitoringInsightsStatus status;
+
+ public static final String SERIALIZED_NAME_USER_ID = "user_id";
+ @SerializedName(SERIALIZED_NAME_USER_ID)
+ private String userId;
+
+ public static final String SERIALIZED_NAME_INSIGHTS = "insights";
+ @SerializedName(SERIALIZED_NAME_INSIGHTS)
+ private List insights = new ArrayList<>();
+
+ public static final String SERIALIZED_NAME_ENVIRONMENT = "environment";
+ @SerializedName(SERIALIZED_NAME_ENVIRONMENT)
+ private WebhookEnvironmentValues environment;
+
+
+ public CashFlowUpdatesInsightsV2Webhook webhookType(String webhookType) {
+
+ this.webhookType = webhookType;
+ return this;
+ }
+
+ /**
+ * `CASH_FLOW_UPDATES`
+ * @return webhookType
+ **/
+ @ApiModelProperty(required = true, value = "`CASH_FLOW_UPDATES`")
+
+ public String getWebhookType() {
+ return webhookType;
+ }
+
+
+ public void setWebhookType(String webhookType) {
+ this.webhookType = webhookType;
+ }
+
+
+ public CashFlowUpdatesInsightsV2Webhook webhookCode(String webhookCode) {
+
+ this.webhookCode = webhookCode;
+ return this;
+ }
+
+ /**
+ * `CASH_FLOW_INSIGHTS_UPDATED`
+ * @return webhookCode
+ **/
+ @ApiModelProperty(required = true, value = "`CASH_FLOW_INSIGHTS_UPDATED`")
+
+ public String getWebhookCode() {
+ return webhookCode;
+ }
+
+
+ public void setWebhookCode(String webhookCode) {
+ this.webhookCode = webhookCode;
+ }
+
+
+ public CashFlowUpdatesInsightsV2Webhook status(MonitoringInsightsStatus status) {
+
+ this.status = status;
+ return this;
+ }
+
+ /**
+ * Get status
+ * @return status
+ **/
+ @ApiModelProperty(required = true, value = "")
+
+ public MonitoringInsightsStatus getStatus() {
+ return status;
+ }
+
+
+ public void setStatus(MonitoringInsightsStatus status) {
+ this.status = status;
+ }
+
+
+ public CashFlowUpdatesInsightsV2Webhook userId(String userId) {
+
+ this.userId = userId;
+ return this;
+ }
+
+ /**
+ * A unique ID generated by Plaid representing the end user. Typically, this ID will come from the `/user/create` response, when the endpoint is invoked with the `PLAID-NEW-USER-API-ENABLED` header.
+ * @return userId
+ **/
+ @ApiModelProperty(required = true, value = "A unique ID generated by Plaid representing the end user. Typically, this ID will come from the `/user/create` response, when the endpoint is invoked with the `PLAID-NEW-USER-API-ENABLED` header.")
+
+ public String getUserId() {
+ return userId;
+ }
+
+
+ public void setUserId(String userId) {
+ this.userId = userId;
+ }
+
+
+ public CashFlowUpdatesInsightsV2Webhook insights(List insights) {
+
+ this.insights = insights;
+ return this;
+ }
+
+ public CashFlowUpdatesInsightsV2Webhook addInsightsItem(CashFlowInsight insightsItem) {
+ this.insights.add(insightsItem);
+ return this;
+ }
+
+ /**
+ * Array containing the insights detected within the generated report, if any. Possible values include: `LARGE_DEPOSIT_DETECTED`: signaling a deposit over $5,000 `LOW_BALANCE_DETECTED`: signaling a balance below $100 `NEW_LOAN_PAYMENT_DETECTED`: signaling a new loan payment `NSF_OVERDRAFT_DETECTED`: signaling an NSF overdraft
+ * @return insights
+ **/
+ @ApiModelProperty(required = true, value = "Array containing the insights detected within the generated report, if any. Possible values include: `LARGE_DEPOSIT_DETECTED`: signaling a deposit over $5,000 `LOW_BALANCE_DETECTED`: signaling a balance below $100 `NEW_LOAN_PAYMENT_DETECTED`: signaling a new loan payment `NSF_OVERDRAFT_DETECTED`: signaling an NSF overdraft")
+
+ public List getInsights() {
+ return insights;
+ }
+
+
+ public void setInsights(List insights) {
+ this.insights = insights;
+ }
+
+
+ public CashFlowUpdatesInsightsV2Webhook environment(WebhookEnvironmentValues environment) {
+
+ this.environment = environment;
+ return this;
+ }
+
+ /**
+ * Get environment
+ * @return environment
+ **/
+ @ApiModelProperty(required = true, value = "")
+
+ public WebhookEnvironmentValues getEnvironment() {
+ return environment;
+ }
+
+
+ public void setEnvironment(WebhookEnvironmentValues environment) {
+ this.environment = environment;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ CashFlowUpdatesInsightsV2Webhook cashFlowUpdatesInsightsV2Webhook = (CashFlowUpdatesInsightsV2Webhook) o;
+ return Objects.equals(this.webhookType, cashFlowUpdatesInsightsV2Webhook.webhookType) &&
+ Objects.equals(this.webhookCode, cashFlowUpdatesInsightsV2Webhook.webhookCode) &&
+ Objects.equals(this.status, cashFlowUpdatesInsightsV2Webhook.status) &&
+ Objects.equals(this.userId, cashFlowUpdatesInsightsV2Webhook.userId) &&
+ Objects.equals(this.insights, cashFlowUpdatesInsightsV2Webhook.insights) &&
+ Objects.equals(this.environment, cashFlowUpdatesInsightsV2Webhook.environment);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(webhookType, webhookCode, status, userId, insights, environment);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class CashFlowUpdatesInsightsV2Webhook {\n");
+ sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n");
+ sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n");
+ sb.append(" status: ").append(toIndentedString(status)).append("\n");
+ sb.append(" userId: ").append(toIndentedString(userId)).append("\n");
+ sb.append(" insights: ").append(toIndentedString(insights)).append("\n");
+ sb.append(" environment: ").append(toIndentedString(environment)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces
+ * (except the first line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+}
+
diff --git a/src/main/java/com/plaid/client/model/CashFlowUpdatesInsightsWebhook.java b/src/main/java/com/plaid/client/model/CashFlowUpdatesInsightsWebhook.java
index 642217ba4..84f2c6d68 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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.
*/
@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. ")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c11a69743..f92a6bc16 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 dbea5ca46..741cdd142 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6b3ca7ab3..fc21b8858 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b86480cb9..01cf06365 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2bf13146c..3bb207f98 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ca4ebf5b5..f4122c02b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 cbfec192a..b5f738979 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e8843f2be..8757768fa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 806f27af3..9b065b9b9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b6f6f6e1d..91333dcf8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 45bedae04..c385871bb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 180f2bb85..62784760a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2aa279c38..921216cde 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9680e8cec..babec4b14 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4d5d6e02d..f57a0c827 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b80a78eda..f0e710d93 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1b1d7cecf..6038c06a5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d810b71ab..c673868ed 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 033971c05..4c0f54ec2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7f4179a5e..a8ced8047 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2b8405c14..625982cd2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 460ad51b3..9c4bb50c5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0817768b5..b23c9fe64 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9bb6fd923..99f2752d8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7811e6236..cc09869d9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0f9258ec5..4eb80fe4b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e00a07016..eeea54c08 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bdc202816..0d6878480 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 30cbbb625..9c8feea28 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7df5e262e..2e8955ee9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8443ee51f..85a06abac 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 efcec2b5b..b3ca00892 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8a6881935..bce14d623 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b569591d7..f9592061f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4cdf3e91a..f062dd225 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 49a69aa7f..68fcd50bd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 788b64c85..88f606025 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f4ece8226..99d0671a1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f47a389cc..658988361 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7b06816f2..c65c1408a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 7e3a2f4e7..b73873207 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ef56c1e15..5ff872bd2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c70c34ee3..a2639c655 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7c8cc9f91..bc2cd6973 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ad4ec8718..d94e5d416 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4f862000a..bf0ad7d3e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0c0376b50..cfccb8fb8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,7 +36,7 @@
* ClientUserIdentity is the shared user identity construct across /user/_* routes.
*/
@ApiModel(description = "ClientUserIdentity is the shared user identity construct across /user/_* routes.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2b2ee6df8..2952e1292 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 15af5e784..1e9c5105f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 159f7fc59..6d00ec1ee 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bb4010a2a..2784d08d0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 821357b8f..c76936d9e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f1c4a9762..b4c05986e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b226f60fd..b5b82ee8b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 a7dc7cd34..ac4b25447 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 ca606f29f..fab745f2a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 145509096..84960dc64 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8b4712c2a..bcd6838df 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 983f36097..656252ddc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 78923f0fd..afc4f18d9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0a072a780..7dc97a11b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 f3e731d3d..4cb4e5b8a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bfddfd2d8..548bba845 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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). `EMPLOYMENT`: For employment purposes pursuant to FCRA 604(a)(3)(B), including hiring, retention and promotion purposes. `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.
+ * 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.
*/
@JsonAdapter(ConsumerReportPermissiblePurpose.Adapter.class)
public enum ConsumerReportPermissiblePurpose {
@@ -34,8 +34,6 @@ public enum ConsumerReportPermissiblePurpose {
ACCOUNT_REVIEW_NON_CREDIT("ACCOUNT_REVIEW_NON_CREDIT"),
- EMPLOYMENT("EMPLOYMENT"),
-
EXTENSION_OF_CREDIT("EXTENSION_OF_CREDIT"),
LEGITIMATE_BUSINESS_NEED_TENANT_SCREENING("LEGITIMATE_BUSINESS_NEED_TENANT_SCREENING"),
diff --git a/src/main/java/com/plaid/client/model/ConsumerReportUserIdentity.java b/src/main/java/com/plaid/client/model/ConsumerReportUserIdentity.java
index 2624594bd..ca45d96e7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
* To create a Plaid Check Consumer Report for a user, this field must be present on the user token. 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 = "To create a Plaid Check Consumer Report for a user, this field must be present on the user token. 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 388350843..280fcc437 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0ab1f70e7..41918d799 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d6329e542..c0c65d23d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2c844c8f1..e52ba4444 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2a90ba1b7..ca0b7f058 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 96173d1a4..6b23a3906 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 d8cdce0b2..d5e2bf424 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 a5d2fd06f..9d18056af 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 228f45953..378b47123 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1e2d13ac7..3271fdb02 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 a681f459a..e50b3f31c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cee8e01d5..988b1cbfb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 6b1f88a79..e8ddca6a6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 41d6a99cb..ffd285481 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e0f33463b..a97332d8b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6fa4a81ae..9927069bb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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
new file mode 100644
index 000000000..0b25ef2a2
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/CraBankIncomeIncomeProvider.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.672.0
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+
+package com.plaid.client.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import com.google.gson.TypeAdapter;
+import com.google.gson.annotations.JsonAdapter;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.stream.JsonReader;
+import com.google.gson.stream.JsonWriter;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+
+/**
+ * The 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 = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
+public class CraBankIncomeIncomeProvider {
+ public static final String SERIALIZED_NAME_NAME = "name";
+ @SerializedName(SERIALIZED_NAME_NAME)
+ private String name;
+
+ public static final String SERIALIZED_NAME_IS_NORMALIZED = "is_normalized";
+ @SerializedName(SERIALIZED_NAME_IS_NORMALIZED)
+ private Boolean isNormalized;
+
+
+ public CraBankIncomeIncomeProvider name(String name) {
+
+ this.name = name;
+ return this;
+ }
+
+ /**
+ * The name of the income provider.
+ * @return name
+ **/
+ @ApiModelProperty(required = true, value = "The name of the income provider.")
+
+ public String getName() {
+ return name;
+ }
+
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+
+ public CraBankIncomeIncomeProvider isNormalized(Boolean isNormalized) {
+
+ this.isNormalized = isNormalized;
+ return this;
+ }
+
+ /**
+ * Indicates whether the income provider name is normalized by comparing it against a canonical set of known providers.
+ * @return isNormalized
+ **/
+ @ApiModelProperty(required = true, value = "Indicates whether the income provider name is normalized by comparing it against a canonical set of known providers.")
+
+ public Boolean getIsNormalized() {
+ return isNormalized;
+ }
+
+
+ public void setIsNormalized(Boolean isNormalized) {
+ this.isNormalized = isNormalized;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ CraBankIncomeIncomeProvider craBankIncomeIncomeProvider = (CraBankIncomeIncomeProvider) o;
+ return Objects.equals(this.name, craBankIncomeIncomeProvider.name) &&
+ Objects.equals(this.isNormalized, craBankIncomeIncomeProvider.isNormalized);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(name, isNormalized);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class CraBankIncomeIncomeProvider {\n");
+ sb.append(" name: ").append(toIndentedString(name)).append("\n");
+ sb.append(" isNormalized: ").append(toIndentedString(isNormalized)).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/CraBankIncomeItem.java b/src/main/java/com/plaid/client/model/CraBankIncomeItem.java
index 98ef81cbb..68fd9042b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 59008577f..d934e8742 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,6 +22,7 @@
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.CraBankIncomeEmployer;
import com.plaid.client.model.CraBankIncomeHistoricalSummary;
+import com.plaid.client.model.CraBankIncomeIncomeProvider;
import com.plaid.client.model.CraPredictionInterval;
import com.plaid.client.model.CreditBankIncomeCategory;
import com.plaid.client.model.CreditBankIncomePayFrequency;
@@ -37,7 +38,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class CraBankIncomeSource {
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
@@ -107,6 +108,10 @@ public class CraBankIncomeSource {
@SerializedName(SERIALIZED_NAME_EMPLOYER)
private CraBankIncomeEmployer employer;
+ public static final String SERIALIZED_NAME_INCOME_PROVIDER = "income_provider";
+ @SerializedName(SERIALIZED_NAME_INCOME_PROVIDER)
+ private CraBankIncomeIncomeProvider incomeProvider;
+
public static final String SERIALIZED_NAME_HISTORICAL_SUMMARY = "historical_summary";
@SerializedName(SERIALIZED_NAME_HISTORICAL_SUMMARY)
private List historicalSummary = null;
@@ -507,6 +512,29 @@ public void setEmployer(CraBankIncomeEmployer employer) {
}
+ public CraBankIncomeSource incomeProvider(CraBankIncomeIncomeProvider incomeProvider) {
+
+ this.incomeProvider = incomeProvider;
+ return this;
+ }
+
+ /**
+ * Get incomeProvider
+ * @return incomeProvider
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public CraBankIncomeIncomeProvider getIncomeProvider() {
+ return incomeProvider;
+ }
+
+
+ public void setIncomeProvider(CraBankIncomeIncomeProvider incomeProvider) {
+ this.incomeProvider = incomeProvider;
+ }
+
+
public CraBankIncomeSource historicalSummary(List historicalSummary) {
this.historicalSummary = historicalSummary;
@@ -564,12 +592,13 @@ public boolean equals(Object o) {
Objects.equals(this.forecastedAverageMonthlyIncome, craBankIncomeSource.forecastedAverageMonthlyIncome) &&
Objects.equals(this.forecastedAverageMonthlyIncomePredictionIntervals, craBankIncomeSource.forecastedAverageMonthlyIncomePredictionIntervals) &&
Objects.equals(this.employer, craBankIncomeSource.employer) &&
+ Objects.equals(this.incomeProvider, craBankIncomeSource.incomeProvider) &&
Objects.equals(this.historicalSummary, craBankIncomeSource.historicalSummary);
}
@Override
public int hashCode() {
- return Objects.hash(accountId, incomeSourceId, incomeDescription, incomeCategory, startDate, endDate, payFrequency, totalAmount, isoCurrencyCode, unofficialCurrencyCode, transactionCount, nextPaymentDate, historicalAverageMonthlyGrossIncome, historicalAverageMonthlyIncome, forecastedAverageMonthlyIncome, forecastedAverageMonthlyIncomePredictionIntervals, employer, historicalSummary);
+ return Objects.hash(accountId, incomeSourceId, incomeDescription, incomeCategory, startDate, endDate, payFrequency, totalAmount, isoCurrencyCode, unofficialCurrencyCode, transactionCount, nextPaymentDate, historicalAverageMonthlyGrossIncome, historicalAverageMonthlyIncome, forecastedAverageMonthlyIncome, forecastedAverageMonthlyIncomePredictionIntervals, employer, incomeProvider, historicalSummary);
}
@Override
@@ -593,6 +622,7 @@ public String toString() {
sb.append(" forecastedAverageMonthlyIncome: ").append(toIndentedString(forecastedAverageMonthlyIncome)).append("\n");
sb.append(" forecastedAverageMonthlyIncomePredictionIntervals: ").append(toIndentedString(forecastedAverageMonthlyIncomePredictionIntervals)).append("\n");
sb.append(" employer: ").append(toIndentedString(employer)).append("\n");
+ sb.append(" incomeProvider: ").append(toIndentedString(incomeProvider)).append("\n");
sb.append(" historicalSummary: ").append(toIndentedString(historicalSummary)).append("\n");
sb.append("}");
return sb.toString();
diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeSummary.java b/src/main/java/com/plaid/client/model/CraBankIncomeSummary.java
index 4965cb1c0..23838ba82 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e650b2b65..976f242fe 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 87a2723a9..0257a8f85 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5fbb3cf38..ce71bbfe3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 07786360f..12f9a7d74 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5ec4237a8..368aab722 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4fa7a67cd..5b32c454f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class CraCheckReportBaseReportGetResponse {
public static final String SERIALIZED_NAME_REPORT = "report";
@SerializedName(SERIALIZED_NAME_REPORT)
@@ -81,10 +81,10 @@ public CraCheckReportBaseReportGetResponse addWarningsItem(BaseReportWarning war
}
/**
- * If the Base Report generation was successful but identity information cannot be returned, this array will contain information about the errors causing identity information to be missing
+ * This array contains any information about errors or alerts related to the Base Report that did not block generation of the report.
* @return warnings
**/
- @ApiModelProperty(required = true, value = "If the Base Report generation was successful but identity information cannot be returned, this array will contain information about the errors causing identity information to be missing")
+ @ApiModelProperty(required = true, value = "This array contains any information about errors or alerts related to the Base Report that did not block generation of the report.")
public List getWarnings() {
return warnings;
diff --git a/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetOptions.java b/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetOptions.java
index 6162576f1..1814fedb6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f81ddb802..bada38498 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e83c5b167..fcf7be74f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1473d8d57..b655d6b39 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a5d354d6a..eaab978ef 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class CraCheckReportCreatePartnerInsightsOptions {
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/CraCheckReportCreateRequest.java b/src/main/java/com/plaid/client/model/CraCheckReportCreateRequest.java
index 755339056..a9c54482a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c2e0a860c..ee02ed00a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5e3b2df33..b3f872956 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1bfcacef0..1cc0d625a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c59071453..28e61cc8a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 82143d9fc..61114cff3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c145da144..a34836564 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c5648fac7..11b444a03 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 90a5032d8..13a51f947 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 69e05b13f..b0ddcbb79 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 303ef7200..52b693057 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class CraCheckReportLendScoreGetRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
@@ -43,6 +43,10 @@ public class CraCheckReportLendScoreGetRequest {
@SerializedName(SERIALIZED_NAME_USER_TOKEN)
private String userToken;
+ public static final String SERIALIZED_NAME_USER_ID = "user_id";
+ @SerializedName(SERIALIZED_NAME_USER_ID)
+ private String userId;
+
public static final String SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN = "third_party_user_token";
@SerializedName(SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN)
private String thirdPartyUserToken;
@@ -121,6 +125,29 @@ public void setUserToken(String userToken) {
}
+ public CraCheckReportLendScoreGetRequest userId(String userId) {
+
+ this.userId = userId;
+ return this;
+ }
+
+ /**
+ * Get userId
+ * @return userId
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public String getUserId() {
+ return userId;
+ }
+
+
+ public void setUserId(String userId) {
+ this.userId = userId;
+ }
+
+
public CraCheckReportLendScoreGetRequest thirdPartyUserToken(String thirdPartyUserToken) {
this.thirdPartyUserToken = thirdPartyUserToken;
@@ -179,13 +206,14 @@ public boolean equals(Object o) {
return Objects.equals(this.clientId, craCheckReportLendScoreGetRequest.clientId) &&
Objects.equals(this.secret, craCheckReportLendScoreGetRequest.secret) &&
Objects.equals(this.userToken, craCheckReportLendScoreGetRequest.userToken) &&
+ Objects.equals(this.userId, craCheckReportLendScoreGetRequest.userId) &&
Objects.equals(this.thirdPartyUserToken, craCheckReportLendScoreGetRequest.thirdPartyUserToken) &&
Objects.equals(this.options, craCheckReportLendScoreGetRequest.options);
}
@Override
public int hashCode() {
- return Objects.hash(clientId, secret, userToken, thirdPartyUserToken, options);
+ return Objects.hash(clientId, secret, userToken, userId, thirdPartyUserToken, options);
}
@Override
@@ -195,6 +223,7 @@ public String toString() {
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" userToken: ").append(toIndentedString(userToken)).append("\n");
+ sb.append(" userId: ").append(toIndentedString(userId)).append("\n");
sb.append(" thirdPartyUserToken: ").append(toIndentedString(thirdPartyUserToken)).append("\n");
sb.append(" options: ").append(toIndentedString(options)).append("\n");
sb.append("}");
diff --git a/src/main/java/com/plaid/client/model/CraCheckReportLendScoreGetResponse.java b/src/main/java/com/plaid/client/model/CraCheckReportLendScoreGetResponse.java
index 68f02ee08..ecf1b1eb6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e3c7c149e..9891f734c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d7597e211..ba5c11247 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4b9eecd83..941ec663c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 85071783d..fdeedf2e3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 853a55f68..5e218cb36 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 15c434c20..062228d71 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class CraCheckReportPartnerInsightsGetPartnerInsights {
public static final String SERIALIZED_NAME_PRISM_VERSIONS = "prism_versions";
@SerializedName(SERIALIZED_NAME_PRISM_VERSIONS)
diff --git a/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetRequest.java b/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetRequest.java
index bb4771830..ce3c2b6c8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 814a3a610..87f81b855 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 96c4b89b3..38a9caa54 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7fde7f473..0e6c63df3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d617dd8c6..3ea1e5182 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 352771cd8..8d82c6409 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0218711e0..057a3ce0f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b6b93b8e7..86c897caa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8e047468c..5771345e0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 5656af354..5c7e7a523 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d1070cb33..c97cb3422 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 45dc43389..64fa6714d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 07fc9b3df..996f0d66a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 435df105d..4e693db7a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fa3e63dea..ef08ff0af 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6b20f4b02..6f594c31c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5fa2107ae..66b228d31 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 016fce067..b144d13b3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 97dc39487..907801a89 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c3919f91c..6bde790de 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b9b60eeb9..1235dcbb0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 de5501100..729cae5a4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 31dfdf38d..9160eb97c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d3120f1c4..cd0ea7726 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 15008857c..219cfa661 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2ebfce172..0edc3f361 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 b4e559c49..50a6b182a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d8428904b..fd48f714f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 282e4d2ee..96aef0d16 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5c875add2..ff413a50c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1f7f61b5a..529d22e7e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5b92ea4da..a5ee27501 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9609a1cd0..7e05dbc02 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ad862ee19..7a630914e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7d428f40b..bf3abafbb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 212830f13..694c38d42 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b3154d3b8..026911485 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3f8a8b9ac..cc97c9443 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a3c0cbd9e..7c67cc81a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fa722e57e..d8f0d2195 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 80e12c1d1..ad74a5595 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e6e224706..37512440d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ab0c173ae..322267d29 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bcc024a77..e2582a86e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 312f55343..b92151ba6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 98f86ee1f..217e6b178 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class CraPartnerInsights {
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/CraPartnerInsightsCompleteWebhook.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsCompleteWebhook.java
index 7d1b0bc61..90af6e5d0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ee686ab0d..6e4c66898 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/CraPartnerInsightsGetRequest.java b/src/main/java/com/plaid/client/model/CraPartnerInsightsGetRequest.java
index af35f9dd3..312909d4f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ee12498b0..2bd9627cb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8ebfedc4b..08c29eba1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a1f88b9e6..f303acb7e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e8c4d0c21..495989233 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 73b4f9903..1fe024595 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/CraPredictionInterval.java b/src/main/java/com/plaid/client/model/CraPredictionInterval.java
index 8f934879a..c8df8f548 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ec01ecd24..d95140a38 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/CraVerificationReport.java b/src/main/java/com/plaid/client/model/CraVerificationReport.java
index ff0eea428..6011a83b6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
* Contains data for the CRA Verification Report.
*/
@ApiModel(description = "Contains data for the CRA Verification Report.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5d799f0e5..c59f27a84 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 64ef0c31e..c7437d304 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 90fbacd11..3fb8522df 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class CraVoaReportAccountBalances {
public static final String SERIALIZED_NAME_AVAILABLE = "available";
@SerializedName(SERIALIZED_NAME_AVAILABLE)
@@ -239,10 +239,10 @@ public CraVoaReportAccountBalances nsfOverdraftTransactionsCount(Double nsfOverd
}
/**
- * The number of NSF and overdraft fee transactions in the time range for the report in the given account.
+ * The number of net NSF fee transactions in the time range for the report in the given account (not counting any fees that were reversed within the time range).
* @return nsfOverdraftTransactionsCount
**/
- @ApiModelProperty(required = true, value = "The number of NSF and overdraft fee transactions in the time range for the report in the given account.")
+ @ApiModelProperty(required = true, value = "The number of net NSF fee transactions in the time range for the report in the given account (not counting any fees that were reversed within the time range).")
public Double getNsfOverdraftTransactionsCount() {
return nsfOverdraftTransactionsCount;
diff --git a/src/main/java/com/plaid/client/model/CraVoaReportAccountHistoricalBalance.java b/src/main/java/com/plaid/client/model/CraVoaReportAccountHistoricalBalance.java
index 62cb5745b..83940b623 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 26c3268fa..e0d3fc11f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9bff36375..887e38484 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 dde78fc36..6d7b71500 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4babbadb3..404692bd0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f46ad4a5e..aaf99d2e2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 01678a82f..4da5f0f05 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 75c2f8464..cf4198074 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 05a68a9a7..151970ee7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 951ce1f79..ecf590747 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 65eeaf81f..d1ccb0d08 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3e50cd12e..93c0f74db 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b0cb11123..21dc5e44d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 54010a4bb..765bae98e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8b623ff0a..e0889abc7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 632ad0f1d..0d23b7c0a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8dcb3cca2..f54f967b1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5a2371540..cc301befe 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 80bdf6703..fa5af471d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a4972dbe2..12b715fef 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f5712cd30..c6321e3e3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bb9cd1456..ba9795dd9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4cd9f74ee..167f2b983 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cc6ec431f..3917824c0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0b7673903..41195a6c9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 dcfceb2dd..5bb36d472 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 983235efe..44affce2e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f3a2c97a4..664be7d8c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 404027e15..b55602087 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 ac819e138..3c176e221 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 926edf795..4e7c18829 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 6b11225f1..05245d642 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8e7350a90..a34339f8e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ac2f43e9b..b9aa71278 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 59bfffcab..fa26e70d2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c3d99779f..7566ed4d1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7dbf88806..718bd8d97 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 65be817f8..35e439bec 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 2f7fc3ec0..9c5a1a3bf 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ce50f0410..2cc935908 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 680cfbaa5..0931b93ca 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3d10f0da2..615da7a87 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a26754577..5a15375dc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 330a0e3e0..a6c810c17 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7af9a4a25..105e2b1f4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 60f732a94..8a79cb175 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 adf13c85c..34a64899f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 887bd1da1..ccaed0bf8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2890fef57..e9b410bb8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5c5f85e63..83dbba5ea 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 33d0d93c5..d2528e7c4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d320577c3..47fe4183b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 388532534..db6a5d4a9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c159324f3..6d95db3db 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8172fd358..d7a8e4cca 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1a101a923..425ca570d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8369f2fef..35e01ffc8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5f63e44b0..e4010ca67 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f60a95d53..890db5724 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6b133a2b5..a27710b28 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1b1437b8d..65e20b965 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8e98bfc3b..8434ae31e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 36ab55d63..ef13c8efa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1bc18a1c9..82c90b2e1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7b5b0b00f..31e2210ef 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6d6e197fa..85ba125c5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 49f4cd2ab..ed79e2836 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f59773fb6..00d3fc469 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ab7833af9..4a120ef8b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f329c1cb0..a573d9c4e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f3f8326f9..cdc71d08d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f084e8baf..861450e9e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a368e718d..7a52430b1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fe66144d2..4a20e1741 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b2e08785b..8cdb771f8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 35bbf5ae1..dac6c1a4a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cfa502295..cbd933eef 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 46846e872..a849ce4d6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 12b9d29d3..41c45c4c0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a547c7528..425112c34 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ed2d21587..442fbbd80 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4f4f94e3c..aa66b6f30 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c3226b570..ab76a6796 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 90571bd05..dcdee868f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a1a117d3a..fdeb35665 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1748f0b0f..bde182d6b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b23d0baba..bad56284b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b9e1b4c0e..c13c4c13f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cdfd63f98..f37a62eb4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d1c75ed76..12d76d2b5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9c1d33874..e896a1795 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3cc7313a0..5dcac78d4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c96ff9c67..88316cba1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 109133af5..1e4c837bb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0a651e777..ed3f47b2e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 0da593677..974a6f47a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c8a2fd731..c854aec81 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 319526862..7ec149b28 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 edcf25135..a99eb566f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e019d1ebf..9ace0bc41 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 021bb17ed..40fa23420 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9c76dba3d..4840d0050 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 11a6e20c1..7798c60c4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 03a2837f2..708cc6a1f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 baa62b6c5..05ad3d546 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4eaf7d434..2f391ce1f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 86d28fa88..d2460f1a1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 898cd6243..2b7621f74 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 61f965051..ba59f36ff 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 547527774..848828c9a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8fd6439d5..8568ba74e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 97f467b22..b4dfb0c48 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f3e103ba3..833bae928 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d9bb3b3c1..e2a1a6ffc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9c7a54689..483c55658 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 90a027284..65576be5e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a75498f8b..15ff04bcd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 851162902..26355541a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 43c3e37fc..5cd502228 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 29c5b69c6..441cbbeac 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b42b75a66..003a79953 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 2b28d6b1f..5d1647f4e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 38c36ac4e..6153e8ec2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f2427a08e..feee261a5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2a2086725..2726049d3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f639b8998..e5b755e14 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ffb280e28..02c929de5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 091e71a0c..96ffbf6eb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e4084a068..ed51a35fd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e9eba9e4e..449b2b4a8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5df76853a..51c7f883d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cf8c991dc..b4cb2d635 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 42070cfe5..901b86285 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ce923d9a3..97649bd37 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 19492e641..374bed5fa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 65cd563ab..b7a2416d1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b1fd17309..dc99a8154 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 08e6d81d4..2e945522c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 ab9763ae9..cbae6ffbd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e879fa0d0..f489f350a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 36b71cbff..ef640493a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cfcb78949..cc3f389a1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6f492c539..faabd3795 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2c4ee4953..dc130f6d8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 e38dddcef..65df50b54 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6f3ef39d5..936800526 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3af5aefab..004be03a7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4726c0da8..2ca133214 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 004fadd95..82fcb7d6e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d9b7e9baa..75cbbfcfc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 bcc879d08..51eae0d68 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3868be92a..aa7e8655e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 4d15d014b..a29ac176a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 7538d4dcf..e96ece5dc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 001dc2b24..4075dc630 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 049ecb074..8d0776f42 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 aa0bbb93e..6f93a1ca6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 dd98a457e..8d38b4f6f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ffd60155e..b313464f2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 153bbd4d5..a019c83a9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 d43614fc6..8d3c34f06 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1e7c6ffa4..75ec9eb50 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/EWAScore.java b/src/main/java/com/plaid/client/model/EWAScore.java
new file mode 100644
index 000000000..dc7ae5b05
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/EWAScore.java
@@ -0,0 +1,157 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+
+package com.plaid.client.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import com.google.gson.TypeAdapter;
+import com.google.gson.annotations.JsonAdapter;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.stream.JsonReader;
+import com.google.gson.stream.JsonWriter;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+
+/**
+ * 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 = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
+public class EWAScore {
+ public static final String SERIALIZED_NAME_LOWEST_AMOUNT = "lowest_amount";
+ @SerializedName(SERIALIZED_NAME_LOWEST_AMOUNT)
+ private Float lowestAmount;
+
+ public static final String SERIALIZED_NAME_HIGHEST_AMOUNT = "highest_amount";
+ @SerializedName(SERIALIZED_NAME_HIGHEST_AMOUNT)
+ private Float highestAmount;
+
+ public static final String SERIALIZED_NAME_SCORE = "score";
+ @SerializedName(SERIALIZED_NAME_SCORE)
+ private Integer score;
+
+
+ public EWAScore lowestAmount(Float lowestAmount) {
+
+ this.lowestAmount = lowestAmount;
+ return this;
+ }
+
+ /**
+ * Float value representing the lower bound (inclusive) of the advance amount range associated with a specific EWA score.
+ * @return lowestAmount
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "Float value representing the lower bound (inclusive) of the advance amount range associated with a specific EWA score.")
+
+ public Float getLowestAmount() {
+ return lowestAmount;
+ }
+
+
+ public void setLowestAmount(Float lowestAmount) {
+ this.lowestAmount = lowestAmount;
+ }
+
+
+ public EWAScore highestAmount(Float highestAmount) {
+
+ this.highestAmount = highestAmount;
+ return this;
+ }
+
+ /**
+ * Float value representing the upper bound (exclusive) of the advance amount range associated with a specific EWA score.
+ * @return highestAmount
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "Float value representing the upper bound (exclusive) of the advance amount range associated with a specific EWA score.")
+
+ public Float getHighestAmount() {
+ return highestAmount;
+ }
+
+
+ public void setHighestAmount(Float highestAmount) {
+ this.highestAmount = highestAmount;
+ }
+
+
+ public EWAScore score(Integer score) {
+
+ this.score = score;
+ return this;
+ }
+
+ /**
+ * EWA score for the corresponding amount bucket. Scores range from 1-99, where a higher score indicates a higher likelihood of repayment.
+ * @return score
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "EWA score for the corresponding amount bucket. Scores range from 1-99, where a higher score indicates a higher likelihood of repayment.")
+
+ public Integer getScore() {
+ return score;
+ }
+
+
+ public void setScore(Integer score) {
+ this.score = score;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ EWAScore ewAScore = (EWAScore) o;
+ return Objects.equals(this.lowestAmount, ewAScore.lowestAmount) &&
+ Objects.equals(this.highestAmount, ewAScore.highestAmount) &&
+ Objects.equals(this.score, ewAScore.score);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(lowestAmount, highestAmount, score);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class EWAScore {\n");
+ sb.append(" lowestAmount: ").append(toIndentedString(lowestAmount)).append("\n");
+ sb.append(" highestAmount: ").append(toIndentedString(highestAmount)).append("\n");
+ sb.append(" score: ").append(toIndentedString(score)).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/Earnings.java b/src/main/java/com/plaid/client/model/Earnings.java
index f46dce757..e2e0a1651 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 14756356a..66d5ee145 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d55cd6dae..e18141f2a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 a4c431708..cc38ea400 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c60516bda..d77dd2294 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bf974624b..ae9284987 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5a535d2d7..fc8fe9a5a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6a15d2275..236f882ef 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ae4cc979f..f3e7947a6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9bd959a46..0fc68a9ee 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 626b81ba3..b1710bc81 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a6f5f5411..d8a89515a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1bfe8c9e2..b7b996ea5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d79637553..823fc0bb9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 359460182..59b948438 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 a0abe55e7..21cc0baec 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 263a17135..b05fd8a16 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 923354810..a97c321a1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 665df5c7d..0d78b5f7f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 3cc9f79d0..fb0bc0311 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f03319735..c2d2324be 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 4c2ed9db8..b023c48bc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 832e69f6d..a68888227 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0499cab9e..1504b7237 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 65db3fabc..9ce515946 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6b301a9ec..50e191348 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e8e50a69d..5f01dd086 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2f7daec33..99a56b747 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 464404505..394647abb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7c1658808..4a3337b85 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0794f25c5..59ebb5cf2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e735a6f32..7dd59c943 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5108e82d0..2a8c5c92b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8a1cb23c4..683c050fb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1b4e0cb83..b42a66552 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 78ace5c0d..28478d42b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 576c41bd5..900798cb5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 3dba60f74..65aee8014 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6eb8efc65..59477cedf 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 eed06d9ed..e85253be5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e10bafbd9..e723c01dc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 93ad07d22..f6aecf4c1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3cd5b44f6..b803cc3aa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/ExpenditureInsights.java b/src/main/java/com/plaid/client/model/ExpenditureInsights.java
index b35a7e478..761cdf8c0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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.AmountWithCurrencyWithMonthlyAverage;
import com.plaid.client.model.ExpenditureSummary;
import com.plaid.client.model.OutlierTransactionsInsights;
import io.swagger.annotations.ApiModel;
@@ -30,8 +31,12 @@
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class ExpenditureInsights {
+ public static final String SERIALIZED_NAME_CASH_FLOW = "cash_flow";
+ @SerializedName(SERIALIZED_NAME_CASH_FLOW)
+ private AmountWithCurrencyWithMonthlyAverage cashFlow;
+
public static final String SERIALIZED_NAME_TOTAL_EXPENDITURE = "total_expenditure";
@SerializedName(SERIALIZED_NAME_TOTAL_EXPENDITURE)
private ExpenditureSummary totalExpenditure;
@@ -57,6 +62,29 @@ public class ExpenditureInsights {
private OutlierTransactionsInsights outlierTransactions;
+ public ExpenditureInsights cashFlow(AmountWithCurrencyWithMonthlyAverage cashFlow) {
+
+ this.cashFlow = cashFlow;
+ return this;
+ }
+
+ /**
+ * Get cashFlow
+ * @return cashFlow
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public AmountWithCurrencyWithMonthlyAverage getCashFlow() {
+ return cashFlow;
+ }
+
+
+ public void setCashFlow(AmountWithCurrencyWithMonthlyAverage cashFlow) {
+ this.cashFlow = cashFlow;
+ }
+
+
public ExpenditureInsights totalExpenditure(ExpenditureSummary totalExpenditure) {
this.totalExpenditure = totalExpenditure;
@@ -204,7 +232,8 @@ public boolean equals(Object o) {
return false;
}
ExpenditureInsights expenditureInsights = (ExpenditureInsights) o;
- return Objects.equals(this.totalExpenditure, expenditureInsights.totalExpenditure) &&
+ return Objects.equals(this.cashFlow, expenditureInsights.cashFlow) &&
+ Objects.equals(this.totalExpenditure, expenditureInsights.totalExpenditure) &&
Objects.equals(this.essentialExpenditure, expenditureInsights.essentialExpenditure) &&
Objects.equals(this.nonEssentialExpenditure, expenditureInsights.nonEssentialExpenditure) &&
Objects.equals(this.other, expenditureInsights.other) &&
@@ -214,13 +243,14 @@ public boolean equals(Object o) {
@Override
public int hashCode() {
- return Objects.hash(totalExpenditure, essentialExpenditure, nonEssentialExpenditure, other, transfersOut, outlierTransactions);
+ return Objects.hash(cashFlow, totalExpenditure, essentialExpenditure, nonEssentialExpenditure, other, transfersOut, outlierTransactions);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ExpenditureInsights {\n");
+ sb.append(" cashFlow: ").append(toIndentedString(cashFlow)).append("\n");
sb.append(" totalExpenditure: ").append(toIndentedString(totalExpenditure)).append("\n");
sb.append(" essentialExpenditure: ").append(toIndentedString(essentialExpenditure)).append("\n");
sb.append(" nonEssentialExpenditure: ").append(toIndentedString(nonEssentialExpenditure)).append("\n");
diff --git a/src/main/java/com/plaid/client/model/ExpenditureSummary.java b/src/main/java/com/plaid/client/model/ExpenditureSummary.java
index ed65ebcb2..5db488731 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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.AmountWithCurrency;
import com.plaid.client.model.CategoryExpenses;
import com.plaid.client.model.MonthlyAverage;
import io.swagger.annotations.ApiModel;
@@ -33,11 +32,19 @@
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class ExpenditureSummary {
public static final String SERIALIZED_NAME_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
- private AmountWithCurrency amount;
+ private Double amount;
+
+ public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code";
+ @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE)
+ private String isoCurrencyCode;
+
+ public static final String SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE = "unofficial_currency_code";
+ @SerializedName(SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE)
+ private String unofficialCurrencyCode;
public static final String SERIALIZED_NAME_MONTHLY_AVERAGE = "monthly_average";
@SerializedName(SERIALIZED_NAME_MONTHLY_AVERAGE)
@@ -56,29 +63,75 @@ public class ExpenditureSummary {
private List topCategories = null;
- public ExpenditureSummary amount(AmountWithCurrency amount) {
+ public ExpenditureSummary amount(Double amount) {
this.amount = amount;
return this;
}
/**
- * Get amount
+ * The total value of all the aggregated transactions in this expenditure category.
* @return amount
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "")
+ @ApiModelProperty(value = "The total value of all the aggregated transactions in this expenditure category.")
- public AmountWithCurrency getAmount() {
+ public Double getAmount() {
return amount;
}
- public void setAmount(AmountWithCurrency amount) {
+ public void setAmount(Double amount) {
this.amount = amount;
}
+ public ExpenditureSummary isoCurrencyCode(String isoCurrencyCode) {
+
+ this.isoCurrencyCode = isoCurrencyCode;
+ return this;
+ }
+
+ /**
+ * The ISO-4217 currency code of the amount. Always `null` if `unofficial_currency_code` is non-`null`.
+ * @return isoCurrencyCode
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "The ISO-4217 currency code of the amount. Always `null` if `unofficial_currency_code` is non-`null`.")
+
+ public String getIsoCurrencyCode() {
+ return isoCurrencyCode;
+ }
+
+
+ public void setIsoCurrencyCode(String isoCurrencyCode) {
+ this.isoCurrencyCode = isoCurrencyCode;
+ }
+
+
+ public ExpenditureSummary unofficialCurrencyCode(String unofficialCurrencyCode) {
+
+ this.unofficialCurrencyCode = unofficialCurrencyCode;
+ return this;
+ }
+
+ /**
+ * The unofficial currency code associated with the amount. Always `null` if `iso_currency_code` is non-`null`. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `unofficial_currency_code`s.
+ * @return unofficialCurrencyCode
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "The unofficial currency code associated with the amount. Always `null` if `iso_currency_code` is non-`null`. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `unofficial_currency_code`s.")
+
+ public String getUnofficialCurrencyCode() {
+ return unofficialCurrencyCode;
+ }
+
+
+ public void setUnofficialCurrencyCode(String unofficialCurrencyCode) {
+ this.unofficialCurrencyCode = unofficialCurrencyCode;
+ }
+
+
public ExpenditureSummary monthlyAverage(MonthlyAverage monthlyAverage) {
this.monthlyAverage = monthlyAverage;
@@ -132,11 +185,11 @@ public ExpenditureSummary percentageOfIncome(Double percentageOfIncome) {
}
/**
- * The percentage of the total inflows that was spent in this expenses group, within the given time window across all the accounts in the report. Valid values start and 0, with a value of 100 representing '100% of the inflows were spent on transactions that fall into this expenditure group'. If there's no available income for the giving time period, this field value will be `-1`
+ * The percentage of the total inflows that was spent in this expenses group, within the given time window across all the accounts in the report. For example, a value of 100 represents that 100% of the inflows were spent on transactions that fall into this expenditure group. If there's no available income for the giving time period, this field value will be `-1`.
* @return percentageOfIncome
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "The percentage of the total inflows that was spent in this expenses group, within the given time window across all the accounts in the report. Valid values start and 0, with a value of 100 representing '100% of the inflows were spent on transactions that fall into this expenditure group'. If there's no available income for the giving time period, this field value will be `-1`")
+ @ApiModelProperty(value = "The percentage of the total inflows that was spent in this expenses group, within the given time window across all the accounts in the report. For example, a value of 100 represents that 100% of the inflows were spent on transactions that fall into this expenditure group. If there's no available income for the giving time period, this field value will be `-1`.")
public Double getPercentageOfIncome() {
return percentageOfIncome;
@@ -189,6 +242,8 @@ public boolean equals(Object o) {
}
ExpenditureSummary expenditureSummary = (ExpenditureSummary) o;
return Objects.equals(this.amount, expenditureSummary.amount) &&
+ Objects.equals(this.isoCurrencyCode, expenditureSummary.isoCurrencyCode) &&
+ Objects.equals(this.unofficialCurrencyCode, expenditureSummary.unofficialCurrencyCode) &&
Objects.equals(this.monthlyAverage, expenditureSummary.monthlyAverage) &&
Objects.equals(this.transactionsCount, expenditureSummary.transactionsCount) &&
Objects.equals(this.percentageOfIncome, expenditureSummary.percentageOfIncome) &&
@@ -197,7 +252,7 @@ public boolean equals(Object o) {
@Override
public int hashCode() {
- return Objects.hash(amount, monthlyAverage, transactionsCount, percentageOfIncome, topCategories);
+ return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode, monthlyAverage, transactionsCount, percentageOfIncome, topCategories);
}
@Override
@@ -205,6 +260,8 @@ public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ExpenditureSummary {\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
+ sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n");
+ sb.append(" unofficialCurrencyCode: ").append(toIndentedString(unofficialCurrencyCode)).append("\n");
sb.append(" monthlyAverage: ").append(toIndentedString(monthlyAverage)).append("\n");
sb.append(" transactionsCount: ").append(toIndentedString(transactionsCount)).append("\n");
sb.append(" percentageOfIncome: ").append(toIndentedString(percentageOfIncome)).append("\n");
diff --git a/src/main/java/com/plaid/client/model/ExpirationDate.java b/src/main/java/com/plaid/client/model/ExpirationDate.java
index a8b243cc1..8a5f36ed7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 672ef1688..c42ee9ff8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d8c1bf174..9d9eaa549 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 29995027f..7c1c962d1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e3707c83c..2cb57f870 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8e091260c..351d0cff2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 514c4e7e4..adc62c179 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 22fe3f028..482cdb877 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c249bc398..0a35aff30 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9a9f51e27..db53fa143 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 015519b42..7572876df 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 992f0bb08..6e3445c7d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6e960d10c..43b96099b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 42f6e9852..1a29a814a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/FDXNotification.java b/src/main/java/com/plaid/client/model/FDXNotification.java
index b0271e2ad..d7cc7bc7c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f116b46c5..add772d76 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 0d2347765..859509e18 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c98fd2bf5..6726b9a37 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 169d83fc7..665a09689 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 86cff1954..39f9e37d7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 8b4bb825e..962669165 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 226d7ecce..9bfa7fbee 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1ae4a7a28..0de073ed2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 0a285385c..a0d8762d2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 aabd1d234..752ca53fc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/FallbackAuthMicrodepositAutoVerifiedWebhook.java b/src/main/java/com/plaid/client/model/FallbackAuthMicrodepositAutoVerifiedWebhook.java
index 9fb61709d..82affd74d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 528a0ed28..0e2d31356 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 666ed3c79..672da8186 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ffda41f4c..5f73c3987 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 da7eeb4e1..9b9907a8a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b9ad4ec7c..08604eb90 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 3aff327b5..f7b829999 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5381c4160..41f516137 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ab5f6531f..6d813f64a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c0682795f..ace3184ef 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 6b7c29887..f023d0ae0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 92045d751..dc84dd05b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 c3e035b4b..5125841fe 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class GamblingIndicators {
public static final String SERIALIZED_NAME_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
@@ -278,11 +278,11 @@ public GamblingIndicators percentageOfIncome(Double percentageOfIncome) {
}
/**
- * The percentage of the user's monthly inflows that was spent on transactions that fall into the `GAMBLING` category within the given time window, across all the accounts in the report. Valid values start and 0, with a value of 100 representing '100% of the inflows were spent on transactions that fall into the `GAMBLING` credit category'. If there's no available income for the giving time period, this field value will be `-1`
+ * The percentage of the user's monthly inflows that was spent on transactions that fall into the `GAMBLING` category within the given time window, across all the accounts in the report. For example, a value of 100 indicates that 100% of the inflows were spent on transactions that fall into the `GAMBLING` credit category. If there's no available income for the giving time period, this field value will be `-1`
* @return percentageOfIncome
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "The percentage of the user's monthly inflows that was spent on transactions that fall into the `GAMBLING` category within the given time window, across all the accounts in the report. Valid values start and 0, with a value of 100 representing '100% of the inflows were spent on transactions that fall into the `GAMBLING` credit category'. If there's no available income for the giving time period, this field value will be `-1`")
+ @ApiModelProperty(value = "The percentage of the user's monthly inflows that was spent on transactions that fall into the `GAMBLING` category within the given time window, across all the accounts in the report. For example, a value of 100 indicates that 100% of the inflows were spent on transactions that fall into the `GAMBLING` credit category. If there's no available income for the giving time period, this field value will be `-1`")
public Double getPercentageOfIncome() {
return percentageOfIncome;
diff --git a/src/main/java/com/plaid/client/model/GenericScreeningHitLocationItems.java b/src/main/java/com/plaid/client/model/GenericScreeningHitLocationItems.java
index 96c95cea8..a60395aa4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7bf98b893..0f128dc08 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8c5153714..580d4cb2f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a4460554b..dd46c1b09 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 209c17491..67d646875 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 3ee1a8022..559b8bf37 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a82638159..dc91393db 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5496f51f1..c43df7d57 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2d1996862..27a617c87 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 56b94fa1d..1bd3e5eb2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9c54b5e36..093b226ee 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 98a7e9c18..f6c8a4fac 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 c77cf95dd..b345ee331 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4121a24c3..206a4b607 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ed4eae739..3ffae14ed 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 5ebf7440a..2b04c3bc3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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
new file mode 100644
index 000000000..f00cd0d27
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/IDVProtectEvent.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.672.0
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+
+package com.plaid.client.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import com.google.gson.TypeAdapter;
+import com.google.gson.annotations.JsonAdapter;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.stream.JsonReader;
+import com.google.gson.stream.JsonWriter;
+import com.plaid.client.model.TrustIndex;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+import java.time.OffsetDateTime;
+
+/**
+ * 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 = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
+public class IDVProtectEvent {
+ public static final String SERIALIZED_NAME_EVENT_ID = "event_id";
+ @SerializedName(SERIALIZED_NAME_EVENT_ID)
+ private String eventId;
+
+ public static final String SERIALIZED_NAME_TIMESTAMP = "timestamp";
+ @SerializedName(SERIALIZED_NAME_TIMESTAMP)
+ private OffsetDateTime timestamp;
+
+ public static final String SERIALIZED_NAME_TRUST_INDEX = "trust_index";
+ @SerializedName(SERIALIZED_NAME_TRUST_INDEX)
+ private TrustIndex trustIndex;
+
+ public static final String SERIALIZED_NAME_FRAUD_ATTRIBUTES = "fraud_attributes";
+ @SerializedName(SERIALIZED_NAME_FRAUD_ATTRIBUTES)
+ private Object fraudAttributes;
+
+
+ public IDVProtectEvent eventId(String eventId) {
+
+ this.eventId = eventId;
+ return this;
+ }
+
+ /**
+ * The event ID.
+ * @return eventId
+ **/
+ @ApiModelProperty(required = true, value = "The event ID.")
+
+ public String getEventId() {
+ return eventId;
+ }
+
+
+ public void setEventId(String eventId) {
+ this.eventId = eventId;
+ }
+
+
+ public IDVProtectEvent timestamp(OffsetDateTime timestamp) {
+
+ this.timestamp = timestamp;
+ return this;
+ }
+
+ /**
+ * The timestamp of the event, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format, e.g. `\"2017-09-14T14:42:19.350Z\"`
+ * @return timestamp
+ **/
+ @ApiModelProperty(required = true, value = "The timestamp of the event, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format, e.g. `\"2017-09-14T14:42:19.350Z\"`")
+
+ public OffsetDateTime getTimestamp() {
+ return timestamp;
+ }
+
+
+ public void setTimestamp(OffsetDateTime timestamp) {
+ this.timestamp = timestamp;
+ }
+
+
+ public IDVProtectEvent trustIndex(TrustIndex trustIndex) {
+
+ this.trustIndex = trustIndex;
+ return this;
+ }
+
+ /**
+ * Get trustIndex
+ * @return trustIndex
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(required = true, value = "")
+
+ public TrustIndex getTrustIndex() {
+ return trustIndex;
+ }
+
+
+ public void setTrustIndex(TrustIndex trustIndex) {
+ this.trustIndex = trustIndex;
+ }
+
+
+ public IDVProtectEvent fraudAttributes(Object fraudAttributes) {
+
+ this.fraudAttributes = fraudAttributes;
+ return this;
+ }
+
+ /**
+ * Event fraud attributes as an arbitrary set of key-value pairs.
+ * @return fraudAttributes
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(required = true, value = "Event fraud attributes as an arbitrary set of key-value pairs.")
+
+ public Object getFraudAttributes() {
+ return fraudAttributes;
+ }
+
+
+ public void setFraudAttributes(Object fraudAttributes) {
+ this.fraudAttributes = fraudAttributes;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ IDVProtectEvent idVProtectEvent = (IDVProtectEvent) o;
+ return Objects.equals(this.eventId, idVProtectEvent.eventId) &&
+ Objects.equals(this.timestamp, idVProtectEvent.timestamp) &&
+ Objects.equals(this.trustIndex, idVProtectEvent.trustIndex) &&
+ Objects.equals(this.fraudAttributes, idVProtectEvent.fraudAttributes);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(eventId, timestamp, trustIndex, fraudAttributes);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class IDVProtectEvent {\n");
+ sb.append(" eventId: ").append(toIndentedString(eventId)).append("\n");
+ sb.append(" timestamp: ").append(toIndentedString(timestamp)).append("\n");
+ sb.append(" trustIndex: ").append(toIndentedString(trustIndex)).append("\n");
+ sb.append(" fraudAttributes: ").append(toIndentedString(fraudAttributes)).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/ISOCurrencyCode.java b/src/main/java/com/plaid/client/model/ISOCurrencyCode.java
index 9fc43ac3c..5c4a0a552 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/IdentityCreationResult.java b/src/main/java/com/plaid/client/model/IdentityCreationResult.java
index eeffd9f46..8b99cf273 100644
--- a/src/main/java/com/plaid/client/model/IdentityCreationResult.java
+++ b/src/main/java/com/plaid/client/model/IdentityCreationResult.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
* The result of creating an identity, indicating success or failure with optional error details.
*/
@ApiModel(description = "The result of creating an identity, indicating success or failure with optional error details.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class IdentityCreationResult {
public static final String SERIALIZED_NAME_RESULT = "result";
@SerializedName(SERIALIZED_NAME_RESULT)
diff --git a/src/main/java/com/plaid/client/model/IdentityCreationResultType.java b/src/main/java/com/plaid/client/model/IdentityCreationResultType.java
index 259ceb4eb..470970ab2 100644
--- a/src/main/java/com/plaid/client/model/IdentityCreationResultType.java
+++ b/src/main/java/com/plaid/client/model/IdentityCreationResultType.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 a2207e5c4..ad305c40b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 38ca6f4a2..1e143713a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8f455619c..6aedb6eb1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9b5b17722..745d13fc3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 75bf8266a..9ee47aaae 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f97fcf79a..bc0aec4a3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ce669d0c4..b024d3024 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7cd3e9cab..c4d231ec9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a1e699004..7b1fa08a6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 22a2592c9..34fc74cb7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5a05b39f3..4466dec96 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1a53edc9a..4057b04aa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 aad2df015..a2acd8917 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 64f4c4d55..8457a558f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 87d20912b..386c4fbaa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cefc76eb2..7573bf05a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 159f716df..1b148fb8c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a19a10b71..28b378f8b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f3d17e97a..ab41c3328 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9c27cb06b..1e5bf0654 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 8358285c0..bab88a347 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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.DocumentaryVerification;
+import com.plaid.client.model.IDVProtectEvent;
import com.plaid.client.model.IdentityVerificationStatus;
import com.plaid.client.model.IdentityVerificationStepSummary;
import com.plaid.client.model.IdentityVerificationTemplateReference;
@@ -38,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class IdentityVerification {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
@@ -116,6 +117,10 @@ public class IdentityVerification {
@SerializedName(SERIALIZED_NAME_REDACTED_AT)
private OffsetDateTime redactedAt;
+ public static final String SERIALIZED_NAME_LATEST_SCORED_PROTECT_EVENT = "latest_scored_protect_event";
+ @SerializedName(SERIALIZED_NAME_LATEST_SCORED_PROTECT_EVENT)
+ private IDVProtectEvent latestScoredProtectEvent;
+
public IdentityVerification id(String id) {
@@ -547,6 +552,29 @@ public void setRedactedAt(OffsetDateTime redactedAt) {
}
+ public IdentityVerification latestScoredProtectEvent(IDVProtectEvent latestScoredProtectEvent) {
+
+ this.latestScoredProtectEvent = latestScoredProtectEvent;
+ return this;
+ }
+
+ /**
+ * Get latestScoredProtectEvent
+ * @return latestScoredProtectEvent
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public IDVProtectEvent getLatestScoredProtectEvent() {
+ return latestScoredProtectEvent;
+ }
+
+
+ public void setLatestScoredProtectEvent(IDVProtectEvent latestScoredProtectEvent) {
+ this.latestScoredProtectEvent = latestScoredProtectEvent;
+ }
+
+
@Override
public boolean equals(Object o) {
if (this == o) {
@@ -574,12 +602,13 @@ public boolean equals(Object o) {
Objects.equals(this.watchlistScreeningId, identityVerification.watchlistScreeningId) &&
Objects.equals(this.beaconUserId, identityVerification.beaconUserId) &&
Objects.equals(this.userId, identityVerification.userId) &&
- Objects.equals(this.redactedAt, identityVerification.redactedAt);
+ Objects.equals(this.redactedAt, identityVerification.redactedAt) &&
+ Objects.equals(this.latestScoredProtectEvent, identityVerification.latestScoredProtectEvent);
}
@Override
public int hashCode() {
- return Objects.hash(id, clientUserId, createdAt, completedAt, previousAttemptId, shareableUrl, template, user, status, steps, documentaryVerification, selfieCheck, kycCheck, riskCheck, verifySms, watchlistScreeningId, beaconUserId, userId, redactedAt);
+ return Objects.hash(id, clientUserId, createdAt, completedAt, previousAttemptId, shareableUrl, template, user, status, steps, documentaryVerification, selfieCheck, kycCheck, riskCheck, verifySms, watchlistScreeningId, beaconUserId, userId, redactedAt, latestScoredProtectEvent);
}
@Override
@@ -605,6 +634,7 @@ public String toString() {
sb.append(" beaconUserId: ").append(toIndentedString(beaconUserId)).append("\n");
sb.append(" userId: ").append(toIndentedString(userId)).append("\n");
sb.append(" redactedAt: ").append(toIndentedString(redactedAt)).append("\n");
+ sb.append(" latestScoredProtectEvent: ").append(toIndentedString(latestScoredProtectEvent)).append("\n");
sb.append("}");
return sb.toString();
}
diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationAutofillAddress.java b/src/main/java/com/plaid/client/model/IdentityVerificationAutofillAddress.java
index d383f5368..583a80825 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ca1ba44fa..a1ea2cb92 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 66e2d201f..53178690c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 958662537..a1440d7d1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 50cfe423f..24cf9c6f2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 61c076f9f..8860377a1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 76d8fb0ee..1ebd7087f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 669f19ff1..1f55e9a72 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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.DocumentaryVerification;
+import com.plaid.client.model.IDVProtectEvent;
import com.plaid.client.model.IdentityVerificationStatus;
import com.plaid.client.model.IdentityVerificationStepSummary;
import com.plaid.client.model.IdentityVerificationTemplateReference;
@@ -38,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class IdentityVerificationCreateResponse {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
@@ -116,6 +117,10 @@ public class IdentityVerificationCreateResponse {
@SerializedName(SERIALIZED_NAME_REDACTED_AT)
private OffsetDateTime redactedAt;
+ public static final String SERIALIZED_NAME_LATEST_SCORED_PROTECT_EVENT = "latest_scored_protect_event";
+ @SerializedName(SERIALIZED_NAME_LATEST_SCORED_PROTECT_EVENT)
+ private IDVProtectEvent latestScoredProtectEvent;
+
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
@@ -551,6 +556,29 @@ public void setRedactedAt(OffsetDateTime redactedAt) {
}
+ public IdentityVerificationCreateResponse latestScoredProtectEvent(IDVProtectEvent latestScoredProtectEvent) {
+
+ this.latestScoredProtectEvent = latestScoredProtectEvent;
+ return this;
+ }
+
+ /**
+ * Get latestScoredProtectEvent
+ * @return latestScoredProtectEvent
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public IDVProtectEvent getLatestScoredProtectEvent() {
+ return latestScoredProtectEvent;
+ }
+
+
+ public void setLatestScoredProtectEvent(IDVProtectEvent latestScoredProtectEvent) {
+ this.latestScoredProtectEvent = latestScoredProtectEvent;
+ }
+
+
public IdentityVerificationCreateResponse requestId(String requestId) {
this.requestId = requestId;
@@ -601,12 +629,13 @@ public boolean equals(Object o) {
Objects.equals(this.beaconUserId, identityVerificationCreateResponse.beaconUserId) &&
Objects.equals(this.userId, identityVerificationCreateResponse.userId) &&
Objects.equals(this.redactedAt, identityVerificationCreateResponse.redactedAt) &&
+ Objects.equals(this.latestScoredProtectEvent, identityVerificationCreateResponse.latestScoredProtectEvent) &&
Objects.equals(this.requestId, identityVerificationCreateResponse.requestId);
}
@Override
public int hashCode() {
- return Objects.hash(id, clientUserId, createdAt, completedAt, previousAttemptId, shareableUrl, template, user, status, steps, documentaryVerification, selfieCheck, kycCheck, riskCheck, verifySms, watchlistScreeningId, beaconUserId, userId, redactedAt, requestId);
+ return Objects.hash(id, clientUserId, createdAt, completedAt, previousAttemptId, shareableUrl, template, user, status, steps, documentaryVerification, selfieCheck, kycCheck, riskCheck, verifySms, watchlistScreeningId, beaconUserId, userId, redactedAt, latestScoredProtectEvent, requestId);
}
@Override
@@ -632,6 +661,7 @@ public String toString() {
sb.append(" beaconUserId: ").append(toIndentedString(beaconUserId)).append("\n");
sb.append(" userId: ").append(toIndentedString(userId)).append("\n");
sb.append(" redactedAt: ").append(toIndentedString(redactedAt)).append("\n");
+ sb.append(" latestScoredProtectEvent: ").append(toIndentedString(latestScoredProtectEvent)).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/IdentityVerificationDocumentAddressResponse.java b/src/main/java/com/plaid/client/model/IdentityVerificationDocumentAddressResponse.java
index 4abe11a39..d154adbbb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bca3e4f46..620214362 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9fc1b8608..3750131e9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bcde37ebb..d25596ab0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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.DocumentaryVerification;
+import com.plaid.client.model.IDVProtectEvent;
import com.plaid.client.model.IdentityVerificationStatus;
import com.plaid.client.model.IdentityVerificationStepSummary;
import com.plaid.client.model.IdentityVerificationTemplateReference;
@@ -38,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class IdentityVerificationGetResponse {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
@@ -116,6 +117,10 @@ public class IdentityVerificationGetResponse {
@SerializedName(SERIALIZED_NAME_REDACTED_AT)
private OffsetDateTime redactedAt;
+ public static final String SERIALIZED_NAME_LATEST_SCORED_PROTECT_EVENT = "latest_scored_protect_event";
+ @SerializedName(SERIALIZED_NAME_LATEST_SCORED_PROTECT_EVENT)
+ private IDVProtectEvent latestScoredProtectEvent;
+
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
@@ -551,6 +556,29 @@ public void setRedactedAt(OffsetDateTime redactedAt) {
}
+ public IdentityVerificationGetResponse latestScoredProtectEvent(IDVProtectEvent latestScoredProtectEvent) {
+
+ this.latestScoredProtectEvent = latestScoredProtectEvent;
+ return this;
+ }
+
+ /**
+ * Get latestScoredProtectEvent
+ * @return latestScoredProtectEvent
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public IDVProtectEvent getLatestScoredProtectEvent() {
+ return latestScoredProtectEvent;
+ }
+
+
+ public void setLatestScoredProtectEvent(IDVProtectEvent latestScoredProtectEvent) {
+ this.latestScoredProtectEvent = latestScoredProtectEvent;
+ }
+
+
public IdentityVerificationGetResponse requestId(String requestId) {
this.requestId = requestId;
@@ -601,12 +629,13 @@ public boolean equals(Object o) {
Objects.equals(this.beaconUserId, identityVerificationGetResponse.beaconUserId) &&
Objects.equals(this.userId, identityVerificationGetResponse.userId) &&
Objects.equals(this.redactedAt, identityVerificationGetResponse.redactedAt) &&
+ Objects.equals(this.latestScoredProtectEvent, identityVerificationGetResponse.latestScoredProtectEvent) &&
Objects.equals(this.requestId, identityVerificationGetResponse.requestId);
}
@Override
public int hashCode() {
- return Objects.hash(id, clientUserId, createdAt, completedAt, previousAttemptId, shareableUrl, template, user, status, steps, documentaryVerification, selfieCheck, kycCheck, riskCheck, verifySms, watchlistScreeningId, beaconUserId, userId, redactedAt, requestId);
+ return Objects.hash(id, clientUserId, createdAt, completedAt, previousAttemptId, shareableUrl, template, user, status, steps, documentaryVerification, selfieCheck, kycCheck, riskCheck, verifySms, watchlistScreeningId, beaconUserId, userId, redactedAt, latestScoredProtectEvent, requestId);
}
@Override
@@ -632,6 +661,7 @@ public String toString() {
sb.append(" beaconUserId: ").append(toIndentedString(beaconUserId)).append("\n");
sb.append(" userId: ").append(toIndentedString(userId)).append("\n");
sb.append(" redactedAt: ").append(toIndentedString(redactedAt)).append("\n");
+ sb.append(" latestScoredProtectEvent: ").append(toIndentedString(latestScoredProtectEvent)).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/IdentityVerificationListRequest.java b/src/main/java/com/plaid/client/model/IdentityVerificationListRequest.java
index 6dca1ecd5..712a231cb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 115ee5846..360206b6b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 98cdbc112..7db984c83 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e2b5e141a..631269821 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bed36b8e0..28acf614f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4bf606361..65ae28d33 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1fae52e7f..aa15d0709 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a2375f4dc..7a943e116 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4495a5641..c9088a03b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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.DocumentaryVerification;
+import com.plaid.client.model.IDVProtectEvent;
import com.plaid.client.model.IdentityVerificationStatus;
import com.plaid.client.model.IdentityVerificationStepSummary;
import com.plaid.client.model.IdentityVerificationTemplateReference;
@@ -38,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class IdentityVerificationRetryResponse {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
@@ -116,6 +117,10 @@ public class IdentityVerificationRetryResponse {
@SerializedName(SERIALIZED_NAME_REDACTED_AT)
private OffsetDateTime redactedAt;
+ public static final String SERIALIZED_NAME_LATEST_SCORED_PROTECT_EVENT = "latest_scored_protect_event";
+ @SerializedName(SERIALIZED_NAME_LATEST_SCORED_PROTECT_EVENT)
+ private IDVProtectEvent latestScoredProtectEvent;
+
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
@@ -551,6 +556,29 @@ public void setRedactedAt(OffsetDateTime redactedAt) {
}
+ public IdentityVerificationRetryResponse latestScoredProtectEvent(IDVProtectEvent latestScoredProtectEvent) {
+
+ this.latestScoredProtectEvent = latestScoredProtectEvent;
+ return this;
+ }
+
+ /**
+ * Get latestScoredProtectEvent
+ * @return latestScoredProtectEvent
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public IDVProtectEvent getLatestScoredProtectEvent() {
+ return latestScoredProtectEvent;
+ }
+
+
+ public void setLatestScoredProtectEvent(IDVProtectEvent latestScoredProtectEvent) {
+ this.latestScoredProtectEvent = latestScoredProtectEvent;
+ }
+
+
public IdentityVerificationRetryResponse requestId(String requestId) {
this.requestId = requestId;
@@ -601,12 +629,13 @@ public boolean equals(Object o) {
Objects.equals(this.beaconUserId, identityVerificationRetryResponse.beaconUserId) &&
Objects.equals(this.userId, identityVerificationRetryResponse.userId) &&
Objects.equals(this.redactedAt, identityVerificationRetryResponse.redactedAt) &&
+ Objects.equals(this.latestScoredProtectEvent, identityVerificationRetryResponse.latestScoredProtectEvent) &&
Objects.equals(this.requestId, identityVerificationRetryResponse.requestId);
}
@Override
public int hashCode() {
- return Objects.hash(id, clientUserId, createdAt, completedAt, previousAttemptId, shareableUrl, template, user, status, steps, documentaryVerification, selfieCheck, kycCheck, riskCheck, verifySms, watchlistScreeningId, beaconUserId, userId, redactedAt, requestId);
+ return Objects.hash(id, clientUserId, createdAt, completedAt, previousAttemptId, shareableUrl, template, user, status, steps, documentaryVerification, selfieCheck, kycCheck, riskCheck, verifySms, watchlistScreeningId, beaconUserId, userId, redactedAt, latestScoredProtectEvent, requestId);
}
@Override
@@ -632,6 +661,7 @@ public String toString() {
sb.append(" beaconUserId: ").append(toIndentedString(beaconUserId)).append("\n");
sb.append(" userId: ").append(toIndentedString(userId)).append("\n");
sb.append(" redactedAt: ").append(toIndentedString(redactedAt)).append("\n");
+ sb.append(" latestScoredProtectEvent: ").append(toIndentedString(latestScoredProtectEvent)).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/IdentityVerificationStatus.java b/src/main/java/com/plaid/client/model/IdentityVerificationStatus.java
index 5dfa9a476..6c8457f3e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 d71bd6760..c5c925dae 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 42b6a7f6f..b5c384c43 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 3b0da30a3..b4cc5aa68 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3bf86f4dc..5bc1ccb09 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f04eee979..e416a3143 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 31f726d7d..ecfd6a5c2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a62ade88f..d7e5619ff 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 62f5d3bb5..6b01d1a20 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 2d006210a..7ea204dbe 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8af67e938..9492904c0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 e03c14941..6a0df4b3c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8b492b9a9..52da752b0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3df40bb92..fb31d0c41 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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
new file mode 100644
index 000000000..86f0d04b2
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/IncomeInsights.java
@@ -0,0 +1,159 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+
+package com.plaid.client.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import com.google.gson.TypeAdapter;
+import com.google.gson.annotations.JsonAdapter;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.stream.JsonReader;
+import com.google.gson.stream.JsonWriter;
+import com.plaid.client.model.AmountWithCurrency;
+import com.plaid.client.model.AmountWithCurrencyWithMonthlyAverage;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+
+/**
+ * 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 = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
+public class IncomeInsights {
+ public static final String SERIALIZED_NAME_TOTAL_INCOME = "total_income";
+ @SerializedName(SERIALIZED_NAME_TOTAL_INCOME)
+ private AmountWithCurrency totalIncome;
+
+ public static final String SERIALIZED_NAME_INCOME_EXCLUDING_TRANSFERS = "income_excluding_transfers";
+ @SerializedName(SERIALIZED_NAME_INCOME_EXCLUDING_TRANSFERS)
+ private AmountWithCurrencyWithMonthlyAverage incomeExcludingTransfers;
+
+ public static final String SERIALIZED_NAME_TRANSFERS_IN = "transfers_in";
+ @SerializedName(SERIALIZED_NAME_TRANSFERS_IN)
+ private AmountWithCurrencyWithMonthlyAverage transfersIn;
+
+
+ public IncomeInsights totalIncome(AmountWithCurrency totalIncome) {
+
+ this.totalIncome = totalIncome;
+ return this;
+ }
+
+ /**
+ * Get totalIncome
+ * @return totalIncome
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public AmountWithCurrency getTotalIncome() {
+ return totalIncome;
+ }
+
+
+ public void setTotalIncome(AmountWithCurrency totalIncome) {
+ this.totalIncome = totalIncome;
+ }
+
+
+ public IncomeInsights incomeExcludingTransfers(AmountWithCurrencyWithMonthlyAverage incomeExcludingTransfers) {
+
+ this.incomeExcludingTransfers = incomeExcludingTransfers;
+ return this;
+ }
+
+ /**
+ * Get incomeExcludingTransfers
+ * @return incomeExcludingTransfers
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public AmountWithCurrencyWithMonthlyAverage getIncomeExcludingTransfers() {
+ return incomeExcludingTransfers;
+ }
+
+
+ public void setIncomeExcludingTransfers(AmountWithCurrencyWithMonthlyAverage incomeExcludingTransfers) {
+ this.incomeExcludingTransfers = incomeExcludingTransfers;
+ }
+
+
+ public IncomeInsights transfersIn(AmountWithCurrencyWithMonthlyAverage transfersIn) {
+
+ this.transfersIn = transfersIn;
+ return this;
+ }
+
+ /**
+ * Get transfersIn
+ * @return transfersIn
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public AmountWithCurrencyWithMonthlyAverage getTransfersIn() {
+ return transfersIn;
+ }
+
+
+ public void setTransfersIn(AmountWithCurrencyWithMonthlyAverage transfersIn) {
+ this.transfersIn = transfersIn;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ IncomeInsights incomeInsights = (IncomeInsights) o;
+ return Objects.equals(this.totalIncome, incomeInsights.totalIncome) &&
+ Objects.equals(this.incomeExcludingTransfers, incomeInsights.incomeExcludingTransfers) &&
+ Objects.equals(this.transfersIn, incomeInsights.transfersIn);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(totalIncome, incomeExcludingTransfers, transfersIn);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class IncomeInsights {\n");
+ sb.append(" totalIncome: ").append(toIndentedString(totalIncome)).append("\n");
+ sb.append(" incomeExcludingTransfers: ").append(toIndentedString(incomeExcludingTransfers)).append("\n");
+ sb.append(" transfersIn: ").append(toIndentedString(transfersIn)).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/IncomeOverride.java b/src/main/java/com/plaid/client/model/IncomeOverride.java
index 2e23eeea9..7bba78c8b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6980eadb9..259664dac 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7f29e538c..aaba6458f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e7cce3a01..add3e0c85 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5df0e9d5b..101e199b5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 13d103e64..6c49362c7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cdca48e9c..eca859ec1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0cc1a1aa9..269e75304 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 898109705..e25bf81c0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 baa23d07c..32ce3fa56 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2e78035a2..71d27e008 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 b0f1c818d..63f42102e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 edabe13e9..aa8ea5736 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 32dc982e5..db81e4a1a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 02ed0996e..5b2e284a6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f660a2865..2a302d374 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f5a794e59..09366f1aa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1fdd1eb71..fb66fadff 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 239890c5d..fb4ec467d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 56c93d125..c7b5b27e2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b0aed0add..2c1072120 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 eac36fe69..9d01ea2da 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d4d90f991..39b339370 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d5dfdb051..ccbfd84bb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 02e154bce..b2b7b1b42 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 7f1569d2b..b45517997 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c64600385..663830445 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fb49a7d54..8e7d79abb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 921a0049f..f891520e5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e62de0f24..7574b75cd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 daf2ed637..22f023bb4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3cb028d72..54d5cd1ca 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 5c2be2aa0..2eb368294 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cec06c752..dbef93742 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0b4dcc49c..8507ded02 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2f2279600..cae0b29c9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 902f1fd4b..26a664339 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 `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 `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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b97f340a0..b87bf5055 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 077bd3d04..71aa6b728 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 109182148..af720f22b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 86398d87b..b3e0e88b2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1662c8352..50ff8606d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 56e233566..f7b1d5971 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d427108cb..061651ddc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7b1012fe5..c8121bc8d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b6e81abaf..199c25ea4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 81999d422..57f2989bd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bb0b3cd5d..812d2d97b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b788c9435..54286c92f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6ce4470be..4a3975d3f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 24388de9c..9445fba77 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 a3f934045..265813045 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f0d84ac1a..404d04282 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 79d29bca7..2859a6e99 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class InvestmentTransaction {
public static final String SERIALIZED_NAME_INVESTMENT_TRANSACTION_ID = "investment_transaction_id";
@SerializedName(SERIALIZED_NAME_INVESTMENT_TRANSACTION_ID)
@@ -187,10 +187,10 @@ public InvestmentTransaction date(LocalDate date) {
}
/**
- * The [ISO 8601](https://wikipedia.org/wiki/ISO_8601) posting date for the transaction.
+ * The [ISO 8601](https://wikipedia.org/wiki/ISO_8601) posting date for the transaction. This is typically the settlement date.
* @return date
**/
- @ApiModelProperty(required = true, value = "The [ISO 8601](https://wikipedia.org/wiki/ISO_8601) posting date for the transaction.")
+ @ApiModelProperty(required = true, value = "The [ISO 8601](https://wikipedia.org/wiki/ISO_8601) posting date for the transaction. This is typically the settlement date.")
public LocalDate getDate() {
return date;
diff --git a/src/main/java/com/plaid/client/model/InvestmentTransactionSubtype.java b/src/main/java/com/plaid/client/model/InvestmentTransactionSubtype.java
index 9b3c63625..640009d27 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 9db36d18b..4f03fbb62 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 7c4e4e171..d83e0d925 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 38d84be10..546ca3322 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8434b00d0..9eff58e1a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 244620f74..ae1d9fc4b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 74656dcdd..e6511b47a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5ab7a1de3..a9338d219 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f23b119b8..5d8b1aa3e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a754249f3..916375bc3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f46d62bf3..8dd7d7127 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 aabbba28d..03ff1f2d2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4adc49ddf..2ee426d77 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 10042eb89..b297c03b3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7b02f6149..aab818192 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 456765fed..8ddb1ffc9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3b4b6f136..bee4b3e09 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5ff7f1f59..9acb1086f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fe171a49f..822c104ee 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 230e463a2..cf34dc875 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fcc0c4df1..ac7b40f0d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 17dda5eb1..3d538eff4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7c21bff63..bb78bce5f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3f0c19263..0672b5a07 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e6d7279ed..2b99a68da 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class IssuesGetResponse {
public static final String SERIALIZED_NAME_ISSUE = "issue";
@SerializedName(SERIALIZED_NAME_ISSUE)
@@ -70,11 +70,11 @@ public IssuesGetResponse requestId(String requestId) {
}
/**
- * A unique identifier for the API request.
+ * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "A unique identifier for the API request.")
+ @ApiModelProperty(value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
diff --git a/src/main/java/com/plaid/client/model/IssuesSearchRequest.java b/src/main/java/com/plaid/client/model/IssuesSearchRequest.java
index 3020f1337..91c93b549 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6d43ca58a..891499400 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class IssuesSearchResponse {
public static final String SERIALIZED_NAME_ISSUES = "issues";
@SerializedName(SERIALIZED_NAME_ISSUES)
@@ -80,11 +80,11 @@ public IssuesSearchResponse requestId(String requestId) {
}
/**
- * A unique identifier for the API request.
+ * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "A unique identifier for the API request.")
+ @ApiModelProperty(value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
diff --git a/src/main/java/com/plaid/client/model/IssuesStatus.java b/src/main/java/com/plaid/client/model/IssuesStatus.java
index 3bf454e30..9abd8e0c4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 db340830d..a927f5cb4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 aaaf9e5bc..58e7eaa7e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class IssuesSubscribeResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
@@ -42,10 +42,10 @@ public IssuesSubscribeResponse requestId(String requestId) {
}
/**
- * A unique identifier for the API request.
+ * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
- @ApiModelProperty(required = true, value = "A unique identifier for the API request.")
+ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
diff --git a/src/main/java/com/plaid/client/model/IssuingCountry.java b/src/main/java/com/plaid/client/model/IssuingCountry.java
index e363ae923..9d91bb58d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 c8fc2f5d0..e17e2e67d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cc6b7b8e6..1be5aab87 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c1cb62805..6c93faf8e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4c52ef8bf..ae92609c2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 02dca6f15..91e240518 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0b67d19d0..3ee5a986e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 430ad69b9..8f715550f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3293b407d..7eaecca88 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 da7bc70d1..e1c37a329 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1975cb74e..e3738fe92 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a23693085..b71df61cb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c3ff767e6..55365dc18 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b23fbd364..9a6506865 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 57b4c92b5..0f157f218 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 b96d29b26..301084ac5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 3f73e9e3a..0f22b0e5b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 b07c6b29d..8abfcec50 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 857a8930e..2713ece81 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 96c140da7..a028240e8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3327aad55..31f0f4848 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 444d32d75..ad24312a4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 358e059ad..8354efb3b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2c6af53cc..d40b8ac93 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a02bbfd8c..1abc9de65 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d00bbb855..817bbc0b4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d185cee75..32f40cf31 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 36a44f4f0..bbd139c07 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 73b7468b2..910f20151 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3911c4aa8..25fc423f6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7922ccbf8..cf30133f0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 ec8f7d6da..24b89237f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 000706360..2975692be 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8435a0036..9f087d4d4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b39553cb5..765156258 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f3e79c8bd..1537d23a1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ab230383e..4b2582f05 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9ce5bf427..e2b6795ae 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 43afa9d33..6bfa4bcb7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6ad956560..1070d0cd2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 219ca8182..faf94ffe5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 038df528e..956a28c62 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 30e4e1227..49b559519 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5ec2ca60d..a77167e03 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fbf5d6188..bed2060be 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d860b6c55..ce7f92c40 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3f270c198..1d790c72a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 461c99a1c..49005cdb8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d1b9fc8af..b318c3349 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ecae7701d..efb0ae77e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ca15a54ec..0c454a178 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c07ce1fac..cd6e4a005 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 803bb1719..ed502a9ca 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7b6dfff62..a9023e75e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a6eaf71ce..e4525a977 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 4666dc916..e1d13544f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 54ffd8b9e..ac1789f68 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4273d7ae4..7d719b86f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 94f395b7d..cbb5a7032 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b7e2b556a..5d2058226 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 66066fd8d..3689c35a5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8b89dc196..5928b0e6e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b530978a7..c633837af 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 506d7358c..41bd48981 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 feac6d9e3..76895ceea 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1bafa5daa..4f3dde68d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 21dc7777c..44bc579fe 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ed5ed0cfc..acd9fcf9c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1aa80f04c..7c023006d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 15e3af9a4..f76a4e788 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3c5204feb..904ddb721 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fafd346c5..9a7ec8ff8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1170566a1..2b9ae4d75 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8e42e9dd8..d2cb44bbf 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5a03106f4..dd1adfffc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 711b4814f..f1cdb2b67 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 3194374b9..543bafd7d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 3f61923ce..343949739 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 05b16e398..f952ba0f6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 41a33795c..79ee65c06 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 7540d5c4e..0b68da2d2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7642a74d1..acd389585 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 99f472c34..2dacaf20f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 b95b2425b..5abc9bb69 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5881dc631..11d1ca930 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b6feed31c..3494d4010 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 35e48e093..76c52a10c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8e4602533..171920a00 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4fea02634..89ad02ab9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f4e61e70b..30f01a139 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e7158123e..efcf01ec0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ac966915c..41dce5f97 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9fa5c2d8b..710d9641e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ba656a9d3..0757fc8d5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1b4d18d78..a77c41b96 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 14ab9273a..519a86949 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9f94b1e38..ecbb74fbe 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 aaeacaba5..6e893c414 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b6e123192..7873cecb4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 74861a543..f85a102f4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c7bafbbb9..1691fbeed 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 eee6d63e7..8892732bf 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2db244cd1..b40aef5a7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 edbfe1659..05e772c0b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 39721611b..bb5f1aac6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 be11f8418..b55a95a69 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 aa5bc2c11..b499eb765 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a259f10ef..0c4ac6ddf 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 079295eba..5dd7ca455 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8a603074a..7ca5db3ea 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d613a21e9..4fbdeb7d8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5cda6870f..d17575fdf 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6eb47df26..74ef42256 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 043aa4449..3a52e2851 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 04b94a768..0e08d5ee7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9bd3c41e8..2993dce9f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class LinkTokenCreateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
@@ -780,11 +780,11 @@ public LinkTokenCreateRequest institutionId(String institutionId) {
}
/**
- * Used for certain Europe-only configurations, as well as certain legacy use cases in other regions.
+ * Used for certain legacy use cases
* @return institutionId
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "Used for certain Europe-only configurations, as well as certain legacy use cases in other regions.")
+ @ApiModelProperty(value = "Used for certain legacy use cases")
public String getInstitutionId() {
return institutionId;
diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestAccountSubtypes.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestAccountSubtypes.java
index e87de1580..84da4448d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0525c681e..a1d5cf96b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 db356c0b8..fe881d50a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1a4dc1d36..689f5c9f4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 00d15a75e..b33a03529 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 37b57484e..79a9f2578 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 93556b8fe..fc9db54d4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bf1b8f252..daafdc9a4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3ae0adf89..13f05dbc4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8deb297e9..82601f66d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7064d8bcc..9d75710c0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class LinkTokenCreateRequestCraOptionsPartnerInsights {
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/LinkTokenCreateRequestCreditPartnerInsights.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCreditPartnerInsights.java
index 496d55e1a..9de8b7e3b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9681b7985..f9970702b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2ebd59623..1f88bd1b6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8d6f1b1ec..c87ef6da6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b019094a4..64b122ea4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0c6f55d14..de54e4977 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b9cee6eb6..b26ebc93a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c0f0463a5..658c6699b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 167d3466d..50ae686f6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0d0c3b4ec..2897d847c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9ed6d0f6e..46a5a2052 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b67337c9b..9fc0360b2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c8edde7f8..50964d47a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1e5a52968..fbfcc63e3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 591ac125a..4589ce8d8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bf033be3d..613372cce 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 92e961879..05bed7407 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f719fd920..d17e2dd3e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3b0427957..e588dd6b8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0c63b82eb..6115acbf6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f825a9a00..5fc967c6a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 711220b8c..cf91a4797 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6e0c48c06..9f666d9e5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 433a2c3e1..85f758724 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0481cdbe3..ad754ef6c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bb92400b3..cb4107bf9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1b4439131..28365203d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 53e96f01f..0bd184370 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class LoanDisbursementsIndicators {
public static final String SERIALIZED_NAME_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
@@ -314,11 +314,11 @@ public LoanDisbursementsIndicators percentageOfIncome(Double percentageOfIncome)
}
/**
- * The percentage of the user's monthly inflows that was received on transactions that fall into the `LOAN_DISBURSEMENTS` credit category within the given time window, across all the accounts in the report. Valid values start and 0, with a value of 100 representing '100% of the inflows were spent on transactions that fall into the `LOAN_DISBURSEMENTS` credit category'. If there's no available income for the giving time period, this field value will be `-1`
+ * The percentage of the user's monthly inflows that was received on transactions that fall into the `LOAN_DISBURSEMENTS` credit category within the given time window, across all the accounts in the report. For example, a value of 100 indicates that 100% of the inflows were spent on transactions that fall into the `LOAN_DISBURSEMENTS` credit category. If there's no available income for the giving time period, this field value will be `-1`.
* @return percentageOfIncome
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "The percentage of the user's monthly inflows that was received on transactions that fall into the `LOAN_DISBURSEMENTS` credit category within the given time window, across all the accounts in the report. Valid values start and 0, with a value of 100 representing '100% of the inflows were spent on transactions that fall into the `LOAN_DISBURSEMENTS` credit category'. If there's no available income for the giving time period, this field value will be `-1`")
+ @ApiModelProperty(value = "The percentage of the user's monthly inflows that was received on transactions that fall into the `LOAN_DISBURSEMENTS` credit category within the given time window, across all the accounts in the report. For example, a value of 100 indicates that 100% of the inflows were spent on transactions that fall into the `LOAN_DISBURSEMENTS` credit category. If there's no available income for the giving time period, this field value will be `-1`.")
public Double getPercentageOfIncome() {
return percentageOfIncome;
diff --git a/src/main/java/com/plaid/client/model/LoanFilter.java b/src/main/java/com/plaid/client/model/LoanFilter.java
index 18d5bb31b..29313f3db 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 68ac04bcf..1f1cc818f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b8a884205..0943b6820 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 1efce24d6..e6152d2c5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f0fb3a7b3..a7e0e5338 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e0bbcc96b..599d48d27 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class LoanPaymentsIndicators {
public static final String SERIALIZED_NAME_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
@@ -314,11 +314,11 @@ public LoanPaymentsIndicators percentageOfIncome(Double percentageOfIncome) {
}
/**
- * The percentage of the user's monthly inflows that was spent on transactions that fall into the `LOAN_PAYMENTS` credit category within the given time window, across all the accounts in the report. Valid values start and 0, with a value of 100 representing '100% of the inflows were spent on transactions that fall into the `LOAN_PAYMENTS` credit category'. If there's no available income for the giving time period, this field value will be `-1`
+ * The percentage of the user's monthly inflows that was spent on transactions that fall into the `LOAN_PAYMENTS` credit category within the given time window, across all the accounts in the report. For example, a value of 100 indicates that 100% of the inflows were spent on transactions that fall into the `LOAN_PAYMENTS` credit category. If there's no available income for the giving time period, this field value will be `-1`
* @return percentageOfIncome
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "The percentage of the user's monthly inflows that was spent on transactions that fall into the `LOAN_PAYMENTS` credit category within the given time window, across all the accounts in the report. Valid values start and 0, with a value of 100 representing '100% of the inflows were spent on transactions that fall into the `LOAN_PAYMENTS` credit category'. If there's no available income for the giving time period, this field value will be `-1`")
+ @ApiModelProperty(value = "The percentage of the user's monthly inflows that was spent on transactions that fall into the `LOAN_PAYMENTS` credit category within the given time window, across all the accounts in the report. For example, a value of 100 indicates that 100% of the inflows were spent on transactions that fall into the `LOAN_PAYMENTS` credit category. If there's no available income for the giving time period, this field value will be `-1`")
public Double getPercentageOfIncome() {
return percentageOfIncome;
diff --git a/src/main/java/com/plaid/client/model/LoanPaymentsMerchantCounts.java b/src/main/java/com/plaid/client/model/LoanPaymentsMerchantCounts.java
index 46febe815..71579e85d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 27da88a80..43508dd5b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e959ecd5a..54e6b6912 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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
*/
@ApiModel(description = "A representation of where a transaction took place")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 656ec7338..d88acf020 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3f18a03d8..2b4ec36bb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f9900ae54..91faa04f0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 769b106ed..c0aa68112 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 68df70f92..4a8365e27 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 53fe87939..0260d35a0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 2d8aa5286..1bd60288d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3adf8654c..246a5b60f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7d716a909..7718243a8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e47954b1f..689aa06a2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 063618445..d9e919099 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 42f17ade0..c0ea75cec 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 7ddd71ef3..767145223 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9bb6315f4..742d66052 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f0bc7611f..a5f2ac11d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 40bb183c8..94ba5a7ad 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a55dc8c3c..5b2dba3a1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8fc80138f..b3fa7ffe9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0cab65a2d..bc699db08 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2b999a2db..c7c8b74e2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 496e9f293..2e58f3d07 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8cf73a632..2f5d344d5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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.AmountWithCurrency;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
@@ -29,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class NegativeBalanceOccurrence {
public static final String SERIALIZED_NAME_START_DATE = "start_date";
@SerializedName(SERIALIZED_NAME_START_DATE)
@@ -39,6 +40,10 @@ public class NegativeBalanceOccurrence {
@SerializedName(SERIALIZED_NAME_END_DATE)
private LocalDate endDate;
+ public static final String SERIALIZED_NAME_MINIMUM_BALANCE = "minimum_balance";
+ @SerializedName(SERIALIZED_NAME_MINIMUM_BALANCE)
+ private AmountWithCurrency minimumBalance;
+
public NegativeBalanceOccurrence startDate(LocalDate startDate) {
@@ -86,6 +91,29 @@ public void setEndDate(LocalDate endDate) {
}
+ public NegativeBalanceOccurrence minimumBalance(AmountWithCurrency minimumBalance) {
+
+ this.minimumBalance = minimumBalance;
+ return this;
+ }
+
+ /**
+ * Get minimumBalance
+ * @return minimumBalance
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public AmountWithCurrency getMinimumBalance() {
+ return minimumBalance;
+ }
+
+
+ public void setMinimumBalance(AmountWithCurrency minimumBalance) {
+ this.minimumBalance = minimumBalance;
+ }
+
+
@Override
public boolean equals(Object o) {
if (this == o) {
@@ -96,12 +124,13 @@ public boolean equals(Object o) {
}
NegativeBalanceOccurrence negativeBalanceOccurrence = (NegativeBalanceOccurrence) o;
return Objects.equals(this.startDate, negativeBalanceOccurrence.startDate) &&
- Objects.equals(this.endDate, negativeBalanceOccurrence.endDate);
+ Objects.equals(this.endDate, negativeBalanceOccurrence.endDate) &&
+ Objects.equals(this.minimumBalance, negativeBalanceOccurrence.minimumBalance);
}
@Override
public int hashCode() {
- return Objects.hash(startDate, endDate);
+ return Objects.hash(startDate, endDate, minimumBalance);
}
@Override
@@ -110,6 +139,7 @@ public String toString() {
sb.append("class NegativeBalanceOccurrence {\n");
sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n");
sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n");
+ sb.append(" minimumBalance: ").append(toIndentedString(minimumBalance)).append("\n");
sb.append("}");
return sb.toString();
}
diff --git a/src/main/java/com/plaid/client/model/NetPay.java b/src/main/java/com/plaid/client/model/NetPay.java
index beb8c2d8f..317f15eb7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cd0ebc888..2d2bf9fc0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4d8a3bbd5..d0866c1f0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c00ff20ad..ada89419d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 be2cc6d10..bcc205cad 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 51520e0ea..a79fdf02c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 71042a73d..6c4f1e448 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 af935e5ef..b3255f69c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 31864482c..ae41fc893 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c9225acfa..cc4a08730 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 806f2edf7..e6b667144 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8b44152a2..3e481505c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f62d09f36..2691f485c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5483826f0..3a105bd4d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 65a8a5da3..64c174068 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2b1ee3d49..4f42dcaec 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fcd37d525..a5b2b7432 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3b5d03e04..2c084a139 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b956445db..166852618 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 83dbd1c3a..f402e1b06 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9d4188e61..19fd0ef4f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 25ed8f724..c37ddeecd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f780facdb..7399cd50e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cb5287730..eb61078e0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5c5b0e799..9101bd76b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5c6912d3e..9f44fa6f9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 561b8b6cf..b780de220 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 254c31fda..bae1f99b8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0827ca3d9..28595629e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 5d285c7e4..aa414a4c9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 880ea514d..a8bbae8ba 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 48c89efdb..927e38d7c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0bcbe470e..2ac83b670 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d8be14047..69e502a9a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 36823ca41..7a5e211a8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 343fbdb6a..960dcfa58 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e5c3f62bf..d4a99a6ad 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 c97c663a5..99ac13275 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4ab7e2f28..cacc2cbd7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 38fbb6248..fbc9eb1ac 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 13e5c7004..d652dacce 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 6db6fd594..9d02a129e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 fbe96eace..20058a410 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b9441d8ad..dbc843e54 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ad4135883..bf6b44424 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 de341deb1..2573ec1cd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class OverrideAccounts {
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
diff --git a/src/main/java/com/plaid/client/model/Owner.java b/src/main/java/com/plaid/client/model/Owner.java
index cb738df6b..0e8d51149 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e12ac78d2..b8aab3793 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 28054a2e1..fc956a9e4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 7e38a7e45..93c74ed4e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 fa21fb520..7bbeccde8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5170d3f3e..6159cfe6c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 52bd4c389..c898c67fa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 40fef1817..72505aee1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9de12bf06..9bdca4289 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7dabb860a..976791657 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1d0235800..85bb65691 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9ce4dbb2a..2a620a25b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0dd03a69b..cc821b969 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e067787a2..48cfa4e6a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 071b0e454..aafb91e84 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3d20da021..cbc30e4da 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f1557fcb6..2a23bf623 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7172a0e84..6f0a2df28 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5b8b211cd..ea84710a5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 806210b71..cb551dd7b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b479231d5..ecaa87cf1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f2a3d586c..ecd73c9b2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 713b7c584..a498b10ba 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 02dc8a64d..0b1c77bd8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 493a348f7..5c7a9a38c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f82c04045..091427634 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6fdc3e91b..a5e802fcf 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 d28b84fc1..c4c60f5f9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 87a9d9406..ce0c1e1b6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 2b010bf4a..63b244904 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 44d1eda90..4eaf4f057 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 87702bc5a..b53458bcd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b839e5128..7aa64b0ac 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 b91a8a693..934881999 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ea1791b50..894fb1e88 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 3d09137cc..62f0cd09a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 889be9c4e..b338a8a7f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 26508fd58..2b65093fb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0ea13f8c3..f1233b9d3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 dfd8b2c6f..de62f838f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5461f88c1..d12b86318 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cf2c92f4a..2789625cb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 dadd2440f..08292de23 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 b199a5513..fbe6b9119 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3634ec194..b3cc8e495 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0834a405b..e287036b5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 089e0cdfd..10822ba89 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 78de78e86..fa2d3b9eb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 875a824e8..cf3cd4b60 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9eb8a70eb..3b50d8f90 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 66d4e7da5..207169102 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9488ea1bb..b1529ac4c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 55e4f7fa8..b2b6a0329 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 79018ba67..3a77d87bc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 579eb8560..061e5c824 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6b54bc16f..8cae5f6e8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 61682318f..7e90a6090 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 4134dca41..5b39748cc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c25ea1020..1bbe63a81 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 754be87d4..8230e9260 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 72a4f1eee..e139860ba 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 cc8f7d71a..081876f9b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 610e9bc21..50f3b0e48 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 dbefd2725..69f37f83c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3838a9697..9eb364f79 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a83373657..e83898453 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 6ababc410..cb7934213 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0e6339d7a..101c47447 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c1a6054dc..41a6b7569 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e13302c9c..bf6203bc1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ef5a43c5b..7e01e1d72 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0a0d55cad..052ae2c77 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b1c59bbc2..9f5af097a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5c6b289eb..8fcecccf4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5bd31cf53..7f37147ee 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 865dfa574..02a43402e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 095d38e3b..fdfa1f0a7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5b065edcb..4af96ab5b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0b8779324..4d83be668 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 039b03d97..2f70054b3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5e6058d1e..93b499f08 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 eeea1b1e8..626235e77 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 d56c9b2aa..1387da9dd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 f12197f49..920bdf079 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8a2799403..980e4eff6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 e0f783ea0..16a1da312 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 24a0cf1b5..69be96639 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ac139ee81..0c31abf6f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ad22493e1..646af6a4b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b45f76958..7aa1c37e8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 26e288b9a..25143184a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 8a91ac0b8..9c9e4b2a0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b664eb6f1..43c711eaf 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f42358951..6577507e5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5d2ccb58c..a40cca3f0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 530b5914f..fa438e3d6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3284fb394..802a8cb3f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 050572905..a971effdb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 c2c654b07..7f6af34c5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0c0181d48..29c626c90 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4ce5c5bb7..816fc3c31 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 733bfd9ef..3b6ba4dd7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e93afc6e3..03f204593 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a49ebe5ab..69e703511 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c328d8401..46a3d24ec 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 21ab51b2b..6a26356e0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 19ab97c69..d460bcf21 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f0c8b8abb..7b17a0839 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 104ff58b9..a3eb0a067 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c665e2115..83a8d4787 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ec733776f..a9949e1bc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2bb1fe6e2..cec05fff5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4cb6aa672..09178ea4c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 853c7e6d0..b97dfeb50 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9c4253714..19462b1bf 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 432e482a9..ad186d0a0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ad946841e..c00013354 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 a144b8591..864104c2c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 675c79c88..15e8d9609 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 aecbd94fe..13309c488 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 af6a97fac..f1ace83c3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fadc2818e..84be6887d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1f2236d13..bd8f5106a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cf558f7d6..0013a304a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b7c3ac627..d059aab0c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 15dc76ad8..603230977 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 57f5f09cc..a6dfbb758 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 755276ca1..34b3aefd9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d4c8908cb..6da070b8f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 730726804..2e3a75269 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a27463c90..da2a6177c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 444a288c6..37c9c83a3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 effadb0d1..3a6b1766a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 60382f6ba..3be1e5a82 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0106b2985..4b3c64804 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 13192cd08..c56dfb548 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a1dd7d496..7a8244606 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9921ff9f6..e500d2edd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 296b3ec1a..51c195565 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2c7c773c0..7bede2231 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5f80e138a..dcffa72b6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 42be18c64..00a1d0f22 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 dbc9207bc..98fae4282 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f72192e17..d4180a414 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0705749db..9e49539c4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f9f2b101c..95083ef3e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a23a077b3..3741d4bd7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 ea3af6341..90f65d3a6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e76513eda..b5cd116cf 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3319fbcfd..c8605eb8b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 c498c0142..1e8ed9297 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8d5e64f20..864993499 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 personal finance use cases, but not limited to such use cases. See the [`taxonomy CSV file`](https://plaid.com/documents/transactions-personal-finance-category-taxonomy.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/transactions-personal-finance-category-taxonomy.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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/PhoneNumber.java b/src/main/java/com/plaid/client/model/PhoneNumber.java
index 2d07c3a31..f30fade70 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 63e07758b..252eed3ca 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cfaadefd0..68b7ff9b7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 0bf8a066b..2e42674d3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 e70847ed9..c73bc48fb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class PhysicalDocumentExtractedData {
public static final String SERIALIZED_NAME_ID_NUMBER = "id_number";
@SerializedName(SERIALIZED_NAME_ID_NUMBER)
@@ -46,6 +46,10 @@ public class PhysicalDocumentExtractedData {
@SerializedName(SERIALIZED_NAME_EXPIRATION_DATE)
private LocalDate expirationDate;
+ public static final String SERIALIZED_NAME_ISSUE_DATE = "issue_date";
+ @SerializedName(SERIALIZED_NAME_ISSUE_DATE)
+ private LocalDate issueDate;
+
public static final String SERIALIZED_NAME_ISSUING_COUNTRY = "issuing_country";
@SerializedName(SERIALIZED_NAME_ISSUING_COUNTRY)
private String issuingCountry;
@@ -119,11 +123,11 @@ public PhysicalDocumentExtractedData expirationDate(LocalDate expirationDate) {
}
/**
- * A date in the format YYYY-MM-DD (RFC 3339 Section 5.6).
+ * The expiration date of the document in the format YYYY-MM-DD (RFC 3339 Section 5.6).
* @return expirationDate
**/
@javax.annotation.Nullable
- @ApiModelProperty(example = "Tue May 29 00:00:00 UTC 1990", required = true, value = "A date in the format YYYY-MM-DD (RFC 3339 Section 5.6).")
+ @ApiModelProperty(example = "Wed May 29 00:00:00 UTC 2030", required = true, value = "The expiration date of the document in the format YYYY-MM-DD (RFC 3339 Section 5.6).")
public LocalDate getExpirationDate() {
return expirationDate;
@@ -135,6 +139,29 @@ public void setExpirationDate(LocalDate expirationDate) {
}
+ public PhysicalDocumentExtractedData issueDate(LocalDate issueDate) {
+
+ this.issueDate = issueDate;
+ return this;
+ }
+
+ /**
+ * The issue date of the document in the format YYYY-MM-DD (RFC 3339 Section 5.6).
+ * @return issueDate
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(example = "Fri May 29 00:00:00 UTC 2020", required = true, value = "The issue date of the document in the format YYYY-MM-DD (RFC 3339 Section 5.6).")
+
+ public LocalDate getIssueDate() {
+ return issueDate;
+ }
+
+
+ public void setIssueDate(LocalDate issueDate) {
+ this.issueDate = issueDate;
+ }
+
+
public PhysicalDocumentExtractedData issuingCountry(String issuingCountry) {
this.issuingCountry = issuingCountry;
@@ -261,6 +288,7 @@ public boolean equals(Object o) {
return Objects.equals(this.idNumber, physicalDocumentExtractedData.idNumber) &&
Objects.equals(this.category, physicalDocumentExtractedData.category) &&
Objects.equals(this.expirationDate, physicalDocumentExtractedData.expirationDate) &&
+ Objects.equals(this.issueDate, physicalDocumentExtractedData.issueDate) &&
Objects.equals(this.issuingCountry, physicalDocumentExtractedData.issuingCountry) &&
Objects.equals(this.issuingRegion, physicalDocumentExtractedData.issuingRegion) &&
Objects.equals(this.dateOfBirth, physicalDocumentExtractedData.dateOfBirth) &&
@@ -270,7 +298,7 @@ public boolean equals(Object o) {
@Override
public int hashCode() {
- return Objects.hash(idNumber, category, expirationDate, issuingCountry, issuingRegion, dateOfBirth, address, name);
+ return Objects.hash(idNumber, category, expirationDate, issueDate, issuingCountry, issuingRegion, dateOfBirth, address, name);
}
@Override
@@ -280,6 +308,7 @@ public String toString() {
sb.append(" idNumber: ").append(toIndentedString(idNumber)).append("\n");
sb.append(" category: ").append(toIndentedString(category)).append("\n");
sb.append(" expirationDate: ").append(toIndentedString(expirationDate)).append("\n");
+ sb.append(" issueDate: ").append(toIndentedString(issueDate)).append("\n");
sb.append(" issuingCountry: ").append(toIndentedString(issuingCountry)).append("\n");
sb.append(" issuingRegion: ").append(toIndentedString(issuingRegion)).append("\n");
sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n");
diff --git a/src/main/java/com/plaid/client/model/PhysicalDocumentExtractedDataAnalysis.java b/src/main/java/com/plaid/client/model/PhysicalDocumentExtractedDataAnalysis.java
index 1cfc8567b..dfdc0c1ec 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d8b7e1cfd..339cc9359 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 51404e92c..7b9c726b6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8b57ea723..e5002bb55 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 2fb4bf823..61c796c1d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d7f8694ed..6ab151ada 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 0a071c795..ffd99e0ae 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 9b2b00020..6e3c57799 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ef1d66e8c..c54f0d365 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 62bd7c16f..37f59393c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 839e6ba6a..1a74d4581 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 d50527464..5b7e3fb93 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 feea9b984..201c8ece3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 0c5f824ab..e25050705 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ae90630a7..63b5b186c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 af41e71ff..5e677c48a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d4a8afd85..3ae6388fb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 b7cde3572..79cd0a0a1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a40755621..91e9ef974 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 e39c85390..2fc7c931e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 347781aac..cb7b4ec41 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 18baae716..10a821c47 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 05c213729..e250d4e58 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c19066d0b..a579c9528 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fa3a835a6..f5d1cfec1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d8096df18..52d051f58 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c486c72e9..203d3f395 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 47df85f50..fa8791a31 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 64541ad5f..64f9bb3d7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 52a5a986e..02d533166 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9c6083df1..7e5a9e54f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 953ddc888..b4b79d282 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9daf691c6..7b70e38da 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ecb4ecc54..e19cd85c4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 056459025..9c77e7892 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a66f45c8a..d5605680c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b99811c06..f5c0872d2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 56d2ea448..5f360dcf1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c61c561f0..20ee39d3e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1c22acbf9..d30861643 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 da22645e9..decf2321e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 454861a62..920e5e65f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 37edd25e0..45c79852d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1cbc9240e..170075636 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a0be53dbd..6508e748d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fe75d78f2..63645b961 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d75e35a42..148105ce8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bab412560..386c75dea 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d527a5851..9da44dcbf 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4a70ea9a6..0f98d227b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3f714df44..987abf74c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b6ebee385..e9faf106a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 94d4f722a..9d5849175 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b61cefb5a..e1a4aaf3d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5211504be..3b2ce349c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 006ce46c4..8d9630aa9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ddb678e32..192cd3339 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 da49bcbed..b0c37aaf4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9a3e80c2e..4eb7b99b2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class ProcessorTokenCreateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
@@ -181,7 +181,9 @@ public enum ProcessorEnum {
CARDLYTICS("cardlytics"),
- PINWHEEL("pinwheel");
+ PINWHEEL("pinwheel"),
+
+ THREAD_BANK("thread_bank");
private String value;
diff --git a/src/main/java/com/plaid/client/model/ProcessorTokenCreateResponse.java b/src/main/java/com/plaid/client/model/ProcessorTokenCreateResponse.java
index 236ddd93e..b2f142efd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c0c714f9d..d7053f287 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 084a4bf54..dab90deae 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f2b8fb69e..9ae1693f4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 db8ff1b09..1a3e3eefc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1837dee61..376789b9c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 841321dc2..e9a6fdfab 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9170cc674..333bebde7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7b815920a..75a261a10 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 df3bbd7ec..711725a82 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e8fc76a74..6bf11015d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 dc9a72d75..7e3395974 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 606e07786..5618c924d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 abc38ca52..e8b516d08 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 640725038..4de26d631 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f71bddab8..05f489368 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fe66fc024..9b67d411a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 299d586d0..c83dc6672 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bd440a7dc..a2e5f205c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 32d68e3e8..30615da1e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 abbb8f210..b4c1cc6a0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6a6fb522b..c251f8f74 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c54107f64..ee1e23763 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 357bb3fc4..414bd1f26 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 862a915ce..5ad86f2d3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ba7c01d35..a2e9c0fe2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2714514f0..013688529 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 fd959bafb..34658be9d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3fc386a6e..4c6e69d6a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/ProtectEvent.java b/src/main/java/com/plaid/client/model/ProtectEvent.java
index df25d6748..b5be206e5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9b648f5a3..98a1369d7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 beaf9e586..0a979030e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2b3396cae..01608f9ff 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ade90409d..af2fbdbcb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fec5fc923..c248dedbd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f63c50139..1e96c5189 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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
new file mode 100644
index 000000000..f39acb793
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/ProtectIncidentEventResponse.java
@@ -0,0 +1,304 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+
+package com.plaid.client.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import com.google.gson.TypeAdapter;
+import com.google.gson.annotations.JsonAdapter;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.stream.JsonReader;
+import com.google.gson.stream.JsonWriter;
+import com.plaid.client.model.ProtectIncidentAmount;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+import java.time.OffsetDateTime;
+
+/**
+ * Details about the incident event.
+ */
+@ApiModel(description = "Details about the incident event.")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
+public class ProtectIncidentEventResponse {
+ public static final String SERIALIZED_NAME_PROTECT_EVENT_ID = "protect_event_id";
+ @SerializedName(SERIALIZED_NAME_PROTECT_EVENT_ID)
+ private String protectEventId;
+
+ public static final String SERIALIZED_NAME_LINK_SESSION_ID = "link_session_id";
+ @SerializedName(SERIALIZED_NAME_LINK_SESSION_ID)
+ private String linkSessionId;
+
+ public static final String SERIALIZED_NAME_IDV_SESSION_ID = "idv_session_id";
+ @SerializedName(SERIALIZED_NAME_IDV_SESSION_ID)
+ private String idvSessionId;
+
+ public static final String SERIALIZED_NAME_SIGNAL_CLIENT_TRANSACTION_ID = "signal_client_transaction_id";
+ @SerializedName(SERIALIZED_NAME_SIGNAL_CLIENT_TRANSACTION_ID)
+ private String signalClientTransactionId;
+
+ public static final String SERIALIZED_NAME_INTERNAL_REFERENCE = "internal_reference";
+ @SerializedName(SERIALIZED_NAME_INTERNAL_REFERENCE)
+ private String internalReference;
+
+ public static final String SERIALIZED_NAME_TIME = "time";
+ @SerializedName(SERIALIZED_NAME_TIME)
+ private OffsetDateTime time;
+
+ public static final String SERIALIZED_NAME_AMOUNT = "amount";
+ @SerializedName(SERIALIZED_NAME_AMOUNT)
+ private ProtectIncidentAmount amount;
+
+ public static final String SERIALIZED_NAME_ITEM_ID = "item_id";
+ @SerializedName(SERIALIZED_NAME_ITEM_ID)
+ private String itemId;
+
+
+ public ProtectIncidentEventResponse protectEventId(String protectEventId) {
+
+ this.protectEventId = protectEventId;
+ return this;
+ }
+
+ /**
+ * A globally unique identifier representing a Protect event that may be associated with this incident.
+ * @return protectEventId
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "A globally unique identifier representing a Protect event that may be associated with this incident.")
+
+ public String getProtectEventId() {
+ return protectEventId;
+ }
+
+
+ public void setProtectEventId(String protectEventId) {
+ this.protectEventId = protectEventId;
+ }
+
+
+ public ProtectIncidentEventResponse linkSessionId(String linkSessionId) {
+
+ this.linkSessionId = linkSessionId;
+ return this;
+ }
+
+ /**
+ * A unique identifier for a Link session that may be associated with this incident.
+ * @return linkSessionId
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "A unique identifier for a Link session that may be associated with this incident.")
+
+ public String getLinkSessionId() {
+ return linkSessionId;
+ }
+
+
+ public void setLinkSessionId(String linkSessionId) {
+ this.linkSessionId = linkSessionId;
+ }
+
+
+ public ProtectIncidentEventResponse idvSessionId(String idvSessionId) {
+
+ this.idvSessionId = idvSessionId;
+ return this;
+ }
+
+ /**
+ * A unique identifier for an Identity Verification session that may be associated with this incident.
+ * @return idvSessionId
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "A unique identifier for an Identity Verification session that may be associated with this incident.")
+
+ public String getIdvSessionId() {
+ return idvSessionId;
+ }
+
+
+ public void setIdvSessionId(String idvSessionId) {
+ this.idvSessionId = idvSessionId;
+ }
+
+
+ public ProtectIncidentEventResponse signalClientTransactionId(String signalClientTransactionId) {
+
+ this.signalClientTransactionId = signalClientTransactionId;
+ return this;
+ }
+
+ /**
+ * The unique ID used to refer to a Signal transaction evaluation that may be associated with this incident.
+ * @return signalClientTransactionId
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "The unique ID used to refer to a Signal transaction evaluation that may be associated with this incident.")
+
+ public String getSignalClientTransactionId() {
+ return signalClientTransactionId;
+ }
+
+
+ public void setSignalClientTransactionId(String signalClientTransactionId) {
+ this.signalClientTransactionId = signalClientTransactionId;
+ }
+
+
+ public ProtectIncidentEventResponse internalReference(String internalReference) {
+
+ this.internalReference = internalReference;
+ return this;
+ }
+
+ /**
+ * A unique ID representing the incident in your system. Personally identifiable information, such as an email address or phone number, should not be used in this field.
+ * @return internalReference
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "A unique ID representing the incident in your system. Personally identifiable information, such as an email address or phone number, should not be used in this field.")
+
+ public String getInternalReference() {
+ return internalReference;
+ }
+
+
+ public void setInternalReference(String internalReference) {
+ this.internalReference = internalReference;
+ }
+
+
+ public ProtectIncidentEventResponse time(OffsetDateTime time) {
+
+ this.time = time;
+ return this;
+ }
+
+ /**
+ * The timestamp when the incident occurred, in ISO 8601 format (e.g., '2020-07-24T03:26:02Z').
+ * @return time
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "The timestamp when the incident occurred, in ISO 8601 format (e.g., '2020-07-24T03:26:02Z').")
+
+ public OffsetDateTime getTime() {
+ return time;
+ }
+
+
+ public void setTime(OffsetDateTime time) {
+ this.time = time;
+ }
+
+
+ public ProtectIncidentEventResponse amount(ProtectIncidentAmount amount) {
+
+ this.amount = amount;
+ return this;
+ }
+
+ /**
+ * Get amount
+ * @return amount
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public ProtectIncidentAmount getAmount() {
+ return amount;
+ }
+
+
+ public void setAmount(ProtectIncidentAmount amount) {
+ this.amount = amount;
+ }
+
+
+ public ProtectIncidentEventResponse itemId(String itemId) {
+
+ this.itemId = itemId;
+ return this;
+ }
+
+ /**
+ * The `item_id` associated with the Item related to this incident.
+ * @return itemId
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "The `item_id` associated with the Item related to this incident.")
+
+ public String getItemId() {
+ return itemId;
+ }
+
+
+ public void setItemId(String itemId) {
+ this.itemId = itemId;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ ProtectIncidentEventResponse protectIncidentEventResponse = (ProtectIncidentEventResponse) o;
+ return Objects.equals(this.protectEventId, protectIncidentEventResponse.protectEventId) &&
+ Objects.equals(this.linkSessionId, protectIncidentEventResponse.linkSessionId) &&
+ Objects.equals(this.idvSessionId, protectIncidentEventResponse.idvSessionId) &&
+ Objects.equals(this.signalClientTransactionId, protectIncidentEventResponse.signalClientTransactionId) &&
+ Objects.equals(this.internalReference, protectIncidentEventResponse.internalReference) &&
+ Objects.equals(this.time, protectIncidentEventResponse.time) &&
+ Objects.equals(this.amount, protectIncidentEventResponse.amount) &&
+ Objects.equals(this.itemId, protectIncidentEventResponse.itemId);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(protectEventId, linkSessionId, idvSessionId, signalClientTransactionId, internalReference, time, amount, itemId);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class ProtectIncidentEventResponse {\n");
+ sb.append(" protectEventId: ").append(toIndentedString(protectEventId)).append("\n");
+ sb.append(" linkSessionId: ").append(toIndentedString(linkSessionId)).append("\n");
+ sb.append(" idvSessionId: ").append(toIndentedString(idvSessionId)).append("\n");
+ sb.append(" signalClientTransactionId: ").append(toIndentedString(signalClientTransactionId)).append("\n");
+ sb.append(" internalReference: ").append(toIndentedString(internalReference)).append("\n");
+ sb.append(" time: ").append(toIndentedString(time)).append("\n");
+ sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
+ sb.append(" itemId: ").append(toIndentedString(itemId)).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/ProtectReport.java b/src/main/java/com/plaid/client/model/ProtectReport.java
new file mode 100644
index 000000000..a26dee437
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/ProtectReport.java
@@ -0,0 +1,332 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+
+package com.plaid.client.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import com.google.gson.TypeAdapter;
+import com.google.gson.annotations.JsonAdapter;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.stream.JsonReader;
+import com.google.gson.stream.JsonWriter;
+import com.plaid.client.model.ProtectBankAccount;
+import com.plaid.client.model.ProtectIncidentEventResponse;
+import com.plaid.client.model.ProtectReportConfidence;
+import com.plaid.client.model.ProtectReportSource;
+import com.plaid.client.model.ProtectReportType;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+import java.time.OffsetDateTime;
+
+/**
+ * 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 = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
+public class ProtectReport {
+ public static final String SERIALIZED_NAME_REPORT_ID = "report_id";
+ @SerializedName(SERIALIZED_NAME_REPORT_ID)
+ private String reportId;
+
+ public static final String SERIALIZED_NAME_INCIDENT_EVENT = "incident_event";
+ @SerializedName(SERIALIZED_NAME_INCIDENT_EVENT)
+ private ProtectIncidentEventResponse incidentEvent;
+
+ public static final String SERIALIZED_NAME_REPORT_CONFIDENCE = "report_confidence";
+ @SerializedName(SERIALIZED_NAME_REPORT_CONFIDENCE)
+ private ProtectReportConfidence reportConfidence;
+
+ public static final String SERIALIZED_NAME_REPORT_TYPE = "report_type";
+ @SerializedName(SERIALIZED_NAME_REPORT_TYPE)
+ private ProtectReportType reportType;
+
+ public static final String SERIALIZED_NAME_REPORT_SOURCE = "report_source";
+ @SerializedName(SERIALIZED_NAME_REPORT_SOURCE)
+ private ProtectReportSource reportSource;
+
+ public static final String SERIALIZED_NAME_BANK_ACCOUNT = "bank_account";
+ @SerializedName(SERIALIZED_NAME_BANK_ACCOUNT)
+ private ProtectBankAccount bankAccount;
+
+ public static final String SERIALIZED_NAME_ACH_RETURN_CODE = "ach_return_code";
+ @SerializedName(SERIALIZED_NAME_ACH_RETURN_CODE)
+ private String achReturnCode;
+
+ public static final String SERIALIZED_NAME_NOTES = "notes";
+ @SerializedName(SERIALIZED_NAME_NOTES)
+ private String notes;
+
+ public static final String SERIALIZED_NAME_CREATED_AT = "created_at";
+ @SerializedName(SERIALIZED_NAME_CREATED_AT)
+ private OffsetDateTime createdAt;
+
+
+ public ProtectReport reportId(String reportId) {
+
+ this.reportId = reportId;
+ return this;
+ }
+
+ /**
+ * A unique identifier representing the submitted report.
+ * @return reportId
+ **/
+ @ApiModelProperty(required = true, value = "A unique identifier representing the submitted report.")
+
+ public String getReportId() {
+ return reportId;
+ }
+
+
+ public void setReportId(String reportId) {
+ this.reportId = reportId;
+ }
+
+
+ public ProtectReport incidentEvent(ProtectIncidentEventResponse incidentEvent) {
+
+ this.incidentEvent = incidentEvent;
+ return this;
+ }
+
+ /**
+ * Get incidentEvent
+ * @return incidentEvent
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(required = true, value = "")
+
+ public ProtectIncidentEventResponse getIncidentEvent() {
+ return incidentEvent;
+ }
+
+
+ public void setIncidentEvent(ProtectIncidentEventResponse incidentEvent) {
+ this.incidentEvent = incidentEvent;
+ }
+
+
+ public ProtectReport reportConfidence(ProtectReportConfidence reportConfidence) {
+
+ this.reportConfidence = reportConfidence;
+ return this;
+ }
+
+ /**
+ * Get reportConfidence
+ * @return reportConfidence
+ **/
+ @ApiModelProperty(required = true, value = "")
+
+ public ProtectReportConfidence getReportConfidence() {
+ return reportConfidence;
+ }
+
+
+ public void setReportConfidence(ProtectReportConfidence reportConfidence) {
+ this.reportConfidence = reportConfidence;
+ }
+
+
+ public ProtectReport reportType(ProtectReportType reportType) {
+
+ this.reportType = reportType;
+ return this;
+ }
+
+ /**
+ * Get reportType
+ * @return reportType
+ **/
+ @ApiModelProperty(required = true, value = "")
+
+ public ProtectReportType getReportType() {
+ return reportType;
+ }
+
+
+ public void setReportType(ProtectReportType reportType) {
+ this.reportType = reportType;
+ }
+
+
+ public ProtectReport reportSource(ProtectReportSource reportSource) {
+
+ this.reportSource = reportSource;
+ return this;
+ }
+
+ /**
+ * Get reportSource
+ * @return reportSource
+ **/
+ @ApiModelProperty(required = true, value = "")
+
+ public ProtectReportSource getReportSource() {
+ return reportSource;
+ }
+
+
+ public void setReportSource(ProtectReportSource reportSource) {
+ this.reportSource = reportSource;
+ }
+
+
+ public ProtectReport bankAccount(ProtectBankAccount bankAccount) {
+
+ this.bankAccount = bankAccount;
+ return this;
+ }
+
+ /**
+ * Get bankAccount
+ * @return bankAccount
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(required = true, value = "")
+
+ public ProtectBankAccount getBankAccount() {
+ return bankAccount;
+ }
+
+
+ public void setBankAccount(ProtectBankAccount bankAccount) {
+ this.bankAccount = bankAccount;
+ }
+
+
+ public ProtectReport achReturnCode(String achReturnCode) {
+
+ this.achReturnCode = achReturnCode;
+ return this;
+ }
+
+ /**
+ * ACH return code if the report type is `ACH_RETURN` (e.g. `R01`).
+ * @return achReturnCode
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(required = true, value = "ACH return code if the report type is `ACH_RETURN` (e.g. `R01`).")
+
+ public String getAchReturnCode() {
+ return achReturnCode;
+ }
+
+
+ public void setAchReturnCode(String achReturnCode) {
+ this.achReturnCode = achReturnCode;
+ }
+
+
+ public ProtectReport notes(String notes) {
+
+ this.notes = notes;
+ return this;
+ }
+
+ /**
+ * Additional context or details about the report.
+ * @return notes
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(required = true, value = "Additional context or details about the report.")
+
+ public String getNotes() {
+ return notes;
+ }
+
+
+ public void setNotes(String notes) {
+ this.notes = notes;
+ }
+
+
+ public ProtectReport createdAt(OffsetDateTime createdAt) {
+
+ this.createdAt = createdAt;
+ return this;
+ }
+
+ /**
+ * The timestamp when the report was created, in ISO 8601 format (e.g., '2020-07-24T03:26:02Z').
+ * @return createdAt
+ **/
+ @ApiModelProperty(required = true, value = "The timestamp when the report was created, in ISO 8601 format (e.g., '2020-07-24T03:26:02Z').")
+
+ public OffsetDateTime getCreatedAt() {
+ return createdAt;
+ }
+
+
+ public void setCreatedAt(OffsetDateTime createdAt) {
+ this.createdAt = createdAt;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ ProtectReport protectReport = (ProtectReport) o;
+ return Objects.equals(this.reportId, protectReport.reportId) &&
+ Objects.equals(this.incidentEvent, protectReport.incidentEvent) &&
+ Objects.equals(this.reportConfidence, protectReport.reportConfidence) &&
+ Objects.equals(this.reportType, protectReport.reportType) &&
+ Objects.equals(this.reportSource, protectReport.reportSource) &&
+ Objects.equals(this.bankAccount, protectReport.bankAccount) &&
+ Objects.equals(this.achReturnCode, protectReport.achReturnCode) &&
+ Objects.equals(this.notes, protectReport.notes) &&
+ Objects.equals(this.createdAt, protectReport.createdAt);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(reportId, incidentEvent, reportConfidence, reportType, reportSource, bankAccount, achReturnCode, notes, createdAt);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class ProtectReport {\n");
+ sb.append(" reportId: ").append(toIndentedString(reportId)).append("\n");
+ sb.append(" incidentEvent: ").append(toIndentedString(incidentEvent)).append("\n");
+ sb.append(" reportConfidence: ").append(toIndentedString(reportConfidence)).append("\n");
+ sb.append(" reportType: ").append(toIndentedString(reportType)).append("\n");
+ sb.append(" reportSource: ").append(toIndentedString(reportSource)).append("\n");
+ sb.append(" bankAccount: ").append(toIndentedString(bankAccount)).append("\n");
+ sb.append(" achReturnCode: ").append(toIndentedString(achReturnCode)).append("\n");
+ sb.append(" notes: ").append(toIndentedString(notes)).append("\n");
+ sb.append(" createdAt: ").append(toIndentedString(createdAt)).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/ProtectReportConfidence.java b/src/main/java/com/plaid/client/model/ProtectReportConfidence.java
index cbe14c9be..b63f264ec 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 e84be469d..67b8f384b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0def0e112..bdcb7a669 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 356c8805e..67854732d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 d68ef0499..44c487642 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/ProtectUserEventWebhook.java b/src/main/java/com/plaid/client/model/ProtectUserEventWebhook.java
index ff2ce0406..c9f7b22cd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4517ee519..8b798205c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0387f3b8a..b6ad59419 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -21,15 +21,18 @@
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.LatestScoredEvent;
+import com.plaid.client.model.ProtectReport;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
+import java.util.ArrayList;
+import java.util.List;
/**
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class ProtectUserInsightsGetResponse {
public static final String SERIALIZED_NAME_USER_ID = "user_id";
@SerializedName(SERIALIZED_NAME_USER_ID)
@@ -39,6 +42,10 @@ public class ProtectUserInsightsGetResponse {
@SerializedName(SERIALIZED_NAME_LATEST_SCORED_EVENT)
private LatestScoredEvent latestScoredEvent;
+ public static final String SERIALIZED_NAME_REPORTS = "reports";
+ @SerializedName(SERIALIZED_NAME_REPORTS)
+ private List reports = null;
+
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
@@ -89,6 +96,37 @@ public void setLatestScoredEvent(LatestScoredEvent latestScoredEvent) {
}
+ public ProtectUserInsightsGetResponse reports(List reports) {
+
+ this.reports = reports;
+ return this;
+ }
+
+ public ProtectUserInsightsGetResponse addReportsItem(ProtectReport reportsItem) {
+ if (this.reports == null) {
+ this.reports = new ArrayList<>();
+ }
+ this.reports.add(reportsItem);
+ return this;
+ }
+
+ /**
+ * List of Protect reports associated with this user, limited to the most recent 100 reports in reverse chronological order (newest first).
+ * @return reports
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "List of Protect reports associated with this user, limited to the most recent 100 reports in reverse chronological order (newest first).")
+
+ public List getReports() {
+ return reports;
+ }
+
+
+ public void setReports(List reports) {
+ this.reports = reports;
+ }
+
+
public ProtectUserInsightsGetResponse requestId(String requestId) {
this.requestId = requestId;
@@ -122,12 +160,13 @@ public boolean equals(Object o) {
ProtectUserInsightsGetResponse protectUserInsightsGetResponse = (ProtectUserInsightsGetResponse) o;
return Objects.equals(this.userId, protectUserInsightsGetResponse.userId) &&
Objects.equals(this.latestScoredEvent, protectUserInsightsGetResponse.latestScoredEvent) &&
+ Objects.equals(this.reports, protectUserInsightsGetResponse.reports) &&
Objects.equals(this.requestId, protectUserInsightsGetResponse.requestId);
}
@Override
public int hashCode() {
- return Objects.hash(userId, latestScoredEvent, requestId);
+ return Objects.hash(userId, latestScoredEvent, reports, requestId);
}
@Override
@@ -136,6 +175,7 @@ public String toString() {
sb.append("class ProtectUserInsightsGetResponse {\n");
sb.append(" userId: ").append(toIndentedString(userId)).append("\n");
sb.append(" latestScoredEvent: ").append(toIndentedString(latestScoredEvent)).append("\n");
+ sb.append(" reports: ").append(toIndentedString(reports)).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/ProxyType.java b/src/main/java/com/plaid/client/model/ProxyType.java
index 4be84ac0b..59a19fc4c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 6503c7e85..f7f571cbd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 3d32ab600..5a4b103b8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 655f3e75f..39b131178 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ed1397d6b..ff3cab051 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d691b6678..dd8769226 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 2e2f1f56f..2bfb330e9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4301ab9ca..b94aec9cc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 720fadf4c..611fe63e4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 d2b78a5b4..93b2efb2e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a6d2740bc..265c5a8c2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4dbedb093..d12e93567 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 e89183ff8..cbcf4a885 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 912f56ef7..36c6f88e2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 92253c5bc..148362826 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9838460e8..5b84fdfba 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 54e16a622..c83541523 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 140d3b023..1cde20c96 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 90116e9bf..76e95d05b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c3ffd2974..86faa73f3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 c6d6231c3..bc1e5d267 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/RiskCheckBehavior.java b/src/main/java/com/plaid/client/model/RiskCheckBehavior.java
index c89586cf7..7a8ec11c8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 771c69d0c..187459ec6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 5faf38615..afb5a140d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 192a71506..5d76133a4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 b488feb89..7e839cf2c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6d2178f12..2740e4103 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 494bbf643..4bc33b37d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5e05b2f3c..2e7f6a6a9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 dec18c3a5..f0c071fe6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 018984ada..acead4fc8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 07508af6d..d446b4c3e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 8a22c55be..ad5972570 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/RiskCheckIdentityAbuseSignals.java b/src/main/java/com/plaid/client/model/RiskCheckIdentityAbuseSignals.java
index 3f4e21162..0f937111b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5d4dd25b6..a3dd36f3b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 2c0c7409c..390efe7c2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9aa002df8..ff29f39ee 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8d9b9c07d..94c7ca227 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b5fd1789d..04b0f6272 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7618e64f5..c4623bfda 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4b6c35ff0..c92f5a550 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 32d5c9c61..87bedd175 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 11686cc31..616f2d48e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8486dfe31..fe0af01a5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7b08fb8cc..27938285d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3faa5b36f..c7a008632 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 70acc7527..92f7a9342 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 d26cab5ab..9a4ab6121 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 5fbf3ae57..bff01723a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 53b0e4157..c64aa200e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 201141d53..ac2d28dda 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3ac755970..cefebd18a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c23bdb26c..07998ccc0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 3fe5efaf6..b89708f86 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a491b4541..4521e7b6e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4ed54e780..3fdb74a99 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 6a89400c5..4357235ba 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 dec0e3130..e72dc724c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 09af80686..ecfeb3d6a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 c9cc22359..e181ae8d6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5404a8f47..72edf74d5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b8a08564b..6ad8a504c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 25871b794..2c50709e2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 db63e8c2f..0d51fdcdf 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f8fb895ab..8e91aa327 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6e3cc2495..2b40fd5e1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 900ce9a16..89d720cd8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3ad6bb898..339c491c0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0fab2d1b4..6947876e4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 8ef5edb88..855ebd67a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3d729fcea..f3b1f4779 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1f22a04e3..ea2a83922 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 65d1b33a5..25b33001f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 092fa0a6a..e69ff1be8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 473fa5e7f..376bf9974 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4e89d5e9d..a719d69aa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 913059462..2d6f4a945 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5bb88abce..e8283b8e3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d346f7c1b..95ec218e7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 19af42853..18c31a8d1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 69e8ba080..52aa5536a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 280ffe8ba..c80aee13b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 256ad0b67..fe2a09f24 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4c56c9f1c..c2624145b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f58b111f8..fde6ce34a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f0317bd23..8c968dba2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 028160f41..fb9f7c8a8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 eac36a7e6..bdffce56f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 244e291f8..f1171a8dc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4572a56b9..79ff880f5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 325600e20..ad82c842c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5e0bcdec1..a9a0e7964 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5591527e4..971f7fb4b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 66a5df44b..6f7381320 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2690d4385..0a61a907c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ced222be8..a79bc3561 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6691fd4fc..97e20f93c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6f9fbc85b..b732a54c3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d241dc600..68b0c9da3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4b2f89830..54d73a6b7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ca4ab430d..9a063723a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 952646122..97e62a0b2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 34bf78d83..eb9065b1c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2ef90b3ed..b56642bbe 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/SandboxTransferSimulateRequest.java b/src/main/java/com/plaid/client/model/SandboxTransferSimulateRequest.java
index e8f4175de..f841cbb79 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7cf26ca72..f6f658876 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8b8f167e0..3d7182db8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f92f66017..e7e8463e3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 674bc424b..81fff272b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8d5f3891c..37a769de9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9dbcdd539..d9d8e4ab2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c3d9242da..12407fabf 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 494fb301c..9ba174147 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 00adf4ee2..8348f21d7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8337abc0c..07838f248 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f68563e1a..96288a356 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 dcc3d4055..b8e6a06f2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f9fff54e0..a5aa61db8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 545b4d9b3..01c6d32e4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a068fdc5a..e7ddedd9c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 228693b43..f52414585 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 46a020660..06bbc6919 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 49cb9e568..22c151107 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a389106a9..f3f9eb0c5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 09b89459b..f9e734412 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0364c0d18..b0b05761f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9acc89d2e..6845c9b7a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 25df403af..bb9f8ddd3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 12e8a4d81..249c0ff60 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 32641f521..2a4ff6aa9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 061b37774..3290bf06c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 5938d1f32..b80bef70c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7e93528f2..ca39db975 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 aa85838cb..a149189fd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 57d8c7d54..44899843e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 73c25a04f..c167c2f7d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 006a2e741..dfca0e9b0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a2baccb43..653f97c23 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 ad9f912e3..767b98270 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 a0793e95e..9f6bc238a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e1c99e9f8..aab0e4d2e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7a3631535..8ff0d1c69 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0b7c2006d..a70d3482d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d3ce052d4..97e04c016 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 96b2bcef5..24ad1e72c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9218e78d1..2f8ffce7f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c5815877f..149c6c468 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9199f4035..c273b39c7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* SessionTokenCreateRequestUser defines per-session user-specific data for `/session/token/create`. **Required** if the root-level `user_id` field isn't included.
*/
@ApiModel(description = "SessionTokenCreateRequestUser defines per-session user-specific data for `/session/token/create`. **Required** if the root-level `user_id` field isn't included.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 55dd013ee..540d146d7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b41279829..bd03fa1d0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 046a57ff7..5220709b4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7717828ec..f38ad3b8f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 1967b6965..dcafc80f8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f0a7112cb..93ed22b6a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4fb274f47..54e4a62ca 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 881406484..354e0121e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 858b31053..ddfe6d171 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class SignalEvaluateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
@@ -230,11 +230,11 @@ public SignalEvaluateRequest userPresent(Boolean userPresent) {
}
/**
- * `true` if the end user is present while initiating the ACH transfer and the endpoint is being called; `false` otherwise (for example, when the ACH transfer is scheduled and the end user is not present, or you call this endpoint after the ACH transfer but before submitting the Nacha file for ACH processing). When using a Balance-only ruleset, this field is ignored.
+ * `true` if the end user is present while initiating the ACH transfer and the endpoint is being called; `false` otherwise (for example, when the ACH transfer is scheduled and the end user is not present, or you call this endpoint after the ACH transfer but before submitting the Nacha file for ACH processing). When using a Balance-only ruleset, this field is ignored. This field is not currently used as part of Signal Transaction Score evaluations, but may be used in the future.
* @return userPresent
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "`true` if the end user is present while initiating the ACH transfer and the endpoint is being called; `false` otherwise (for example, when the ACH transfer is scheduled and the end user is not present, or you call this endpoint after the ACH transfer but before submitting the Nacha file for ACH processing). When using a Balance-only ruleset, this field is ignored.")
+ @ApiModelProperty(value = "`true` if the end user is present while initiating the ACH transfer and the endpoint is being called; `false` otherwise (for example, when the ACH transfer is scheduled and the end user is not present, or you call this endpoint after the ACH transfer but before submitting the Nacha file for ACH processing). When using a Balance-only ruleset, this field is ignored. This field is not currently used as part of Signal Transaction Score evaluations, but may be used in the future.")
public Boolean getUserPresent() {
return userPresent;
diff --git a/src/main/java/com/plaid/client/model/SignalEvaluateResponse.java b/src/main/java/com/plaid/client/model/SignalEvaluateResponse.java
index cc63e6581..6a28cd486 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ebe4f3679..35d9715fc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 336ba3b5d..b1e80c6ac 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2d4abe8ef..8222c3ec2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 44da7b473..13d9ae449 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 404c143b1..f7451431f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7a1886abc..1f9c9f962 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bb2eac2af..d9dec33c8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 13c222f50..217231af5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2cae30948..3df1e3515 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c33767331..43791c3e8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 68c18d4b6..ec5d051b9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 25fd3de4a..2acd352ae 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ff5753fe1..85ac55fca 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5d7edb9e5..9b5b4c01f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c8f08aa42..d68e89e94 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 aef2169c1..6f3404928 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 c89cc9bb7..88db1cd7d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1ae4d9c02..8cd7bce32 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3cdba86c6..80febe406 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e13c277c8..71d3230d0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 92e4e5eef..2695e9d8f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 65212e62f..065604278 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9fa2eb5e8..d48c3093e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0a1198130..1806a84a9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 a8f7d346d..f5bac6a58 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d10b0b6e5..2eb86715a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 deb220429..2d17c770c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4dd133848..8ed341864 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 95e1f99fe..42301fbd5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c60b7fed2..19ed742f7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e1944bd57..e7165b068 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 7a6fcd9ab..76e349451 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 933160eac..2c01661e7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 56b3f0256..3f5c6ecec 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f4b27a295..465bc9207 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6e2f503ac..16a31125f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f7ecd24ac..ed08b2507 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 4658b71fb..cc438cd93 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 fb3e02b11..7f3b31d8a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b71d0b8c4..a98964cc8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ed282e2bd..76b870cc4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cafe93566..a83715547 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 941fbc284..d720b5ecc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8a5245fbf..be8bc0585 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 8143e2292..7380ea588 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6bef070ae..84d00060b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fd1520296..5704fee9d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 092f43e35..2d2ef13c8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a2ccdb68a..da2f6e543 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2765fb544..1a38f402b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 478fc327c..fb54a6dcb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1068303be..c59ae09f5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3dfdf438f..039f83374 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 648396bde..6774479da 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d84e7dadf..89d11c529 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bfad15e30..2888cdb2e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cb6fa5e0d..15977fbda 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 49e0bf9bb..461457799 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 902de4c4b..485d58c1a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3cd6083d6..ae1d926db 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fca11fa8f..1f3267878 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d54886f38..3807c5a1a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9f73a963f..af58d5429 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 abcd78600..1d4e739b6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3cc628b0b..ad2708088 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 67714aa92..2405842f8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 16002f618..ea1a296d5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5186ec1f3..cd5f5e835 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 4f4f584f9..d93be6f5f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5d8906f66..f88bc5a3e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1fae48d1f..8cf360360 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b06feae4f..a9ca2042c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 05f12059d..714124716 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c4b16aada..e6f672ef2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 e5885904c..94f544783 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class TransactionsCategoryRule {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
diff --git a/src/main/java/com/plaid/client/model/TransactionsEnhanceGetRequest.java b/src/main/java/com/plaid/client/model/TransactionsEnhanceGetRequest.java
index 082e2d0cd..9ba9dc9a3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 48f8b9763..a5664a974 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bb4af47ea..92ccd68a5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a562f74ee..0ad09f6fe 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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.
*/
@ApiModel(description = "An optional object to be used with the request.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 67e81debe..aaa09dd13 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7e640d2c2..74de031f4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ef5d6b3c8..acf33be8f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1ad81fea1..0be777ba0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ca091df1e..d6c06a374 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2ded39109..dd45fac59 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ae4b32a78..05c695170 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 dd04655c6..f923cd51e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0d13e731d..0d4a09f7c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ab165a630..372a4269c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f9dcf8e18..7c93f2bf1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a0e8808ef..08a6232b9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 81538a792..aa6aa86ed 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0f1e3abd8..ad48f763a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1b87df89b..94a1991ed 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d471825ed..cedfd0f2f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 876799912..9f2433387 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5ab7f7f56..6d8be7079 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ac43a4cd6..512341884 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 817f8d308..25695d296 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ce012be54..b05bc923c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/TransactionsRuleType.java b/src/main/java/com/plaid/client/model/TransactionsRuleType.java
index 4c7467665..728eb232f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 270ae881d..bd8b38d87 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class TransactionsRulesCreateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
diff --git a/src/main/java/com/plaid/client/model/TransactionsRulesCreateResponse.java b/src/main/java/com/plaid/client/model/TransactionsRulesCreateResponse.java
index 480c834da..bb71492e8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 599cb9984..4a20f9dd6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class TransactionsRulesListRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
diff --git a/src/main/java/com/plaid/client/model/TransactionsRulesListResponse.java b/src/main/java/com/plaid/client/model/TransactionsRulesListResponse.java
index ca792c4bb..f3da8cc23 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class TransactionsRulesListResponse {
public static final String SERIALIZED_NAME_RULES = "rules";
@SerializedName(SERIALIZED_NAME_RULES)
diff --git a/src/main/java/com/plaid/client/model/TransactionsRulesRemoveRequest.java b/src/main/java/com/plaid/client/model/TransactionsRulesRemoveRequest.java
index 0aa419659..aefc1169a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class TransactionsRulesRemoveRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
diff --git a/src/main/java/com/plaid/client/model/TransactionsRulesRemoveResponse.java b/src/main/java/com/plaid/client/model/TransactionsRulesRemoveResponse.java
index 4c601eabf..79cc0081e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8baf6cbeb..63e46c2e2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0f19ebb56..9b6b9445e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 08f88c47c..36379e2f6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 97c500564..fb1f493c2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 423df6867..0cb28eb79 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c73a17cc6..301a6258a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0766dfebf..6f4092729 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0e38dedeb..9fc2035bf 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 9a73f409a..4c7624770 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b7f899d05..a0ccab4c1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 794f59fed..f6f33e1fe 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 16d9f7bb9..0f464e74f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 00bb39dd9..925c97547 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 44a349e71..e61b938e1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/TransferAuthorizationDecisionRationale.java b/src/main/java/com/plaid/client/model/TransferAuthorizationDecisionRationale.java
index 035ef7804..89a9867d2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 786f7cf2d..f5e5aa639 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 c8bb832f0..ca063c8de 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ed5be4cc6..e34734642 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 a0cbdb0ef..a4877c112 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d99960aa7..1a0a1583b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 89dfe363d..d59b5122f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d4c2806ee..ad3c17136 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d03cd5ee5..a894aec1f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 1d92f2850..425fadb54 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d62fdc534..56ba73dac 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6059e587c..920c7b842 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 12620c5e6..e99d377c1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b3920d5bb..7fe34648f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 025c4253d..4d1293f3f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 00a6b9ae1..333cde260 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 45857a060..922c44413 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 95ccc6e03..b8634d1ff 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 28fb43837..dd75e65b8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 95132d90e..ee8542be0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f283c6eb6..fce5b10e1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f14615cdf..68b6f1987 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5a1c9f325..0f08205f7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5ec4d68c9..58d14ee13 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bc9daa0d2..31ffd4a75 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 41bd2cbc2..9dc1e4b02 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e3b265692..ed38f286b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 af92f0e26..8c6f02ffa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3f8fbdf9d..45c408478 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 980dba622..41dc1a1f7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a29c84533..66421734e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 760f93acb..71bd595a1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 25b8991ef..883522b30 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6b3d9adac..4a7ed2095 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 dc43b4af5..c50ad9f96 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 00dde4291..38f3e0f74 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 04be37e9b..8ec7a8ff2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e90a615c2..e96b2047a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 9d2b19a23..46a6dbd6d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ff56ca71d..496a338c2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9ea297e02..e7920a940 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 6551827db..517009bf6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 99abcb169..b1d2b5f56 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1177f9149..6cab5f30e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1e79ca0cd..f787a4b9f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 255e66e22..083567e0f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f6b33dbb2..889f93a4f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ac67cd6b2..c88af9eff 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 dbf56b270..8dc90763e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ffc722cfc..07a81d890 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 b3fe7a412..985488a08 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e54740fc2..d74d2fe1e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 7e938c3b6..4915cb08a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 82eb8eb5f..d978082db 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 28c8f0743..7cf515d99 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2f8a09abe..27559af35 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bf5fd5c00..f09fc90c1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fb583e0b8..ec785e7ed 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 46d9df558..f49f632bd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6855b3156..a8ce2176b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 c759d39f4..2b56991cb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f7a142649..005b0cf4e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 54af2e146..8c44c7c40 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 635c7123b..38026dd0f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 313e83ae8..63a835893 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 487888c1d..5ff1bfa41 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 981ecd65d..515366acd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b61c035ea..296067a67 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 40be52079..1df79cc27 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 85d6f3864..cda4d163a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 28a3c490f..2488d9725 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 437eba060..347a280b1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 059576d2f..e9738c1d4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 dbad903c3..aa365ad5a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2dbc1d0ab..cd7d104e5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8a3e14f20..331ea144d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2d954a5fe..17cd4f3aa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e550929b1..a4f3e5e95 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3d8148ebf..858a86927 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 242c5a7c3..b239a5197 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 28904442c..1a0fee08a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a0eb79293..7833dc0f9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8b04ea367..1c2b612e0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 19b1cb50c..e6a79ae34 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 41f94ab79..59fe20eea 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 70ce9a737..283b313f4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a2cb03be3..ec914b7d2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5a899052b..b80d3323a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b7f761f9a..520a42317 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7cae9bbec..7345f6a72 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 95dc3c617..4accefa11 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2dfb92ae3..c0797a58e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b7370947c..a0860aa96 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b28638b13..61b0c58a7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6ad9a0a85..c14c17722 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7ac870306..d0dddc041 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c7503a6a8..fa9b9eb04 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 620aeb731..d8df59fac 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6a1142c75..d37281a48 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a57318f65..8a76dfdc0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e1b2b0967..ca6e7dc16 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4bb249878..655566075 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 10fef8046..70d6a569a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 62165d0e8..be0ef371d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8cc98ac63..e60039af9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class TransferPlatformRequirementSubmission {
public static final String SERIALIZED_NAME_REQUIREMENT_TYPE = "requirement_type";
@SerializedName(SERIALIZED_NAME_REQUIREMENT_TYPE)
@@ -51,10 +51,10 @@ public TransferPlatformRequirementSubmission requirementType(String requirementT
}
/**
- * The type of requirement being submitted
+ * The type of requirement being submitted. See [Requirement type schema documentation](https://docs.google.com/document/d/1NEQkTD0sVK50iAQi6xHigrexDUxZ4QxXqSEfV_FFTiU/) for a list of requirement types and possible values.
* @return requirementType
**/
- @ApiModelProperty(required = true, value = "The type of requirement being submitted")
+ @ApiModelProperty(required = true, value = "The type of requirement being submitted. See [Requirement type schema documentation](https://docs.google.com/document/d/1NEQkTD0sVK50iAQi6xHigrexDUxZ4QxXqSEfV_FFTiU/) for a list of requirement types and possible values.")
public String getRequirementType() {
return requirementType;
@@ -73,10 +73,10 @@ public TransferPlatformRequirementSubmission value(String value) {
}
/**
- * The value of the requirement, which can be a string or an object depending on the `requirement_type`. If it is an object, the object should be JSON marshaled into a string. See the documentation on this endpoint for more information and examples.
+ * The value of the requirement, which can be a string or an object depending on the `requirement_type`. If it is an object, the object should be JSON marshaled into a string. See [Requirement type schema documentation](https://docs.google.com/document/d/1NEQkTD0sVK50iAQi6xHigrexDUxZ4QxXqSEfV_FFTiU/) for a list of requirement types and possible values.
* @return value
**/
- @ApiModelProperty(required = true, value = "The value of the requirement, which can be a string or an object depending on the `requirement_type`. If it is an object, the object should be JSON marshaled into a string. See the documentation on this endpoint for more information and examples.")
+ @ApiModelProperty(required = true, value = "The value of the requirement, which can be a string or an object depending on the `requirement_type`. If it is an object, the object should be JSON marshaled into a string. See [Requirement type schema documentation](https://docs.google.com/document/d/1NEQkTD0sVK50iAQi6xHigrexDUxZ4QxXqSEfV_FFTiU/) for a list of requirement types and possible values.")
public String getValue() {
return value;
diff --git a/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmitRequest.java b/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmitRequest.java
index 9543058e0..9105c7211 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class TransferPlatformRequirementSubmitRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
@@ -130,10 +130,10 @@ public TransferPlatformRequirementSubmitRequest addRequirementSubmissionsItem(Tr
}
/**
- * Use the `/transfer/platform/requirement/submit` endpoint to submit a list of requirement submissions that all relate to the originator. Must contain between 1 and 50 requirement submissions.
+ * Use the `/transfer/platform/requirement/submit` endpoint to submit a list of requirement submissions that all relate to the originator. Must contain between 1 and 50 requirement submissions. See [Requirement type schema documentation](https://docs.google.com/document/d/1NEQkTD0sVK50iAQi6xHigrexDUxZ4QxXqSEfV_FFTiU/) for a list of requirements and possible values.
* @return requirementSubmissions
**/
- @ApiModelProperty(required = true, value = "Use the `/transfer/platform/requirement/submit` endpoint to submit a list of requirement submissions that all relate to the originator. Must contain between 1 and 50 requirement submissions.")
+ @ApiModelProperty(required = true, value = "Use the `/transfer/platform/requirement/submit` endpoint to submit a list of requirement submissions that all relate to the originator. Must contain between 1 and 50 requirement submissions. See [Requirement type schema documentation](https://docs.google.com/document/d/1NEQkTD0sVK50iAQi6xHigrexDUxZ4QxXqSEfV_FFTiU/) for a list of requirements and possible values.")
public List getRequirementSubmissions() {
return requirementSubmissions;
diff --git a/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmitResponse.java b/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmitResponse.java
index 52a3423ac..7e5413258 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 599046945..bc6415127 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 afc4dad70..a3244ae43 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 062b705dc..d36086707 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5505eaec6..b04c668c4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 da2203004..483e47a20 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 066b50f2d..6f3d7fb1f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a242f6945..35d0c7ae5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e9d2131cc..e0e434c60 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d584523ed..5d884e7e9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e526fed27..4012bbdde 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 58284fd61..027ed8a49 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b0306dad8..2d81649b6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 370324bb6..eedac1b52 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d37c439d7..39fed6d07 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 da7cafd37..2fc802b52 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d569e4d12..c70787073 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 498bb8864..0136194c0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 38b33ea9d..eb511ed56 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a82984c4e..02d08906f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 46b948831..1f1c238f6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 98fb43391..02c0d6ee3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ba7d20666..3021e6499 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a38294dbe..488310e6d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 bcffd583e..0c11b25f4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 748fd07e7..d3153cb30 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e4adc8cab..ddb97f7a6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e3ecd4871..f5f9148b5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c63cbdcf7..fe2cea46e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b87beefa2..9e3d81966 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 923823305..ea0f965ce 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 12f5839e1..69b5138ad 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 84685a6f4..0affd1de0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 bc0f1499b..a9f6caa50 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3eef92a28..398aedc86 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 57ba04472..59a0ba410 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ce081cc0d..ad63ff1e2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 38ce7d271..a77395fe2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 1f27dc92d..f08d6345e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1160966e5..0c0243b1e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 aa8a4fce5..2f54fea46 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e616a482f..77a9ad607 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f18c0207a..4aaaa5833 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7102163df..3f979030d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d7cdeff2e..1532888da 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 706a14217..97ab7cfd5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 42ce9b444..88c64631a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9cdc06cf3..a373981d3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6ad271097..e3f6e9b5d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a9697ecf2..dfc31bc28 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9ddeefd51..ce0313573 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ccb371d5f..d9860c007 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 39cbc8458..ee0801fb4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1254157cb..b69baccfa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/UserAccountIdentityName.java b/src/main/java/com/plaid/client/model/UserAccountIdentityName.java
index d3af3434a..d8a2d4ed0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/UserAccountItem.java b/src/main/java/com/plaid/client/model/UserAccountItem.java
index f7ac9d738..ba59593c5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d39b4f2d4..3f48e5408 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/UserAccountSessionGetRequest.java b/src/main/java/com/plaid/client/model/UserAccountSessionGetRequest.java
index d8ed74a4e..2bdb84e9b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 691773740..cc8e42291 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a3178aecd..b777ddf17 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/UserCreateRequest.java b/src/main/java/com/plaid/client/model/UserCreateRequest.java
index cb5590559..eaa5f365f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class UserCreateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
@@ -56,6 +56,10 @@ public class UserCreateRequest {
@SerializedName(SERIALIZED_NAME_IDENTITY)
private ClientUserIdentity identity;
+ public static final String SERIALIZED_NAME_WITH_UPGRADED_USER = "with_upgraded_user";
+ @SerializedName(SERIALIZED_NAME_WITH_UPGRADED_USER)
+ private Boolean withUpgradedUser = false;
+
public UserCreateRequest clientId(String clientId) {
@@ -194,6 +198,29 @@ public void setIdentity(ClientUserIdentity identity) {
}
+ public UserCreateRequest withUpgradedUser(Boolean withUpgradedUser) {
+
+ this.withUpgradedUser = withUpgradedUser;
+ return this;
+ }
+
+ /**
+ * When `true`, a new user will be created and a `user_id` will be returned. Otherwise, a legacy user will be created and a `user_token` will be returned.
+ * @return withUpgradedUser
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "When `true`, a new user will be created and a `user_id` will be returned. Otherwise, a legacy user will be created and a `user_token` will be returned.")
+
+ public Boolean getWithUpgradedUser() {
+ return withUpgradedUser;
+ }
+
+
+ public void setWithUpgradedUser(Boolean withUpgradedUser) {
+ this.withUpgradedUser = withUpgradedUser;
+ }
+
+
@Override
public boolean equals(Object o) {
if (this == o) {
@@ -208,12 +235,13 @@ public boolean equals(Object o) {
Objects.equals(this.clientUserId, userCreateRequest.clientUserId) &&
Objects.equals(this.endCustomer, userCreateRequest.endCustomer) &&
Objects.equals(this.consumerReportUserIdentity, userCreateRequest.consumerReportUserIdentity) &&
- Objects.equals(this.identity, userCreateRequest.identity);
+ Objects.equals(this.identity, userCreateRequest.identity) &&
+ Objects.equals(this.withUpgradedUser, userCreateRequest.withUpgradedUser);
}
@Override
public int hashCode() {
- return Objects.hash(clientId, secret, clientUserId, endCustomer, consumerReportUserIdentity, identity);
+ return Objects.hash(clientId, secret, clientUserId, endCustomer, consumerReportUserIdentity, identity, withUpgradedUser);
}
@Override
@@ -226,6 +254,7 @@ public String toString() {
sb.append(" endCustomer: ").append(toIndentedString(endCustomer)).append("\n");
sb.append(" consumerReportUserIdentity: ").append(toIndentedString(consumerReportUserIdentity)).append("\n");
sb.append(" identity: ").append(toIndentedString(identity)).append("\n");
+ sb.append(" withUpgradedUser: ").append(toIndentedString(withUpgradedUser)).append("\n");
sb.append("}");
return sb.toString();
}
diff --git a/src/main/java/com/plaid/client/model/UserCreateResponse.java b/src/main/java/com/plaid/client/model/UserCreateResponse.java
index 073e8e2e2..4b1bb53bc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 621f25b7a..18ff003eb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 485466bc4..898f07130 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4fc276eca..204c04961 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 664230541..09211cffa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 04290972d..98a2e9dab 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1e924236d..99f3f951d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 180fafacb..1065aa68d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/UserItemsAssociateRequest.java b/src/main/java/com/plaid/client/model/UserItemsAssociateRequest.java
index 223d98ac2..bf50d565e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6ba31aed0..7b008f1c4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cc16bc22a..745c87908 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a1af0e002..9cd02d49c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/UserItemsListRequest.java b/src/main/java/com/plaid/client/model/UserItemsListRequest.java
index 87d830ac9..51c0a2f87 100644
--- a/src/main/java/com/plaid/client/model/UserItemsListRequest.java
+++ b/src/main/java/com/plaid/client/model/UserItemsListRequest.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* UserItemsListRequest defines the request schema for `/user/items/list`
*/
@ApiModel(description = "UserItemsListRequest defines the request schema for `/user/items/list`")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class UserItemsListRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
diff --git a/src/main/java/com/plaid/client/model/UserItemsListResponse.java b/src/main/java/com/plaid/client/model/UserItemsListResponse.java
index afa83d1f3..02c37c051 100644
--- a/src/main/java/com/plaid/client/model/UserItemsListResponse.java
+++ b/src/main/java/com/plaid/client/model/UserItemsListResponse.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
* UserItemsListResponse defines the response schema for `/user/items/list`
*/
@ApiModel(description = "UserItemsListResponse defines the response schema for `/user/items/list`")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[Etc/UTC]")
public class UserItemsListResponse {
public static final String SERIALIZED_NAME_ITEMS = "items";
@SerializedName(SERIALIZED_NAME_ITEMS)
diff --git a/src/main/java/com/plaid/client/model/UserPermissionRevokedWebhook.java b/src/main/java/com/plaid/client/model/UserPermissionRevokedWebhook.java
index 1cd1b19ab..3a0a79c8f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/UserRemoveRequest.java b/src/main/java/com/plaid/client/model/UserRemoveRequest.java
index d259b92e8..fa271ae95 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 17380cfa6..5f75d2b55 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7c290c672..689112988 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 a01645e74..16af3fa2a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 2ec765ed9..dffb25237 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 9a97c22f3..42a23e661 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f14922624..822d780cd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 7ee671997..1ccc10cf7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 92a09b6a6..c14875448 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 964c98267..64890e617 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 adc564853..8b5242927 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 afbdcc3a5..fd8bf5681 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c51644a45..85cbea981 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a2da072ce..64c0dbeff 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fb6b428ea..f7ffd29a7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b5a08642d..0655f391c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 22839a2ce..ea7b2e86d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9a9247921..9e89e0298 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a552491ba..e54d5ab74 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 aba2ef19e..e3ab7ee1f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 12bce2e43..4effd4f35 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6138a186c..4c268d166 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 f71007566..e2b328059 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e23944d39..a1cfdd82c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0d99a58fd..b7740fb0f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 98e2726c0..769d3a99f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9bd4002ac..b00b5efb6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e2f5daaa7..d3b0516df 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2d4448a94..046998709 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8219de5f3..9c64fc76f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6fabaf62f..5eeeeab38 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ffb0f3af6..9cfc5421f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 38d2c3093..d1d3d71d3 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 98fc76c1f..b0edd73ce 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ae1ee6b9b..7cfa61a39 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 f5e87ce6b..470d5025b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1b59ee1f1..446f135fa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d0e04ff01..e872c5e36 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d704cf632..a3fe1b412 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 3dc0f0fdf..8da200746 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 254bc49ea..8465312a9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,7 @@
* The transaction details
*/
@ApiModel(description = "The transaction details")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 67b1844fb..a723e864c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8ae504839..883ce354c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3ff54c832..4772b3039 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c6494968b..58279aadd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 58d033430..164ba7f9a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 48fd8ad58..be2de02ea 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ac1f25697..151d36ac6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2437230bc..257dbe6b4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 d240322c9..6952ef1e6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f8233ccfd..81f0217ec 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -40,7 +40,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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 34d776bc1..daf6d29cc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 281631cb6..591e13a48 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 c6d89861f..ea6446f3d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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/WalletTransactionRelation.java b/src/main/java/com/plaid/client/model/WalletTransactionRelation.java
index a34d3b8fc..a37ba7987 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 159ab31ad..94a0aca7f 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 977d2a879..ad0de9b97 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5062f2c69..e92148da1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 633124a70..5b93ce684 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 8138b8326..6cf76c930 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 eca24756f..7f753678d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d98a4f4c3..b30d6c91d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 3e3eeba13..959e52c76 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f627ba494..f95460c21 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4e91fc5de..755e274dd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1f5338976..a37e8befd 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 efd6ddd86..329f42d40 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ff94b425f..b7952d6b6 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9449f9e66..6fc079471 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 18b69a602..a162983e7 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 94848e6d9..b52bf500a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 894a540d7..7811a4638 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4e62ac629..85c6b1c74 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9e457a252..f052b5b6a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5f3570753..071b74b50 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e05ccba0e..f7adf7145 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b9affd955..d5bd3b426 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a15c4bf7b..db352be7d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ee755a0af..d03182f35 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b5b6684c5..dc24f7fe9 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 1c98c69d7..e13e5262a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b469de0e4..8068da87e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 3eec3909e..182bcdc79 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 a3d8e989c..06692766d 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 5b4ffc7ef..73295950c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cf3616b7a..5b850d970 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 2d43f29d2..c0ac79f42 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 54390a655..6330bacf2 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f17351e02..5baea84c0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ad0aa9827..65ecaf0a8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 29915424c..e25c46b0e 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 e2d334080..64de2f0ee 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 9b8355c9d..537d87f05 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ef9e640ef..b104b0e43 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 2f3df91c4..963b84086 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 f74456775..e92e0b8a8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 815d3620a..7e6482f6a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6b2d90b3f..dd8a1221c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 62fd30b63..806ab9318 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 56474442a..cc5fbcabb 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 eda6ba108..96e13226b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 eaf84d141..a2cc172f8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 6ae7cd5ab..3035d5a24 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 fbee304d2..afc60e631 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 954f3d084..a3ffc0b58 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 d2da16581..a50b8872a 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 161c158ac..07dc0fa7c 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 a272fbecd..4f222c3e8 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 46719fada..5253e4ab4 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 4ebf5455f..51bd6a9fa 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3b4b9c664..5dc18a78b 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cd91cde62..c84594a88 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 e972941d0..e26c6b4a5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 385979b1c..ce0f722a1 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 74d5a9827..42700cee5 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 4db3117af..06d7536ed 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 ef20fcfd3..55d8499b0 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b3ac830f4..bd79714bc 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 3dd292d71..25a416398 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 0b53c5f71..07a4e0046 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 cb1e29e4e..96c08d171 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 = "2025-10-22T23:45:55.083997Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-05T10:30:35.648026Z[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 b10f38316..4be262711 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.670.0
+ * The version of the OpenAPI document: 2020-09-14_1.672.0
*
*
* 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 a1c85576f..7da7ef752 100644
--- a/src/main/java/com/plaid/client/request/PlaidApi.java
+++ b/src/main/java/com/plaid/client/request/PlaidApi.java
@@ -82,6 +82,8 @@
import com.plaid.client.model.BeaconUserReviewRequest;
import com.plaid.client.model.BeaconUserUpdateRequest;
import com.plaid.client.model.BeaconUserUpdateResponse;
+import com.plaid.client.model.BetaEwaReportV1GetRequest;
+import com.plaid.client.model.BetaEwaReportV1GetResponse;
import com.plaid.client.model.BetaPartnerCustomerV1CreateRequest;
import com.plaid.client.model.BetaPartnerCustomerV1CreateResponse;
import com.plaid.client.model.BetaPartnerCustomerV1EnableRequest;
@@ -1242,6 +1244,22 @@ Call beaconUserUpdate(
@retrofit2.http.Body BeaconUserUpdateRequest beaconUserUpdateRequest
);
+ /**
+ * Get EWA Score Report
+ * The `/beta/ewa_report/v1/get` endpoint provides an Earned Wage Access (EWA) score that quantifies the delinquency risk associated with a given item. The score is derived from a combination of cashflow patterns and network-based behavioral features. The response returns a list of EWA scores, where each score corresponds to a potential advance amount range. These scores estimate the likelihood of repayment for advances within that range. Score range: 1–99 Interpretation: Higher scores indicate a greater likelihood of repayment. This endpoint enables clients to assess repayment risk and make data-driven decisions when determining eligibility or limits for earned wage advances.
+ * @param betaEwaReportV1GetRequest (required)
+ * @return Call<BetaEwaReportV1GetResponse>
+ *
+ * @see Get EWA Score Report Documentation
+ */
+ @Headers({
+ "Content-Type:application/json"
+ })
+ @POST("beta/ewa_report/v1/get")
+ Call betaEwaReportV1Get(
+ @retrofit2.http.Body BetaEwaReportV1GetRequest betaEwaReportV1GetRequest
+ );
+
/**
* Creates a new end customer for a Plaid reseller.
* The `/beta/partner/customer/v1/create` endpoint creates a new end customer record. You can provide as much information as you have available. If any required information is missing for the products you intend to use, it will be listed in the `requirements_due` field of the response.
@@ -1453,12 +1471,12 @@ Call craCheckReportCashflowInsightsGe
);
/**
- * Create a Consumer Report
- * `/cra/check_report/create` creates a Consumer Report powered by Plaid Check. You can call this endpoint to create a new report if `consumer_report_permissible_purpose` was omitted during Link token creation. If you did 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. `/cra/check_report/create` can also be used 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. Note that refreshing or regenerating a report is a billable event.
+ * 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.
* @param craCheckReportCreateRequest (required)
* @return Call<CraCheckReportCreateResponse>
*
- * @see Create a Consumer Report Documentation
+ * @see Refresh or create a Consumer Report Documentation
*/
@Headers({
"Content-Type:application/json"
@@ -4891,7 +4909,7 @@ Call transferPlatformPersonCreate(
/**
* Submit additional onboarding information on behalf of an originator
- * Use the `/transfer/platform/requirement/submit` endpoint to submit additional onboarding information that is needed by Plaid to approve or decline the originator.
+ * Use the `/transfer/platform/requirement/submit` endpoint to submit additional onboarding information that is needed by Plaid to approve or decline the originator. See [Requirement type schema documentation](https://docs.google.com/document/d/1NEQkTD0sVK50iAQi6xHigrexDUxZ4QxXqSEfV_FFTiU/) for a list of requirement types and possible values.
* @param transferPlatformRequirementSubmitRequest (required)
* @return Call<TransferPlatformRequirementSubmitResponse>
*