diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7cd297edbd..60e1702cea 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,42 @@
See full changelog for the OpenAPI schema (OAS) [here](https://github.com/plaid/plaid-openapi/blob/master/CHANGELOG.md).
+# 30.0.0
+- Updating to OAS 2020-09-14_1.617.1
+
+## Breaking changes in this version
+- [Breaking] Removed the deprecated longest_gap_between_transactions, average_inflow_amount, and average_outflow_amount fields from the BaseReportAccountInsights object in the /cra/check_report/base_report/get response.
+
+## OpenAPI Schema Changes
+### 2020-09-14_1.617.1
+- For Plaid Check: `date_of_birth` is now required within the `consumer_report_user_identity` object when creating or updating a user token.
+
+### 2020-09-14_1.617.0
+- [Breaking] Removed the deprecated longest_gap_between_transactions, average_inflow_amount, and average_outflow_amount fields from the BaseReportAccountInsights object in the /cra/check_report/base_report/get response.
+
+### 2020-09-14_1.616.0
+- Add `originating_fund_source` to `/wallet/transaction/execute` endpoint.
+
+### 2020-09-14_1.615.0
+- Add `account_details_401k` objects to `/investments/auth/get` endpoint.
+
+### 2020-09-14_1.614.1
+- Update `owners` field description for empty case
+
+### 2020-09-14_1.614.0
+- Add model for the new `retirement_401k` numbers object to the `InvestmentsAuthGetNumbers` schema.
+
+### 2020-09-14_1.613.0
+- Add `POST /signal/schedule` endpoint
+
+### 2025-01-27_1.611.0
+- Add `end_to_end_id` to `/payment_initiation/payment/get`
+
+### 2020-09-14_1.611.0
+- Add RfP to /transfer/capabilities/get
+
+### 2020-09-14_1.610.2
+- Update `cashflow_updates` docs to reflect proper cadence
+
# 29.1.0
- Updating to OAS 2020-09-14_1.610.1
- Update versions of okhttp, retrofit2, and gson-fire in pom.xml to address vulnerabilities.
@@ -64,7 +101,7 @@ endpoints.
### 2020-09-14_1.600.2
- Update descriptions for `/network/status/get` request and response fields
- Add `nullable: true` to mortgage `account_number` field in the `MortgageLiability` schema to reflect actual behavior.
-- Add `transactions_refresh` to `Products` array to reflect actual behavior; this field is not accepted as input to `/link/token/create` but can be part of supported products array in the `Institution` object.
+- Add `transactions_refresh` to `Products` array to reflect actual behavior; this field is not accepted as input to `/link/token/create` but can be part of supported products array in the `Institution` object.
### 2020-09-14_1.600.1
- `depository`+`cash management` Accounts are now eligible for Auth data for certain institutions
@@ -354,7 +391,7 @@ endpoints.
- add `/issues/get`, `/issues/search`, and `/issues/subscribe` for Support API endpoints.
### 2020-09-14_1.563.0
-- Update fields on `item` object in `/item/get` response
+- Update fields on `item` object in `/item/get` response
- Add `consented_use_cases` field
- Add `consented_data_scopes` field
- Add `created_at` field
@@ -534,14 +571,14 @@ endpoints.
### 2020-09-14_1.535.2
- Make some `CraBankIncomeSummary` fields visible.
--
+-
### 2020-09-14_1.535.1
### 2020-09-14_1.535.0
- [Breaking for Go] Updated `consumer_report_user_identity` field in `/user/update` to be required to reflect actual API behavior.
### 2020-09-14_1.534.7
-- Add `stated_account_number_enabled` to `investments_auth` in `LinkTokenCreateRequest`
+- Add `stated_account_number_enabled` to `investments_auth` in `LinkTokenCreateRequest`
### 2020-09-14_1.534.6
- [Breaking] Updated base report endpoints and objects to include `cra` prefix
@@ -930,7 +967,7 @@ endpoints.
- Remove `additionalProperties: true` incorrectly applied to `transferIntentGet` object and missed in `2020-09-14_1.352.0`. This will result in more strict type checking for this object, but should not be a breaking change.
### 2020-09-14_1.498.1
-- Enable original description for all customers
+- Enable original description for all customers
### 2020-09-14_1.498.0
- Add `POST /beacon/account_risk/v1/evaluate` endpoint
@@ -1064,7 +1101,7 @@ endpoints.
- Internal changes only
### 2020-09-14_1.483.0
-- Added net new fields to StatementsAccount object: `account_mask`, `account_subtype`, `account_official_name`
+- Added net new fields to StatementsAccount object: `account_mask`, `account_subtype`, `account_official_name`
# 19.2.0
- Updating to OAS 2020-09-14_1.482.3
diff --git a/pom.xml b/pom.xml
index 5339a56802..b4fda4e4c1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.plaid
plaid-java
- 29.1.0-SNAPSHOT
+ 30.0.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 e78f7c4dc8..28f5d8edc9 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 v29.1.0")
+ .header("User-Agent", "Plaid Java v30.0.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 bfb6655767..2d9825cc04 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 206e631c03..1db1979e4c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/ACHClass.java b/src/main/java/com/plaid/client/model/ACHClass.java
index e1e305eb3b..8e6d7c0b1d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 f035fd4637..815b824c5c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ec606bf0d7..bc7f17dac4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d4e8a2c4ac..2a86a41be6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 13b695f6b8..1e0c755378 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a623546773..999fe2c1ec 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class AccountBase {
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
@@ -194,11 +194,11 @@ public AccountBase mask(String mask) {
}
/**
- * The last 2-4 alphanumeric characters of an account's official account number. Note that the mask may be non-unique between an Item's accounts, and it may also not match the mask that the bank displays to the user.
+ * The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.
* @return mask
**/
@javax.annotation.Nullable
- @ApiModelProperty(required = true, value = "The last 2-4 alphanumeric characters of an account's official account number. Note that the mask may be non-unique between an Item's accounts, and it may also not match the mask that the bank displays to the user.")
+ @ApiModelProperty(required = true, value = "The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.")
public String getMask() {
return mask;
diff --git a/src/main/java/com/plaid/client/model/AccountFilter.java b/src/main/java/com/plaid/client/model/AccountFilter.java
index 155c28b1ed..165c4cfbc6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bf0336a4ff..711ba6cd2a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 90c343a5ca..a55ea17237 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 dcdbcf57be..ae5f7c9254 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class AccountIdentity {
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
@@ -203,11 +203,11 @@ public AccountIdentity mask(String mask) {
}
/**
- * The last 2-4 alphanumeric characters of an account's official account number. Note that the mask may be non-unique between an Item's accounts, and it may also not match the mask that the bank displays to the user.
+ * The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.
* @return mask
**/
@javax.annotation.Nullable
- @ApiModelProperty(required = true, value = "The last 2-4 alphanumeric characters of an account's official account number. Note that the mask may be non-unique between an Item's accounts, and it may also not match the mask that the bank displays to the user.")
+ @ApiModelProperty(required = true, value = "The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.")
public String getMask() {
return mask;
diff --git a/src/main/java/com/plaid/client/model/AccountIdentityAllOf.java b/src/main/java/com/plaid/client/model/AccountIdentityAllOf.java
index 0a857c82d9..031c22e3df 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2669a7106e..08fc62ee43 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class AccountIdentityDocumentUpload {
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
@@ -208,11 +208,11 @@ public AccountIdentityDocumentUpload mask(String mask) {
}
/**
- * The last 2-4 alphanumeric characters of an account's official account number. Note that the mask may be non-unique between an Item's accounts, and it may also not match the mask that the bank displays to the user.
+ * The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.
* @return mask
**/
@javax.annotation.Nullable
- @ApiModelProperty(required = true, value = "The last 2-4 alphanumeric characters of an account's official account number. Note that the mask may be non-unique between an Item's accounts, and it may also not match the mask that the bank displays to the user.")
+ @ApiModelProperty(required = true, value = "The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.")
public String getMask() {
return mask;
diff --git a/src/main/java/com/plaid/client/model/AccountIdentityDocumentUploadAllOf.java b/src/main/java/com/plaid/client/model/AccountIdentityDocumentUploadAllOf.java
index 53a2d0f85d..ff316b3f06 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e6d05a9867..4b4ba1403f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class AccountIdentityMatchScore {
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
@@ -216,11 +216,11 @@ public AccountIdentityMatchScore mask(String mask) {
}
/**
- * The last 2-4 alphanumeric characters of an account's official account number. Note that the mask may be non-unique between an Item's accounts, and it may also not match the mask that the bank displays to the user.
+ * The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.
* @return mask
**/
@javax.annotation.Nullable
- @ApiModelProperty(required = true, value = "The last 2-4 alphanumeric characters of an account's official account number. Note that the mask may be non-unique between an Item's accounts, and it may also not match the mask that the bank displays to the user.")
+ @ApiModelProperty(required = true, value = "The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.")
public String getMask() {
return mask;
diff --git a/src/main/java/com/plaid/client/model/AccountIdentityMatchScoreAllOf.java b/src/main/java/com/plaid/client/model/AccountIdentityMatchScoreAllOf.java
index ebc6741e83..f7dfbc6a1e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/AccountProductAccess.java b/src/main/java/com/plaid/client/model/AccountProductAccess.java
index 3a6eb0530a..10ed242981 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 81b06a381e..9ee5cf7b18 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 23cd14353c..7e13050e2f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 68dfc5b065..b946828f65 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 2b17b8a282..e6dfea230c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 0663e597e8..3438656a29 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 created via Database Insights.
*/
@ApiModel(description = "Insights from performing database verification for the account. Only returned for Auth Items created via Database Insights.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class AccountVerificationInsights {
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/AccountVerificationInsightsAccountNumberFormat.java b/src/main/java/com/plaid/client/model/AccountVerificationInsightsAccountNumberFormat.java
index 3f1a0aa8f0..ca3d4257cd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 a5c7e2c4db..477a1c75f3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fdb0353a17..39e2fbc2e3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3fcc7ecc38..5e1539d5f9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bbe3c9d98a..9f77749c91 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/AccountsBalanceGetRequestPaymentDetails.java b/src/main/java/com/plaid/client/model/AccountsBalanceGetRequestPaymentDetails.java
index 11202a908e..3f6ac7db9c 100644
--- a/src/main/java/com/plaid/client/model/AccountsBalanceGetRequestPaymentDetails.java
+++ b/src/main/java/com/plaid/client/model/AccountsBalanceGetRequestPaymentDetails.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* To enable Balance Plus (beta), send this object as part of the `/accounts/balance/get` request. Only available to customers participating in the Balance Plus beta program; to enroll in the beta, contact your account manager. If this object is present in the request, the [`payment_risk_assessment`](https://plaid.com/docs/balance/balance-plus/#accounts-balance-get-response-payment-risk-assessment-risk-level) object will be present in the response.
*/
@ApiModel(description = "To enable Balance Plus (beta), send this object as part of the `/accounts/balance/get` request. Only available to customers participating in the Balance Plus beta program; to enroll in the beta, contact your account manager. If this object is present in the request, the [`payment_risk_assessment`](https://plaid.com/docs/balance/balance-plus/#accounts-balance-get-response-payment-risk-assessment-risk-level) object will be present in the response.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class AccountsBalanceGetRequestPaymentDetails {
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/AccountsBalanceGetResponsePaymentRiskAssessment.java b/src/main/java/com/plaid/client/model/AccountsBalanceGetResponsePaymentRiskAssessment.java
index e3cf7fed7b..5e6eab60da 100644
--- a/src/main/java/com/plaid/client/model/AccountsBalanceGetResponsePaymentRiskAssessment.java
+++ b/src/main/java/com/plaid/client/model/AccountsBalanceGetResponsePaymentRiskAssessment.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
* Provides a detailed risk assessment for the requested transaction. For this field to be returned, the client must be enrolled in the Balance Plus beta program and the [`payment_details`](http://plaid.com/docs/balance/balance-plus/#accounts-balance-get-request-payment-details) object must have been sent in the request.
*/
@ApiModel(description = "Provides a detailed risk assessment for the requested transaction. For this field to be returned, the client must be enrolled in the Balance Plus beta program and the [`payment_details`](http://plaid.com/docs/balance/balance-plus/#accounts-balance-get-request-payment-details) object must have been sent in the request.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class AccountsBalanceGetResponsePaymentRiskAssessment {
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/AccountsGetRequest.java b/src/main/java/com/plaid/client/model/AccountsGetRequest.java
index b524bcf877..13a33b9572 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c8e8e5dec0..3953b931cb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 45e30a7691..5d466b9166 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 824d9357f5..8e9f9e8b38 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 4967980251..fecc44b897 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5417489434..eefb6262cf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 618e16feb2..065b855855 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cd0b69d3b9..16efae82e4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 48d58448b1..e0c7975714 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1ce155a041..c716f0e0de 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7bb969bf66..ff6e8cb845 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5b90fa6315..fc02b03ecf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bd9179abba..db86a7c777 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d48b1e6d4e..34f1018cb8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/Application.java b/src/main/java/com/plaid/client/model/Application.java
index 8782660570..1065d2fdb1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 149f7ffcc6..b9e592aa71 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ec7994b4b2..14ef94cdbf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9c7dcd73ad..aea538373d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fb84999b7f..1cc18b4835 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 eb18124b57..f2559ac005 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0e97b85225..ca28fabd1b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/AssetOwner.java b/src/main/java/com/plaid/client/model/AssetOwner.java
index 69bef4aef5..2771eb5457 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2ee7df11f7..125860e194 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fdb420955e..ce1bbc0b06 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 57f311a3a0..94ddec8808 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 aa354eb866..60895156d4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 d342b741e3..52a5867a24 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1fee750035..a998a84eec 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 83e591fe81..4534de84c5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/AssetReportAuditCopyRemoveRequest.java b/src/main/java/com/plaid/client/model/AssetReportAuditCopyRemoveRequest.java
index f96d1ac128..7e6321f85d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 08bcb8d091..599c7eab68 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9a8e508158..029fc8b5e6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 875689583d..bc1c1f6f62 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ccd58967d4..73b8924a47 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 71eb15bb3a..927414ba90 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e2b641f8c9..e02663cebe 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a7af6e438d..e6731c7520 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 504ee1dbac..997b813746 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5d0553a570..2399ef3d47 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0316948688..dee223c995 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5c47c1522f..362eede4c1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 70d653ad9b..066e4a9bd7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c47a2ed4dc..523045a639 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0242094988..9a1ccbdd1b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/AssetReportInvestments.java b/src/main/java/com/plaid/client/model/AssetReportInvestments.java
index f201f7924e..defd56b5ed 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class AssetReportInvestments {
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/AssetReportItem.java b/src/main/java/com/plaid/client/model/AssetReportItem.java
index 6481f540b9..257191bcc1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8fac26dbde..b78117de9c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 173b0eba59..ef2d983ef0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 44868f0ea0..5f6ad0c5f8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d9e33b8e0b..9e16ebcd97 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 615be157fe..f6c47b80f0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1e8f485557..a2c914b1c7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2f5cba1ef4..3d7a723841 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3effd12852..34afd1392b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0c2a4c8230..cb5c864aec 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 87d5e0864d..953039b170 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 26eb4ae6e0..4f3bce6771 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class AssetReportUser {
public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id";
@SerializedName(SERIALIZED_NAME_CLIENT_USER_ID)
@@ -66,11 +66,11 @@ public AssetReportUser clientUserId(String clientUserId) {
}
/**
- * An identifier you determine and submit for the user.
+ * An identifier you determine and submit for the user. If using the Credit Dashboard, Customers should pass in the `user_token` created in `/user/create`.
* @return clientUserId
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "An identifier you determine and submit for the user.")
+ @ApiModelProperty(value = "An identifier you determine and submit for the user. If using the Credit Dashboard, Customers should pass in the `user_token` created in `/user/create`.")
public String getClientUserId() {
return clientUserId;
diff --git a/src/main/java/com/plaid/client/model/AssetTransaction.java b/src/main/java/com/plaid/client/model/AssetTransaction.java
index 1c03c10d98..54376098f0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7c4ebf0d42..b6e56ee90d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 59b4b23eda..7fc8d212aa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c8ec4feab2..cdccbeacb8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6fedcd040a..ef9e39afab 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 8f361353cb..0bbf07e6f8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fcf8818e71..3dea28b9d0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 b0dbca5573..82b9ad51aa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 eb01c22cfc..5d3a5bc508 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 88d232940b..e8768b320a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0ebaee2313..b879255486 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5c4259c39d..496abcffe8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 56b9ada62c..d4eb08fcbb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6983f57dc0..98c9dfb06b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ed80fc71de..e073e054dd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 abbf4e7401..bf31ca2e1c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 420d84cf16..8476e7f658 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9b594360d0..4182db49f4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/AutomaticallyVerifiedWebhook.java b/src/main/java/com/plaid/client/model/AutomaticallyVerifiedWebhook.java
index 993c58c44c..7f7b41e535 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/BalancePlusAttributes.java b/src/main/java/com/plaid/client/model/BalancePlusAttributes.java
index 43a6a38a95..dc7467ebae 100644
--- a/src/main/java/com/plaid/client/model/BalancePlusAttributes.java
+++ b/src/main/java/com/plaid/client/model/BalancePlusAttributes.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* Contains additional data that can be used to assess the ACH return risk
*/
@ApiModel(description = "Contains additional data that can be used to assess the ACH return risk")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class BalancePlusAttributes {
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/BalancePlusRiskLevel.java b/src/main/java/com/plaid/client/model/BalancePlusRiskLevel.java
index 314c41d3ae..bf4a3551e9 100644
--- a/src/main/java/com/plaid/client/model/BalancePlusRiskLevel.java
+++ b/src/main/java/com/plaid/client/model/BalancePlusRiskLevel.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/BankIncomeCompleteResult.java b/src/main/java/com/plaid/client/model/BankIncomeCompleteResult.java
index 8d6b61812c..8b15203091 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 19e223d95e..cc69c3c93c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 429755137c..197df85250 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 2536699d6a..b902fcd897 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1e1e7ea013..9b94125d9e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0f3097cff3..df76b7ec46 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/BankTransfer.java b/src/main/java/com/plaid/client/model/BankTransfer.java
index b1394c5672..38b8c744d0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3f6b2ddbf0..84388cf964 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5a55c3f87e..8e57da4272 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5c9f474b91..c7e919d4a4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 447b41dbae..f6a2aa1c7a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7704fbb0ff..9ad9d11e85 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 611ee06107..6e3d587a47 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4cd968583f..35972f69e4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 09bd8d29e0..0662e3aeca 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 764f15da06..6cf02eef33 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8478916fee..e1f43923f2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 58e47c671e..6ddec02ff0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 3896ccd28f..aee83e49d8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 70b93a268c..ec2fff0a77 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2de72dc952..6915c8443a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e3d6972760..a9e1e10607 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 240a546211..2d5fea5e44 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 e768100974..f0fd4b4faa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 41d32ecada..838e0c1905 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3edb36ef73..61ede9fcae 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e3b1236cab..62f88da749 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b5e160966d..4c5cd6d7b8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fa61b0610a..0db0736b79 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 946971a804..6752b5d40d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 717a89cb27..e1bee91197 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 8e907ce506..1045e7fd7f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 0e80e461c5..8444fdbb8f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a57c980673..451d57cb50 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ba774dd14e..9d2ae93208 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f34494a971..265e260dba 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b43b51757a..71a349b8b6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c27830cb2e..6f54ef02fa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 2db4f4c9ee..c14dbdc054 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7f31750592..735bfafd33 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bac96c9eed..e6b393671f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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](/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](/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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 806b1a618b..03dfcc28e6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cbefba1fb9..53c3d3c232 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class BaseReportAccount {
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
@@ -376,10 +376,10 @@ public BaseReportAccount addOwnersItem(Owner ownersItem) {
}
/**
- * Data returned by the financial institution about the account owner or owners. For business accounts, the name reported may be either the name of the individual or the name of the business, depending on the institution. Multiple owners on a single account will be represented in the same `owner` object, not in multiple owner objects within the array.
+ * Data returned by the financial institution about the account owner or owners. For business accounts, the name reported may be either the name of the individual or the name of the business, depending on the institution. Multiple owners on a single account will be represented in the same `owner` object, not in multiple owner objects within the array. This array can also be empty if no owners are found.
* @return owners
**/
- @ApiModelProperty(required = true, value = "Data returned by the financial institution about the account owner or owners. For business accounts, the name reported may be either the name of the individual or the name of the business, depending on the institution. Multiple owners on a single account will be represented in the same `owner` object, not in multiple owner objects within the array.")
+ @ApiModelProperty(required = true, value = "Data returned by the financial institution about the account owner or owners. For business accounts, the name reported may be either the name of the individual or the name of the business, depending on the institution. Multiple owners on a single account will be represented in the same `owner` object, not in multiple owner objects within the array. This array can also be empty if no owners are found.")
public List getOwners() {
return owners;
diff --git a/src/main/java/com/plaid/client/model/BaseReportAccountBalances.java b/src/main/java/com/plaid/client/model/BaseReportAccountBalances.java
index c32ed62537..c4534be36d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
* Base Report information about an account's balances
*/
@ApiModel(description = "Base Report information about an account's balances")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 df19619605..159645577c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
* Calculated insights derived from transaction-level data.
*/
@ApiModel(description = "Calculated insights derived from transaction-level data.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class BaseReportAccountInsights {
public static final String SERIALIZED_NAME_OLDEST_TRANSACTION_DATE = "oldest_transaction_date";
@SerializedName(SERIALIZED_NAME_OLDEST_TRANSACTION_DATE)
@@ -53,10 +53,6 @@ public class BaseReportAccountInsights {
@SerializedName(SERIALIZED_NAME_AVERAGE_DAYS_BETWEEN_TRANSACTIONS)
private Double averageDaysBetweenTransactions;
- public static final String SERIALIZED_NAME_LONGEST_GAP_BETWEEN_TRANSACTIONS = "longest_gap_between_transactions";
- @SerializedName(SERIALIZED_NAME_LONGEST_GAP_BETWEEN_TRANSACTIONS)
- private List longestGapBetweenTransactions = null;
-
public static final String SERIALIZED_NAME_LONGEST_GAPS_BETWEEN_TRANSACTIONS = "longest_gaps_between_transactions";
@SerializedName(SERIALIZED_NAME_LONGEST_GAPS_BETWEEN_TRANSACTIONS)
private List longestGapsBetweenTransactions = null;
@@ -65,10 +61,6 @@ public class BaseReportAccountInsights {
@SerializedName(SERIALIZED_NAME_NUMBER_OF_INFLOWS)
private List numberOfInflows = null;
- public static final String SERIALIZED_NAME_AVERAGE_INFLOW_AMOUNT = "average_inflow_amount";
- @SerializedName(SERIALIZED_NAME_AVERAGE_INFLOW_AMOUNT)
- private List averageInflowAmount = null;
-
public static final String SERIALIZED_NAME_AVERAGE_INFLOW_AMOUNTS = "average_inflow_amounts";
@SerializedName(SERIALIZED_NAME_AVERAGE_INFLOW_AMOUNTS)
private List averageInflowAmounts = null;
@@ -77,10 +69,6 @@ public class BaseReportAccountInsights {
@SerializedName(SERIALIZED_NAME_NUMBER_OF_OUTFLOWS)
private List numberOfOutflows = null;
- public static final String SERIALIZED_NAME_AVERAGE_OUTFLOW_AMOUNT = "average_outflow_amount";
- @SerializedName(SERIALIZED_NAME_AVERAGE_OUTFLOW_AMOUNT)
- private List averageOutflowAmount = null;
-
public static final String SERIALIZED_NAME_AVERAGE_OUTFLOW_AMOUNTS = "average_outflow_amounts";
@SerializedName(SERIALIZED_NAME_AVERAGE_OUTFLOW_AMOUNTS)
private List averageOutflowAmounts = null;
@@ -182,37 +170,6 @@ public void setAverageDaysBetweenTransactions(Double averageDaysBetweenTransacti
}
- public BaseReportAccountInsights longestGapBetweenTransactions(List longestGapBetweenTransactions) {
-
- this.longestGapBetweenTransactions = longestGapBetweenTransactions;
- return this;
- }
-
- public BaseReportAccountInsights addLongestGapBetweenTransactionsItem(BaseReportLongestGapInsights longestGapBetweenTransactionsItem) {
- if (this.longestGapBetweenTransactions == null) {
- this.longestGapBetweenTransactions = new ArrayList<>();
- }
- this.longestGapBetweenTransactions.add(longestGapBetweenTransactionsItem);
- return this;
- }
-
- /**
- * Deprecated; use `longest_gaps_between_transactions` instead. Longest gap between sequential transactions
- * @return longestGapBetweenTransactions
- **/
- @javax.annotation.Nullable
- @ApiModelProperty(value = "Deprecated; use `longest_gaps_between_transactions` instead. Longest gap between sequential transactions")
-
- public List getLongestGapBetweenTransactions() {
- return longestGapBetweenTransactions;
- }
-
-
- public void setLongestGapBetweenTransactions(List longestGapBetweenTransactions) {
- this.longestGapBetweenTransactions = longestGapBetweenTransactions;
- }
-
-
public BaseReportAccountInsights longestGapsBetweenTransactions(List longestGapsBetweenTransactions) {
this.longestGapsBetweenTransactions = longestGapsBetweenTransactions;
@@ -228,11 +185,11 @@ public BaseReportAccountInsights addLongestGapsBetweenTransactionsItem(BaseRepor
}
/**
- * Customers must transition from `longest_gap_between_transactions` by January 31st 2025. Longest gap between sequential transactions in a time period. This array can include multiple time periods.
+ * Longest gap between sequential transactions in a time period. This array can include multiple time periods.
* @return longestGapsBetweenTransactions
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "Customers must transition from `longest_gap_between_transactions` by January 31st 2025. Longest gap between sequential transactions in a time period. This array can include multiple time periods.")
+ @ApiModelProperty(value = "Longest gap between sequential transactions in a time period. This array can include multiple time periods.")
public List getLongestGapsBetweenTransactions() {
return longestGapsBetweenTransactions;
@@ -275,37 +232,6 @@ public void setNumberOfInflows(List numberOfInflow
}
- public BaseReportAccountInsights averageInflowAmount(List averageInflowAmount) {
-
- this.averageInflowAmount = averageInflowAmount;
- return this;
- }
-
- public BaseReportAccountInsights addAverageInflowAmountItem(BaseReportAverageFlowInsights averageInflowAmountItem) {
- if (this.averageInflowAmount == null) {
- this.averageInflowAmount = new ArrayList<>();
- }
- this.averageInflowAmount.add(averageInflowAmountItem);
- return this;
- }
-
- /**
- * Deprecated; use `average_inflow_amounts` instead. Average amount of debit transactions into the account. This array will be empty for non-depository accounts. This field only takes into account USD transactions from the account.
- * @return averageInflowAmount
- **/
- @javax.annotation.Nullable
- @ApiModelProperty(value = "Deprecated; use `average_inflow_amounts` instead. Average amount of debit transactions into the account. This array will be empty for non-depository accounts. This field only takes into account USD transactions from the account.")
-
- public List getAverageInflowAmount() {
- return averageInflowAmount;
- }
-
-
- public void setAverageInflowAmount(List averageInflowAmount) {
- this.averageInflowAmount = averageInflowAmount;
- }
-
-
public BaseReportAccountInsights averageInflowAmounts(List averageInflowAmounts) {
this.averageInflowAmounts = averageInflowAmounts;
@@ -321,11 +247,11 @@ public BaseReportAccountInsights addAverageInflowAmountsItem(BaseReportAverageFl
}
/**
- * Customers must transition from `average_inflow_amount` by January 31st 2025. Average amount of debit transactions into the account in a time period. This array will be empty for non-depository accounts. This field only takes into account USD transactions from the account.
+ * Average amount of debit transactions into the account in a time period. This array will be empty for non-depository accounts. This field only takes into account USD transactions from the account.
* @return averageInflowAmounts
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "Customers must transition from `average_inflow_amount` by January 31st 2025. Average amount of debit transactions into the account in a time period. This array will be empty for non-depository accounts. This field only takes into account USD transactions from the account.")
+ @ApiModelProperty(value = "Average amount of debit transactions into the account in a time period. This array will be empty for non-depository accounts. This field only takes into account USD transactions from the account.")
public List getAverageInflowAmounts() {
return averageInflowAmounts;
@@ -368,37 +294,6 @@ public void setNumberOfOutflows(List numberOfOutfl
}
- public BaseReportAccountInsights averageOutflowAmount(List averageOutflowAmount) {
-
- this.averageOutflowAmount = averageOutflowAmount;
- return this;
- }
-
- public BaseReportAccountInsights addAverageOutflowAmountItem(BaseReportAverageFlowInsights averageOutflowAmountItem) {
- if (this.averageOutflowAmount == null) {
- this.averageOutflowAmount = new ArrayList<>();
- }
- this.averageOutflowAmount.add(averageOutflowAmountItem);
- return this;
- }
-
- /**
- * Deprecated; use `average_outflow_amounts` instead. Average amount of transactions out of the account. This array will be empty for non-depository accounts. This field only takes into account USD transactions from the account.
- * @return averageOutflowAmount
- **/
- @javax.annotation.Nullable
- @ApiModelProperty(value = "Deprecated; use `average_outflow_amounts` instead. Average amount of transactions out of the account. This array will be empty for non-depository accounts. This field only takes into account USD transactions from the account.")
-
- public List getAverageOutflowAmount() {
- return averageOutflowAmount;
- }
-
-
- public void setAverageOutflowAmount(List averageOutflowAmount) {
- this.averageOutflowAmount = averageOutflowAmount;
- }
-
-
public BaseReportAccountInsights averageOutflowAmounts(List averageOutflowAmounts) {
this.averageOutflowAmounts = averageOutflowAmounts;
@@ -414,11 +309,11 @@ public BaseReportAccountInsights addAverageOutflowAmountsItem(BaseReportAverageF
}
/**
- * Customers must transition from `average_outflow_amount` by January 31st 2025. Average amount of transactions out of the account in a time period. This array will be empty for non-depository accounts. This field only takes into account USD transactions from the account.
+ * Average amount of transactions out of the account in a time period. This array will be empty for non-depository accounts. This field only takes into account USD transactions from the account.
* @return averageOutflowAmounts
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "Customers must transition from `average_outflow_amount` by January 31st 2025. Average amount of transactions out of the account in a time period. This array will be empty for non-depository accounts. This field only takes into account USD transactions from the account.")
+ @ApiModelProperty(value = "Average amount of transactions out of the account in a time period. This array will be empty for non-depository accounts. This field only takes into account USD transactions from the account.")
public List getAverageOutflowAmounts() {
return averageOutflowAmounts;
@@ -466,20 +361,17 @@ public boolean equals(Object o) {
Objects.equals(this.mostRecentTransactionDate, baseReportAccountInsights.mostRecentTransactionDate) &&
Objects.equals(this.daysAvailable, baseReportAccountInsights.daysAvailable) &&
Objects.equals(this.averageDaysBetweenTransactions, baseReportAccountInsights.averageDaysBetweenTransactions) &&
- Objects.equals(this.longestGapBetweenTransactions, baseReportAccountInsights.longestGapBetweenTransactions) &&
Objects.equals(this.longestGapsBetweenTransactions, baseReportAccountInsights.longestGapsBetweenTransactions) &&
Objects.equals(this.numberOfInflows, baseReportAccountInsights.numberOfInflows) &&
- Objects.equals(this.averageInflowAmount, baseReportAccountInsights.averageInflowAmount) &&
Objects.equals(this.averageInflowAmounts, baseReportAccountInsights.averageInflowAmounts) &&
Objects.equals(this.numberOfOutflows, baseReportAccountInsights.numberOfOutflows) &&
- Objects.equals(this.averageOutflowAmount, baseReportAccountInsights.averageOutflowAmount) &&
Objects.equals(this.averageOutflowAmounts, baseReportAccountInsights.averageOutflowAmounts) &&
Objects.equals(this.numberOfDaysNoTransactions, baseReportAccountInsights.numberOfDaysNoTransactions);
}
@Override
public int hashCode() {
- return Objects.hash(oldestTransactionDate, mostRecentTransactionDate, daysAvailable, averageDaysBetweenTransactions, longestGapBetweenTransactions, longestGapsBetweenTransactions, numberOfInflows, averageInflowAmount, averageInflowAmounts, numberOfOutflows, averageOutflowAmount, averageOutflowAmounts, numberOfDaysNoTransactions);
+ return Objects.hash(oldestTransactionDate, mostRecentTransactionDate, daysAvailable, averageDaysBetweenTransactions, longestGapsBetweenTransactions, numberOfInflows, averageInflowAmounts, numberOfOutflows, averageOutflowAmounts, numberOfDaysNoTransactions);
}
@Override
@@ -490,13 +382,10 @@ public String toString() {
sb.append(" mostRecentTransactionDate: ").append(toIndentedString(mostRecentTransactionDate)).append("\n");
sb.append(" daysAvailable: ").append(toIndentedString(daysAvailable)).append("\n");
sb.append(" averageDaysBetweenTransactions: ").append(toIndentedString(averageDaysBetweenTransactions)).append("\n");
- sb.append(" longestGapBetweenTransactions: ").append(toIndentedString(longestGapBetweenTransactions)).append("\n");
sb.append(" longestGapsBetweenTransactions: ").append(toIndentedString(longestGapsBetweenTransactions)).append("\n");
sb.append(" numberOfInflows: ").append(toIndentedString(numberOfInflows)).append("\n");
- sb.append(" averageInflowAmount: ").append(toIndentedString(averageInflowAmount)).append("\n");
sb.append(" averageInflowAmounts: ").append(toIndentedString(averageInflowAmounts)).append("\n");
sb.append(" numberOfOutflows: ").append(toIndentedString(numberOfOutflows)).append("\n");
- sb.append(" averageOutflowAmount: ").append(toIndentedString(averageOutflowAmount)).append("\n");
sb.append(" averageOutflowAmounts: ").append(toIndentedString(averageOutflowAmounts)).append("\n");
sb.append(" numberOfDaysNoTransactions: ").append(toIndentedString(numberOfDaysNoTransactions)).append("\n");
sb.append("}");
diff --git a/src/main/java/com/plaid/client/model/BaseReportAccountMetadata.java b/src/main/java/com/plaid/client/model/BaseReportAccountMetadata.java
index 613b977dbd..a4ddcf2fc9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
* Base Report metadata about the extracted account.
*/
@ApiModel(description = "Base Report metadata about the extracted account.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2bb3bfe282..c95584b116 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class BaseReportAttributes {
public static final String SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT = "nsf_overdraft_transactions_count";
@SerializedName(SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT)
diff --git a/src/main/java/com/plaid/client/model/BaseReportAverageFlowInsights.java b/src/main/java/com/plaid/client/model/BaseReportAverageFlowInsights.java
index f77b46c1bc..bd1c7ee992 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9531d2b2d3..dcbaffdd56 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 aad3dc202e..1e3f97ad3c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/BaseReportItem.java b/src/main/java/com/plaid/client/model/BaseReportItem.java
index f3bd0dc9b8..f71a9bef8d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 59211407d9..6a8c0fd15f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1e98905769..c9a5c68007 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 64f359a312..a700c97fe6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 21e5ca6c31..3b8e480a7b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/BaseReportWarning.java b/src/main/java/com/plaid/client/model/BaseReportWarning.java
index b4dabc20a5..bf64c8d212 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e34c3f2fb2..f7a3fe1aba 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 994c8af73d..b41a60f91f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4583579898..545d4bed62 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9bf57c1fca..de1b18aa3f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 be107f1854..318d38f3f1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b8e1fc098d..be32c98399 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 1fbeddc392..411552c52a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5d8f646363..56bff542b3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b681397145..3459669390 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f3463e028e..d0100da39a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 666d015628..da66c0e2f8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 d15820cea0..d51b2e36d6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 af6128a6cc..c5ed28a8f6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3f05532d34..b29fe9ecbe 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 eacf8abee4..d1a147d9d1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 11f21695f9..a60df0487d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 54900f13a7..58eb62d79c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e678f40e27..defe28a269 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 4391ac9a8f..703e2b5d7d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 12cabe0456..ab7471e0ac 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 392e684660..9520199a29 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5ee87c5e2b..b01c99a80f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 8f631ade4d..77a6da13c3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 da52a4c8cd..e38e4830f2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8a52233a0a..6972871296 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fa3c985cc2..4b8d7fbcb3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 916cad8498..a8525642d6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 843c3e661e..1a88d89ad6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9ab9d78c6a..3be21e29f6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 64b426b5d3..45d7ecfd4c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 34d4139ba1..bd798c49b8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0f96ece5f0..1acc942537 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a716ec6c7a..db3647b913 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 15f781069e..198aff78eb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b785598d8e..054c76160b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 46a5a4abd4..04f317f8ba 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 7031b7aa29..bb658648a3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e2df090351..905c52f71b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c80c349018..fa77fb9fec 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 dc503863b9..45bab43947 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 148af4be32..c6f15a2462 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e04cc03c54..0f5d9db5d2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e05de52a96..dd378630b5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ce2970e037..f17ed7b944 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0c342da681..8ee808fe46 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a097483952..6e806369d8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0fbd6a042f..8c1bf48038 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3f682b7a69..e4e1b93eb8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1f0051d1b4..d85f0647fe 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ee312deda2..b41e03c08a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 24f69ff11d..c017dc7f1a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1487191661..81dae116df 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 52ee727f5f..56c02536ad 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4feafdd955..1bf135ec4b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 76ef10fd92..be8962e140 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a78a520181..c45d5d0635 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6c7e0b3e6c..537148ac75 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 596db5269c..3017687242 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 53ff8bc980..0e46a827e3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2c25f00f26..528c19844b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 c4c5acd7e5..b6907fcfb7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 466ce8795b..1394109e6f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 559c3687ca..34f4221532 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 696fd24aca..cf6eaa64a8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/CRALoansRegisterRequest.java b/src/main/java/com/plaid/client/model/CRALoansRegisterRequest.java
index aaf62cf7b0..8dc6cc9de4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/CashflowAttributesVersion.java b/src/main/java/com/plaid/client/model/CashflowAttributesVersion.java
index 7692af02b8..f644a752a6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/CategoriesGetResponse.java b/src/main/java/com/plaid/client/model/CategoriesGetResponse.java
index 45d75825a0..5a92a0e2ca 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b259e190d8..fb7aa749c7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/CategoryInsightDetails.java b/src/main/java/com/plaid/client/model/CategoryInsightDetails.java
index 1c9b47baca..8128b64f4f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 885b02d230..ce121b2187 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1558c79ea8..0e5cbc46fa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e22e53ea44..149ec9a179 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/ClientProvidedEnhancedTransaction.java b/src/main/java/com/plaid/client/model/ClientProvidedEnhancedTransaction.java
index 314a85f69f..793323d18d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2a6f43be3a..c30677ec71 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 abf242ffe3..8386d8c84c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 10a0af621f..aed1d16f34 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9a49960845..1d5a16356c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/ConnectedApplication.java b/src/main/java/com/plaid/client/model/ConnectedApplication.java
index 2ad2b14a24..cc0cff4e96 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7e906174ba..19d2b543bf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 06bf8b688a..cf7bfa29f3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 3597760102..ae12f2d6fd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 154bbbc4c9..e6101e43ac 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 747997730e..b4c218d497 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2118532454..c845997cf9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a2be4cf99e..c0ea43f122 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1ddd9797f7..431e872ec3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7175a0a0cc..9445a3df40 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 0339078ce0..5758468703 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bc4b1dc94d..a14db57702 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/ConsumerReportUserIdentity.java b/src/main/java/com/plaid/client/model/ConsumerReportUserIdentity.java
index e580ff0294..3874e97e7c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class ConsumerReportUserIdentity {
public static final String SERIALIZED_NAME_FIRST_NAME = "first_name";
@SerializedName(SERIALIZED_NAME_FIRST_NAME)
@@ -191,11 +191,11 @@ public ConsumerReportUserIdentity dateOfBirth(LocalDate dateOfBirth) {
}
/**
- * To be provided in the format \"yyyy-mm-dd\". This field is required for any clients who became Plaid Check customers on or after Oct 1, 2024. This field will be required for all Plaid Check customers as of Feb 1, 2025.
+ * To be provided in the format \"yyyy-mm-dd\". This field is required for all Plaid Check customers.
* @return dateOfBirth
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "To be provided in the format \"yyyy-mm-dd\". This field is required for any clients who became Plaid Check customers on or after Oct 1, 2024. This field will be required for all Plaid Check customers as of Feb 1, 2025.")
+ @ApiModelProperty(value = "To be provided in the format \"yyyy-mm-dd\". This field is required for all Plaid Check customers.")
public LocalDate getDateOfBirth() {
return dateOfBirth;
diff --git a/src/main/java/com/plaid/client/model/Counterparty.java b/src/main/java/com/plaid/client/model/Counterparty.java
index 9fb8652850..1d2a87fabc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a05e445673..1f689e4c08 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/CounterpartyType.java b/src/main/java/com/plaid/client/model/CounterpartyType.java
index be98b0d1ee..d251a35d7d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 8a006953e8..92a6db042d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/CraBankIncome.java b/src/main/java/com/plaid/client/model/CraBankIncome.java
index a619c858d5..80f9d6501d 100644
--- a/src/main/java/com/plaid/client/model/CraBankIncome.java
+++ b/src/main/java/com/plaid/client/model/CraBankIncome.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
* The report of the Plaid Check Income Insights data for an end user.
*/
@ApiModel(description = "The report of the Plaid Check Income Insights data for an end user.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class CraBankIncome {
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/CraBankIncomeAccount.java b/src/main/java/com/plaid/client/model/CraBankIncomeAccount.java
index dc48d68708..7e266ff6d3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 43599f5840..4282898fc8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6b988b737a..4e0320630e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 3b3645aa12..baed624a83 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f03a6f48cb..10bcb4eb1e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 89d1d18012..9c652afe4d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/CraBankIncomeCreateRequest.java b/src/main/java/com/plaid/client/model/CraBankIncomeCreateRequest.java
index 897a430494..59794c4efa 100644
--- a/src/main/java/com/plaid/client/model/CraBankIncomeCreateRequest.java
+++ b/src/main/java/com/plaid/client/model/CraBankIncomeCreateRequest.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
* CraBankIncomeCreateRequest defines the request schema for `/cra/bank_income/create`.
*/
@ApiModel(description = "CraBankIncomeCreateRequest defines the request schema for `/cra/bank_income/create`.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class CraBankIncomeCreateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeCreateResponse.java b/src/main/java/com/plaid/client/model/CraBankIncomeCreateResponse.java
index da29841210..f6300841ae 100644
--- a/src/main/java/com/plaid/client/model/CraBankIncomeCreateResponse.java
+++ b/src/main/java/com/plaid/client/model/CraBankIncomeCreateResponse.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* CraBankIncomeCreateRequest defines the response schema for `/cra/bank_income/create`.
*/
@ApiModel(description = "CraBankIncomeCreateRequest defines the response schema for `/cra/bank_income/create`.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class CraBankIncomeCreateResponse {
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/CraBankIncomeEmployer.java b/src/main/java/com/plaid/client/model/CraBankIncomeEmployer.java
index 12d8eda5f4..5171548c51 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bec41188cc..bc30cc81ec 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/CraBankIncomeGetRequest.java b/src/main/java/com/plaid/client/model/CraBankIncomeGetRequest.java
index d15e09b9df..452e8ba264 100644
--- a/src/main/java/com/plaid/client/model/CraBankIncomeGetRequest.java
+++ b/src/main/java/com/plaid/client/model/CraBankIncomeGetRequest.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* CraBankIncomeGetRequest defines the request schema for `/cra/bank_income/get`.
*/
@ApiModel(description = "CraBankIncomeGetRequest defines the request schema for `/cra/bank_income/get`.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class CraBankIncomeGetRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeGetResponse.java b/src/main/java/com/plaid/client/model/CraBankIncomeGetResponse.java
index 927e4f39ff..abe7a814d5 100644
--- a/src/main/java/com/plaid/client/model/CraBankIncomeGetResponse.java
+++ b/src/main/java/com/plaid/client/model/CraBankIncomeGetResponse.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
* CraBankIncomeGetResponse defines the response schema for `/cra/bank_income/get`.
*/
@ApiModel(description = "CraBankIncomeGetResponse defines the response schema for `/cra/bank_income/get`.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class CraBankIncomeGetResponse {
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/CraBankIncomeHistoricalSummary.java b/src/main/java/com/plaid/client/model/CraBankIncomeHistoricalSummary.java
index bc87f2eb39..e848605296 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/CraBankIncomeItem.java b/src/main/java/com/plaid/client/model/CraBankIncomeItem.java
index 7d16a02e6b..7646e338bc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3d8c92b5f2..b62c89c7e9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class CraBankIncomeSource {
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
diff --git a/src/main/java/com/plaid/client/model/CraBankIncomeSummary.java b/src/main/java/com/plaid/client/model/CraBankIncomeSummary.java
index d457099aae..4ff910a9d5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 62cc812a93..99e3e04118 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 62d740de25..1e69aab583 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c5dcf71c75..7cfad6d722 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/CraBaseReportCreateResponse.java b/src/main/java/com/plaid/client/model/CraBaseReportCreateResponse.java
index 182f375dbc..2d32dfdffb 100644
--- a/src/main/java/com/plaid/client/model/CraBaseReportCreateResponse.java
+++ b/src/main/java/com/plaid/client/model/CraBaseReportCreateResponse.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* CraBaseReportCreateResponse defines the response schema for `cra/base_report/create`
*/
@ApiModel(description = "CraBaseReportCreateResponse defines the response schema for `cra/base_report/create`")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class CraBaseReportCreateResponse {
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/CraCashflowInsightsReport.java b/src/main/java/com/plaid/client/model/CraCashflowInsightsReport.java
index 16957eaff7..b1cf382422 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a74b8450b2..c15ee3f44e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 67f048c845..9dac41e860 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class CraCheckReportBaseReportGetResponse {
public static final String SERIALIZED_NAME_REPORT = "report";
@SerializedName(SERIALIZED_NAME_REPORT)
diff --git a/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetOptions.java b/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetOptions.java
index 9f9656b3f9..902affba44 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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
new file mode 100644
index 0000000000..adc09863ec
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetRequest.java
@@ -0,0 +1,216 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
+ *
+ *
+ * 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.CraCheckReportCashflowInsightsGetOptions;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+
+/**
+ * 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-02-07T19:05:33.763924Z[Etc/UTC]")
+public class CraCheckReportCashflowInsightsGetRequest {
+ public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
+ @SerializedName(SERIALIZED_NAME_CLIENT_ID)
+ private String clientId;
+
+ public static final String SERIALIZED_NAME_SECRET = "secret";
+ @SerializedName(SERIALIZED_NAME_SECRET)
+ private String secret;
+
+ public static final String SERIALIZED_NAME_USER_TOKEN = "user_token";
+ @SerializedName(SERIALIZED_NAME_USER_TOKEN)
+ private String userToken;
+
+ public static final String SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN = "third_party_user_token";
+ @SerializedName(SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN)
+ private String thirdPartyUserToken;
+
+ public static final String SERIALIZED_NAME_OPTIONS = "options";
+ @SerializedName(SERIALIZED_NAME_OPTIONS)
+ private CraCheckReportCashflowInsightsGetOptions options;
+
+
+ public CraCheckReportCashflowInsightsGetRequest 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 CraCheckReportCashflowInsightsGetRequest 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;
+ }
+
+
+ public CraCheckReportCashflowInsightsGetRequest userToken(String userToken) {
+
+ this.userToken = userToken;
+ return this;
+ }
+
+ /**
+ * The user token associated with the User data is being requested for.
+ * @return userToken
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "The user token associated with the User data is being requested for.")
+
+ public String getUserToken() {
+ return userToken;
+ }
+
+
+ public void setUserToken(String userToken) {
+ this.userToken = userToken;
+ }
+
+
+ public CraCheckReportCashflowInsightsGetRequest thirdPartyUserToken(String thirdPartyUserToken) {
+
+ this.thirdPartyUserToken = thirdPartyUserToken;
+ return this;
+ }
+
+ /**
+ * The third-party user token associated with the requested User data.
+ * @return thirdPartyUserToken
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "The third-party user token associated with the requested User data.")
+
+ public String getThirdPartyUserToken() {
+ return thirdPartyUserToken;
+ }
+
+
+ public void setThirdPartyUserToken(String thirdPartyUserToken) {
+ this.thirdPartyUserToken = thirdPartyUserToken;
+ }
+
+
+ public CraCheckReportCashflowInsightsGetRequest options(CraCheckReportCashflowInsightsGetOptions options) {
+
+ this.options = options;
+ return this;
+ }
+
+ /**
+ * Get options
+ * @return options
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public CraCheckReportCashflowInsightsGetOptions getOptions() {
+ return options;
+ }
+
+
+ public void setOptions(CraCheckReportCashflowInsightsGetOptions options) {
+ this.options = options;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ CraCheckReportCashflowInsightsGetRequest craCheckReportCashflowInsightsGetRequest = (CraCheckReportCashflowInsightsGetRequest) o;
+ return Objects.equals(this.clientId, craCheckReportCashflowInsightsGetRequest.clientId) &&
+ Objects.equals(this.secret, craCheckReportCashflowInsightsGetRequest.secret) &&
+ Objects.equals(this.userToken, craCheckReportCashflowInsightsGetRequest.userToken) &&
+ Objects.equals(this.thirdPartyUserToken, craCheckReportCashflowInsightsGetRequest.thirdPartyUserToken) &&
+ Objects.equals(this.options, craCheckReportCashflowInsightsGetRequest.options);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(clientId, secret, userToken, thirdPartyUserToken, options);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class CraCheckReportCashflowInsightsGetRequest {\n");
+ sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
+ sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
+ sb.append(" userToken: ").append(toIndentedString(userToken)).append("\n");
+ sb.append(" thirdPartyUserToken: ").append(toIndentedString(thirdPartyUserToken)).append("\n");
+ sb.append(" options: ").append(toIndentedString(options)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces
+ * (except the first line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+}
+
diff --git a/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetResponse.java b/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetResponse.java
new file mode 100644
index 0000000000..c0992eadb3
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetResponse.java
@@ -0,0 +1,127 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
+ *
+ *
+ * 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.CraCashflowInsightsReport;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+
+/**
+ * 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-02-07T19:05:33.763924Z[Etc/UTC]")
+public class CraCheckReportCashflowInsightsGetResponse {
+ public static final String SERIALIZED_NAME_REPORT = "report";
+ @SerializedName(SERIALIZED_NAME_REPORT)
+ private CraCashflowInsightsReport report;
+
+ public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
+ @SerializedName(SERIALIZED_NAME_REQUEST_ID)
+ private String requestId;
+
+
+ public CraCheckReportCashflowInsightsGetResponse report(CraCashflowInsightsReport report) {
+
+ this.report = report;
+ return this;
+ }
+
+ /**
+ * Get report
+ * @return report
+ **/
+ @ApiModelProperty(required = true, value = "")
+
+ public CraCashflowInsightsReport getReport() {
+ return report;
+ }
+
+
+ public void setReport(CraCashflowInsightsReport report) {
+ this.report = report;
+ }
+
+
+ public CraCheckReportCashflowInsightsGetResponse requestId(String requestId) {
+
+ this.requestId = requestId;
+ return this;
+ }
+
+ /**
+ * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
+ * @return requestId
+ **/
+ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
+
+ public String getRequestId() {
+ return requestId;
+ }
+
+
+ public void setRequestId(String requestId) {
+ this.requestId = requestId;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ CraCheckReportCashflowInsightsGetResponse craCheckReportCashflowInsightsGetResponse = (CraCheckReportCashflowInsightsGetResponse) o;
+ return Objects.equals(this.report, craCheckReportCashflowInsightsGetResponse.report) &&
+ Objects.equals(this.requestId, craCheckReportCashflowInsightsGetResponse.requestId);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(report, requestId);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class CraCheckReportCashflowInsightsGetResponse {\n");
+ sb.append(" report: ").append(toIndentedString(report)).append("\n");
+ sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces
+ * (except the first line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+}
+
diff --git a/src/main/java/com/plaid/client/model/CraCheckReportCreateBaseReportOptions.java b/src/main/java/com/plaid/client/model/CraCheckReportCreateBaseReportOptions.java
new file mode 100644
index 0000000000..0837ca5ff0
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/CraCheckReportCreateBaseReportOptions.java
@@ -0,0 +1,99 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+
+package com.plaid.client.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import com.google.gson.TypeAdapter;
+import com.google.gson.annotations.JsonAdapter;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.stream.JsonReader;
+import com.google.gson.stream.JsonWriter;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+
+/**
+ * Defines configuration options 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-02-07T19:05:33.763924Z[Etc/UTC]")
+public class CraCheckReportCreateBaseReportOptions {
+ public static final String SERIALIZED_NAME_CLIENT_REPORT_ID = "client_report_id";
+ @SerializedName(SERIALIZED_NAME_CLIENT_REPORT_ID)
+ private String clientReportId;
+
+
+ public CraCheckReportCreateBaseReportOptions clientReportId(String clientReportId) {
+
+ this.clientReportId = clientReportId;
+ return this;
+ }
+
+ /**
+ * Client-generated identifier, which can be used by lenders to track loan applications.
+ * @return clientReportId
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "Client-generated identifier, which can be used by lenders to track loan applications.")
+
+ public String getClientReportId() {
+ return clientReportId;
+ }
+
+
+ public void setClientReportId(String clientReportId) {
+ this.clientReportId = clientReportId;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ CraCheckReportCreateBaseReportOptions craCheckReportCreateBaseReportOptions = (CraCheckReportCreateBaseReportOptions) o;
+ return Objects.equals(this.clientReportId, craCheckReportCreateBaseReportOptions.clientReportId);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(clientReportId);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class CraCheckReportCreateBaseReportOptions {\n");
+ sb.append(" clientReportId: ").append(toIndentedString(clientReportId)).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/CraCheckReportCreateRequest.java b/src/main/java/com/plaid/client/model/CraCheckReportCreateRequest.java
index 80e7f9bd5a..9ea269188b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -21,15 +21,21 @@
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.ConsumerReportPermissiblePurpose;
+import com.plaid.client.model.CraCheckReportCashflowInsightsGetOptions;
+import com.plaid.client.model.CraCheckReportCreateBaseReportOptions;
+import com.plaid.client.model.CraCheckReportPartnerInsightsGetOptions;
+import com.plaid.client.model.Products;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
+import java.util.ArrayList;
+import java.util.List;
/**
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class CraCheckReportCreateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
@@ -55,6 +61,22 @@ public class CraCheckReportCreateRequest {
@SerializedName(SERIALIZED_NAME_DAYS_REQUIRED)
private Integer daysRequired;
+ public static final String SERIALIZED_NAME_PRODUCTS = "products";
+ @SerializedName(SERIALIZED_NAME_PRODUCTS)
+ private List products = null;
+
+ public static final String SERIALIZED_NAME_BASE_REPORT = "base_report";
+ @SerializedName(SERIALIZED_NAME_BASE_REPORT)
+ private CraCheckReportCreateBaseReportOptions baseReport;
+
+ public static final String SERIALIZED_NAME_CASHFLOW_INSIGHTS = "cashflow_insights";
+ @SerializedName(SERIALIZED_NAME_CASHFLOW_INSIGHTS)
+ private CraCheckReportCashflowInsightsGetOptions cashflowInsights;
+
+ public static final String SERIALIZED_NAME_PARTNER_INSIGHTS = "partner_insights";
+ @SerializedName(SERIALIZED_NAME_PARTNER_INSIGHTS)
+ private CraCheckReportPartnerInsightsGetOptions partnerInsights;
+
public static final String SERIALIZED_NAME_CONSUMER_REPORT_PERMISSIBLE_PURPOSE = "consumer_report_permissible_purpose";
@SerializedName(SERIALIZED_NAME_CONSUMER_REPORT_PERMISSIBLE_PURPOSE)
private ConsumerReportPermissiblePurpose consumerReportPermissiblePurpose;
@@ -196,6 +218,106 @@ public void setDaysRequired(Integer daysRequired) {
}
+ public CraCheckReportCreateRequest products(List products) {
+
+ this.products = products;
+ return this;
+ }
+
+ public CraCheckReportCreateRequest addProductsItem(Products productsItem) {
+ if (this.products == null) {
+ this.products = new ArrayList<>();
+ }
+ this.products.add(productsItem);
+ return this;
+ }
+
+ /**
+ * Specifies a list of products that will be eagerly generated when creating the report. These products will be made available before a success webhook is sent. Use this option to minimize response latency for product `/get` endpoints.
+ * @return products
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "Specifies a list of products that will be eagerly generated when creating the report. These products will be made available before a success webhook is sent. Use this option to minimize response latency for product `/get` endpoints.")
+
+ public List getProducts() {
+ return products;
+ }
+
+
+ public void setProducts(List products) {
+ this.products = products;
+ }
+
+
+ public CraCheckReportCreateRequest baseReport(CraCheckReportCreateBaseReportOptions baseReport) {
+
+ this.baseReport = baseReport;
+ return this;
+ }
+
+ /**
+ * Get baseReport
+ * @return baseReport
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public CraCheckReportCreateBaseReportOptions getBaseReport() {
+ return baseReport;
+ }
+
+
+ public void setBaseReport(CraCheckReportCreateBaseReportOptions baseReport) {
+ this.baseReport = baseReport;
+ }
+
+
+ public CraCheckReportCreateRequest cashflowInsights(CraCheckReportCashflowInsightsGetOptions cashflowInsights) {
+
+ this.cashflowInsights = cashflowInsights;
+ return this;
+ }
+
+ /**
+ * Get cashflowInsights
+ * @return cashflowInsights
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public CraCheckReportCashflowInsightsGetOptions getCashflowInsights() {
+ return cashflowInsights;
+ }
+
+
+ public void setCashflowInsights(CraCheckReportCashflowInsightsGetOptions cashflowInsights) {
+ this.cashflowInsights = cashflowInsights;
+ }
+
+
+ public CraCheckReportCreateRequest partnerInsights(CraCheckReportPartnerInsightsGetOptions partnerInsights) {
+
+ this.partnerInsights = partnerInsights;
+ return this;
+ }
+
+ /**
+ * Get partnerInsights
+ * @return partnerInsights
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public CraCheckReportPartnerInsightsGetOptions getPartnerInsights() {
+ return partnerInsights;
+ }
+
+
+ public void setPartnerInsights(CraCheckReportPartnerInsightsGetOptions partnerInsights) {
+ this.partnerInsights = partnerInsights;
+ }
+
+
public CraCheckReportCreateRequest consumerReportPermissiblePurpose(ConsumerReportPermissiblePurpose consumerReportPermissiblePurpose) {
this.consumerReportPermissiblePurpose = consumerReportPermissiblePurpose;
@@ -233,12 +355,16 @@ public boolean equals(Object o) {
Objects.equals(this.webhook, craCheckReportCreateRequest.webhook) &&
Objects.equals(this.daysRequested, craCheckReportCreateRequest.daysRequested) &&
Objects.equals(this.daysRequired, craCheckReportCreateRequest.daysRequired) &&
+ Objects.equals(this.products, craCheckReportCreateRequest.products) &&
+ Objects.equals(this.baseReport, craCheckReportCreateRequest.baseReport) &&
+ Objects.equals(this.cashflowInsights, craCheckReportCreateRequest.cashflowInsights) &&
+ Objects.equals(this.partnerInsights, craCheckReportCreateRequest.partnerInsights) &&
Objects.equals(this.consumerReportPermissiblePurpose, craCheckReportCreateRequest.consumerReportPermissiblePurpose);
}
@Override
public int hashCode() {
- return Objects.hash(clientId, secret, userToken, webhook, daysRequested, daysRequired, consumerReportPermissiblePurpose);
+ return Objects.hash(clientId, secret, userToken, webhook, daysRequested, daysRequired, products, baseReport, cashflowInsights, partnerInsights, consumerReportPermissiblePurpose);
}
@Override
@@ -251,6 +377,10 @@ public String toString() {
sb.append(" webhook: ").append(toIndentedString(webhook)).append("\n");
sb.append(" daysRequested: ").append(toIndentedString(daysRequested)).append("\n");
sb.append(" daysRequired: ").append(toIndentedString(daysRequired)).append("\n");
+ sb.append(" products: ").append(toIndentedString(products)).append("\n");
+ sb.append(" baseReport: ").append(toIndentedString(baseReport)).append("\n");
+ sb.append(" cashflowInsights: ").append(toIndentedString(cashflowInsights)).append("\n");
+ sb.append(" partnerInsights: ").append(toIndentedString(partnerInsights)).append("\n");
sb.append(" consumerReportPermissiblePurpose: ").append(toIndentedString(consumerReportPermissiblePurpose)).append("\n");
sb.append("}");
return sb.toString();
diff --git a/src/main/java/com/plaid/client/model/CraCheckReportCreateResponse.java b/src/main/java/com/plaid/client/model/CraCheckReportCreateResponse.java
index c1104d8419..69a0ff602f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 199cb9a55c..d0cf6795cf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/CraCheckReportIncomeInsightsGetRequest.java b/src/main/java/com/plaid/client/model/CraCheckReportIncomeInsightsGetRequest.java
index 4bedc3fa4d..4c0bae8142 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b54c5fedb8..319cb15240 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/CraCheckReportNetworkInsightsGetRequest.java b/src/main/java/com/plaid/client/model/CraCheckReportNetworkInsightsGetRequest.java
index f66c45d98a..36d81ba7a3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* CraCheckReportNetworkInsightsGetRequest defines the request schema for `/cra/check_report/network_attributes/get`.
*/
@ApiModel(description = "CraCheckReportNetworkInsightsGetRequest defines the request schema for `/cra/check_report/network_attributes/get`.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 25c0807a7c..62ee180cc8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 51c671e021..a605fa7897 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e830d4f8b4..ba459e42fc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
* Defines configuration options to generate Partner Insights
*/
@ApiModel(description = "Defines configuration options to generate Partner Insights")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/CraCheckReportPartnerInsightsGetRequest.java b/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetRequest.java
index 00212fcc38..d7bb81157c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f954787ba7..0a3b8e0852 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 80a1fc7e2d..d656612037 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/CraIncomeInsights.java b/src/main/java/com/plaid/client/model/CraIncomeInsights.java
index b8ff5af3ac..e00cf6f98e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/CraLoanApplication.java b/src/main/java/com/plaid/client/model/CraLoanApplication.java
index 89f2393eed..625ee2dd98 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 abeb8372b3..b839f4ff19 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 bdfb8b2ec1..0658440c93 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 030a888d40..ee67b16a0b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c0edde8117..b3ca2675a1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e3c56bc5c5..ee0d870c63 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 8cffd31733..c8d64e525c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 806748e48e..ae5097dc49 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 254519a022..d7608bc590 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 e75dd01636..9f8f276106 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 abcbfa7a26..c6d1d2490c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 cccc49d77f..0906b3d120 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f9c46f6c16..31a9beeac0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 eaad9f5066..e7bd56a91a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9420ceec5b..817204bd84 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 50b6db060d..a837bf81ed 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 261d8c566e..9f153e0012 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1230172005..bdead2e9b0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 582dae0572..49307a51f7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 100370bf82..e93387dba9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 683591e26b..0138b49e81 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1d246961b7..8ae470d1fc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 055c3076dc..ddaf44a8af 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 329f82feac..9e17e7f3f6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5cdf6a6341..e378c595b5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2deed14778..a5351f7ae9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 76282b07e3..94c631cbea 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c90e629c8b..99ca1b3fb1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 aa8d0bd754..f674a40f51 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0509e054ed..92b07fe4df 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 00f0fe1fa4..9d2ba24041 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0ce9507218..a23bd60d4a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cea304674a..a2439c3b4f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b5310a5652..f777728cea 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 01d48b1a6a..b94d505f3c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0cd0928c62..a70c08524f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f97fc6ad0b..a3d1162f73 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 90cd6d561b..e040c8d7db 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2193669bfb..a3fdd159d7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4c225e0b36..3fc29b75f0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 493d842391..1b82bbd857 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/Credit1099.java b/src/main/java/com/plaid/client/model/Credit1099.java
index 7a98f6fabc..5b6812e0fd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4a85a73531..0da0b2b7ed 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7eb4bfe405..ebc5b052b6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6112bdd7fe..87fcef9b67 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d88b10684d..3def2e74a7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 01559a5757..53bcc24813 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 95142ee133..d892f2da29 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1c9d5bd33d..f199156e1a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b4ad9737ab..e73e684d02 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 87551dce9c..1dbe877f6b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d2884882a4..959aa10b04 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 478981271a..5fcf9b3a85 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5e77aafa50..1353ddd52d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4e829f9ac0..8a5f597b49 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6ef7e2c315..fa14e7f366 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8acd0f96b7..1ab1337e7e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8e003728b3..402afa099c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b15d8b9f34..fad6b752e8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 494b973ba6..7e4de6708a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b7250fcebb..803a87549e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7fae5793b6..9f30f656d4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 9c1f76b0fc..eadf3e6ba0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ef728d80b6..b2c8a63703 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f4b0361dd7..8f084dbd1a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 202ebfaf9e..c488c33988 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 3c8c19fd16..ff9ba6a90e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 13b06d7167..78bf54f3ad 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 1ae44d9902..7cebcf9dc6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 aac4d9d4a1..54a1eec431 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f6ce84b806..5f4b3a9b19 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 741cf004ed..844088425a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f6f202a8d1..628c5d7764 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 364620c3fc..f3e0602109 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f024414d08..ff403ce5c9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 b938de81e9..2cdcb6935f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 daa9dbb7ee..c3e434c331 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bbb5edac8b..07298a14cd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 970c44547f..db99b27d86 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 86f91ea5ea..14ce8b6f83 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2213205055..521778adb6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 375026b409..c83ef280fb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4d35bae030..b95a5057e9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 d4f61d3041..1782e920ff 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 845c18714e..2636b96844 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 53b8613b0d..0227caacc3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 586b944134..672a27d399 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 16a4edbb58..5f61bf65f6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 41b7e3ee02..000720e252 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0611506407..c0fd6b0911 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 601bc3c3da..102c8fa1b2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c9e74d0b32..66ac878a7a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 709cc70863..56e3f751d5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 736095c0e3..ed10de98eb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1b9cf76ecd..0b95800f65 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f048241b75..70516733e7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ab8f80103a..f6beced8f4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 52b063a297..e8850118ed 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 53f58d2018..124c714b87 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7e7e370ae2..3fc397688d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5047bf1d98..f82fdb8a1a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1898367202..c3bf27865a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2f88d6d1c9..68fa89ba76 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bc5425e1dc..cd7c86c93e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 266bbad143..357cc58047 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a5ea5d1740..7e39f89a62 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c8ff9d0d77..72bd872bd5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3f68e2e682..38d3dd0afa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 585132c65c..e8a7dd1132 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 52caa93dcf..1a9ac31584 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 08ea74ea4a..e4187878fe 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4b180f08f8..4860786637 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9a14c730b3..36cb72c087 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e6d4156bd7..0f06f4a4c7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9ec17b789d..e9967d4aee 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cee0a3c880..493e116afa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5b23188163..6121bfa06f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 87f5ece365..7efe2d68d0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 32f61ba9af..485da092e7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 237051976e..300a6a7155 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f56461c5a7..231e732593 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3547cc1cb4..bfedab2240 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e86fa5a18c..f9fda75874 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fcbb833af9..af4f924ba6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c372204433..5606a9c1d8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3cf999ddb3..d5a9ad1a09 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 078df7986f..b10e4cfcaf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 44c82c8399..88ec80d6df 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cf7af8fc9a..f7a306d555 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 31d7c6f71b..3030805c87 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7d39efdc30..62b41583ca 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8faf352d05..d1a4749a7e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 dd3b6224a3..d702466d66 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a7d6308fa9..6c341d8000 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1ac76fef3e..d8be8e6077 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3d251e8671..ae50dc9425 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 046d786603..46ab29ac90 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9cc5d39c25..1400e73ea8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5e42c7524d..a733599a3d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9398c70f16..500636efd7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1d466e13d0..f18e411bdd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b89fb1f72a..24b66753a2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1f5338f960..3d715b541a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4245ffe7e8..c8248118e8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 182e1453aa..3d542c55dd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fd63f80196..97b09f877c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7fed899b9f..b68dc17f3b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 edf76258f8..aec1fc6236 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f9bc5178ac..a87f1f4494 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4a7aa43d18..44e0515141 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 967adc3910..583ea184dd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 07263d7407..adbbb97d5a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ac04c1999e..d9ac5e47d4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 27b1752d26..a8039b9f2a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a9d9964ebb..2b1af5d790 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 788c039342..31486b1f56 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 b67fba7362..e40afc2a9c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 95a77ac1c9..eedb2345fe 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 718f94ce99..7a0968e0c4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 92c8ac0e87..6eece48e9b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 197a172f83..30b6b144f8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 10234eacf3..0441ff47de 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e513d4e1a7..abfae1192c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f2cdc5a7c4..0242786467 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 92116343e8..0edf7c928f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 514a328c81..960a33af6b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/CustomerInitiatedReturnRisk.java b/src/main/java/com/plaid/client/model/CustomerInitiatedReturnRisk.java
index ada47b0cfb..cd1acc9e4a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bee144a162..eef343fea8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8bcd09a7c3..a2206325c8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3ca9356fa8..5e78aeede6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c1fdfd9d48..d2ed3ced63 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1f3b1124ad..ad03f1afec 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 599fc16d04..079777ac23 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 a7e4fb6bca..58f1753b40 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 820db1cb78..e0cda8ebf8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f60282f1c0..8d9bc2a60a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b9adb3ece7..1a92234d89 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e651283ab0..9e7f8d5627 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2b358dbfd4..2c27c497cd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/DepositSwitchAddressData.java b/src/main/java/com/plaid/client/model/DepositSwitchAddressData.java
index 1772d55f25..6cfe9e8dea 100644
--- a/src/main/java/com/plaid/client/model/DepositSwitchAddressData.java
+++ b/src/main/java/com/plaid/client/model/DepositSwitchAddressData.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* (Deprecated) The user's address.
*/
@ApiModel(description = "(Deprecated) The user's address.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class DepositSwitchAddressData {
public static final String SERIALIZED_NAME_CITY = "city";
@SerializedName(SERIALIZED_NAME_CITY)
diff --git a/src/main/java/com/plaid/client/model/DepositSwitchAltCreateRequest.java b/src/main/java/com/plaid/client/model/DepositSwitchAltCreateRequest.java
index 4f178de5c6..0fc4eb1fca 100644
--- a/src/main/java/com/plaid/client/model/DepositSwitchAltCreateRequest.java
+++ b/src/main/java/com/plaid/client/model/DepositSwitchAltCreateRequest.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
* (Deprecated) DepositSwitchAltCreateRequest defines the request schema for `/deposit_switch/alt/create`
*/
@ApiModel(description = "(Deprecated) DepositSwitchAltCreateRequest defines the request schema for `/deposit_switch/alt/create`")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class DepositSwitchAltCreateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
diff --git a/src/main/java/com/plaid/client/model/DepositSwitchAltCreateResponse.java b/src/main/java/com/plaid/client/model/DepositSwitchAltCreateResponse.java
index a7686cfc97..7d5a9d8fd7 100644
--- a/src/main/java/com/plaid/client/model/DepositSwitchAltCreateResponse.java
+++ b/src/main/java/com/plaid/client/model/DepositSwitchAltCreateResponse.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* (Deprecated) DepositSwitchAltCreateResponse defines the response schema for `/deposit_switch/alt/create`
*/
@ApiModel(description = "(Deprecated) DepositSwitchAltCreateResponse defines the response schema for `/deposit_switch/alt/create`")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class DepositSwitchAltCreateResponse {
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/DepositSwitchCreateRequest.java b/src/main/java/com/plaid/client/model/DepositSwitchCreateRequest.java
index 56b1104147..d8be61ff66 100644
--- a/src/main/java/com/plaid/client/model/DepositSwitchCreateRequest.java
+++ b/src/main/java/com/plaid/client/model/DepositSwitchCreateRequest.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
* (Deprecated) DepositSwitchCreateRequest defines the request schema for `/deposit_switch/create`
*/
@ApiModel(description = "(Deprecated) DepositSwitchCreateRequest defines the request schema for `/deposit_switch/create`")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class DepositSwitchCreateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
diff --git a/src/main/java/com/plaid/client/model/DepositSwitchCreateRequestOptions.java b/src/main/java/com/plaid/client/model/DepositSwitchCreateRequestOptions.java
index f859fbc234..66d1f0a717 100644
--- a/src/main/java/com/plaid/client/model/DepositSwitchCreateRequestOptions.java
+++ b/src/main/java/com/plaid/client/model/DepositSwitchCreateRequestOptions.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
* (Deprecated) Options to configure the `/deposit_switch/create` request. If provided, cannot be `null`.
*/
@ApiModel(description = "(Deprecated) Options to configure the `/deposit_switch/create` request. If provided, cannot be `null`.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class DepositSwitchCreateRequestOptions {
public static final String SERIALIZED_NAME_WEBHOOK = "webhook";
@SerializedName(SERIALIZED_NAME_WEBHOOK)
diff --git a/src/main/java/com/plaid/client/model/DepositSwitchCreateResponse.java b/src/main/java/com/plaid/client/model/DepositSwitchCreateResponse.java
index 46e7c3043c..be41b25070 100644
--- a/src/main/java/com/plaid/client/model/DepositSwitchCreateResponse.java
+++ b/src/main/java/com/plaid/client/model/DepositSwitchCreateResponse.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* (Deprecated) DepositSwitchCreateResponse defines the response schema for `/deposit_switch/create`
*/
@ApiModel(description = "(Deprecated) DepositSwitchCreateResponse defines the response schema for `/deposit_switch/create`")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class DepositSwitchCreateResponse {
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/DepositSwitchGetRequest.java b/src/main/java/com/plaid/client/model/DepositSwitchGetRequest.java
index ee93fd4b5f..f9f494bd58 100644
--- a/src/main/java/com/plaid/client/model/DepositSwitchGetRequest.java
+++ b/src/main/java/com/plaid/client/model/DepositSwitchGetRequest.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* (Deprecated) DepositSwitchGetRequest defines the request schema for `/deposit_switch/get`
*/
@ApiModel(description = "(Deprecated) DepositSwitchGetRequest defines the request schema for `/deposit_switch/get`")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class DepositSwitchGetRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
diff --git a/src/main/java/com/plaid/client/model/DepositSwitchGetResponse.java b/src/main/java/com/plaid/client/model/DepositSwitchGetResponse.java
index ebddd5a3f9..4512f6c1c7 100644
--- a/src/main/java/com/plaid/client/model/DepositSwitchGetResponse.java
+++ b/src/main/java/com/plaid/client/model/DepositSwitchGetResponse.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
* (Deprecated) DepositSwitchGetResponse defines the response schema for `/deposit_switch/get`
*/
@ApiModel(description = "(Deprecated) DepositSwitchGetResponse defines the response schema for `/deposit_switch/get`")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class DepositSwitchGetResponse {
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/DepositSwitchStateUpdateWebhook.java b/src/main/java/com/plaid/client/model/DepositSwitchStateUpdateWebhook.java
index 868c64cb67..8071ce4214 100644
--- a/src/main/java/com/plaid/client/model/DepositSwitchStateUpdateWebhook.java
+++ b/src/main/java/com/plaid/client/model/DepositSwitchStateUpdateWebhook.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
* (Deprecated) Fired when the status of a deposit switch request has changed.
*/
@ApiModel(description = "(Deprecated) Fired when the status of a deposit switch request has changed.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class DepositSwitchStateUpdateWebhook {
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/DepositSwitchTargetAccount.java b/src/main/java/com/plaid/client/model/DepositSwitchTargetAccount.java
index 4f11b9ee2d..5706356eec 100644
--- a/src/main/java/com/plaid/client/model/DepositSwitchTargetAccount.java
+++ b/src/main/java/com/plaid/client/model/DepositSwitchTargetAccount.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* (Deprecated) The deposit switch destination account
*/
@ApiModel(description = "(Deprecated) The deposit switch destination account")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class DepositSwitchTargetAccount {
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/DepositSwitchTargetUser.java b/src/main/java/com/plaid/client/model/DepositSwitchTargetUser.java
index 319b8adacc..ddd25c279f 100644
--- a/src/main/java/com/plaid/client/model/DepositSwitchTargetUser.java
+++ b/src/main/java/com/plaid/client/model/DepositSwitchTargetUser.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
* (Deprecated) The deposit switch target user
*/
@ApiModel(description = "(Deprecated) The deposit switch target user")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class DepositSwitchTargetUser {
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/DepositSwitchTokenCreateRequest.java b/src/main/java/com/plaid/client/model/DepositSwitchTokenCreateRequest.java
index fa81a17ced..f1005f2a09 100644
--- a/src/main/java/com/plaid/client/model/DepositSwitchTokenCreateRequest.java
+++ b/src/main/java/com/plaid/client/model/DepositSwitchTokenCreateRequest.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* (Deprecated) DepositSwitchTokenCreateRequest defines the request schema for `/deposit_switch/token/create`
*/
@ApiModel(description = "(Deprecated) DepositSwitchTokenCreateRequest defines the request schema for `/deposit_switch/token/create`")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class DepositSwitchTokenCreateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
diff --git a/src/main/java/com/plaid/client/model/DepositSwitchTokenCreateResponse.java b/src/main/java/com/plaid/client/model/DepositSwitchTokenCreateResponse.java
index 1680178843..04653a42f6 100644
--- a/src/main/java/com/plaid/client/model/DepositSwitchTokenCreateResponse.java
+++ b/src/main/java/com/plaid/client/model/DepositSwitchTokenCreateResponse.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* (Deprecated) DepositSwitchTokenCreateResponse defines the response schema for `/deposit_switch/token/create`
*/
@ApiModel(description = "(Deprecated) DepositSwitchTokenCreateResponse defines the response schema for `/deposit_switch/token/create`")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class DepositSwitchTokenCreateResponse {
public static final String SERIALIZED_NAME_DEPOSIT_SWITCH_TOKEN = "deposit_switch_token";
@SerializedName(SERIALIZED_NAME_DEPOSIT_SWITCH_TOKEN)
diff --git a/src/main/java/com/plaid/client/model/DepositoryAccountSubtype.java b/src/main/java/com/plaid/client/model/DepositoryAccountSubtype.java
index bdd97f242d..9c9c19fa97 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 cc399ef8f5..db103798b5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 22a86ee648..cc82d109ea 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 45e626bfb6..060abe34c3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 dd730e5b8a..66aec32f23 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 780e0fe30e..909e482803 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7c09279b11..d5ac7a0d0c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 ab6ca273b0..2a227d5fa4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bb6a7037e9..f8018f6fb9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 fe7d28c780..93dc729b90 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 102889f70d..d723f7832a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d50efc9104..beb9bc1c8e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 f112194d24..1d8a94c2df 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6a50161a30..fbb2dcec05 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e9c2782f2f..0f87ad162d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b5ee7845cf..7e39f32bd7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 966d7d242b..fddf0522dc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 ee0936e27c..c151c12174 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1fb00bad23..d4170c41d6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class DocumentaryVerificationDocument {
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
diff --git a/src/main/java/com/plaid/client/model/Earnings.java b/src/main/java/com/plaid/client/model/Earnings.java
index c8ec68774b..0be4d12443 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ca08289ab3..3e15cff219 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5d8432e45a..bb89958099 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 18b43444cf..c5e0d68dbe 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7057b89ce2..ddab7ec369 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b26fc29353..6363fdf845 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8b19835d6b..82d6507c8a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4623856e33..9b68c0eaca 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ea1de010bc..7216f29d62 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7a109585db..1b94ec8e4a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4d18c45336..8d09c4dcb4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a06adafaed..65019667f4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 15ace9cf7d..b326afc581 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2c714b559f..1a7fccd828 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fbdc16cd64..60e6ed7a04 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 a01b6ebbd2..f463a4bb21 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a3f65c6279..742153fb85 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 eb3a997172..5dede64f46 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 724bdfe163..3044634934 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 9bc4db5c0f..d1a719ea8a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 17f079aa96..f4f25132db 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 9c9db8c106..69c36e4cce 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ce37c19dda..0c616cde54 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9d5dbcdd95..3a188f53b4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 330c40fef8..43a087e8de 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f9611e69da..173d6c74db 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 77589fd765..f043b15f8b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d69401a2bf..f646f9a94d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a3b1ed64a8..ebb58e1509 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 877c462180..9b150ec452 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2e4f026df5..4ed5268e83 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 88e9a534fc..0822e4c978 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7cbc8e3f21..6f2eeb0ae2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 581f644b66..3e47b5bb7e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f36f5a90fe..46b3e01f52 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cfce2864ea..909e7303fa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 32b5c2a598..302f5cada4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 f6ad1ce094..a08a6ad6a7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a5af3f06d5..45d86c69f1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a8633b2511..d842951556 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b132c476ce..fe5cc605ed 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fed6b925aa..e1d94fdeca 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 610369f73a..15c5d204bc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/ExpirationDate.java b/src/main/java/com/plaid/client/model/ExpirationDate.java
index 593b10c348..43d25a7e31 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 0d55567418..83f6783d30 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 19a6dc0788..2ad6b86d6c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c580d940ab..2e0a8c3f9c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1d7a6cf0ef..a4fa65577f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 74a0e55306..df73634d4f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 53dbde986e..5b0ffb150b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0e99e53a74..9b65546ecf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8005dc640c..81fae331c8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6e038166c2..f2ab1dbb15 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 e6e21b9379..9270dd4baa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bee5730e69..577728db1c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 54e1f10749..500ba8a07c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 b5a058ca96..739db492b7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fc170bf3a6..829e409d61 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8bc4614f04..530f9b7f1f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 e78372c93d..5b44f625e8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 95b030795d..7753fed904 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 bf5eccde22..3d8418a520 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 9eb9f8c2a9..f2803dca40 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 3c37dcafb4..a16476fc5f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 59f378b571..4c2751d520 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a435cc8b37..9a493fe1f8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 415628c3ed..f69ba12b7b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 4ace24f16f..5a0c036cc6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a66df908e5..466179c19e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 07fceb70a1..719d38ab64 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 69cda4eb3a..5013fb2d48 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0c8f776327..e52397ef18 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b341871ec3..7bc15a9c3e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8ede2d07b3..032269c491 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 0b186d912b..29334640ae 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b324210ce1..37743d4884 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f2343067ac..053ce29e3b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fc7b17f2a9..92ea117954 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 236113f813..1dbf565511 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/GenericScreeningHitLocationItems.java b/src/main/java/com/plaid/client/model/GenericScreeningHitLocationItems.java
index 9cb361d275..ccd4344afd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f6683b6888..31e0c9fc50 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b578dadf90..8af36ba273 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8fcded1889..4937ad9c0b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 14615e79cf..6ad66d7867 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 f99e2fad1b..f7f589ce04 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cdb737e845..450da29caf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3bc3c8b6eb..a0c407b523 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2c0e810a08..c6763441e8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e7ebcc2779..52d5a98969 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ae2fb4fa81..37f0e00f73 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 42ad2b0821..dcb69aa68f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 faf749516d..8f22a3ead6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/IDNumberType.java b/src/main/java/com/plaid/client/model/IDNumberType.java
index d1dc917781..3209158ac0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/ISOCurrencyCode.java b/src/main/java/com/plaid/client/model/ISOCurrencyCode.java
index c500a068ca..2c4b350d82 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 7a6976b490..b1385e600d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bddb70e473..40a2df492a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 613f574446..e2fe99f08b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 904273a2e4..1d462fc66c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d76ce9364c..425746fcf9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b7b7759075..39a49371aa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8b06f73896..629598219e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 eddc57cce6..b110d026fb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0df4426d78..60ef511e96 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0eb0901b79..1ed999cf7d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bda6821835..1f61d4d9ef 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b0d1ffe7bf..148072c818 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 282398fba9..e7dd650b32 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f9ed61b2d2..bfc6179bad 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 97b81d1915..bb553d825c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 09607150c7..717b394d86 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 957c106d30..1ea1faadfd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3d29c844ec..aba7c691f2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8aed0f4405..49ebe6e465 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8053cf48d6..a64b9b759d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 f211e73a38..effa14379f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class IdentityVerification {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationAutofillAddress.java b/src/main/java/com/plaid/client/model/IdentityVerificationAutofillAddress.java
index 822435b9b3..db2fe3c707 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cc0fc9a460..609bc02b70 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 389019af2a..cfd282fd7c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bfc55da141..f4545fe789 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 bb0d9d86d3..accda3da85 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 19be829886..6c31a544bc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3f72109e6f..1e1f3b3f5a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 15efb23cf5..44374728f4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class IdentityVerificationCreateResponse {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationDocumentAddressResponse.java b/src/main/java/com/plaid/client/model/IdentityVerificationDocumentAddressResponse.java
index fa53e49acf..5c169cf7e8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a96899400a..f9614ad814 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5c2fa03433..a70c44daae 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 71c1ba6308..2562011bc1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class IdentityVerificationGetResponse {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationListRequest.java b/src/main/java/com/plaid/client/model/IdentityVerificationListRequest.java
index 5b29f8d3d3..94828d4cca 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 55473a8a82..92ddd76f14 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 47fe5196ef..3d968c8bb2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 774bef688b..54881cda9b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 69aa1d6e15..d57069430d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b1219d74f9..2f4bb1c32c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 95e017f448..96715f3c09 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a7f174d1da..e8c2bf6e2c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 dc360eec15..fb562830f2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class IdentityVerificationRetryResponse {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
diff --git a/src/main/java/com/plaid/client/model/IdentityVerificationStatus.java b/src/main/java/com/plaid/client/model/IdentityVerificationStatus.java
index 87795648c0..8c76a4d480 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 eb16b28eed..294f9bd6dc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cc80139461..d102ec5214 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 b5c02d4351..317c9756c5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b3c9edda43..a7b776fdce 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 defe44ff6f..a4d69f8e57 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a214e8790a..bd2559d0a6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 45e604ea8d..2d8c56efff 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 82bd696343..fcd9c77bf2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 b01945d8fb..844c715bcc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 057e3d2ff9..21ea57dab7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 9b8bfaef2c..871b45bb47 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4c4bb6d034..97500a0de6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f0e83ac55b..965dc1f8a5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/IncomeOverride.java b/src/main/java/com/plaid/client/model/IncomeOverride.java
index dda1989eda..61cb28589f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0550e0994c..8b5a6836dc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0cd8b58158..6e65f054d4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e2a3b52d1c..b893008c45 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e4ebc34b7b..0b2a26846b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ef8d490b50..03d09c2f6d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 175f9eb75e..b1aa0d846b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 033bc550ee..9587a1b270 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9111aa4995..48f7f98aea 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 dfa24c4258..c7a978efb3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 34e0875398..64051ae94d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 4362e7c52d..81c9c881ad 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7c2694d8c9..30798f308e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 57386893a2..70ab19104d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 9de244029d..264f56ee77 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8e6b93666b..879b92f5bb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 897fac9507..4f1d6471d0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ca881dc1e0..2a9e1f9edc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 94874504e8..a46e057467 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bb6c153d60..17f74e5252 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 158a47c1e1..f589a4ce2e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 67d1b878ed..50ddfbe8cb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9aa5d5af16..cc07b30a9d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 61855e1e0c..d8960404d2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2ced5e67df..0004199bd7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 5e9495e89b..506e5853e5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 82f4a8946e..31856f9702 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7ff056ada6..d7ffba396b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c496a2eb19..058555a308 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f9304066e8..deb329b353 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b31790dbf3..16b25224d5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 df0ac084f7..433abc3323 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 fdafc40fb2..7182541c04 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e003db22e7..6b436a7a65 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 98eae3d9ee..d878010ce3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d4d4234bc4..f28d332757 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 34eebd2ed0..b61d87f62b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 aef32826ae..84675e11eb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4cc8ccdb0b..9dbe350cce 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -21,20 +21,25 @@
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.TransferCapabilitiesGetRTP;
+import com.plaid.client.model.TransferCapabilitiesGetRfP;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
- * Contains the RTP network and types supported by the linked Item's institution.
+ * Contains the RTP and RfP network and types supported by the linked Item's institution.
*/
-@ApiModel(description = "Contains the RTP network and types supported by the linked Item's institution.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@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-02-07T19:05:33.763924Z[Etc/UTC]")
public class InstitutionSupportedNetworks {
public static final String SERIALIZED_NAME_RTP = "rtp";
@SerializedName(SERIALIZED_NAME_RTP)
private TransferCapabilitiesGetRTP rtp;
+ public static final String SERIALIZED_NAME_RFP = "rfp";
+ @SerializedName(SERIALIZED_NAME_RFP)
+ private TransferCapabilitiesGetRfP rfp;
+
public InstitutionSupportedNetworks rtp(TransferCapabilitiesGetRTP rtp) {
@@ -58,6 +63,28 @@ public void setRtp(TransferCapabilitiesGetRTP rtp) {
}
+ public InstitutionSupportedNetworks rfp(TransferCapabilitiesGetRfP rfp) {
+
+ this.rfp = rfp;
+ return this;
+ }
+
+ /**
+ * Get rfp
+ * @return rfp
+ **/
+ @ApiModelProperty(required = true, value = "")
+
+ public TransferCapabilitiesGetRfP getRfp() {
+ return rfp;
+ }
+
+
+ public void setRfp(TransferCapabilitiesGetRfP rfp) {
+ this.rfp = rfp;
+ }
+
+
@Override
public boolean equals(Object o) {
if (this == o) {
@@ -67,12 +94,13 @@ public boolean equals(Object o) {
return false;
}
InstitutionSupportedNetworks institutionSupportedNetworks = (InstitutionSupportedNetworks) o;
- return Objects.equals(this.rtp, institutionSupportedNetworks.rtp);
+ return Objects.equals(this.rtp, institutionSupportedNetworks.rtp) &&
+ Objects.equals(this.rfp, institutionSupportedNetworks.rfp);
}
@Override
public int hashCode() {
- return Objects.hash(rtp);
+ return Objects.hash(rtp, rfp);
}
@Override
@@ -80,6 +108,7 @@ public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class InstitutionSupportedNetworks {\n");
sb.append(" rtp: ").append(toIndentedString(rtp)).append("\n");
+ sb.append(" rfp: ").append(toIndentedString(rfp)).append("\n");
sb.append("}");
return sb.toString();
}
diff --git a/src/main/java/com/plaid/client/model/InstitutionsGetByIdRequest.java b/src/main/java/com/plaid/client/model/InstitutionsGetByIdRequest.java
index 8b98755f58..bed31431bb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6c57ef3707..33f6ba8cd5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 911a68ff9f..b03ad7faae 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f4e2c8e742..f1f0e20c5a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5822f0b87e..2769524fb4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e4c29d1001..eaa68f486d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e29e094d2d..ac62396980 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0eb48614ed..6cba26d451 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6160108ffd..af945e61dc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 74fd5cb96d..e4ffdf9955 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0fae27bac0..9d12120f87 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e469fd4dd5..dae84d7b56 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 7b943353d1..84e9022a04 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4c55da7b0a..146bf11476 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 178c37fcbd..455693f1f3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class InvestmentTransaction {
public static final String SERIALIZED_NAME_INVESTMENT_TRANSACTION_ID = "investment_transaction_id";
@SerializedName(SERIALIZED_NAME_INVESTMENT_TRANSACTION_ID)
diff --git a/src/main/java/com/plaid/client/model/InvestmentTransactionSubtype.java b/src/main/java/com/plaid/client/model/InvestmentTransactionSubtype.java
index 7bcebfc85f..0438b3e010 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 7b1b2ddeb8..87e3e0f258 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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
new file mode 100644
index 0000000000..11ca5fece9
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/InvestmentsAuth401kContributionDetails.java
@@ -0,0 +1,274 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
+ *
+ *
+ * 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.InvestmentTransaction;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * Object containing information on contribution transactions for the 401k account.
+ */
+@ApiModel(description = "Object containing information on contribution transactions for the 401k account.")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
+public class InvestmentsAuth401kContributionDetails {
+ public static final String SERIALIZED_NAME_LAST_CONTRIBUTION_TRANSACTIONS = "last_contribution_transactions";
+ @SerializedName(SERIALIZED_NAME_LAST_CONTRIBUTION_TRANSACTIONS)
+ private List lastContributionTransactions = new ArrayList<>();
+
+ public static final String SERIALIZED_NAME_CONTRIBUTION_COUNT1M = "contribution_count_1m";
+ @SerializedName(SERIALIZED_NAME_CONTRIBUTION_COUNT1M)
+ private Integer contributionCount1m;
+
+ public static final String SERIALIZED_NAME_CONTRIBUTION_AMOUNT1M = "contribution_amount_1m";
+ @SerializedName(SERIALIZED_NAME_CONTRIBUTION_AMOUNT1M)
+ private Float contributionAmount1m;
+
+ public static final String SERIALIZED_NAME_CONTRIBUTION_COUNT6M = "contribution_count_6m";
+ @SerializedName(SERIALIZED_NAME_CONTRIBUTION_COUNT6M)
+ private Integer contributionCount6m;
+
+ public static final String SERIALIZED_NAME_CONTRIBUTION_AMOUNT6M = "contribution_amount_6m";
+ @SerializedName(SERIALIZED_NAME_CONTRIBUTION_AMOUNT6M)
+ private Float contributionAmount6m;
+
+ public static final String SERIALIZED_NAME_CONTRIBUTION_COUNT12M = "contribution_count_12m";
+ @SerializedName(SERIALIZED_NAME_CONTRIBUTION_COUNT12M)
+ private Integer contributionCount12m;
+
+ public static final String SERIALIZED_NAME_CONTRIBUTION_AMOUNT12M = "contribution_amount_12m";
+ @SerializedName(SERIALIZED_NAME_CONTRIBUTION_AMOUNT12M)
+ private Float contributionAmount12m;
+
+
+ public InvestmentsAuth401kContributionDetails lastContributionTransactions(List lastContributionTransactions) {
+
+ this.lastContributionTransactions = lastContributionTransactions;
+ return this;
+ }
+
+ public InvestmentsAuth401kContributionDetails addLastContributionTransactionsItem(InvestmentTransaction lastContributionTransactionsItem) {
+ this.lastContributionTransactions.add(lastContributionTransactionsItem);
+ return this;
+ }
+
+ /**
+ * A list of the most recent contribution transactions for the 401k account. Includes all contributions made on the same day.
+ * @return lastContributionTransactions
+ **/
+ @ApiModelProperty(required = true, value = "A list of the most recent contribution transactions for the 401k account. Includes all contributions made on the same day.")
+
+ public List getLastContributionTransactions() {
+ return lastContributionTransactions;
+ }
+
+
+ public void setLastContributionTransactions(List lastContributionTransactions) {
+ this.lastContributionTransactions = lastContributionTransactions;
+ }
+
+
+ public InvestmentsAuth401kContributionDetails contributionCount1m(Integer contributionCount1m) {
+
+ this.contributionCount1m = contributionCount1m;
+ return this;
+ }
+
+ /**
+ * Number of contribution transactions on this account, for the past month.
+ * @return contributionCount1m
+ **/
+ @ApiModelProperty(required = true, value = "Number of contribution transactions on this account, for the past month.")
+
+ public Integer getContributionCount1m() {
+ return contributionCount1m;
+ }
+
+
+ public void setContributionCount1m(Integer contributionCount1m) {
+ this.contributionCount1m = contributionCount1m;
+ }
+
+
+ public InvestmentsAuth401kContributionDetails contributionAmount1m(Float contributionAmount1m) {
+
+ this.contributionAmount1m = contributionAmount1m;
+ return this;
+ }
+
+ /**
+ * Sum of the contribution transactions on this account, for the past month.
+ * @return contributionAmount1m
+ **/
+ @ApiModelProperty(required = true, value = "Sum of the contribution transactions on this account, for the past month.")
+
+ public Float getContributionAmount1m() {
+ return contributionAmount1m;
+ }
+
+
+ public void setContributionAmount1m(Float contributionAmount1m) {
+ this.contributionAmount1m = contributionAmount1m;
+ }
+
+
+ public InvestmentsAuth401kContributionDetails contributionCount6m(Integer contributionCount6m) {
+
+ this.contributionCount6m = contributionCount6m;
+ return this;
+ }
+
+ /**
+ * Number of contribution transactions on this account, for the past 6 months.
+ * @return contributionCount6m
+ **/
+ @ApiModelProperty(required = true, value = "Number of contribution transactions on this account, for the past 6 months.")
+
+ public Integer getContributionCount6m() {
+ return contributionCount6m;
+ }
+
+
+ public void setContributionCount6m(Integer contributionCount6m) {
+ this.contributionCount6m = contributionCount6m;
+ }
+
+
+ public InvestmentsAuth401kContributionDetails contributionAmount6m(Float contributionAmount6m) {
+
+ this.contributionAmount6m = contributionAmount6m;
+ return this;
+ }
+
+ /**
+ * Sum of the contribution transactions on this account, for the past 6 months.
+ * @return contributionAmount6m
+ **/
+ @ApiModelProperty(required = true, value = "Sum of the contribution transactions on this account, for the past 6 months.")
+
+ public Float getContributionAmount6m() {
+ return contributionAmount6m;
+ }
+
+
+ public void setContributionAmount6m(Float contributionAmount6m) {
+ this.contributionAmount6m = contributionAmount6m;
+ }
+
+
+ public InvestmentsAuth401kContributionDetails contributionCount12m(Integer contributionCount12m) {
+
+ this.contributionCount12m = contributionCount12m;
+ return this;
+ }
+
+ /**
+ * Number of contribution transactions on this account, for the past 12 months.
+ * @return contributionCount12m
+ **/
+ @ApiModelProperty(required = true, value = "Number of contribution transactions on this account, for the past 12 months.")
+
+ public Integer getContributionCount12m() {
+ return contributionCount12m;
+ }
+
+
+ public void setContributionCount12m(Integer contributionCount12m) {
+ this.contributionCount12m = contributionCount12m;
+ }
+
+
+ public InvestmentsAuth401kContributionDetails contributionAmount12m(Float contributionAmount12m) {
+
+ this.contributionAmount12m = contributionAmount12m;
+ return this;
+ }
+
+ /**
+ * Sum of the contribution transactions on this account, for the past 12 months.
+ * @return contributionAmount12m
+ **/
+ @ApiModelProperty(required = true, value = "Sum of the contribution transactions on this account, for the past 12 months.")
+
+ public Float getContributionAmount12m() {
+ return contributionAmount12m;
+ }
+
+
+ public void setContributionAmount12m(Float contributionAmount12m) {
+ this.contributionAmount12m = contributionAmount12m;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ InvestmentsAuth401kContributionDetails investmentsAuth401kContributionDetails = (InvestmentsAuth401kContributionDetails) o;
+ return Objects.equals(this.lastContributionTransactions, investmentsAuth401kContributionDetails.lastContributionTransactions) &&
+ Objects.equals(this.contributionCount1m, investmentsAuth401kContributionDetails.contributionCount1m) &&
+ Objects.equals(this.contributionAmount1m, investmentsAuth401kContributionDetails.contributionAmount1m) &&
+ Objects.equals(this.contributionCount6m, investmentsAuth401kContributionDetails.contributionCount6m) &&
+ Objects.equals(this.contributionAmount6m, investmentsAuth401kContributionDetails.contributionAmount6m) &&
+ Objects.equals(this.contributionCount12m, investmentsAuth401kContributionDetails.contributionCount12m) &&
+ Objects.equals(this.contributionAmount12m, investmentsAuth401kContributionDetails.contributionAmount12m);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(lastContributionTransactions, contributionCount1m, contributionAmount1m, contributionCount6m, contributionAmount6m, contributionCount12m, contributionAmount12m);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class InvestmentsAuth401kContributionDetails {\n");
+ sb.append(" lastContributionTransactions: ").append(toIndentedString(lastContributionTransactions)).append("\n");
+ sb.append(" contributionCount1m: ").append(toIndentedString(contributionCount1m)).append("\n");
+ sb.append(" contributionAmount1m: ").append(toIndentedString(contributionAmount1m)).append("\n");
+ sb.append(" contributionCount6m: ").append(toIndentedString(contributionCount6m)).append("\n");
+ sb.append(" contributionAmount6m: ").append(toIndentedString(contributionAmount6m)).append("\n");
+ sb.append(" contributionCount12m: ").append(toIndentedString(contributionCount12m)).append("\n");
+ sb.append(" contributionAmount12m: ").append(toIndentedString(contributionAmount12m)).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/InvestmentsAuth401kFeeDetails.java b/src/main/java/com/plaid/client/model/InvestmentsAuth401kFeeDetails.java
new file mode 100644
index 0000000000..8c27638a49
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/InvestmentsAuth401kFeeDetails.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.617.1
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+
+package com.plaid.client.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import com.google.gson.TypeAdapter;
+import com.google.gson.annotations.JsonAdapter;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.stream.JsonReader;
+import com.google.gson.stream.JsonWriter;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+
+/**
+ * Object containing 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-02-07T19:05:33.763924Z[Etc/UTC]")
+public class InvestmentsAuth401kFeeDetails {
+ public static final String SERIALIZED_NAME_ACCOUNT_FEE_COUNT12M = "account_fee_count_12m";
+ @SerializedName(SERIALIZED_NAME_ACCOUNT_FEE_COUNT12M)
+ private Integer accountFeeCount12m;
+
+ public static final String SERIALIZED_NAME_ACCOUNT_FEE_AMOUNT12M = "account_fee_amount_12m";
+ @SerializedName(SERIALIZED_NAME_ACCOUNT_FEE_AMOUNT12M)
+ private Float accountFeeAmount12m;
+
+
+ public InvestmentsAuth401kFeeDetails accountFeeCount12m(Integer accountFeeCount12m) {
+
+ this.accountFeeCount12m = accountFeeCount12m;
+ return this;
+ }
+
+ /**
+ * Number of account fee transactions on this account, for the past 12 months.
+ * @return accountFeeCount12m
+ **/
+ @ApiModelProperty(required = true, value = "Number of account fee transactions on this account, for the past 12 months.")
+
+ public Integer getAccountFeeCount12m() {
+ return accountFeeCount12m;
+ }
+
+
+ public void setAccountFeeCount12m(Integer accountFeeCount12m) {
+ this.accountFeeCount12m = accountFeeCount12m;
+ }
+
+
+ public InvestmentsAuth401kFeeDetails accountFeeAmount12m(Float accountFeeAmount12m) {
+
+ this.accountFeeAmount12m = accountFeeAmount12m;
+ return this;
+ }
+
+ /**
+ * Sum of account fee transactions on this account, for the past 12 months.
+ * @return accountFeeAmount12m
+ **/
+ @ApiModelProperty(required = true, value = "Sum of account fee transactions on this account, for the past 12 months.")
+
+ public Float getAccountFeeAmount12m() {
+ return accountFeeAmount12m;
+ }
+
+
+ public void setAccountFeeAmount12m(Float accountFeeAmount12m) {
+ this.accountFeeAmount12m = accountFeeAmount12m;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ InvestmentsAuth401kFeeDetails investmentsAuth401kFeeDetails = (InvestmentsAuth401kFeeDetails) o;
+ return Objects.equals(this.accountFeeCount12m, investmentsAuth401kFeeDetails.accountFeeCount12m) &&
+ Objects.equals(this.accountFeeAmount12m, investmentsAuth401kFeeDetails.accountFeeAmount12m);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(accountFeeCount12m, accountFeeAmount12m);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class InvestmentsAuth401kFeeDetails {\n");
+ sb.append(" accountFeeCount12m: ").append(toIndentedString(accountFeeCount12m)).append("\n");
+ sb.append(" accountFeeAmount12m: ").append(toIndentedString(accountFeeAmount12m)).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/InvestmentsAuthAccountDetails401k.java b/src/main/java/com/plaid/client/model/InvestmentsAuthAccountDetails401k.java
new file mode 100644
index 0000000000..422bf57233
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/InvestmentsAuthAccountDetails401k.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.617.1
+ *
+ *
+ * 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.InvestmentsAuth401kContributionDetails;
+import com.plaid.client.model.InvestmentsAuth401kFeeDetails;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+
+/**
+ * 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-02-07T19:05:33.763924Z[Etc/UTC]")
+public class InvestmentsAuthAccountDetails401k {
+ public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
+ @SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
+ private String accountId;
+
+ public static final String SERIALIZED_NAME_FEE_DETAILS = "fee_details";
+ @SerializedName(SERIALIZED_NAME_FEE_DETAILS)
+ private InvestmentsAuth401kFeeDetails feeDetails;
+
+ public static final String SERIALIZED_NAME_CONTRIBUTION_DETAILS = "contribution_details";
+ @SerializedName(SERIALIZED_NAME_CONTRIBUTION_DETAILS)
+ private InvestmentsAuth401kContributionDetails contributionDetails;
+
+
+ public InvestmentsAuthAccountDetails401k accountId(String accountId) {
+
+ this.accountId = accountId;
+ return this;
+ }
+
+ /**
+ * The ID of the 401k account.
+ * @return accountId
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "The ID of the 401k account.")
+
+ public String getAccountId() {
+ return accountId;
+ }
+
+
+ public void setAccountId(String accountId) {
+ this.accountId = accountId;
+ }
+
+
+ public InvestmentsAuthAccountDetails401k feeDetails(InvestmentsAuth401kFeeDetails feeDetails) {
+
+ this.feeDetails = feeDetails;
+ return this;
+ }
+
+ /**
+ * Get feeDetails
+ * @return feeDetails
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public InvestmentsAuth401kFeeDetails getFeeDetails() {
+ return feeDetails;
+ }
+
+
+ public void setFeeDetails(InvestmentsAuth401kFeeDetails feeDetails) {
+ this.feeDetails = feeDetails;
+ }
+
+
+ public InvestmentsAuthAccountDetails401k contributionDetails(InvestmentsAuth401kContributionDetails contributionDetails) {
+
+ this.contributionDetails = contributionDetails;
+ return this;
+ }
+
+ /**
+ * Get contributionDetails
+ * @return contributionDetails
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public InvestmentsAuth401kContributionDetails getContributionDetails() {
+ return contributionDetails;
+ }
+
+
+ public void setContributionDetails(InvestmentsAuth401kContributionDetails contributionDetails) {
+ this.contributionDetails = contributionDetails;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ InvestmentsAuthAccountDetails401k investmentsAuthAccountDetails401k = (InvestmentsAuthAccountDetails401k) o;
+ return Objects.equals(this.accountId, investmentsAuthAccountDetails401k.accountId) &&
+ Objects.equals(this.feeDetails, investmentsAuthAccountDetails401k.feeDetails) &&
+ Objects.equals(this.contributionDetails, investmentsAuthAccountDetails401k.contributionDetails);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(accountId, feeDetails, contributionDetails);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class InvestmentsAuthAccountDetails401k {\n");
+ sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
+ sb.append(" feeDetails: ").append(toIndentedString(feeDetails)).append("\n");
+ sb.append(" contributionDetails: ").append(toIndentedString(contributionDetails)).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/InvestmentsAuthDataSources.java b/src/main/java/com/plaid/client/model/InvestmentsAuthDataSources.java
index c2ab4730f1..fec17affef 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 76fb9beba3..ae7cc8a737 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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.NumbersACATS;
import com.plaid.client.model.NumbersATON;
+import com.plaid.client.model.NumbersRetirement401k;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
@@ -32,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class InvestmentsAuthGetNumbers {
public static final String SERIALIZED_NAME_ACATS = "acats";
@SerializedName(SERIALIZED_NAME_ACATS)
@@ -42,6 +43,10 @@ public class InvestmentsAuthGetNumbers {
@SerializedName(SERIALIZED_NAME_ATON)
private List aton = null;
+ public static final String SERIALIZED_NAME_RETIREMENT401K = "retirement_401k";
+ @SerializedName(SERIALIZED_NAME_RETIREMENT401K)
+ private List retirement401k = null;
+
public InvestmentsAuthGetNumbers acats(List acats) {
@@ -105,6 +110,37 @@ public void setAton(List aton) {
}
+ public InvestmentsAuthGetNumbers retirement401k(List retirement401k) {
+
+ this.retirement401k = retirement401k;
+ return this;
+ }
+
+ public InvestmentsAuthGetNumbers addRetirement401kItem(NumbersRetirement401k retirement401kItem) {
+ if (this.retirement401k == null) {
+ this.retirement401k = new ArrayList<>();
+ }
+ this.retirement401k.add(retirement401kItem);
+ return this;
+ }
+
+ /**
+ * Get retirement401k
+ * @return retirement401k
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public List getRetirement401k() {
+ return retirement401k;
+ }
+
+
+ public void setRetirement401k(List retirement401k) {
+ this.retirement401k = retirement401k;
+ }
+
+
@Override
public boolean equals(Object o) {
if (this == o) {
@@ -115,12 +151,13 @@ public boolean equals(Object o) {
}
InvestmentsAuthGetNumbers investmentsAuthGetNumbers = (InvestmentsAuthGetNumbers) o;
return Objects.equals(this.acats, investmentsAuthGetNumbers.acats) &&
- Objects.equals(this.aton, investmentsAuthGetNumbers.aton);
+ Objects.equals(this.aton, investmentsAuthGetNumbers.aton) &&
+ Objects.equals(this.retirement401k, investmentsAuthGetNumbers.retirement401k);
}
@Override
public int hashCode() {
- return Objects.hash(acats, aton);
+ return Objects.hash(acats, aton, retirement401k);
}
@Override
@@ -129,6 +166,7 @@ public String toString() {
sb.append("class InvestmentsAuthGetNumbers {\n");
sb.append(" acats: ").append(toIndentedString(acats)).append("\n");
sb.append(" aton: ").append(toIndentedString(aton)).append("\n");
+ sb.append(" retirement401k: ").append(toIndentedString(retirement401k)).append("\n");
sb.append("}");
return sb.toString();
}
diff --git a/src/main/java/com/plaid/client/model/InvestmentsAuthGetRequest.java b/src/main/java/com/plaid/client/model/InvestmentsAuthGetRequest.java
index b2a963cfb9..33f833f71f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 14b6663cf0..8a8c9dae94 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8008552244..2875cd1dbd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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.AccountBase;
import com.plaid.client.model.Holding;
+import com.plaid.client.model.InvestmentsAuthAccountDetails401k;
import com.plaid.client.model.InvestmentsAuthDataSources;
import com.plaid.client.model.InvestmentsAuthGetNumbers;
import com.plaid.client.model.InvestmentsAuthOwner;
@@ -37,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class InvestmentsAuthGetResponse {
public static final String SERIALIZED_NAME_ACCOUNTS = "accounts";
@SerializedName(SERIALIZED_NAME_ACCOUNTS)
@@ -63,6 +64,10 @@ public class InvestmentsAuthGetResponse {
@SerializedName(SERIALIZED_NAME_DATA_SOURCES)
private InvestmentsAuthDataSources dataSources;
+ public static final String SERIALIZED_NAME_ACCOUNT_DETAILS401K = "account_details_401k";
+ @SerializedName(SERIALIZED_NAME_ACCOUNT_DETAILS401K)
+ private List accountDetails401k = null;
+
public static final String SERIALIZED_NAME_ITEM = "item";
@SerializedName(SERIALIZED_NAME_ITEM)
private Item item;
@@ -224,6 +229,37 @@ public void setDataSources(InvestmentsAuthDataSources dataSources) {
}
+ public InvestmentsAuthGetResponse accountDetails401k(List accountDetails401k) {
+
+ this.accountDetails401k = accountDetails401k;
+ return this;
+ }
+
+ public InvestmentsAuthGetResponse addAccountDetails401kItem(InvestmentsAuthAccountDetails401k accountDetails401kItem) {
+ if (this.accountDetails401k == null) {
+ this.accountDetails401k = new ArrayList<>();
+ }
+ this.accountDetails401k.add(accountDetails401kItem);
+ return this;
+ }
+
+ /**
+ * Additional information for accounts of 401k subtype.
+ * @return accountDetails401k
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "Additional information for accounts of 401k subtype.")
+
+ public List getAccountDetails401k() {
+ return accountDetails401k;
+ }
+
+
+ public void setAccountDetails401k(List accountDetails401k) {
+ this.accountDetails401k = accountDetails401k;
+ }
+
+
public InvestmentsAuthGetResponse item(Item item) {
this.item = item;
@@ -283,13 +319,14 @@ public boolean equals(Object o) {
Objects.equals(this.owners, investmentsAuthGetResponse.owners) &&
Objects.equals(this.numbers, investmentsAuthGetResponse.numbers) &&
Objects.equals(this.dataSources, investmentsAuthGetResponse.dataSources) &&
+ Objects.equals(this.accountDetails401k, investmentsAuthGetResponse.accountDetails401k) &&
Objects.equals(this.item, investmentsAuthGetResponse.item) &&
Objects.equals(this.requestId, investmentsAuthGetResponse.requestId);
}
@Override
public int hashCode() {
- return Objects.hash(accounts, holdings, securities, owners, numbers, dataSources, item, requestId);
+ return Objects.hash(accounts, holdings, securities, owners, numbers, dataSources, accountDetails401k, item, requestId);
}
@Override
@@ -302,6 +339,7 @@ public String toString() {
sb.append(" owners: ").append(toIndentedString(owners)).append("\n");
sb.append(" numbers: ").append(toIndentedString(numbers)).append("\n");
sb.append(" dataSources: ").append(toIndentedString(dataSources)).append("\n");
+ sb.append(" accountDetails401k: ").append(toIndentedString(accountDetails401k)).append("\n");
sb.append(" item: ").append(toIndentedString(item)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append("}");
diff --git a/src/main/java/com/plaid/client/model/InvestmentsAuthOwner.java b/src/main/java/com/plaid/client/model/InvestmentsAuthOwner.java
index b79ea598c7..e7777e07a8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f514dd3bb5..57f8c9f965 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9101935c8d..dd596b4a4d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cd895e295a..c2d9179ba9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1df2e86ae4..9ba1ab28db 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b389f19aef..ec9b63e089 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 39f33cc6c5..ba37358efd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b210a5f878..34690230e1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d41be85f92..4ebef197a8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e814897ac0..7d716d022f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 94fb4d11f4..1632e8bee3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 47af5b0bad..176bf4211f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f04674ea23..f5dfa2f842 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cad126fa25..e7d0abe140 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 34e4dcd28c..775387fc31 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class IssuesGetResponse {
public static final String SERIALIZED_NAME_ISSUE = "issue";
@SerializedName(SERIALIZED_NAME_ISSUE)
diff --git a/src/main/java/com/plaid/client/model/IssuesSearchRequest.java b/src/main/java/com/plaid/client/model/IssuesSearchRequest.java
index cd01206e1f..bc5d40718c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a7c8001893..f6e5ba8314 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class IssuesSearchResponse {
public static final String SERIALIZED_NAME_ISSUES = "issues";
@SerializedName(SERIALIZED_NAME_ISSUES)
diff --git a/src/main/java/com/plaid/client/model/IssuesStatus.java b/src/main/java/com/plaid/client/model/IssuesStatus.java
index 7ac3b0c004..7c793e6563 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 bdb02be225..675b81bf9d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4951b73865..0c9877751b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class IssuesSubscribeResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
diff --git a/src/main/java/com/plaid/client/model/IssuingCountry.java b/src/main/java/com/plaid/client/model/IssuingCountry.java
index 6be5807541..36397cd836 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 bdface226d..d510f6e9eb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9cc6896648..2359dcf96c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b9290b587c..951c073b28 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1d1b7f86d8..6df780c2dd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 eabefc1bd3..7289d3546c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7fadede6fe..3cf8154546 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b48e78fafa..2b8343b8e9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9920dd9705..f037fdf35c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 748a713771..77806d9534 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4f37381280..85cc497585 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 12a00a128c..c32a6bebb6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 34b61a4837..fde7cb4e25 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1555d7bd43..dd3bbf2955 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a8b89bed20..a831a70060 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 90ff9e99af..772086dd00 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 d70883f3a2..8103dd56f1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 ce66eb05cf..437da87230 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7ab39783a3..d97dd75db8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c24c2d0d6a..73e65fa55d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3e895a777d..b19633a926 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f536d91e86..02f998b7fc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9bee6e32ed..3ad7cf7346 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7b94650b60..a94157ee79 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 55d9d68e4c..c81ba6c7a4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a73e04e434..b93af93f12 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2a93e80d3c..7ea61ece3c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6c2c9fec2f..9504d4dedd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c3020d219e..4953880ef2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ee643c59f9..22e84f532e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/ItemRemoveRequest.java b/src/main/java/com/plaid/client/model/ItemRemoveRequest.java
index 50723f7772..b29024dde0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9b934dccb9..f51cc99921 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 aeff82bfc1..7a35798d5e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6b5bb8ce41..20b705a3c6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 02fb490aea..7d3c990433 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 07e21c34b0..cd260c395d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f9c6299d62..66ba90b552 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1233d4b608..0dce9ee847 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 00d650ccc7..3d57f636d3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4707e13ac6..fde01343b9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 efc7396aa4..43c2c8c438 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 71953f9889..397a6660cd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 25ef0b0821..74f153ed0d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d1a280bc38..c21723b689 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 22660fc205..7a166dfbbb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ce5a1c7455..0c3c4076b4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 21e7aa46aa..c5cb692b8e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 29dcbe7a62..008719caf5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a73b6af47d..3fdad3cea7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 df064d342e..ba193a37f1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a2d5217480..50a47f4073 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/LiabilitiesDefaultUpdateWebhook.java b/src/main/java/com/plaid/client/model/LiabilitiesDefaultUpdateWebhook.java
index c7256e225d..47ffeb7724 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5a1776738e..74d036edbd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2442cfe8b6..fbe98032f4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 dd5bac557d..cff5f08647 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 feaed1df60..ce404719cd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5da9fd6aec..b59ca08004 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d68b69fb7d..05f164525e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e6cdac9c69..3a6370d369 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 358f8f6273..4664265256 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c8ccc82aa2..7d0e72fc3f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3055ad54bb..9bdcd63f39 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 895e73fe2d..ff879ff07f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 80a2339021..ada72f41f6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 de64f706b6..dcf460c936 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 04c087f4f0..63129e552a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 de15638015..fa2bc741f8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 88c3c02ab1..a436dcb690 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3ca5ff5ea8..03630156fe 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ba219ff357..92e2da45c0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cc52576b79..26817a978c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 cb6a517d39..b99949bdb8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 4f7ff85ea2..fe7a30e48f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 64e19e7801..ae69b938a4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 b2356d5ce7..e891a54032 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 30a217b1ed..4d0d2863ab 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 79425e2660..9d5e9042c6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4bd9b5f306..5542b123a2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 fff4988c1d..fa4f5b84b6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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.
*/
@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.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8120c7d391..ebec72c62d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ddb354aced..0c0cad8c15 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4a170bd77f..df536a3a64 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9580d5b30c..69e078ae66 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 40e909085f..d607456216 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d33a1b6ee2..7dcb01a547 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/LinkSessionExit.java b/src/main/java/com/plaid/client/model/LinkSessionExit.java
index 3d319d8b83..f2aced9fb4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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.
*/
@ApiModel(description = "An object representing an [onExit](https://plaid.com/docs/link/web/#onexit) callback from Link.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 14c3694c46..632daca167 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 has been deprecated in favor of [`exit`](https://plaid.com/docs/api/link/#link-token-get-response-link-sessions-exit), for improved naming consistency.
*/
@ApiModel(description = "An object representing an [onExit](https://plaid.com/docs/link/web/#onexit) callback from Link. This field has been deprecated in favor of [`exit`](https://plaid.com/docs/api/link/#link-token-get-response-link-sessions-exit), for improved naming consistency.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7d3cea2409..9f592ff009 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 91ef5f5f6e..1b8a41b329 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 14ccb93a1c..5d3d7b9964 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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) or a Multi-Item Link flow. If you would like to receive this webhook for other sessions, contact your Account Manager or Support.
*/
@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) or a Multi-Item Link flow. If you would like to receive this webhook for other sessions, contact your Account Manager or Support.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 37d0d869f2..ab19a81ea6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a760dc9c7f..21d7c37d4f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/LinkSessionResults.java b/src/main/java/com/plaid/client/model/LinkSessionResults.java
index 2d3961fc30..19a01ba020 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,7 +36,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 45689e8edb..a71c4b26ce 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 object has been deprecated in favor of the newer [`results.item_add_result`](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.
*/
@ApiModel(description = "An object representing an [onSuccess](https://plaid.com/docs/link/web/#onsuccess) callback from Link. This object has been deprecated in favor of the newer [`results.item_add_result`](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.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e6cf554eae..e7ef3025b2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ac5285f051..919b583622 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b5d86c95bc..db20b62198 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c8c635a0db..77ac312b0e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 26588488f1..d6fc828468 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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
new file mode 100644
index 0000000000..de57f355bc
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/LinkTokenCashflowReport.java
@@ -0,0 +1,101 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
+ *
+ *
+ * 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;
+
+/**
+ * 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-02-07T19:05:33.763924Z[Etc/UTC]")
+public class LinkTokenCashflowReport {
+ public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested";
+ @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED)
+ private Integer daysRequested = 365;
+
+
+ public LinkTokenCashflowReport daysRequested(Integer daysRequested) {
+
+ this.daysRequested = daysRequested;
+ return this;
+ }
+
+ /**
+ * Number of days of transaction history to request in the Cashflow Report product.
+ * minimum: 1
+ * maximum: 730
+ * @return daysRequested
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "Number of days of transaction history to request in the Cashflow Report product. ")
+
+ public Integer getDaysRequested() {
+ return daysRequested;
+ }
+
+
+ public void setDaysRequested(Integer daysRequested) {
+ this.daysRequested = daysRequested;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ LinkTokenCashflowReport linkTokenCashflowReport = (LinkTokenCashflowReport) o;
+ return Objects.equals(this.daysRequested, linkTokenCashflowReport.daysRequested);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(daysRequested);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class LinkTokenCashflowReport {\n");
+ sb.append(" daysRequested: ").append(toIndentedString(daysRequested)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces
+ * (except the first line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+}
+
diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateCardSwitch.java b/src/main/java/com/plaid/client/model/LinkTokenCreateCardSwitch.java
index 54f2bdd759..284c6b6838 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7ca8f5be15..140c2eb6ce 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2ca53a409e..7120c14a3c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3320462c28..42530d3ceb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 56bb326d4a..433f42e470 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 423e8fbc61..f9ac8d5b2b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7ef2537dd3..6ff1a3ab31 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ccd36340e7..50feb3c518 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 37b770d88a..3c4bf4964b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -56,7 +56,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class LinkTokenCreateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
diff --git a/src/main/java/com/plaid/client/model/LinkTokenCreateRequestAccountSubtypes.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestAccountSubtypes.java
index 1d1210614e..30d0786e17 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/LinkTokenCreateRequestAuth.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestAuth.java
index d382f1367b..8c8fd64a64 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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.
*/
@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.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 efb5054b0f..40b3bdf92f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a10d8e3e30..16b0f5c75a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8e6491d7ad..60b203887a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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.
*/
@ApiModel(description = "Specifies options for initializing Link for use with the Base Report product.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/LinkTokenCreateRequestCraOptionsCashflowInsights.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsCashflowInsights.java
index 65c1e1c483..e182b0f29c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/LinkTokenCreateRequestCraOptionsPartnerInsights.java b/src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsPartnerInsights.java
index 627a0624da..a098821902 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8a0c4cf36c..539c9f4392 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f83aa96f2e..02076eab18 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 405d80e613..72e31bde68 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7dbabce173..c7a4bd12bc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8293490879..3c7d001bc5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 359d80f170..f7221fa24e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 096b38a5e5..84507e9e3e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a23836861b..836b1641a2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 05a743fee7..7ef2fe7e47 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 742f95dc92..9c15d6db7b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d1a6ad15b5..46e7dc163f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3aca2bb236..dff9236953 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 43c4cad80f..8839c86749 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d3d3bec9f4..485fefc5a7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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.
*/
@ApiModel(description = "An object specifying information about the end user who will be linking their account.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cfa0657348..08f353e303 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 031fe9a2f7..d1dd14bf82 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class LinkTokenCreateResponse {
public static final String SERIALIZED_NAME_LINK_TOKEN = "link_token";
@SerializedName(SERIALIZED_NAME_LINK_TOKEN)
@@ -77,10 +77,10 @@ public LinkTokenCreateResponse expiration(OffsetDateTime expiration) {
}
/**
- * The expiration date for the `link_token`, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. By default, a `link_token` created to generate a `public_token` that will be exchanged for a new `access_token` expires after 4 hours, and a `link_token` created for an existing Item (such as when updating an existing `access_token` by launching Link in update mode) expires after 30 minutes. If using [Hosted Link](https://plaid.com/docs/link/hosted-link/), the `link_token` will expire at the same time as the Hosted Link URL, and you can customize the duration using the `hosted_link.url_lifetime_seconds` option in the request. If using Link Delivery (beta), the `link_token` will expire by default after 24 hours if sent via SMS and after 7 days if sent via email.
+ * The expiration date and time for the `link_token`, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. By default, a `link_token` created to generate a `public_token` that will be exchanged for a new `access_token` expires after 4 hours, and a `link_token` created for an existing Item (such as when updating an existing `access_token` by launching Link in update mode) expires after 30 minutes. If using [Hosted Link](https://plaid.com/docs/link/hosted-link/), the `link_token` will expire at the same time as the Hosted Link URL, and you can customize the duration using the `hosted_link.url_lifetime_seconds` option in the request. If using Link Delivery (beta), the `link_token` will expire by default after 24 hours if sent via SMS and after 7 days if sent via email. If using Identity Verification, Link token expiration will not be enforced; an Identity Verification Link session can be created with an expired Link token.
* @return expiration
**/
- @ApiModelProperty(required = true, value = "The expiration date for the `link_token`, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. By default, a `link_token` created to generate a `public_token` that will be exchanged for a new `access_token` expires after 4 hours, and a `link_token` created for an existing Item (such as when updating an existing `access_token` by launching Link in update mode) expires after 30 minutes. If using [Hosted Link](https://plaid.com/docs/link/hosted-link/), the `link_token` will expire at the same time as the Hosted Link URL, and you can customize the duration using the `hosted_link.url_lifetime_seconds` option in the request. If using Link Delivery (beta), the `link_token` will expire by default after 24 hours if sent via SMS and after 7 days if sent via email.")
+ @ApiModelProperty(required = true, value = "The expiration date and time for the `link_token`, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. By default, a `link_token` created to generate a `public_token` that will be exchanged for a new `access_token` expires after 4 hours, and a `link_token` created for an existing Item (such as when updating an existing `access_token` by launching Link in update mode) expires after 30 minutes. If using [Hosted Link](https://plaid.com/docs/link/hosted-link/), the `link_token` will expire at the same time as the Hosted Link URL, and you can customize the duration using the `hosted_link.url_lifetime_seconds` option in the request. If using Link Delivery (beta), the `link_token` will expire by default after 24 hours if sent via SMS and after 7 days if sent via email. If using Identity Verification, Link token expiration will not be enforced; an Identity Verification Link session can be created with an expired Link token.")
public OffsetDateTime getExpiration() {
return expiration;
diff --git a/src/main/java/com/plaid/client/model/LinkTokenEUConfig.java b/src/main/java/com/plaid/client/model/LinkTokenEUConfig.java
index fa84a09cb0..6eb20124fa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4d5eaa2bca..88bd3adc22 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 064a79e7cf..bba1fc8cae 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e9139939e0..00f9bfa822 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 657fbb4138..f9ea671aa5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d649a4bee5..3cac66d7ab 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 31dd28c785..48de472170 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1361e03f72..db9d812729 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 715b27c759..81e03ed95d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ce1c79c88a..4335c341af 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 60d59e4607..9fe1dcf335 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/LoanFilter.java b/src/main/java/com/plaid/client/model/LoanFilter.java
index 0350da2f43..348a65baf5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 074fe9aad8..113bd1d335 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0a8ad12616..d4c0a79bac 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 069e899468..425d07768f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7230bb5694..7cea349738 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/LoanPaymentsMerchantCounts.java b/src/main/java/com/plaid/client/model/LoanPaymentsMerchantCounts.java
index 3a78a7d4c7..2582fb8786 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1ad8c1a605..42aebe2139 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2b230e7099..f9c5db83a6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 809a87bfe9..ce62402f70 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d3d2cd0b9f..20cfcfbf5c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 63bd31bd9d..24e8d38994 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 9d1bd92695..f28a135b20 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 62f721ad0e..9049726109 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0d873973aa..b696068a62 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 ba0d5e8aae..046161fa05 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e86e91c084..f75e581718 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f7c3b95963..07c8982e6c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 242a4c3b8a..38e7833af8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4207b8e320..bf847bab9f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/plaid/client/model/MonitoringInsightsWebhook.java b/src/main/java/com/plaid/client/model/MonitoringInsightsWebhook.java
index 80d60d61d2..dc3cda59cd 100644
--- a/src/main/java/com/plaid/client/model/MonitoringInsightsWebhook.java
+++ b/src/main/java/com/plaid/client/model/MonitoringInsightsWebhook.java
@@ -2,7 +2,7 @@
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
- * The version of the OpenAPI document: 2020-09-14_1.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,10 +27,10 @@
import java.io.IOException;
/**
- * For each user enabled for Cash Flow Updates, this webhook will fire every 14 days with information on the status of the update. Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights.
+ * For each user enabled for Cash Flow Updates, this webhook will fire every day with information on the status of the update. Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights.
*/
-@ApiModel(description = "For each user enabled for Cash Flow Updates, this webhook will fire every 14 days with information on the status of the update. 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@ApiModel(description = "For each user enabled for Cash Flow Updates, this webhook will fire every day with information on the status of the update. 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-02-07T19:05:33.763924Z[Etc/UTC]")
public class MonitoringInsightsWebhook {
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/MonitoringItemStatusCode.java b/src/main/java/com/plaid/client/model/MonitoringItemStatusCode.java
index 324b63b643..48ff244b3c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 dcb36dc5e2..59ddf7bfc7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/MortgageInterestRate.java b/src/main/java/com/plaid/client/model/MortgageInterestRate.java
index fd1945ee13..687e0ba173 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fec82600c9..aa1f81746a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 617c14bc77..e796c64482 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 70ce18c47c..bf536908c8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e284d3b6f2..843d57042a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/NetPay.java b/src/main/java/com/plaid/client/model/NetPay.java
index 4ef5c52289..507225270d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ddc1c606ac..d5fac597c7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1c253bda71..469272369b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 17dee91809..17d68af632 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ef29c007e8..17375737c1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/NetworkStatusGetRequest.java b/src/main/java/com/plaid/client/model/NetworkStatusGetRequest.java
index 064204763c..e2f5ba8090 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b782235c35..3d999e6f06 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b97d44ce47..39fde33bb6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a36ba85fb1..32caf01b1f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 ef4fe3ba4a..8359bd1b46 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5f8aa620de..2614b35d77 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 db8f1acf95..b9ef508da8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ed14824ec2..416e0b5308 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 34fb157aa4..cf21f1fcde 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b40dabb004..cff7cf7662 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 71458c18c4..17de368367 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5cf3993abc..fc378e463d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4893027c63..1765ba3954 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e78e4fc26e..4bdc59bf4c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b4c88d2a5f..fd2407819f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 436f712e3b..ee34cde42e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0be123e3ba..bc926a9ebf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b7a38eb979..f4886e747c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 45de988c7c..182cc659cc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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
new file mode 100644
index 0000000000..9148cc099a
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/NumbersRetirement401k.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.617.1
+ *
+ *
+ * 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;
+
+/**
+ * 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-02-07T19:05:33.763924Z[Etc/UTC]")
+public class NumbersRetirement401k {
+ public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
+ @SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
+ private String accountId;
+
+ public static final String SERIALIZED_NAME_PLAN = "plan";
+ @SerializedName(SERIALIZED_NAME_PLAN)
+ private String plan;
+
+ public static final String SERIALIZED_NAME_ACCOUNT = "account";
+ @SerializedName(SERIALIZED_NAME_ACCOUNT)
+ private String account;
+
+
+ public NumbersRetirement401k accountId(String accountId) {
+
+ this.accountId = accountId;
+ return this;
+ }
+
+ /**
+ * The Plaid account ID associated with the account numbers
+ * @return accountId
+ **/
+ @ApiModelProperty(required = true, value = "The Plaid account ID associated with the account numbers")
+
+ public String getAccountId() {
+ return accountId;
+ }
+
+
+ public void setAccountId(String accountId) {
+ this.accountId = accountId;
+ }
+
+
+ public NumbersRetirement401k plan(String plan) {
+
+ this.plan = plan;
+ return this;
+ }
+
+ /**
+ * The plan number for the employer's 401k retirement plan
+ * @return plan
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "The plan number for the employer's 401k retirement plan")
+
+ public String getPlan() {
+ return plan;
+ }
+
+
+ public void setPlan(String plan) {
+ this.plan = plan;
+ }
+
+
+ public NumbersRetirement401k account(String account) {
+
+ this.account = account;
+ return this;
+ }
+
+ /**
+ * The full account number for the account
+ * @return account
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "The full account number for the account")
+
+ public String getAccount() {
+ return account;
+ }
+
+
+ public void setAccount(String account) {
+ this.account = account;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ NumbersRetirement401k numbersRetirement401k = (NumbersRetirement401k) o;
+ return Objects.equals(this.accountId, numbersRetirement401k.accountId) &&
+ Objects.equals(this.plan, numbersRetirement401k.plan) &&
+ Objects.equals(this.account, numbersRetirement401k.account);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(accountId, plan, account);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class NumbersRetirement401k {\n");
+ sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
+ sb.append(" plan: ").append(toIndentedString(plan)).append("\n");
+ sb.append(" account: ").append(toIndentedString(account)).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/OmittableTransferType.java b/src/main/java/com/plaid/client/model/OmittableTransferType.java
index b93b089979..2b5937f10d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 335db41549..495f1b3db6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 configuration object, 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.
*/
@ApiModel(description = "Details about the option security. For the Sandbox environment, this data is currently only available if the item is using a custom configuration object, 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.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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
new file mode 100644
index 0000000000..6e02e340ce
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/OriginatingFundSource.java
@@ -0,0 +1,184 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+
+package com.plaid.client.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import com.google.gson.TypeAdapter;
+import com.google.gson.annotations.JsonAdapter;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.stream.JsonReader;
+import com.google.gson.stream.JsonWriter;
+import com.plaid.client.model.PaymentInitiationAddress;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+
+/**
+ * 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-02-07T19:05:33.763924Z[Etc/UTC]")
+public class OriginatingFundSource {
+ public static final String SERIALIZED_NAME_FULL_NAME = "full_name";
+ @SerializedName(SERIALIZED_NAME_FULL_NAME)
+ private String fullName;
+
+ public static final String SERIALIZED_NAME_ADDRESS = "address";
+ @SerializedName(SERIALIZED_NAME_ADDRESS)
+ private PaymentInitiationAddress address;
+
+ public static final String SERIALIZED_NAME_ACCOUNT_NUMBER = "account_number";
+ @SerializedName(SERIALIZED_NAME_ACCOUNT_NUMBER)
+ private String accountNumber;
+
+ public static final String SERIALIZED_NAME_BIC = "bic";
+ @SerializedName(SERIALIZED_NAME_BIC)
+ private String bic;
+
+
+ public OriginatingFundSource fullName(String fullName) {
+
+ this.fullName = fullName;
+ return this;
+ }
+
+ /**
+ * The full name associated with the source of the funds.
+ * @return fullName
+ **/
+ @ApiModelProperty(required = true, value = "The full name associated with the source of the funds.")
+
+ public String getFullName() {
+ return fullName;
+ }
+
+
+ public void setFullName(String fullName) {
+ this.fullName = fullName;
+ }
+
+
+ public OriginatingFundSource address(PaymentInitiationAddress address) {
+
+ this.address = address;
+ return this;
+ }
+
+ /**
+ * Get address
+ * @return address
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(required = true, value = "")
+
+ public PaymentInitiationAddress getAddress() {
+ return address;
+ }
+
+
+ public void setAddress(PaymentInitiationAddress address) {
+ this.address = address;
+ }
+
+
+ public OriginatingFundSource accountNumber(String accountNumber) {
+
+ this.accountNumber = accountNumber;
+ return this;
+ }
+
+ /**
+ * The account number from which the funds are sourced.
+ * @return accountNumber
+ **/
+ @ApiModelProperty(required = true, value = "The account number from which the funds are sourced.")
+
+ public String getAccountNumber() {
+ return accountNumber;
+ }
+
+
+ public void setAccountNumber(String accountNumber) {
+ this.accountNumber = accountNumber;
+ }
+
+
+ public OriginatingFundSource bic(String bic) {
+
+ this.bic = bic;
+ return this;
+ }
+
+ /**
+ * The Business Identifier Code, also known as SWIFT code, for this bank account.
+ * @return bic
+ **/
+ @ApiModelProperty(required = true, value = "The Business Identifier Code, also known as SWIFT code, for this bank account.")
+
+ public String getBic() {
+ return bic;
+ }
+
+
+ public void setBic(String bic) {
+ this.bic = bic;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ OriginatingFundSource originatingFundSource = (OriginatingFundSource) o;
+ return Objects.equals(this.fullName, originatingFundSource.fullName) &&
+ Objects.equals(this.address, originatingFundSource.address) &&
+ Objects.equals(this.accountNumber, originatingFundSource.accountNumber) &&
+ Objects.equals(this.bic, originatingFundSource.bic);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(fullName, address, accountNumber, bic);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class OriginatingFundSource {\n");
+ sb.append(" fullName: ").append(toIndentedString(fullName)).append("\n");
+ sb.append(" address: ").append(toIndentedString(address)).append("\n");
+ sb.append(" accountNumber: ").append(toIndentedString(accountNumber)).append("\n");
+ sb.append(" bic: ").append(toIndentedString(bic)).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/Originator.java b/src/main/java/com/plaid/client/model/Originator.java
index 09f0c5deed..4ef30895de 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4fa3b625fb..a22c36995d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 b9a990b527..eb6cb12cfc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 962189443f..f45d50398e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/OverrideAccountType.java b/src/main/java/com/plaid/client/model/OverrideAccountType.java
index 0551643435..77d2552f6b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 1cb179884b..9290f4c090 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d6a392c626..440cc15866 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c5d3358554..084dfc04aa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7106afe967..696e686759 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 76e199a53c..a4d7caf80e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 e4da088d57..daba4b24da 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 87ab7dd3f9..090885cb00 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 34c855939b..3b8cb4826b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 82e2aae0eb..d39ed464cc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f6ed6b72cf..66dc336d4e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 00b1eafce9..6555fc43f0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f193e62a46..0c142cd99f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4111304f04..4a5b324b01 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 188bdbd4ca..1457a1f47f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bf0c442197..6d599aae56 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1ad07e3681..81f421da93 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 72c365d558..a92c906835 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 acddb7f6ac..f3dfcb204d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 54645dbc6f..6fa27e8711 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ef26afff3d..261576fbe7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/PartnerEndCustomerBillingContact.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerBillingContact.java
index 4a07b90933..0f3b2ea256 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/PartnerEndCustomerCustomerSupportInfo.java b/src/main/java/com/plaid/client/model/PartnerEndCustomerCustomerSupportInfo.java
index db6a08f064..6b4a4c734e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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.
*/
@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.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3147dbfee9..5a0bda39c3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 3c31a93334..028bc2c8c4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5fe3773bcc..3130121b6a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 e04b92c9eb..c108d89b13 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7e6168b18d..4aef3fe0a7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 4f7cce0458..1cb73bf6f7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fd9265e35c..e362f2c6f1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 d51190a1f2..6b1d881bfe 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0a5fbc99c0..bc65fb99c0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 3ccec40cc5..db87b37b1b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 29ab1ed471..06438c96bd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2d2778ccb5..f1d1810b1e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7e192130df..de47dcbd36 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cf1d658c8a..3b690e4983 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bd506fcfec..c7f9843bde 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 354cbb0824..b78643fa50 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c9c69375a4..81e21b9611 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 53a146036d..831805f592 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 b3b20f5111..8ce90ac5eb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6e8ac2f4b0..d143fce2be 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 b54ea1d3e8..ee3cb18e3c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fe46e8a311..31a5bcd75e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8aa1919235..e988389e18 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a38ae7e4c5..9a57a7035b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 eaf64a78aa..5a0331624e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3dc2a8d979..d50a0cf973 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8f3682c7f2..116aef4560 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2b423cf646..4034ae4088 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 08650ffc9e..d58a3d4b99 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 c7d08382f7..ae0216818d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c6c9034d90..2108b6db39 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 473f8fece7..1503e778a9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4f98db80eb..f4c8990bd7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 148e282dbf..001feb5a60 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 370e00a4e0..4658705a52 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 7fc4e7049f..6ade7c8ffb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a3e4baf66d..de6b8a36a9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7cd8f6a571..34e674a33c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 4fe3dbd9da..b71b75e223 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7244e56d2e..2108240ef5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 671cfb04f2..45f9b9805b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 263967fe53..83f173f38c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 61b65483eb..24dc6de800 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c3c8c065db..3f00cf6f7b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 07462c406b..a6a9780439 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c26a8997dd..4667e2dcab 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 24912900b5..ea19505ac0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2c563e36ab..01b84482cd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 224999d808..a2311c04de 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 24906b5f13..c49cf18ce4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 742b6b0507..7b4ab3495f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 e10aad002e..7bdc8c9491 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f24c17cb7c..6a6b730a03 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ac1c45a784..63a8e671c3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 86cbd1ddde..39bc7337c0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 e1922cb3a2..dffb3c6489 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 eeb2110b2f..7df4895657 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 a8d9ce7d62..d1cfcabe6f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3c751a4315..816b7a856d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9a5d80d10b..b16d07553f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class PaymentInitiationPayment {
public static final String SERIALIZED_NAME_PAYMENT_ID = "payment_id";
@SerializedName(SERIALIZED_NAME_PAYMENT_ID)
@@ -112,6 +112,10 @@ public class PaymentInitiationPayment {
@SerializedName(SERIALIZED_NAME_TRANSACTION_ID)
private String transactionId;
+ public static final String SERIALIZED_NAME_END_TO_END_ID = "end_to_end_id";
+ @SerializedName(SERIALIZED_NAME_END_TO_END_ID)
+ private String endToEndId;
+
public PaymentInitiationPayment paymentId(String paymentId) {
@@ -529,6 +533,29 @@ public void setTransactionId(String transactionId) {
}
+ public PaymentInitiationPayment endToEndId(String endToEndId) {
+
+ this.endToEndId = endToEndId;
+ return this;
+ }
+
+ /**
+ * A unique identifier assigned by Plaid to each payment for tracking and reconcilliation purposes. Note: Not all banks handle end_to_end_id consistently. To ensure accurate matching, clients should convert both the incoming end_to_end_id and the one provided by Plaid to the same case (either lower or upper) before comparison. For virtual account payments, Plaid manages this field automatically.
+ * @return endToEndId
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "A unique identifier assigned by Plaid to each payment for tracking and reconcilliation purposes. Note: Not all banks handle end_to_end_id consistently. To ensure accurate matching, clients should convert both the incoming end_to_end_id and the one provided by Plaid to the same case (either lower or upper) before comparison. For virtual account payments, Plaid manages this field automatically.")
+
+ public String getEndToEndId() {
+ return endToEndId;
+ }
+
+
+ public void setEndToEndId(String endToEndId) {
+ this.endToEndId = endToEndId;
+ }
+
+
@Override
public boolean equals(Object o) {
if (this == o) {
@@ -555,12 +582,13 @@ public boolean equals(Object o) {
Objects.equals(this.scheme, paymentInitiationPayment.scheme) &&
Objects.equals(this.adjustedScheme, paymentInitiationPayment.adjustedScheme) &&
Objects.equals(this.consentId, paymentInitiationPayment.consentId) &&
- Objects.equals(this.transactionId, paymentInitiationPayment.transactionId);
+ Objects.equals(this.transactionId, paymentInitiationPayment.transactionId) &&
+ Objects.equals(this.endToEndId, paymentInitiationPayment.endToEndId);
}
@Override
public int hashCode() {
- return Objects.hash(paymentId, amount, status, recipientId, reference, adjustedReference, lastStatusUpdate, schedule, refundDetails, bacs, iban, refundIds, amountRefunded, walletId, scheme, adjustedScheme, consentId, transactionId);
+ return Objects.hash(paymentId, amount, status, recipientId, reference, adjustedReference, lastStatusUpdate, schedule, refundDetails, bacs, iban, refundIds, amountRefunded, walletId, scheme, adjustedScheme, consentId, transactionId, endToEndId);
}
@Override
@@ -585,6 +613,7 @@ public String toString() {
sb.append(" adjustedScheme: ").append(toIndentedString(adjustedScheme)).append("\n");
sb.append(" consentId: ").append(toIndentedString(consentId)).append("\n");
sb.append(" transactionId: ").append(toIndentedString(transactionId)).append("\n");
+ sb.append(" endToEndId: ").append(toIndentedString(endToEndId)).append("\n");
sb.append("}");
return sb.toString();
}
diff --git a/src/main/java/com/plaid/client/model/PaymentInitiationPaymentCreateRequest.java b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentCreateRequest.java
index 8d3981a05d..303d9767ce 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 21b0c3c2a1..9f61dc3cf9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 68b3b46094..154540a2da 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 2907559519..9e80edbdae 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0390548828..72c9a1c403 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -40,7 +40,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class PaymentInitiationPaymentGetResponse {
public static final String SERIALIZED_NAME_PAYMENT_ID = "payment_id";
@SerializedName(SERIALIZED_NAME_PAYMENT_ID)
@@ -114,6 +114,10 @@ public class PaymentInitiationPaymentGetResponse {
@SerializedName(SERIALIZED_NAME_TRANSACTION_ID)
private String transactionId;
+ public static final String SERIALIZED_NAME_END_TO_END_ID = "end_to_end_id";
+ @SerializedName(SERIALIZED_NAME_END_TO_END_ID)
+ private String endToEndId;
+
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
@@ -535,6 +539,29 @@ public void setTransactionId(String transactionId) {
}
+ public PaymentInitiationPaymentGetResponse endToEndId(String endToEndId) {
+
+ this.endToEndId = endToEndId;
+ return this;
+ }
+
+ /**
+ * A unique identifier assigned by Plaid to each payment for tracking and reconcilliation purposes. Note: Not all banks handle end_to_end_id consistently. To ensure accurate matching, clients should convert both the incoming end_to_end_id and the one provided by Plaid to the same case (either lower or upper) before comparison. For virtual account payments, Plaid manages this field automatically.
+ * @return endToEndId
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "A unique identifier assigned by Plaid to each payment for tracking and reconcilliation purposes. Note: Not all banks handle end_to_end_id consistently. To ensure accurate matching, clients should convert both the incoming end_to_end_id and the one provided by Plaid to the same case (either lower or upper) before comparison. For virtual account payments, Plaid manages this field automatically.")
+
+ public String getEndToEndId() {
+ return endToEndId;
+ }
+
+
+ public void setEndToEndId(String endToEndId) {
+ this.endToEndId = endToEndId;
+ }
+
+
public PaymentInitiationPaymentGetResponse requestId(String requestId) {
this.requestId = requestId;
@@ -584,12 +611,13 @@ public boolean equals(Object o) {
Objects.equals(this.adjustedScheme, paymentInitiationPaymentGetResponse.adjustedScheme) &&
Objects.equals(this.consentId, paymentInitiationPaymentGetResponse.consentId) &&
Objects.equals(this.transactionId, paymentInitiationPaymentGetResponse.transactionId) &&
+ Objects.equals(this.endToEndId, paymentInitiationPaymentGetResponse.endToEndId) &&
Objects.equals(this.requestId, paymentInitiationPaymentGetResponse.requestId);
}
@Override
public int hashCode() {
- return Objects.hash(paymentId, amount, status, recipientId, reference, adjustedReference, lastStatusUpdate, schedule, refundDetails, bacs, iban, refundIds, amountRefunded, walletId, scheme, adjustedScheme, consentId, transactionId, requestId);
+ return Objects.hash(paymentId, amount, status, recipientId, reference, adjustedReference, lastStatusUpdate, schedule, refundDetails, bacs, iban, refundIds, amountRefunded, walletId, scheme, adjustedScheme, consentId, transactionId, endToEndId, requestId);
}
@Override
@@ -614,6 +642,7 @@ public String toString() {
sb.append(" adjustedScheme: ").append(toIndentedString(adjustedScheme)).append("\n");
sb.append(" consentId: ").append(toIndentedString(consentId)).append("\n");
sb.append(" transactionId: ").append(toIndentedString(transactionId)).append("\n");
+ sb.append(" endToEndId: ").append(toIndentedString(endToEndId)).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/PaymentInitiationPaymentListRequest.java b/src/main/java/com/plaid/client/model/PaymentInitiationPaymentListRequest.java
index aaef664e9e..c0a37bac14 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 856bd1f290..f8a2f502a3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e2e1cb9619..4f88385d8b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c00aabb396..75e0b4d774 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ddbbb4f721..fa1ca07bbe 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 2d5a2d082b..dfdfc85fe6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c01816793d..93fbc344c6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 802a81cf5c..e2966390e8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8d1ca721ba..0a477dfed1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3b1a2ab83d..402c5a1552 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b30fcd3a0a..d6f27605eb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1d452c7792..5860662538 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5d6e4f6daf..e629eed161 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5b46f73697..de70a553f6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 650f037f1c..8775d274d4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6d8b5521a8..e92d595ecb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fb37ee1bac..5cad1889ef 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 58f78c87e5..96de151645 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bb04b137c8..b350383241 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6c5f557a1b..a3af52daaa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9de679acd6..3d1c1c1482 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 817d6817d1..6a98823be7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 db6d3c6cad..1b43982fe8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e75197fc94..7e28c22c1b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 834afb41d9..3524581cf4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 84105062d2..5759b84fed 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 16c6a69656..4b083578f5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9cc2525000..93306a92a8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ce5c8ab337..d11fb1a29e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f969b76c3b..19ab4e0367 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a234439609..d1e9ca9535 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 13c044c6ec..7630075218 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 35ac3ee724..ae95f0b6e9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5713e736c8..782b04c828 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3587071d69..00c3ab094c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 708c94c26e..4f97a24a26 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cfe40f69c4..60c83bc1e1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9466326787..e5817021cf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4a0ae0758f..bf92cb14cf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 22dabf6e7c..c71a8d7fd8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a198b386cf..c683e6e7e7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0260821b27..7e6584c11b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9e842a9731..6ad4fe7f75 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b4d43fa8dc..456e37e86e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 58f005f033..8328b18846 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 72123c13be..761c39166f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 efaa3a9eef..fc351dd980 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 39a60cfb11..32355b0aa5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cabb002b4e..ab4d67741e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cf655609c9..d5447e6e4c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 101b3c7393..9910421ed0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b8692aae7d..0d732c60b7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2aab642cfb..ad38fad18a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6b54468655..29fb664efd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 a0216ea4f2..b1a55d6ea4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f19b7ce588..2d3ab3cb07 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 585ac776e5..aedccce937 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 52ce65a035..bf66ea4827 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 58a7001792..07b1af4277 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2ed34f9314..90d0a75872 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b46a7a9103..b9dc396dc6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f7234146f2..8f5cfae662 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 229733f239..2ad4d2cebc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 8207e871cf..a5e9c7285e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class PhysicalDocumentExtractedData {
public static final String SERIALIZED_NAME_ID_NUMBER = "id_number";
@SerializedName(SERIALIZED_NAME_ID_NUMBER)
diff --git a/src/main/java/com/plaid/client/model/PhysicalDocumentExtractedDataAnalysis.java b/src/main/java/com/plaid/client/model/PhysicalDocumentExtractedDataAnalysis.java
index f47f522519..c662a0148c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9c1c5e806c..1a2423ec88 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b6c6ae1f4c..a55800e6c7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
* The results of the Plaid Check score
*/
@ApiModel(description = "The results of the Plaid Check score")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/PlaidError.java b/src/main/java/com/plaid/client/model/PlaidError.java
index 23be78d7f4..445adabd69 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 00481458d8..55dd264ab9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 7c5205a5af..a54df73689 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2fb3650308..3fabcc196d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7875bc2cf8..9d24f20893 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8c889a1f80..93031d4a21 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 b18c7aa0db..87d4054283 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9a50349b5d..40b804ea3c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 38e185de11..2fefdeb371 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3ba9b679f8..cc8ec7f71c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 e7e0986552..a9e575f2c3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 69e5dbc825..19afc99c12 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/ProcessorAccountGetRequest.java b/src/main/java/com/plaid/client/model/ProcessorAccountGetRequest.java
index 8cff7b05bb..8beefeaa6f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ad63121206..9772c25af7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 75e4c2b5e3..5bb0d5e326 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1e2d068777..b4a59972e7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a4d1d8bd7b..76f2b27c5b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b5311d86a3..456c9bdc84 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c3bf1bbdaf..484f7afbdf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7eae1eb0ba..b3121eacac 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9eb5e8c9ba..b0d11cff31 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1a6937a1ec..16690cc921 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0a74ee8089..b64ac23150 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f2fd24f8b3..5a3dcc16e2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e7a165b692..267d4c8561 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 757a6f3ea7..a52abd45b7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 85953c36bd..057c080cbf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e0de1975c6..36054156ae 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a4c167c1c8..f83e601516 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 67b7c0c6e2..c5eb52945e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 28cfd90fc9..264ea646e6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6bb2c70124..236b631ccf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 98ad0f44b2..7a76f99cf9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f0adeda1a4..f290227f72 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 19c2e56d83..2654e3160c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 12a66ff5c8..ad5b16f8d2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c94811fe04..147d47f5b7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 49d3492ee5..3f6f2fe935 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 637483a3e4..83c2f913b7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 64cec2cb76..19b12be65b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 59b8cc45c2..88a581ac6f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 75cb5bb4fb..973f8be238 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 564a6160f8..26f37777c2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a425deaf03..7219ad2590 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 056a1c2052..47dcf6149a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bd661a131b..430cc34a96 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8d59056318..a199c31ccd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2d391e650f..1aeb9381f8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b4bb3dadf9..85b1b4edf8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class ProcessorTokenCreateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
@@ -159,7 +159,9 @@ public enum ProcessorEnum {
SCRIBEUP("scribeup"),
- STRADDLE("straddle");
+ STRADDLE("straddle"),
+
+ LOANPRO("loanpro");
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 9be13794d0..9d9d79bcb0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0557f95bce..ef912f58cf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ea09ab075c..9579855ec4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0af16e2846..391735c2df 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d7f30501f2..597b2cb326 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bff58e5b5b..c2c69b55ee 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7a2445dfbe..2e10cfb9d1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6e00d13312..ccd3bab4cb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e8d41c3a28..91740bf23e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c588bd875b..352c9326d6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5beb014cb7..ec02e7f820 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3273e02673..28155ee021 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4797011bdd..dc824a3de4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0bd538d6bd..8187231d92 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e85a12aa83..4b097d3326 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7a914ee6e5..859966688a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 de70ff7d4b..b833fbddda 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 07d7e6c3a0..fa9623e29d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 da4f089241..6d8a8801b6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 27bcd7647f..963194c335 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f0f0628f86..3dbed62690 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b177c88dbb..ae413cf017 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0d36beffce..fbf9decc78 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 71e4aa279c..71b7dfce9f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 aac29bd2a7..5f20103c44 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 28b8f6ee39..ab8ecc6e4b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f2bbea21aa..efddbfa5d4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 a826997268..6ffcb3b938 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/ProxyType.java b/src/main/java/com/plaid/client/model/ProxyType.java
index 266949024d..3a256d72ee 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 8a6f13f707..6b75e0e88d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5e7a032492..d790380189 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4add0f3c69..2c10620a3a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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
new file mode 100644
index 0000000000..766708faff
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/RecommendationString.java
@@ -0,0 +1,81 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+
+package com.plaid.client.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import io.swagger.annotations.ApiModel;
+import com.google.gson.annotations.SerializedName;
+
+import java.io.IOException;
+import com.google.gson.TypeAdapter;
+import com.google.gson.annotations.JsonAdapter;
+import com.google.gson.stream.JsonReader;
+import com.google.gson.stream.JsonWriter;
+
+/**
+ * The recommendation result for that date.
+ */
+@JsonAdapter(RecommendationString.Adapter.class)
+public enum RecommendationString {
+
+ RECOMMENDED("RECOMMENDED"),
+
+ NOT_RECOMMENDED("NOT_RECOMMENDED"),
+
+ UNKNOWN("UNKNOWN"),
+
+ // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file.
+ // Try upgrading your client-library version.
+ ENUM_UNKNOWN("ENUM_UNKNOWN");
+
+ private String value;
+
+ RecommendationString(String value) {
+ this.value = value;
+ }
+
+ public String getValue() {
+ return value;
+ }
+
+ @Override
+ public String toString() {
+ return String.valueOf(value);
+ }
+
+ public static RecommendationString fromValue(String value) {
+ for (RecommendationString b : RecommendationString.values()) {
+ if (b.value.equals(value)) {
+ return b;
+ }
+ }
+
+ return RecommendationString.ENUM_UNKNOWN;
+ }
+
+ public static class Adapter extends TypeAdapter {
+ @Override
+ public void write(final JsonWriter jsonWriter, final RecommendationString enumeration) throws IOException {
+ jsonWriter.value(enumeration.getValue());
+ }
+
+ @Override
+ public RecommendationString read(final JsonReader jsonReader) throws IOException {
+ String value = jsonReader.nextString();
+ return RecommendationString.fromValue(value);
+ }
+ }
+}
+
diff --git a/src/main/java/com/plaid/client/model/Recurrence.java b/src/main/java/com/plaid/client/model/Recurrence.java
index e6c66ffe44..c413bbd62a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
* 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 = "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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 69b0dc9f91..f1b50196e6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4269b32004..f655b72437 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 cc1a2aff0e..73701b0556 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 034acad192..6123da523c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7e2dccac5c..93bd75f372 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 477eff3990..d18692c8a9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f93310012a..b0087360d4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d7f956aef8..d80b339da0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9ea387695a..41639d70b0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d99c0078c7..b1ca83d5fa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/RemovedTransaction.java b/src/main/java/com/plaid/client/model/RemovedTransaction.java
index ee1e139299..60565c92ca 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6899c82131..10daf6b4d9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 7b414c33c5..f2cf3b23c2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0f17cf6d3f..24a4278b9c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9c958c4cfc..d3f4c574bf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 3c39afa14d..1d18c25913 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 d6c3276735..c334ef4bbd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 940acc9d78..5073ac87ff 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 373c36dc33..b3bae50f96 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c4941c2344..58a679cec0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 60a368b8c0..6189760dca 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 507cb2881a..7decc6a620 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 34cddbcff3..b267e614f8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 ad28b43305..51d60b8149 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 49a7053030..a47804dffa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 c03e4d3e5a..062b6ceceb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 aed6cdabd2..e6cfec663f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 201cf886b4..80c41f5301 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e63f4d266a..7ac783f9b5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4323765b05..02fa4d7b14 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 dc73836c01..713ba33268 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/RiskLevel.java b/src/main/java/com/plaid/client/model/RiskLevel.java
index 83eafb2a67..f5aee901d3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 06cf078ca9..b6e73a13c8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 b6fb0c4c65..3f58b98d80 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8bb0ba87d5..0eb8c60671 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 43ed419566..bc5583ffcf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 265575ce0e..31f08f521c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 54bdcaf7d3..59e4a22ea6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 5f87432d49..eedd7e7344 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 746193be03..f9948ffe1d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 62c87346c4..543c5560f7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c6b5850d0a..dcb68994af 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/Ruleset.java b/src/main/java/com/plaid/client/model/Ruleset.java
index 292ffb3d65..4e0994c92b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* Details about the transaction result after evaluated by the requested Ruleset. If a `ruleset_key` is not provided, this field will be omitted. This feature is currently in closed beta; to request access, contact your account manager.
*/
@ApiModel(description = "Details about the transaction result after evaluated by the requested Ruleset. If a `ruleset_key` is not provided, this field will be omitted. This feature is currently in closed beta; to request access, contact your account manager.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 22c6878492..1794129e5a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 372f7e97bf..cdbd59ab62 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 12ab68f139..724a3a4804 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0b85e42b0d..154cac2273 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1ac70788c9..92e27983ac 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 a6c4947fd2..9b9fa7b1ee 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b2ba83fd43..daa726468e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 17eadebbdd..172e2448c4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cbbebfaf8f..2f84d39a66 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ce10339d0f..796b179f83 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 04c1f3c43c..5901d98c17 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c121de9ec7..8d3d48cc21 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 008400d14a..02bb1e7611 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 94650c2e17..b280811309 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 041ff84563..95f286b11c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 d157edeb7d..8ef690b9e8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ac63f2297a..740d5392ee 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9b5c73ab41..fec770de7f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1ba9ac0365..2d8eaa6d40 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9729a48e46..4602385f54 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 28d52a296e..04dd573751 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6f6b5fc27f..0bf68a7c2b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d7c4a8cdc4..b272db3b59 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f6484ab075..54d88e0db8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1244f95118..7fb2bf9ddd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 03d551b584..6b50bc421f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a46fe5821c..1903d34549 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 caa6a0b700..5633560cf8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e47675a053..44f8b93ae0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 edab9ccb25..e645caf5ca 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9e119b8d0a..8b72f2a57f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 712b0b347f..8630a90575 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0eb8ea8598..a88709d8c9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b5342d2a18..46550ca4f8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 954342e9cd..24302dfc05 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e4a097e8a2..a2718e0cbf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/SandboxTransferFireWebhookRequest.java b/src/main/java/com/plaid/client/model/SandboxTransferFireWebhookRequest.java
index d98e49025e..41a7dd4aed 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 69317cc9fa..35edf904ad 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d17a4f5c83..aaaef524a8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 952b46beaf..ab761ce98f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 42f525ff5c..2dd40a5005 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 03e546937a..366ef4c0bb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8b2863ec7d..8bba5617e9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3079b9f006..6375d00c8d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a8cfc8cb8b..b74d35814c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e71f9bcb1b..fde2e5912d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 43f08e28cf..5922fffafb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6cce9712a1..f9fb9e32e4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f5dcdb7f68..f4f0691043 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3bdc42a993..abf2fe6839 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 319ed2bb8a..4d337b00b1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4bbf0e4da4..c765851ab1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 01e41726cf..9bffb901da 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 057a97bfeb..74ec10fcd2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 034f3411f8..735f26ce1c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 eb11c64855..ee07e39417 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f69d7f77e8..f46ca041dd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f901cfe158..9c6d7ddc3d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d7fe54e5c7..c637796952 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 da81686d63..8df8afac5d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9258ae15e5..ae832f5e71 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b42dbc7c63..cc09767a1f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a57f945042..4df871c5a7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 53c872a259..6f2645088a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 1ad358a51c..87eafbb5b2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 60b04da189..aa2dd9b04a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fe4ce4af5b..8bcecb5662 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e41469cd09..8090237843 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 46664861b9..dfb775fe5d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 49979d132c..1fc4b3bfa3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 47e65dd60f..4ef1a1e555 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 12745e0315..999252cf89 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a1db27f3de..b327199df8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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`, `isin`, or `sedol`) 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`, `isin`, or `sedol`) are required.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5661d3e9ab..f81fe76011 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 66a3182e4e..bfcef979cf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 ee25a52e32..be6f85dafc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6bec9746f0..419746f832 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 3145f1ea36..b214d4bbc4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 12e2f9bc58..25a07d5cfc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9080fa693e..49b0b00a48 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6b9a91f06d..940aad6d2f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7529cb6b03..b89ea21f55 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 df9e95a77d..9c014940bc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 10d10b92b0..57046d5743 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 08eb1ee75c..eded4571da 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cc3d897fce..b4829480ce 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3f5b8243cd..2f8f089570 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1e157e8a38..1b8020f8cf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 99477aa2a5..fe573ca15f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9e3362b3b8..ff33dd97a2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/SignalAddressData.java b/src/main/java/com/plaid/client/model/SignalAddressData.java
index fdb8ece216..ee34e64084 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3ff5f78c3b..46520d3252 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 096c5ab840..e0de0ec0b9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d1b1d63320..0aed172b99 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c94c54002f..5e29c382c7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* Details about the end user's device. When calling `/signal/evaluate` or `/signal/processor/evaluate`, this field is optional, but strongly recommended to increase the accuracy of Signal results.
*/
@ApiModel(description = "Details about the end user's device. When calling `/signal/evaluate` or `/signal/processor/evaluate`, this field is optional, but strongly recommended to increase the accuracy of Signal results.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0ef770d201..962098d642 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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. 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 `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. 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 `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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 711876f158..109a243cc6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class SignalEvaluateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
diff --git a/src/main/java/com/plaid/client/model/SignalEvaluateResponse.java b/src/main/java/com/plaid/client/model/SignalEvaluateResponse.java
index 54cd94301c..599dfb8a58 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 335670ac28..25e4078b8b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 7f2b7bb55f..b4219917d8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 be14d9eb21..6b834c5b54 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2563be6356..af1edc320c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0835c6721c..e77545ac99 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 aed31b52d7..6bf4e241c2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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
new file mode 100644
index 0000000000..8c2a314f11
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/SignalScheduleDefaultPaymentMethod.java
@@ -0,0 +1,85 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+
+package com.plaid.client.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import io.swagger.annotations.ApiModel;
+import com.google.gson.annotations.SerializedName;
+
+import java.io.IOException;
+import com.google.gson.TypeAdapter;
+import com.google.gson.annotations.JsonAdapter;
+import com.google.gson.stream.JsonReader;
+import com.google.gson.stream.JsonWriter;
+
+/**
+ * The payment method specified in the `default_payment_method` field directly impacts the timing recommendations provided by the API for submitting the debit entry to your processor or ODFI. If unspecified, Signal defaults to `STANDARD_ACH`. `SAME_DAY_ACH`: Same Day ACH (as defined by Nacha). The Signal API assumes the settlement will occur on the same business day if the `/signal/schedule` request is submitted by 6:00 PM UTC. Note: The actual cutoff time can vary depending on your payment processor or ODFI. NACHA has established three processing windows for Same Day ACH (UTC): 2:30 PM, 6:45 PM, and 8:45 PM. `STANDARD_ACH`: Standard ACH (as defined by Nacha), typically settled one to three business days after submission. `REAL_TIME_PAYMENTS`: Real-time payments via Request for Payment through networks such as RTP (The Clearing House) and FedNow, where the consumer can authorize the payment in response to a RFP, and the transaction is processed and settled immediately. `DEBIT_CARD`: Payments processed over debit card networks, leveraging the card-based infrastructure for real-time or near-real-time settlement. `MULTIPLE_PAYMENT_METHODS`: Indicates that there is no default debit rail or multiple payment methods are available, and the transaction could use any of them based on customer policy or availability.
+ */
+@JsonAdapter(SignalScheduleDefaultPaymentMethod.Adapter.class)
+public enum SignalScheduleDefaultPaymentMethod {
+
+ SAME_DAY_ACH("SAME_DAY_ACH"),
+
+ STANDARD_ACH("STANDARD_ACH"),
+
+ REAL_TIME_PAYMENTS("REAL_TIME_PAYMENTS"),
+
+ DEBIT_CARD("DEBIT_CARD"),
+
+ MULTIPLE_PAYMENT_METHODS("MULTIPLE_PAYMENT_METHODS"),
+
+ // 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;
+
+ SignalScheduleDefaultPaymentMethod(String value) {
+ this.value = value;
+ }
+
+ public String getValue() {
+ return value;
+ }
+
+ @Override
+ public String toString() {
+ return String.valueOf(value);
+ }
+
+ public static SignalScheduleDefaultPaymentMethod fromValue(String value) {
+ for (SignalScheduleDefaultPaymentMethod b : SignalScheduleDefaultPaymentMethod.values()) {
+ if (b.value.equals(value)) {
+ return b;
+ }
+ }
+
+ return SignalScheduleDefaultPaymentMethod.ENUM_UNKNOWN;
+ }
+
+ public static class Adapter extends TypeAdapter {
+ @Override
+ public void write(final JsonWriter jsonWriter, final SignalScheduleDefaultPaymentMethod enumeration) throws IOException {
+ jsonWriter.value(enumeration.getValue());
+ }
+
+ @Override
+ public SignalScheduleDefaultPaymentMethod read(final JsonReader jsonReader) throws IOException {
+ String value = jsonReader.nextString();
+ return SignalScheduleDefaultPaymentMethod.fromValue(value);
+ }
+ }
+}
+
diff --git a/src/main/java/com/plaid/client/model/SignalScheduleRecommendation.java b/src/main/java/com/plaid/client/model/SignalScheduleRecommendation.java
new file mode 100644
index 0000000000..80ade044d1
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/SignalScheduleRecommendation.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.617.1
+ *
+ *
+ * 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.RecommendationString;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+import java.time.LocalDate;
+
+/**
+ * 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-02-07T19:05:33.763924Z[Etc/UTC]")
+public class SignalScheduleRecommendation {
+ public static final String SERIALIZED_NAME_DATE = "date";
+ @SerializedName(SERIALIZED_NAME_DATE)
+ private LocalDate date;
+
+ public static final String SERIALIZED_NAME_RECOMMENDATION = "recommendation";
+ @SerializedName(SERIALIZED_NAME_RECOMMENDATION)
+ private RecommendationString recommendation;
+
+ public static final String SERIALIZED_NAME_RANK = "rank";
+ @SerializedName(SERIALIZED_NAME_RANK)
+ private Integer rank;
+
+
+ public SignalScheduleRecommendation date(LocalDate date) {
+
+ this.date = date;
+ return this;
+ }
+
+ /**
+ * The specific date for submitting the debit entry, formatted in ISO 8601 (e.g., \"2025-01-17\").
+ * @return date
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "The specific date for submitting the debit entry, formatted in ISO 8601 (e.g., \"2025-01-17\").")
+
+ public LocalDate getDate() {
+ return date;
+ }
+
+
+ public void setDate(LocalDate date) {
+ this.date = date;
+ }
+
+
+ public SignalScheduleRecommendation recommendation(RecommendationString recommendation) {
+
+ this.recommendation = recommendation;
+ return this;
+ }
+
+ /**
+ * Get recommendation
+ * @return recommendation
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public RecommendationString getRecommendation() {
+ return recommendation;
+ }
+
+
+ public void setRecommendation(RecommendationString recommendation) {
+ this.recommendation = recommendation;
+ }
+
+
+ public SignalScheduleRecommendation rank(Integer rank) {
+
+ this.rank = rank;
+ return this;
+ }
+
+ /**
+ * The rank of the recommendation based on the likelihood of debit success, with 1 representing the most optimal date. Dates with `NOT_RECOMMENDED` or `UNKNOWN` will have rank `null`.
+ * @return rank
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "The rank of the recommendation based on the likelihood of debit success, with 1 representing the most optimal date. Dates with `NOT_RECOMMENDED` or `UNKNOWN` will have rank `null`.")
+
+ public Integer getRank() {
+ return rank;
+ }
+
+
+ public void setRank(Integer rank) {
+ this.rank = rank;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ SignalScheduleRecommendation signalScheduleRecommendation = (SignalScheduleRecommendation) o;
+ return Objects.equals(this.date, signalScheduleRecommendation.date) &&
+ Objects.equals(this.recommendation, signalScheduleRecommendation.recommendation) &&
+ Objects.equals(this.rank, signalScheduleRecommendation.rank);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(date, recommendation, rank);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class SignalScheduleRecommendation {\n");
+ sb.append(" date: ").append(toIndentedString(date)).append("\n");
+ sb.append(" recommendation: ").append(toIndentedString(recommendation)).append("\n");
+ sb.append(" rank: ").append(toIndentedString(rank)).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/SignalScheduleRequest.java b/src/main/java/com/plaid/client/model/SignalScheduleRequest.java
new file mode 100644
index 0000000000..ce8cfabd08
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/SignalScheduleRequest.java
@@ -0,0 +1,270 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
+ *
+ *
+ * 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.SignalScheduleDefaultPaymentMethod;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+
+/**
+ * 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-02-07T19:05:33.763924Z[Etc/UTC]")
+public class SignalScheduleRequest {
+ public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
+ @SerializedName(SERIALIZED_NAME_CLIENT_ID)
+ private String clientId;
+
+ public static final String SERIALIZED_NAME_SECRET = "secret";
+ @SerializedName(SERIALIZED_NAME_SECRET)
+ private String secret;
+
+ public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token";
+ @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN)
+ private String accessToken;
+
+ public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
+ @SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
+ private String accountId;
+
+ public static final String SERIALIZED_NAME_CLIENT_TRANSACTION_ID = "client_transaction_id";
+ @SerializedName(SERIALIZED_NAME_CLIENT_TRANSACTION_ID)
+ private String clientTransactionId;
+
+ public static final String SERIALIZED_NAME_AMOUNT = "amount";
+ @SerializedName(SERIALIZED_NAME_AMOUNT)
+ private Double amount;
+
+ public static final String SERIALIZED_NAME_DEFAULT_PAYMENT_METHOD = "default_payment_method";
+ @SerializedName(SERIALIZED_NAME_DEFAULT_PAYMENT_METHOD)
+ private SignalScheduleDefaultPaymentMethod defaultPaymentMethod;
+
+
+ public SignalScheduleRequest 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 SignalScheduleRequest 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;
+ }
+
+
+ public SignalScheduleRequest 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 SignalScheduleRequest accountId(String accountId) {
+
+ this.accountId = accountId;
+ return this;
+ }
+
+ /**
+ * The Plaid `account_id` of the account that is the funding source for the proposed transaction. The `account_id` is returned in the `/accounts/get` endpoint as well as the [`onSuccess`](/docs/link/ios/#link-ios-onsuccess-linkSuccess-metadata-accounts-id) callback metadata. This will return an [`INVALID_ACCOUNT_ID`](/docs/errors/invalid-input/#invalid_account_id) error if the account has been removed at the bank or if the `account_id` is no longer valid.
+ * @return accountId
+ **/
+ @ApiModelProperty(required = true, value = "The Plaid `account_id` of the account that is the funding source for the proposed transaction. The `account_id` is returned in the `/accounts/get` endpoint as well as the [`onSuccess`](/docs/link/ios/#link-ios-onsuccess-linkSuccess-metadata-accounts-id) callback metadata. This will return an [`INVALID_ACCOUNT_ID`](/docs/errors/invalid-input/#invalid_account_id) error if the account has been removed at the bank or if the `account_id` is no longer valid.")
+
+ public String getAccountId() {
+ return accountId;
+ }
+
+
+ public void setAccountId(String accountId) {
+ this.accountId = accountId;
+ }
+
+
+ public SignalScheduleRequest clientTransactionId(String clientTransactionId) {
+
+ this.clientTransactionId = clientTransactionId;
+ return this;
+ }
+
+ /**
+ * The unique ID that you would like to use to refer to this transaction. For your convenience mapping your internal data, you could use your internal ID/identifier for this transaction. The max length for this field is 36 characters.
+ * @return clientTransactionId
+ **/
+ @ApiModelProperty(required = true, value = "The unique ID that you would like to use to refer to this transaction. For your convenience mapping your internal data, you could use your internal ID/identifier for this transaction. The max length for this field is 36 characters.")
+
+ public String getClientTransactionId() {
+ return clientTransactionId;
+ }
+
+
+ public void setClientTransactionId(String clientTransactionId) {
+ this.clientTransactionId = clientTransactionId;
+ }
+
+
+ public SignalScheduleRequest amount(Double amount) {
+
+ this.amount = amount;
+ return this;
+ }
+
+ /**
+ * The transaction amount, in USD (e.g. `102.05`)
+ * @return amount
+ **/
+ @ApiModelProperty(required = true, value = "The transaction amount, in USD (e.g. `102.05`)")
+
+ public Double getAmount() {
+ return amount;
+ }
+
+
+ public void setAmount(Double amount) {
+ this.amount = amount;
+ }
+
+
+ public SignalScheduleRequest defaultPaymentMethod(SignalScheduleDefaultPaymentMethod defaultPaymentMethod) {
+
+ this.defaultPaymentMethod = defaultPaymentMethod;
+ return this;
+ }
+
+ /**
+ * Get defaultPaymentMethod
+ * @return defaultPaymentMethod
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public SignalScheduleDefaultPaymentMethod getDefaultPaymentMethod() {
+ return defaultPaymentMethod;
+ }
+
+
+ public void setDefaultPaymentMethod(SignalScheduleDefaultPaymentMethod defaultPaymentMethod) {
+ this.defaultPaymentMethod = defaultPaymentMethod;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ SignalScheduleRequest signalScheduleRequest = (SignalScheduleRequest) o;
+ return Objects.equals(this.clientId, signalScheduleRequest.clientId) &&
+ Objects.equals(this.secret, signalScheduleRequest.secret) &&
+ Objects.equals(this.accessToken, signalScheduleRequest.accessToken) &&
+ Objects.equals(this.accountId, signalScheduleRequest.accountId) &&
+ Objects.equals(this.clientTransactionId, signalScheduleRequest.clientTransactionId) &&
+ Objects.equals(this.amount, signalScheduleRequest.amount) &&
+ Objects.equals(this.defaultPaymentMethod, signalScheduleRequest.defaultPaymentMethod);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(clientId, secret, accessToken, accountId, clientTransactionId, amount, defaultPaymentMethod);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class SignalScheduleRequest {\n");
+ sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
+ sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
+ sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n");
+ sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
+ sb.append(" clientTransactionId: ").append(toIndentedString(clientTransactionId)).append("\n");
+ sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
+ sb.append(" defaultPaymentMethod: ").append(toIndentedString(defaultPaymentMethod)).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/SignalScheduleResponse.java b/src/main/java/com/plaid/client/model/SignalScheduleResponse.java
new file mode 100644
index 0000000000..394ae7f0b1
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/SignalScheduleResponse.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.617.1
+ *
+ *
+ * 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.SignalScheduleRecommendation;
+import com.plaid.client.model.SignalWarning;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.IOException;
+import java.time.LocalDate;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * 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-02-07T19:05:33.763924Z[Etc/UTC]")
+public class SignalScheduleResponse {
+ public static final String SERIALIZED_NAME_OPTIMAL_DATE = "optimal_date";
+ @SerializedName(SERIALIZED_NAME_OPTIMAL_DATE)
+ private LocalDate optimalDate;
+
+ public static final String SERIALIZED_NAME_RECOMMENDATIONS = "recommendations";
+ @SerializedName(SERIALIZED_NAME_RECOMMENDATIONS)
+ private List recommendations = new ArrayList<>();
+
+ public static final String SERIALIZED_NAME_WARNINGS = "warnings";
+ @SerializedName(SERIALIZED_NAME_WARNINGS)
+ private List warnings = new ArrayList<>();
+
+ public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
+ @SerializedName(SERIALIZED_NAME_REQUEST_ID)
+ private String requestId;
+
+
+ public SignalScheduleResponse optimalDate(LocalDate optimalDate) {
+
+ this.optimalDate = optimalDate;
+ return this;
+ }
+
+ /**
+ * The recommended optimal date to submit the debit entry, formatted in ISO 8601 \"YYYY-MM-DD\" (e.g., \"2024-03-30\"). The `optimal_date` is derived from the date with rank = 1 in the following recommendations array. NOTE: The `default_payment_method` field specified in the request will affect the recommendation, since we're accounting for debit settlement time. The debit scheduling evaluation starts from the day the /signal/schedule request is submitted (Day 0) or the next banking day if the submission day is not a banking day, and extends through the following five banking days (Day 1 to Day 5). If no date within this period is considered likely to result in a successful debit attempt, `null` will be returned for the `optimal_date`.
+ * @return optimalDate
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(required = true, value = "The recommended optimal date to submit the debit entry, formatted in ISO 8601 \"YYYY-MM-DD\" (e.g., \"2024-03-30\"). The `optimal_date` is derived from the date with rank = 1 in the following recommendations array. NOTE: The `default_payment_method` field specified in the request will affect the recommendation, since we're accounting for debit settlement time. The debit scheduling evaluation starts from the day the /signal/schedule request is submitted (Day 0) or the next banking day if the submission day is not a banking day, and extends through the following five banking days (Day 1 to Day 5). If no date within this period is considered likely to result in a successful debit attempt, `null` will be returned for the `optimal_date`.")
+
+ public LocalDate getOptimalDate() {
+ return optimalDate;
+ }
+
+
+ public void setOptimalDate(LocalDate optimalDate) {
+ this.optimalDate = optimalDate;
+ }
+
+
+ public SignalScheduleResponse recommendations(List recommendations) {
+
+ this.recommendations = recommendations;
+ return this;
+ }
+
+ public SignalScheduleResponse addRecommendationsItem(SignalScheduleRecommendation recommendationsItem) {
+ this.recommendations.add(recommendationsItem);
+ return this;
+ }
+
+ /**
+ * This array provides a date-by-date evaluation of debit submission recommendations within the five banking day evaluation period. Each object in the array represents a retry recommendation for a specific date.
+ * @return recommendations
+ **/
+ @ApiModelProperty(required = true, value = "This array provides a date-by-date evaluation of debit submission recommendations within the five banking day evaluation period. Each object in the array represents a retry recommendation for a specific date.")
+
+ public List getRecommendations() {
+ return recommendations;
+ }
+
+
+ public void setRecommendations(List recommendations) {
+ this.recommendations = recommendations;
+ }
+
+
+ public SignalScheduleResponse warnings(List warnings) {
+
+ this.warnings = warnings;
+ return this;
+ }
+
+ public SignalScheduleResponse addWarningsItem(SignalWarning warningsItem) {
+ this.warnings.add(warningsItem);
+ return this;
+ }
+
+ /**
+ * If bank information was not available to be used in the Signal model, this array contains warnings describing why bank data is missing. If you want to receive an API error instead of Signal scores in the case of missing bank data, file a support ticket or contact your Plaid account manager.
+ * @return warnings
+ **/
+ @ApiModelProperty(required = true, value = "If bank information was not available to be used in the Signal model, this array contains warnings describing why bank data is missing. If you want to receive an API error instead of Signal scores in the case of missing bank data, file a support ticket or contact your Plaid account manager.")
+
+ public List getWarnings() {
+ return warnings;
+ }
+
+
+ public void setWarnings(List warnings) {
+ this.warnings = warnings;
+ }
+
+
+ public SignalScheduleResponse requestId(String requestId) {
+
+ this.requestId = requestId;
+ return this;
+ }
+
+ /**
+ * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
+ * @return requestId
+ **/
+ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
+
+ public String getRequestId() {
+ return requestId;
+ }
+
+
+ public void setRequestId(String requestId) {
+ this.requestId = requestId;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ SignalScheduleResponse signalScheduleResponse = (SignalScheduleResponse) o;
+ return Objects.equals(this.optimalDate, signalScheduleResponse.optimalDate) &&
+ Objects.equals(this.recommendations, signalScheduleResponse.recommendations) &&
+ Objects.equals(this.warnings, signalScheduleResponse.warnings) &&
+ Objects.equals(this.requestId, signalScheduleResponse.requestId);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(optimalDate, recommendations, warnings, requestId);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class SignalScheduleResponse {\n");
+ sb.append(" optimalDate: ").append(toIndentedString(optimalDate)).append("\n");
+ sb.append(" recommendations: ").append(toIndentedString(recommendations)).append("\n");
+ sb.append(" warnings: ").append(toIndentedString(warnings)).append("\n");
+ sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces
+ * (except the first line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+}
+
diff --git a/src/main/java/com/plaid/client/model/SignalScores.java b/src/main/java/com/plaid/client/model/SignalScores.java
index 8f60628af0..76f15df214 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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.
*/
@ApiModel(description = "Risk scoring details broken down by risk category.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1be9c71576..515fed09fc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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). When calling `/signal/evaluate` or `/signal/processor/evaluate`, this field is optional, but strongly recommended to increase the accuracy of Signal results.
*/
@ApiModel(description = "Details about the end user initiating the transaction (i.e., the account holder). When calling `/signal/evaluate` or `/signal/processor/evaluate`, this field is optional, but strongly recommended to increase the accuracy of Signal results.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d0f6105e2e..d9d901501e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ebcf2a97c4..3973067c61 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a0b2a57d3b..457e0fe903 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 27690756d0..8e6279f29f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 949239f1fb..a3362a821c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8b6883db1e..50709888ea 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 afa48e56c2..c2315848d5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d90ede1ac8..31881725aa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 082b47a32e..6e039c2178 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 eec4d913e5..8158213970 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cd72ea8349..6f114bf480 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5a6691eaa3..0ffc9e9362 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 d33a563251..d335c96534 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7b86ab1538..70252e6000 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 94ad1a8496..3db249ff44 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 10c09e2f0a..c79d49cc54 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 907b80e0a7..d2d3998e65 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c5b490c128..423f1bcd5f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 626d063e8b..56d6f3a5fb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 61d19b722b..a66a0962cf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 994026d8bc..afe99fd482 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5af7119f18..3246f0fd6f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 abbcbeab8e..e78ebaaae9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 216428f147..48ba827400 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 32d3ca6451..a3fe25a7f9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 c52c8df923..591098966a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 fad3b54511..82dd7c95fb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0a161b821f..bf76c0032d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 43f8b9f725..318d373e37 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1427a825dc..aa3152c7a1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7f15efc853..3c2ebe6e5e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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.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.Information about the Taxpayer identification values assigned to the individual or legal entity.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 15eb15d136..db5f284d4f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 355a14c427..ef57598ab3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8c13ed939d..9095092ff3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0489eac09c..7a21a903a2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 f6b2b6d26b..c2d526023d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 93809276d7..232f51096b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3f5be36276..a213630c72 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9722d84e4b..c29d4a8b4d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e071e1de47..3144de3852 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e3c1544843..4aac78afd5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f9bc0aa3aa..e0841b4937 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e6bd87bf0e..05d14bdf82 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c46fb89241..6d486bb048 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/Transaction.java b/src/main/java/com/plaid/client/model/Transaction.java
index 8b389269a0..7261c2897d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -39,7 +39,7 @@
* A representation of a transaction
*/
@ApiModel(description = "A representation of a transaction")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ec42fd70e1..6b0fe40aa8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
/**
* TransactionAllOf
*/
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 df402ad7fa..dcd5acb2df 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ef7b49ca77..dc911fa13d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 1ae26e4153..5b3153dc4e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cee9607257..3c3898f1f7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5cd62f23c3..004084305b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3db54c3d68..f93c69e3c4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 06362105e3..542ece7a2f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 77aa7f36d0..5299d1989d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 dd384eb8d1..bc8c925b4b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a47d5e5711..af92b423f7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 54d85b1edc..f051ff8cfc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bbea189e86..878660d21a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a871c29e8c..ed8ee2ed90 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c991f17562..abb0b409a4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7eb0a0bf71..3662c1ec35 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d49d868ecf..55d4fd4f6a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9ab27081fe..1e60589e31 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c1c61278a7..65c9a60557 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7dda481d96..6c48efe651 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b87f6c79cf..878cb08ca8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 95c921612f..a77b7e6e51 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 228878f2a3..0f7391da4a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8441680cb9..d21b3150f2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 802678cca5..a0457be96d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9cd215886f..d075b0b5cc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8c36b51cc0..9baa417a10 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 70a3bc7401..b4b2ad6bd5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9de19ae21c..5cbd5bb430 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 295adca9ee..757ad6adbb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7637a9c3ef..adbc5f0d2c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b7de14e90b..b6def01cf2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c17e72da2d..0f98aa6476 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 813e23764e..91aa8f0b12 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b8fb4d5730..8c7a991498 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 c1f00701d2..a83c24308a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 a661bdde12..79cc0751ef 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4f3423f397..4597208d44 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 04639f8092..a2ba5c7f32 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1a7335192f..cc8c713598 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ec65105a5d..5ae20bb97c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d296d45593..c9f469f897 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 858ca08319..57593d8c99 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 941b02813d..27162bc833 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7d5a2d3422..05c11e0384 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a5e01adbc2..0b06926676 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 02e3d29d5b..ed413965b5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 76c7b8889f..311d21a042 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 262aa59bff..c040cb3591 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5a351247eb..88f09cf8ea 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 9b5d24e3b0..4a534eb50d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 db901cb2bd..b2262c198f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 537d842827..e722bc7219 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b94bb9ee80..96dd0be1b8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 234be39300..9821e20948 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 197cb87c12..babe4006aa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 75b8e90570..91cc58963b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2809e5f079..06e486a220 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 056acbd592..048a330f1c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c70c2f3da8..d80815eeed 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 79d7a81680..c24f2d0164 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 426b0e5732..d87b306087 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 187d4dcb49..eaee2e205e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 41612076cd..ace13203ac 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cecc1884ed..a27ac91e32 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 b3356968c5..cd8e91363e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a449c984db..52944cb031 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 551f74fe63..85f7bd8349 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7687a4ad10..cce0980827 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c79eee9fef..bf58e3f155 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 6a7d257ba9..17f579ba5a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8cace084ad..d6fa611a91 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ef86a5b918..63e441176e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e6fd230d49..bc37fa8e84 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e3e8fbb5b6..30d2ee1f7c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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
new file mode 100644
index 0000000000..f7668ab01d
--- /dev/null
+++ b/src/main/java/com/plaid/client/model/TransferCapabilitiesGetRfP.java
@@ -0,0 +1,99 @@
+/*
+ * The Plaid API
+ * The Plaid REST API. Please see https://plaid.com/docs/api for more details.
+ *
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
+ *
+ *
+ * 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;
+
+/**
+ * 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-02-07T19:05:33.763924Z[Etc/UTC]")
+public class TransferCapabilitiesGetRfP {
+ public static final String SERIALIZED_NAME_DEBIT = "debit";
+ @SerializedName(SERIALIZED_NAME_DEBIT)
+ private Boolean debit = false;
+
+
+ public TransferCapabilitiesGetRfP debit(Boolean debit) {
+
+ this.debit = debit;
+ return this;
+ }
+
+ /**
+ * When `true`, the linked Item's institution supports RfP debit transfer.
+ * @return debit
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "When `true`, the linked Item's institution supports RfP debit transfer.")
+
+ public Boolean getDebit() {
+ return debit;
+ }
+
+
+ public void setDebit(Boolean debit) {
+ this.debit = debit;
+ }
+
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ TransferCapabilitiesGetRfP transferCapabilitiesGetRfP = (TransferCapabilitiesGetRfP) o;
+ return Objects.equals(this.debit, transferCapabilitiesGetRfP.debit);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(debit);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class TransferCapabilitiesGetRfP {\n");
+ sb.append(" debit: ").append(toIndentedString(debit)).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/TransferConfigurationGetRequest.java b/src/main/java/com/plaid/client/model/TransferConfigurationGetRequest.java
index 2b39674e71..0e0ffb2f74 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 efe4a1ccea..6549d51d6a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6b5e519719..be62a46bfb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 809dd3a3d5..0db2ecf032 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1524e13b55..26b745136c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 9e40a84c6d..ca4115b375 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a31845d45d..3a92284778 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a3bddddab6..f2f0e70d50 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 497c4b5b0a..96801e5be6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 425cdc40b8..c528930ab0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 24a8fe42ed..2ee9a4b170 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 311a72a770..185f2a7f93 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2479fae142..61ee94df3c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a4d3de4e90..0b29731525 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 144ba3456a..9ebba37f57 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1b6fd553a2..cc215a94bf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0ae2137f5c..fd0c7cb2bc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ae8f6119ad..e81c64cc27 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 14dc13a4c3..a8fa56fa2d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9c58a1b9ea..7b3618b1b1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fceeb9e19b..9be30e6c2b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 99890b8d85..ecaccded8c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f9e33ec7b7..6d2dc28da9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ffa7f9abe4..5952d7f0a9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2d1a58808a..97030711ae 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/TransferGetRequest.java b/src/main/java/com/plaid/client/model/TransferGetRequest.java
index 24ac167e17..368a8fc81e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 23189a740f..73852cd3cf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 34c22c1130..0cab900e91 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 41842b6802..1336a09a82 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 60496193c2..f30939f3b6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 5373ba6896..02b4fb3507 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 860ee0d575..21695661bf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 02b9c8fa37..2aa63a7a20 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 94d6179e9f..a9ddcca486 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e691256c49..fe45442a0a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 95886489cf..6fdefa1537 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cebde67500..a049c122c6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8214c22309..ac14ad6313 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 a80e0841b9..f8c0ef21e2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 467cfb33f4..3cddbda3dc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 247eba54a3..9b5dfdf0ec 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 907a9a9485..4bb66ca024 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 96238bd537..5c88a71147 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/TransferLedgerGetRequest.java b/src/main/java/com/plaid/client/model/TransferLedgerGetRequest.java
index bff6b57a73..1bdd6468b4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 734129c921..8598d34d2c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 607a27796d..2fbb15f723 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 54257da355..5b8cb6aec3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2fc537aed7..67b2f24ecb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 65ebf58ded..cbba180a26 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 218c8d1e78..149844259e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 dbc65d9601..5feb6f7103 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 19a6feb030..62aebcb7bc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 720271e24a..e1e62ea299 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3d3fce91d5..a4c9ed6dc7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 38daa657ad..20f28f915b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 13e4702697..7fb4fb1622 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0c60ac0917..325f414664 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0f8d01a119..ee7ce5a8e9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 eb37e82f23..22bc5c9409 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3259372d83..1914a980ed 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 12bb8ef1db..5f6adf5149 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bf937c075b..f4a8103cfc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/TransferOriginatorFundingAccountUpdateRequest.java b/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountUpdateRequest.java
index ad41b3e5bc..858850204b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 dff8802907..700a23dceb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f8e2174244..f391dd28f2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0f5aadf664..7bf66655de 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6cbf7eeebc..23a95e925a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 04742b1161..a4e428641d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c4531d7d14..ae384e8e85 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 389bfd9d2c..1964738c99 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 428ba7ac35..186a1fe2ea 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2e09d4d4dd..f18a74a3fb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bec0f7e2fa..c521268e49 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 dcd28b1556..8b086e3a75 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 244a68336f..007f96cbec 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2f8f2c1989..271a19409d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 200d5b5945..85b21dbb00 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* A piece of information that is outstanding for the scaled platform onboarding process.
*/
@ApiModel(description = "A piece of information that is outstanding for the scaled platform onboarding process.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3c4946bebd..bc24d48ab8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class TransferPlatformRequirementSubmission {
public static final String SERIALIZED_NAME_REQUIREMENT_TYPE = "requirement_type";
@SerializedName(SERIALIZED_NAME_REQUIREMENT_TYPE)
diff --git a/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmitRequest.java b/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmitRequest.java
index e647a6c9dc..fccb889616 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class TransferPlatformRequirementSubmitRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
diff --git a/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmitResponse.java b/src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmitResponse.java
index ba687989e1..e5da3fa85f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6b506bc1ce..e028b320cf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bd593da23c..b0d18847d3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 34e99d83b4..0ae2a00a66 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5b6c0b5808..99547c43ba 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c4d77aad42..5b4b35fbd5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 39837dff0d..591352c40f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c1242113a2..2c198eeba3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9b876a6b13..56ef517065 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 75b4683650..4c07e45e28 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4a236cf71b..8ab1f5b33e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 82c95eea44..80d3cfb277 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fac582a4a7..d9c163112b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 3df8d73a2a..53c04bc6da 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 31d313caa1..3a87e84344 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 ff6b6490cd..e9b43e70a9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8844f1d9f8..760d2b7678 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 58fd9f7c98..d1bbff6294 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5b775c17fb..96c1f8f458 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2dc1c0e672..2cfa7de9df 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d096447148..fa7b449791 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class TransferRefundFailure {
public static final String SERIALIZED_NAME_FAILURE_CODE = "failure_code";
@SerializedName(SERIALIZED_NAME_FAILURE_CODE)
@@ -73,11 +73,11 @@ public TransferRefundFailure achReturnCode(String achReturnCode) {
}
/**
- * The ACH return code, e.g. `R01`. A return code will be provided if and only if the refund status is `returned`. For a full listing of ACH return codes, see [Transfer errors](https://plaid.com/docs/errors/transfer/#ach-return-codes).
+ * The ACH return code, e.g. `R01`. A return code will be provided if and only if the refund status is `returned`. For a full listing of ACH return codes, see [Transfer errors](https://plaid.com/docs/errors/transfer/#ach-return-codes). This field is deprecated in favor of the more versatile `failure_code`, which encompasses non-ACH failure codes as well.
* @return achReturnCode
**/
@javax.annotation.Nullable
- @ApiModelProperty(value = "The ACH return code, e.g. `R01`. A return code will be provided if and only if the refund status is `returned`. For a full listing of ACH return codes, see [Transfer errors](https://plaid.com/docs/errors/transfer/#ach-return-codes).")
+ @ApiModelProperty(value = "The ACH return code, e.g. `R01`. A return code will be provided if and only if the refund status is `returned`. For a full listing of ACH return codes, see [Transfer errors](https://plaid.com/docs/errors/transfer/#ach-return-codes). This field is deprecated in favor of the more versatile `failure_code`, which encompasses non-ACH failure codes as well.")
public String getAchReturnCode() {
return achReturnCode;
diff --git a/src/main/java/com/plaid/client/model/TransferRefundGetRequest.java b/src/main/java/com/plaid/client/model/TransferRefundGetRequest.java
index 62cc1e7d9e..a5f2972ebf 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 563addc362..7854d394d8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ecd6a6856e..75a5b089de 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 7e6212eb8d..963be6fafa 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1c4adc2fcd..292777befe 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1e2e07ed6b..efc5da0acc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 75d320883e..c689f443a6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 364f51d050..191b8a1613 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 41ab803965..dd75430476 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a448269fe1..b5ab73f136 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 73d4aecf24..a37ac855e0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 5321971976..ef11f25251 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f2c4968a10..c26b54a411 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bb75b94dce..a4b648e221 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2829cc11f7..ff00a8eba7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 cc84c1b02b..b90a96e72c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 86ea5f1577..b1dd247413 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 a450126d89..72a5fcd901 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ead67a72ce..53e3dd6d76 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 d15832ed46..cfecd05641 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3376d4730c..c41fd1b0c5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 40a33b60c6..f4144bb25f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f1540c6772..1dd8e258e4 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 27fb0c07eb..9fce44274f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6fa241e1f7..659b8db9d1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/TrustedDeviceData.java b/src/main/java/com/plaid/client/model/TrustedDeviceData.java
index 5aa73c0411..f00baed855 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3d5fbee83c..cf93d71d52 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ba856f2e65..5d9b808395 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 266743c89a..ace6a6adf1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2037556c74..a15ff1d363 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d284437f63..5d40d2bec9 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9c02270aca..4252c2ea7f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5a0fc7ad49..d0a092fa20 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 Chase and 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://www.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 Chase and 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://www.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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 88d28b8bd0..7fba4c5296 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7a8451643f..be0b2f41ee 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 232a11f84f..150a690b84 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 140d29239d..dd6fcada7d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class UserCreateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
diff --git a/src/main/java/com/plaid/client/model/UserCreateResponse.java b/src/main/java/com/plaid/client/model/UserCreateResponse.java
index d9c2c8caec..f264b336ed 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* UserCreateResponse defines the response schema for `/user/create`
*/
@ApiModel(description = "UserCreateResponse defines the response schema for `/user/create`")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f795dff67d..a7a959db7a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 06f9038478..907c9e7194 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/UserIDNumber.java b/src/main/java/com/plaid/client/model/UserIDNumber.java
index e992995ccf..1a8c448b69 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/UserItemsGetRequest.java b/src/main/java/com/plaid/client/model/UserItemsGetRequest.java
index c81f465a20..b304e38856 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 20e933da26..40e304e694 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/UserPermissionRevokedWebhook.java b/src/main/java/com/plaid/client/model/UserPermissionRevokedWebhook.java
index bd66a93496..8222101115 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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. Upon receiving this webhook, it is recommended to delete any stored data from Plaid associated with the Item. To restore the Item, it can be sent through [update mode](https://plaid.com/docs/link/update-mode). 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.
*/
@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. Upon receiving this webhook, it is recommended to delete any stored data from Plaid associated with the Item. To restore the Item, it can be sent through [update mode](https://plaid.com/docs/link/update-mode). 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.")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9c88e2fe5a..0a67f27556 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 87ddbea113..5335aa100c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 992bb0ba91..b5782135ad 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 8482412614..03161242f6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 f6954459f7..c991e28612 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 612d96c7cf..5c129abdd3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 419851e6e0..cda5eae69f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 af9933e4cc..c2f7609fab 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1a96b9adf2..0c7c2b966d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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/UserUpdateRequest.java b/src/main/java/com/plaid/client/model/UserUpdateRequest.java
index 6123dbbd34..6f5b78ef4a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f6c3b0c6a8..25f87971c2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
* UserUpdateResponse defines the response schema for `/user/update`
*/
@ApiModel(description = "UserUpdateResponse defines the response schema for `/user/update`")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 29b405ba0a..84515141e7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 62cf1c9d88..c53578d093 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3debefc4ca..8e4fc1c486 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9dc687564a..0c9478c395 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8f9f93c2a8..b69253638d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7fc089eaca..b60ea91f01 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 bb4bfce0bb..93e66f0c5a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 b5f54dc249..c2b521f91e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 717447a172..380d09cc1b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 de9e0f0a96..0f3d1d8491 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f1678d993a..bac757f38b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ad8c2e624b..e5d47fb6c6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d05a1b662d..74afdc2971 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fd86ad627b..da03d43e2b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d3813152a8..d56f8486d1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7825c9ff48..16d10eafce 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a49f362c34..16168cce65 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 596845e381..a7e80cd1fc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3caf9c8282..f579040ac5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0fa103ab2c..cc71de7c76 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 671296f05d..cb875d8b11 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8d71f8b556..8451d15d9f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 3b76ff2de8..4aaf25d588 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f9c4118d2a..9623985c51 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d93b23a793..f2a71f5668 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 32660904ba..9206882c39 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 462baf1575..a1f5895089 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 4260ea9451..39c91742a3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,7 @@
* The transaction details
*/
@ApiModel(description = "The transaction details")
-@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 23b6e88390..ffbcf02c61 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2f70689d7b..dff2f23809 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7898ca8524..3e9238695f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e631a05729..a57c24373d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2ad7fbb167..6fc0e006cc 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5d6ad3b3dd..451a03132d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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.OriginatingFundSource;
import com.plaid.client.model.WalletTransactionAmount;
import com.plaid.client.model.WalletTransactionCounterparty;
import io.swagger.annotations.ApiModel;
@@ -30,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[Etc/UTC]")
public class WalletTransactionExecuteRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
@@ -60,6 +61,10 @@ public class WalletTransactionExecuteRequest {
@SerializedName(SERIALIZED_NAME_REFERENCE)
private String reference;
+ public static final String SERIALIZED_NAME_ORIGINATING_FUND_SOURCE = "originating_fund_source";
+ @SerializedName(SERIALIZED_NAME_ORIGINATING_FUND_SOURCE)
+ private OriginatingFundSource originatingFundSource;
+
public WalletTransactionExecuteRequest clientId(String clientId) {
@@ -217,6 +222,29 @@ public void setReference(String reference) {
}
+ public WalletTransactionExecuteRequest originatingFundSource(OriginatingFundSource originatingFundSource) {
+
+ this.originatingFundSource = originatingFundSource;
+ return this;
+ }
+
+ /**
+ * Get originatingFundSource
+ * @return originatingFundSource
+ **/
+ @javax.annotation.Nullable
+ @ApiModelProperty(value = "")
+
+ public OriginatingFundSource getOriginatingFundSource() {
+ return originatingFundSource;
+ }
+
+
+ public void setOriginatingFundSource(OriginatingFundSource originatingFundSource) {
+ this.originatingFundSource = originatingFundSource;
+ }
+
+
@Override
public boolean equals(Object o) {
if (this == o) {
@@ -232,12 +260,13 @@ public boolean equals(Object o) {
Objects.equals(this.walletId, walletTransactionExecuteRequest.walletId) &&
Objects.equals(this.counterparty, walletTransactionExecuteRequest.counterparty) &&
Objects.equals(this.amount, walletTransactionExecuteRequest.amount) &&
- Objects.equals(this.reference, walletTransactionExecuteRequest.reference);
+ Objects.equals(this.reference, walletTransactionExecuteRequest.reference) &&
+ Objects.equals(this.originatingFundSource, walletTransactionExecuteRequest.originatingFundSource);
}
@Override
public int hashCode() {
- return Objects.hash(clientId, secret, idempotencyKey, walletId, counterparty, amount, reference);
+ return Objects.hash(clientId, secret, idempotencyKey, walletId, counterparty, amount, reference, originatingFundSource);
}
@Override
@@ -251,6 +280,7 @@ public String toString() {
sb.append(" counterparty: ").append(toIndentedString(counterparty)).append("\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" reference: ").append(toIndentedString(reference)).append("\n");
+ sb.append(" originatingFundSource: ").append(toIndentedString(originatingFundSource)).append("\n");
sb.append("}");
return sb.toString();
}
diff --git a/src/main/java/com/plaid/client/model/WalletTransactionExecuteResponse.java b/src/main/java/com/plaid/client/model/WalletTransactionExecuteResponse.java
index 2611d6ee0e..a1f4e4bb1a 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 855f1d3f7c..9309ec4783 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 7233fa1bda..f7b723ed08 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 322fc704ab..ac0f81774b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -39,7 +39,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b0a81cea06..cd92b55b7f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d55f21c5cb..735f2dfc91 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5a14b56d1f..59d10c3cb6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a9dd03c16f..5854041883 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 dbea4b0db4..4656bc0e8c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 627a99c5c5..0df4b1bc61 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 742e04f2e1..0162c695fe 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7085581d8e..28be968d4c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 357d6e8c3b..22b7fe564f 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 0585dc2263..12f2c3e63b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5e02094b0c..e6088b06f2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 21da6ecd43..0ba9f4dabd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3ddc47a6f0..d4149e50e6 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8f96aaae6b..da0ad5f4bd 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 eb1695e1e6..6767a1af61 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5516a8663d..219e8e5341 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 808e28ac63..b2ba40c59d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 93e6daf114..959032619b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7a3f88de59..5198cc2c05 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9b1def3e1f..0b2b353a98 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 3e58b33c5d..5cfd04aa12 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 eb671f94d5..14a378c122 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f7b48ed259..aac833ad81 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 82e4c250a0..7bba6c47e8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 eb5ff97bef..c41f01dfef 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1e3136277d..6f4d772df3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e4c291eff9..68aae31394 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 ab33bcc4f8..0d5f219637 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b7ea988bf5..87634d9639 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 00a6f33473..e95a81ab25 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 025e5a6ab9..8b232b7e96 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 458482cdee..d0a3424cbe 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c44d24b7ca..407599355b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 7d360c0286..338705ebc5 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 e0812326f9..4d9491d430 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 5709f74b2c..a9478e0429 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 80e463843f..d4bc2e338c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 422551acbe..affa774a49 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b3b61d9cb1..a5df587307 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9226ef16ff..4d8ad5d005 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 daf7f49e8e..2ad92d6f65 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 83d9c22afa..82244cc915 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8792c31b72..5a4d547eec 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2b2b255ffd..b0ad830796 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 762dc5fd64..6f17a2b66b 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 310200bd5b..5a6ae45843 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 9f372ddf64..d68eb5033c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f18160e166..4dfe621445 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 2044d73da2..2cea794482 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 fa0e017406..1994162aab 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 bb3032928f..0f427d6bb1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 f6ab428e43..3f7eeeb4cb 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 d05d1acbe2..57b0305d24 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 b0a0fbf5cc..a2872e9dda 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 67db443bc6..ff0e86af0d 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 8c2a1cf6b0..cec06f462e 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 7cbe86ed21..5cf6bebc58 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 1c895b80b9..6017872dac 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 c8b045d828..a4856a0b18 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 739bdfc865..06fbb078f8 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5564bae6a7..0253a3cca0 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 765a0b7f36..633a0dc864 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 01dfb65a63..f533e4d1c1 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 e4a291179d..da03fe60d7 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 0bd2b03581..7f79c621f2 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 acec119cd9..b650bf1680 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 94f28d9ab6..4421f2e33c 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 5654e8a391..5a7347fd65 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 4aac483970..90373c27c3 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 a93daa2856..d31703d873 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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-01-23T20:55:58.809242Z[Etc/UTC]")
+@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-02-07T19:05:33.763924Z[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 6db6d263b5..1fc7e02665 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.610.1
+ * The version of the OpenAPI document: 2020-09-14_1.617.1
*
*
* 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 de26579856..c4a50157dc 100644
--- a/src/main/java/com/plaid/client/request/PlaidApi.java
+++ b/src/main/java/com/plaid/client/request/PlaidApi.java
@@ -90,6 +90,8 @@
import com.plaid.client.model.CraBankIncomeGetResponse;
import com.plaid.client.model.CraCheckReportBaseReportGetRequest;
import com.plaid.client.model.CraCheckReportBaseReportGetResponse;
+import com.plaid.client.model.CraCheckReportCashflowInsightsGetRequest;
+import com.plaid.client.model.CraCheckReportCashflowInsightsGetResponse;
import com.plaid.client.model.CraCheckReportCreateRequest;
import com.plaid.client.model.CraCheckReportCreateResponse;
import com.plaid.client.model.CraCheckReportIncomeInsightsGetRequest;
@@ -407,6 +409,8 @@
import com.plaid.client.model.SignalPrepareResponse;
import com.plaid.client.model.SignalReturnReportRequest;
import com.plaid.client.model.SignalReturnReportResponse;
+import com.plaid.client.model.SignalScheduleRequest;
+import com.plaid.client.model.SignalScheduleResponse;
import com.plaid.client.model.StatementsDownloadRequest;
import com.plaid.client.model.StatementsListRequest;
import com.plaid.client.model.StatementsListResponse;
@@ -1257,6 +1261,22 @@ Call craCheckReportBaseReportGet(
@retrofit2.http.Body CraCheckReportBaseReportGetRequest craCheckReportBaseReportGetRequest
);
+ /**
+ * Retrieve cash flow insights from your user's banking data
+ * This endpoint allows you to retrieve the Cashflow Insights report for your user. You should call this endpoint after you've received the `CHECK_REPORT_READY` webhook, either after the Link session for the user or after calling `/cra/check_report/create`. If the most recent consumer report for the user doesn’t have sufficient data to generate the insights, or the consumer report has expired, you will receive an error indicating that you should create a new consumer report by calling `/cra/check_report/create`. If you did not initialize Link with the `cra_cashflow_insights` product or have generated a report using `/cra/check_report/create`, we will generate the insights when you call this endpoint. In this case, you may optionally provide parameters under `options` to configure which insights you want to receive.
+ * @param craCheckReportCashflowInsightsGetRequest (required)
+ * @return Call<CraCheckReportCashflowInsightsGetResponse>
+ *
+ * @see Retrieve cash flow insights from your user's banking data Documentation
+ */
+ @Headers({
+ "Content-Type:application/json"
+ })
+ @POST("cra/check_report/cashflow_insights/get")
+ Call craCheckReportCashflowInsightsGet(
+ @retrofit2.http.Body CraCheckReportCashflowInsightsGetRequest craCheckReportCashflowInsightsGetRequest
+ );
+
/**
* 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.
@@ -3892,6 +3912,22 @@ Call signalReturnReport(
@retrofit2.http.Body SignalReturnReportRequest signalReturnReportRequest
);
+ /**
+ * Schedule a planned ACH transaction
+ * Use `/signal/schedule` to schedule a planned ACH transaction.
+ * @param signalScheduleRequest (required)
+ * @return Call<SignalScheduleResponse>
+ *
+ * @see Schedule a planned ACH transaction Documentation
+ */
+ @Headers({
+ "Content-Type:application/json"
+ })
+ @POST("signal/schedule")
+ Call signalSchedule(
+ @retrofit2.http.Body SignalScheduleRequest signalScheduleRequest
+ );
+
/**
* Retrieve a single statement.
* The `/statements/download` endpoint retrieves a single statement PDF in binary format. The response will contain a `Plaid-Content-Hash` header containing a SHA 256 checksum of the statement. This can be used to verify that the file being sent by Plaid is the same file that was downloaded to your system.