diff --git a/CHANGELOG.md b/CHANGELOG.md index dc58562e7..c538ead6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ See full changelog for the OpenAPI Schema (OAS) [here](https://github.com/plaid/plaid-openapi/blob/master/CHANGELOG.md). +# 42.0.0 +- Updating to OAS 2020-09-14_1.708.0 + +## OpenAPI Schema Changes +### 2020-09-14_1.708.0 +- [Breaking] Preserve arbitrary JSON value types in `/cra/report/get` product `metadata` and `attributes` maps and scalar values in `/cra/credit_profile/report/get` cash flow and network insight attribute maps generated by client libraries. + +### 2020-09-14_1.707.1 +- Add `increase` to the `processor` enum on `/processor/token/create`, for creating processor tokens for the Increase integration. + +### 2020-09-14_1.707.0 +- Add hidden `user_id` request fields to `/credit/sessions/get` and `/credit/bank_statements/uploads/get`. + # 41.0.0 - Updating to OAS 2020-09-14_1.706.1 diff --git a/plaid/__init__.py b/plaid/__init__.py index 33ffe57cd..882499c8f 100644 --- a/plaid/__init__.py +++ b/plaid/__init__.py @@ -5,12 +5,12 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ -__version__ = "41.0.0" +__version__ = "42.0.0" # import ApiClient from plaid.api_client import ApiClient diff --git a/plaid/api/plaid_api.py b/plaid/api/plaid_api.py index b216ae137..8a7e3350b 100644 --- a/plaid/api/plaid_api.py +++ b/plaid/api/plaid_api.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/api_client.py b/plaid/api_client.py index fab6fa122..17874dd1c 100644 --- a/plaid/api_client.py +++ b/plaid/api_client.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ @@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'Plaid Python v41.0.0' + self.user_agent = 'Plaid Python v42.0.0' def __enter__(self): return self diff --git a/plaid/configuration.py b/plaid/configuration.py index e69bf0b58..4b66e635c 100644 --- a/plaid/configuration.py +++ b/plaid/configuration.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ @@ -438,8 +438,8 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 2020-09-14_1.706.1\n"\ - "SDK Package Version: 41.0.0".\ + "Version of the API: 2020-09-14_1.708.0\n"\ + "SDK Package Version: 42.0.0".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/plaid/exceptions.py b/plaid/exceptions.py index 1460405d3..b1f45795d 100644 --- a/plaid/exceptions.py +++ b/plaid/exceptions.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/aamva_analysis.py b/plaid/model/aamva_analysis.py index ad4f47719..f6059c0a9 100644 --- a/plaid/model/aamva_analysis.py +++ b/plaid/model/aamva_analysis.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/aamva_detailed_match_result.py b/plaid/model/aamva_detailed_match_result.py index 44061ddf8..e691b2925 100644 --- a/plaid/model/aamva_detailed_match_result.py +++ b/plaid/model/aamva_detailed_match_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/aamva_match_result.py b/plaid/model/aamva_match_result.py index 94c0d6a5e..d2b8565d5 100644 --- a/plaid/model/aamva_match_result.py +++ b/plaid/model/aamva_match_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_access.py b/plaid/model/account_access.py index 0f6f32f8c..faa4578af 100644 --- a/plaid/model/account_access.py +++ b/plaid/model/account_access.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_assets.py b/plaid/model/account_assets.py index 322bdca17..15860d2a0 100644 --- a/plaid/model/account_assets.py +++ b/plaid/model/account_assets.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_balance.py b/plaid/model/account_balance.py index 65c8dff74..7a7908e58 100644 --- a/plaid/model/account_balance.py +++ b/plaid/model/account_balance.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_base.py b/plaid/model/account_base.py index 4a0d0d8f9..8ce5d26e4 100644 --- a/plaid/model/account_base.py +++ b/plaid/model/account_base.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_base_nullable.py b/plaid/model/account_base_nullable.py index e60a56701..ebc412878 100644 --- a/plaid/model/account_base_nullable.py +++ b/plaid/model/account_base_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_filter.py b/plaid/model/account_filter.py index 0b28ba558..adb8c0b72 100644 --- a/plaid/model/account_filter.py +++ b/plaid/model/account_filter.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_filter_subtypes.py b/plaid/model/account_filter_subtypes.py index 2adbd4961..329349873 100644 --- a/plaid/model/account_filter_subtypes.py +++ b/plaid/model/account_filter_subtypes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_filters_response.py b/plaid/model/account_filters_response.py index 2ecd9da84..728faefb9 100644 --- a/plaid/model/account_filters_response.py +++ b/plaid/model/account_filters_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_holder_category.py b/plaid/model/account_holder_category.py index 940965389..90de24cab 100644 --- a/plaid/model/account_holder_category.py +++ b/plaid/model/account_holder_category.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_identity.py b/plaid/model/account_identity.py index ee071a984..c59e91bfc 100644 --- a/plaid/model/account_identity.py +++ b/plaid/model/account_identity.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_identity_all_of.py b/plaid/model/account_identity_all_of.py index abf80f4b7..697fe93ef 100644 --- a/plaid/model/account_identity_all_of.py +++ b/plaid/model/account_identity_all_of.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_identity_document_upload.py b/plaid/model/account_identity_document_upload.py index 6c7a922ec..f514e897f 100644 --- a/plaid/model/account_identity_document_upload.py +++ b/plaid/model/account_identity_document_upload.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_identity_document_upload_all_of.py b/plaid/model/account_identity_document_upload_all_of.py index 7d48e61be..8f1a6aa84 100644 --- a/plaid/model/account_identity_document_upload_all_of.py +++ b/plaid/model/account_identity_document_upload_all_of.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_identity_match_score.py b/plaid/model/account_identity_match_score.py index c06524b8f..7a931eab9 100644 --- a/plaid/model/account_identity_match_score.py +++ b/plaid/model/account_identity_match_score.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_identity_match_score_all_of.py b/plaid/model/account_identity_match_score_all_of.py index 7c928a3b2..c9910d4ea 100644 --- a/plaid/model/account_identity_match_score_all_of.py +++ b/plaid/model/account_identity_match_score_all_of.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_ids_with_updated_auth.py b/plaid/model/account_ids_with_updated_auth.py index c4dca128b..b3de4f4f9 100644 --- a/plaid/model/account_ids_with_updated_auth.py +++ b/plaid/model/account_ids_with_updated_auth.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_ids_with_updated_identity.py b/plaid/model/account_ids_with_updated_identity.py index d07d012a9..c640c0f02 100644 --- a/plaid/model/account_ids_with_updated_identity.py +++ b/plaid/model/account_ids_with_updated_identity.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_insights.py b/plaid/model/account_insights.py index 1efddad5c..c7e9f7f12 100644 --- a/plaid/model/account_insights.py +++ b/plaid/model/account_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_product_access.py b/plaid/model/account_product_access.py index c6542697d..8c0103610 100644 --- a/plaid/model/account_product_access.py +++ b/plaid/model/account_product_access.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_product_access_nullable.py b/plaid/model/account_product_access_nullable.py index f1214100c..deb5d6b91 100644 --- a/plaid/model/account_product_access_nullable.py +++ b/plaid/model/account_product_access_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_selection_cardinality.py b/plaid/model/account_selection_cardinality.py index 0a0c999e2..91c42c7de 100644 --- a/plaid/model/account_selection_cardinality.py +++ b/plaid/model/account_selection_cardinality.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_subtype.py b/plaid/model/account_subtype.py index 114e53b15..e90f905a4 100644 --- a/plaid/model/account_subtype.py +++ b/plaid/model/account_subtype.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_subtypes.py b/plaid/model/account_subtypes.py index a56509d58..3886b0f23 100644 --- a/plaid/model/account_subtypes.py +++ b/plaid/model/account_subtypes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_type.py b/plaid/model/account_type.py index 45c1a43cf..b7875724f 100644 --- a/plaid/model/account_type.py +++ b/plaid/model/account_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_verification_insights.py b/plaid/model/account_verification_insights.py index 6090da3b8..355e4667b 100644 --- a/plaid/model/account_verification_insights.py +++ b/plaid/model/account_verification_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_verification_insights_account_number_format.py b/plaid/model/account_verification_insights_account_number_format.py index 045e05143..db4d96300 100644 --- a/plaid/model/account_verification_insights_account_number_format.py +++ b/plaid/model/account_verification_insights_account_number_format.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_verification_insights_network_status.py b/plaid/model/account_verification_insights_network_status.py index 8b97c01ea..bb0cee50d 100644 --- a/plaid/model/account_verification_insights_network_status.py +++ b/plaid/model/account_verification_insights_network_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_verification_insights_previous_returns.py b/plaid/model/account_verification_insights_previous_returns.py index 4dbececda..d168f5eea 100644 --- a/plaid/model/account_verification_insights_previous_returns.py +++ b/plaid/model/account_verification_insights_previous_returns.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/accounts_balance_get_request.py b/plaid/model/accounts_balance_get_request.py index e8c9e552a..4ed4e1fb5 100644 --- a/plaid/model/accounts_balance_get_request.py +++ b/plaid/model/accounts_balance_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/accounts_balance_get_request_options.py b/plaid/model/accounts_balance_get_request_options.py index c0d180aeb..3381aff8c 100644 --- a/plaid/model/accounts_balance_get_request_options.py +++ b/plaid/model/accounts_balance_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/accounts_get_request.py b/plaid/model/accounts_get_request.py index e59e3a935..e3002f42b 100644 --- a/plaid/model/accounts_get_request.py +++ b/plaid/model/accounts_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/accounts_get_request_options.py b/plaid/model/accounts_get_request_options.py index 805abb997..5bbce0355 100644 --- a/plaid/model/accounts_get_request_options.py +++ b/plaid/model/accounts_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/accounts_get_response.py b/plaid/model/accounts_get_response.py index e5f718a72..1b28deb5b 100644 --- a/plaid/model/accounts_get_response.py +++ b/plaid/model/accounts_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/ach_class.py b/plaid/model/ach_class.py index 8549623a2..ab48702b0 100644 --- a/plaid/model/ach_class.py +++ b/plaid/model/ach_class.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/action_state.py b/plaid/model/action_state.py index 082f8b06f..800f8e09d 100644 --- a/plaid/model/action_state.py +++ b/plaid/model/action_state.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/activity.py b/plaid/model/activity.py index ff77e337a..a6c5d8f84 100644 --- a/plaid/model/activity.py +++ b/plaid/model/activity.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/activity_type.py b/plaid/model/activity_type.py index 5de71f9a9..09f69ddd2 100644 --- a/plaid/model/activity_type.py +++ b/plaid/model/activity_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address.py b/plaid/model/address.py index f5d1d0431..0c2781128 100644 --- a/plaid/model/address.py +++ b/plaid/model/address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address_data.py b/plaid/model/address_data.py index 9fd55fd3b..4a84017db 100644 --- a/plaid/model/address_data.py +++ b/plaid/model/address_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address_data_not_required.py b/plaid/model/address_data_not_required.py index 642ca2463..6f1a090e5 100644 --- a/plaid/model/address_data_not_required.py +++ b/plaid/model/address_data_not_required.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address_data_nullable.py b/plaid/model/address_data_nullable.py index a657ae8b3..37640e3eb 100644 --- a/plaid/model/address_data_nullable.py +++ b/plaid/model/address_data_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address_data_nullable_no_required_fields.py b/plaid/model/address_data_nullable_no_required_fields.py index a46567dee..ecf54e292 100644 --- a/plaid/model/address_data_nullable_no_required_fields.py +++ b/plaid/model/address_data_nullable_no_required_fields.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address_match_score.py b/plaid/model/address_match_score.py index a30d78949..c0063cfc1 100644 --- a/plaid/model/address_match_score.py +++ b/plaid/model/address_match_score.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address_nullable.py b/plaid/model/address_nullable.py index 1571f2562..ce550c5ca 100644 --- a/plaid/model/address_nullable.py +++ b/plaid/model/address_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address_purpose_label.py b/plaid/model/address_purpose_label.py index 75c9d6222..214b5716a 100644 --- a/plaid/model/address_purpose_label.py +++ b/plaid/model/address_purpose_label.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/affordability_insights.py b/plaid/model/affordability_insights.py index 03c76cf40..37f40c3f1 100644 --- a/plaid/model/affordability_insights.py +++ b/plaid/model/affordability_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/amount_with_currency.py b/plaid/model/amount_with_currency.py index d72072538..020c31191 100644 --- a/plaid/model/amount_with_currency.py +++ b/plaid/model/amount_with_currency.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/amount_with_currency_with_monthly_average.py b/plaid/model/amount_with_currency_with_monthly_average.py index 5c119ef18..b33d86a2b 100644 --- a/plaid/model/amount_with_currency_with_monthly_average.py +++ b/plaid/model/amount_with_currency_with_monthly_average.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/application.py b/plaid/model/application.py index fd8dff16a..da9c42c3c 100644 --- a/plaid/model/application.py +++ b/plaid/model/application.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/application_get_request.py b/plaid/model/application_get_request.py index 12ed00caf..800d448bb 100644 --- a/plaid/model/application_get_request.py +++ b/plaid/model/application_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/application_get_response.py b/plaid/model/application_get_response.py index e95a0b1ae..5f277669c 100644 --- a/plaid/model/application_get_response.py +++ b/plaid/model/application_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/apr.py b/plaid/model/apr.py index fb06d9089..ec967d2db 100644 --- a/plaid/model/apr.py +++ b/plaid/model/apr.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset.py b/plaid/model/asset.py index 0f17378df..a70a5066b 100644 --- a/plaid/model/asset.py +++ b/plaid/model/asset.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_detail.py b/plaid/model/asset_detail.py index 3d50358de..8a9d4968e 100644 --- a/plaid/model/asset_detail.py +++ b/plaid/model/asset_detail.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_holder.py b/plaid/model/asset_holder.py index 64a2e9a94..ac2559b2d 100644 --- a/plaid/model/asset_holder.py +++ b/plaid/model/asset_holder.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_holder_name.py b/plaid/model/asset_holder_name.py index c9762fcf0..112e234aa 100644 --- a/plaid/model/asset_holder_name.py +++ b/plaid/model/asset_holder_name.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_holding.py b/plaid/model/asset_holding.py index 019d43862..7cd969ccc 100644 --- a/plaid/model/asset_holding.py +++ b/plaid/model/asset_holding.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_holdings.py b/plaid/model/asset_holdings.py index 6d848c649..0e842f8fd 100644 --- a/plaid/model/asset_holdings.py +++ b/plaid/model/asset_holdings.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_investment_transaction_type.py b/plaid/model/asset_investment_transaction_type.py index 525340f0d..aca2e4bb1 100644 --- a/plaid/model/asset_investment_transaction_type.py +++ b/plaid/model/asset_investment_transaction_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_owner.py b/plaid/model/asset_owner.py index 5f61fab24..e5919e605 100644 --- a/plaid/model/asset_owner.py +++ b/plaid/model/asset_owner.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_owners.py b/plaid/model/asset_owners.py index b1d4652c7..45b13cab4 100644 --- a/plaid/model/asset_owners.py +++ b/plaid/model/asset_owners.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report.py b/plaid/model/asset_report.py index 04080bd6a..32d2388c7 100644 --- a/plaid/model/asset_report.py +++ b/plaid/model/asset_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_account_balance.py b/plaid/model/asset_report_account_balance.py index 53a57362c..9ad8e4fe9 100644 --- a/plaid/model/asset_report_account_balance.py +++ b/plaid/model/asset_report_account_balance.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_add_ons.py b/plaid/model/asset_report_add_ons.py index 408ee8df6..73bb7b46b 100644 --- a/plaid/model/asset_report_add_ons.py +++ b/plaid/model/asset_report_add_ons.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_audit_copy_create_request.py b/plaid/model/asset_report_audit_copy_create_request.py index 0ee7b1000..fe92b36fe 100644 --- a/plaid/model/asset_report_audit_copy_create_request.py +++ b/plaid/model/asset_report_audit_copy_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_audit_copy_create_response.py b/plaid/model/asset_report_audit_copy_create_response.py index 070dd2103..8edfa39a2 100644 --- a/plaid/model/asset_report_audit_copy_create_response.py +++ b/plaid/model/asset_report_audit_copy_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_audit_copy_get_request.py b/plaid/model/asset_report_audit_copy_get_request.py index f08d37953..aa4c18148 100644 --- a/plaid/model/asset_report_audit_copy_get_request.py +++ b/plaid/model/asset_report_audit_copy_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_audit_copy_pdf_get_request.py b/plaid/model/asset_report_audit_copy_pdf_get_request.py index 7efc6da7c..bb042062c 100644 --- a/plaid/model/asset_report_audit_copy_pdf_get_request.py +++ b/plaid/model/asset_report_audit_copy_pdf_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_audit_copy_remove_request.py b/plaid/model/asset_report_audit_copy_remove_request.py index e7d13a922..b70143c88 100644 --- a/plaid/model/asset_report_audit_copy_remove_request.py +++ b/plaid/model/asset_report_audit_copy_remove_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_audit_copy_remove_response.py b/plaid/model/asset_report_audit_copy_remove_response.py index 9583b3aa4..5254286a9 100644 --- a/plaid/model/asset_report_audit_copy_remove_response.py +++ b/plaid/model/asset_report_audit_copy_remove_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_create_request.py b/plaid/model/asset_report_create_request.py index 9e79bd4c4..cf143a6d6 100644 --- a/plaid/model/asset_report_create_request.py +++ b/plaid/model/asset_report_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_create_request_options.py b/plaid/model/asset_report_create_request_options.py index 1e4a77e90..d98f3af78 100644 --- a/plaid/model/asset_report_create_request_options.py +++ b/plaid/model/asset_report_create_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_create_response.py b/plaid/model/asset_report_create_response.py index d291bb8ab..81c01c25a 100644 --- a/plaid/model/asset_report_create_response.py +++ b/plaid/model/asset_report_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_filter_request.py b/plaid/model/asset_report_filter_request.py index 0d3fd9047..553a4661d 100644 --- a/plaid/model/asset_report_filter_request.py +++ b/plaid/model/asset_report_filter_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_filter_response.py b/plaid/model/asset_report_filter_response.py index 3876526a4..64be6f588 100644 --- a/plaid/model/asset_report_filter_response.py +++ b/plaid/model/asset_report_filter_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_freddie.py b/plaid/model/asset_report_freddie.py index 889932e24..e0e9891e4 100644 --- a/plaid/model/asset_report_freddie.py +++ b/plaid/model/asset_report_freddie.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_freddie_get_request.py b/plaid/model/asset_report_freddie_get_request.py index b28619999..2db201e83 100644 --- a/plaid/model/asset_report_freddie_get_request.py +++ b/plaid/model/asset_report_freddie_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_freddie_get_response.py b/plaid/model/asset_report_freddie_get_response.py index a10724a38..aeb886096 100644 --- a/plaid/model/asset_report_freddie_get_response.py +++ b/plaid/model/asset_report_freddie_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_get_request.py b/plaid/model/asset_report_get_request.py index c0694b44c..07f70b210 100644 --- a/plaid/model/asset_report_get_request.py +++ b/plaid/model/asset_report_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_get_request_options.py b/plaid/model/asset_report_get_request_options.py index fe701fa0a..b378e4153 100644 --- a/plaid/model/asset_report_get_request_options.py +++ b/plaid/model/asset_report_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_get_response.py b/plaid/model/asset_report_get_response.py index 383aac3c1..81dc2ce26 100644 --- a/plaid/model/asset_report_get_response.py +++ b/plaid/model/asset_report_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_investment_holding.py b/plaid/model/asset_report_investment_holding.py index b1cd55b55..c2399a9d4 100644 --- a/plaid/model/asset_report_investment_holding.py +++ b/plaid/model/asset_report_investment_holding.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_investment_security.py b/plaid/model/asset_report_investment_security.py index 9efb735f5..0827cd473 100644 --- a/plaid/model/asset_report_investment_security.py +++ b/plaid/model/asset_report_investment_security.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_investment_transaction.py b/plaid/model/asset_report_investment_transaction.py index c90ebe0fe..4c039015d 100644 --- a/plaid/model/asset_report_investment_transaction.py +++ b/plaid/model/asset_report_investment_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_investments.py b/plaid/model/asset_report_investments.py index 85d3ec096..75e3ee557 100644 --- a/plaid/model/asset_report_investments.py +++ b/plaid/model/asset_report_investments.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_item.py b/plaid/model/asset_report_item.py index e0f74eeb4..fc3b0fa57 100644 --- a/plaid/model/asset_report_item.py +++ b/plaid/model/asset_report_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_pdf_get_request.py b/plaid/model/asset_report_pdf_get_request.py index ead699446..6ced5ce81 100644 --- a/plaid/model/asset_report_pdf_get_request.py +++ b/plaid/model/asset_report_pdf_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_pdf_get_request_options.py b/plaid/model/asset_report_pdf_get_request_options.py index 68f65ee2a..6936f74dd 100644 --- a/plaid/model/asset_report_pdf_get_request_options.py +++ b/plaid/model/asset_report_pdf_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_refresh_request.py b/plaid/model/asset_report_refresh_request.py index b7a5cac3d..73c84fde8 100644 --- a/plaid/model/asset_report_refresh_request.py +++ b/plaid/model/asset_report_refresh_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_refresh_request_options.py b/plaid/model/asset_report_refresh_request_options.py index bf9296408..29f487e57 100644 --- a/plaid/model/asset_report_refresh_request_options.py +++ b/plaid/model/asset_report_refresh_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_refresh_response.py b/plaid/model/asset_report_refresh_response.py index 9683d8249..20107ada5 100644 --- a/plaid/model/asset_report_refresh_response.py +++ b/plaid/model/asset_report_refresh_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_remove_request.py b/plaid/model/asset_report_remove_request.py index dd97633ba..3af829ece 100644 --- a/plaid/model/asset_report_remove_request.py +++ b/plaid/model/asset_report_remove_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_remove_response.py b/plaid/model/asset_report_remove_response.py index 851fef1ab..f3565820c 100644 --- a/plaid/model/asset_report_remove_response.py +++ b/plaid/model/asset_report_remove_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_transaction.py b/plaid/model/asset_report_transaction.py index 76ec77608..1c6a05c4a 100644 --- a/plaid/model/asset_report_transaction.py +++ b/plaid/model/asset_report_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_transaction_type.py b/plaid/model/asset_report_transaction_type.py index 86c355076..e494e9498 100644 --- a/plaid/model/asset_report_transaction_type.py +++ b/plaid/model/asset_report_transaction_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_type.py b/plaid/model/asset_report_type.py index ef7b01e1b..94814ea9f 100644 --- a/plaid/model/asset_report_type.py +++ b/plaid/model/asset_report_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_user.py b/plaid/model/asset_report_user.py index 9b2a66693..f6b7ad364 100644 --- a/plaid/model/asset_report_user.py +++ b/plaid/model/asset_report_user.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_transaction.py b/plaid/model/asset_transaction.py index c24a1398f..7689fe3dd 100644 --- a/plaid/model/asset_transaction.py +++ b/plaid/model/asset_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_transaction_category_type.py b/plaid/model/asset_transaction_category_type.py index 63a47c7fc..b1cdb5ae2 100644 --- a/plaid/model/asset_transaction_category_type.py +++ b/plaid/model/asset_transaction_category_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_transaction_description.py b/plaid/model/asset_transaction_description.py index 4fcc38322..39f6585d1 100644 --- a/plaid/model/asset_transaction_description.py +++ b/plaid/model/asset_transaction_description.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_transaction_detail.py b/plaid/model/asset_transaction_detail.py index c06cb794f..3dd2cad5c 100644 --- a/plaid/model/asset_transaction_detail.py +++ b/plaid/model/asset_transaction_detail.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_transaction_type.py b/plaid/model/asset_transaction_type.py index 7af485501..5e6d54a52 100644 --- a/plaid/model/asset_transaction_type.py +++ b/plaid/model/asset_transaction_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_transactions.py b/plaid/model/asset_transactions.py index bc06a0bac..c5005456b 100644 --- a/plaid/model/asset_transactions.py +++ b/plaid/model/asset_transactions.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_type.py b/plaid/model/asset_type.py index 12c70394a..cbb18d896 100644 --- a/plaid/model/asset_type.py +++ b/plaid/model/asset_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/assets.py b/plaid/model/assets.py index 5ce452685..836aa33d8 100644 --- a/plaid/model/assets.py +++ b/plaid/model/assets.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/assets_error_webhook.py b/plaid/model/assets_error_webhook.py index 7e8e95f3a..f3cb7079c 100644 --- a/plaid/model/assets_error_webhook.py +++ b/plaid/model/assets_error_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/assets_product_ready_webhook.py b/plaid/model/assets_product_ready_webhook.py index 2a2150dd2..861bd4f4d 100644 --- a/plaid/model/assets_product_ready_webhook.py +++ b/plaid/model/assets_product_ready_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_default_update_webhook.py b/plaid/model/auth_default_update_webhook.py index 1a0051b4e..c5056c7c0 100644 --- a/plaid/model/auth_default_update_webhook.py +++ b/plaid/model/auth_default_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_get_numbers.py b/plaid/model/auth_get_numbers.py index 99bd4e559..46b4927d8 100644 --- a/plaid/model/auth_get_numbers.py +++ b/plaid/model/auth_get_numbers.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_get_request.py b/plaid/model/auth_get_request.py index 24a8d13a4..b795d6bf8 100644 --- a/plaid/model/auth_get_request.py +++ b/plaid/model/auth_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_get_request_options.py b/plaid/model/auth_get_request_options.py index 00eba6128..dd54b093a 100644 --- a/plaid/model/auth_get_request_options.py +++ b/plaid/model/auth_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_get_response.py b/plaid/model/auth_get_response.py index 443dc00e9..ccd121aeb 100644 --- a/plaid/model/auth_get_response.py +++ b/plaid/model/auth_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_metadata.py b/plaid/model/auth_metadata.py index 5a55cf300..c53260b2c 100644 --- a/plaid/model/auth_metadata.py +++ b/plaid/model/auth_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_supported_methods.py b/plaid/model/auth_supported_methods.py index 905fead8a..0b79b12b8 100644 --- a/plaid/model/auth_supported_methods.py +++ b/plaid/model/auth_supported_methods.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_update_types.py b/plaid/model/auth_update_types.py index a4098e25c..499b1e6f2 100644 --- a/plaid/model/auth_update_types.py +++ b/plaid/model/auth_update_types.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_verify_numbers_ach.py b/plaid/model/auth_verify_numbers_ach.py index 1cb900930..650e4f6e2 100644 --- a/plaid/model/auth_verify_numbers_ach.py +++ b/plaid/model/auth_verify_numbers_ach.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_verify_request.py b/plaid/model/auth_verify_request.py index 2521003db..4c684f715 100644 --- a/plaid/model/auth_verify_request.py +++ b/plaid/model/auth_verify_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_verify_request_numbers.py b/plaid/model/auth_verify_request_numbers.py index 3e6494ea5..c13a174bb 100644 --- a/plaid/model/auth_verify_request_numbers.py +++ b/plaid/model/auth_verify_request_numbers.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_verify_response.py b/plaid/model/auth_verify_response.py index 902b44ad6..2efdbd07d 100644 --- a/plaid/model/auth_verify_response.py +++ b/plaid/model/auth_verify_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/authorization_guarantee_details.py b/plaid/model/authorization_guarantee_details.py index be0f2493c..95e8489df 100644 --- a/plaid/model/authorization_guarantee_details.py +++ b/plaid/model/authorization_guarantee_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/authorization_guarantee_schedule_item.py b/plaid/model/authorization_guarantee_schedule_item.py index cafe61075..b50de7ae2 100644 --- a/plaid/model/authorization_guarantee_schedule_item.py +++ b/plaid/model/authorization_guarantee_schedule_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/automatically_verified_webhook.py b/plaid/model/automatically_verified_webhook.py index c4cb0214e..bc16c2c08 100644 --- a/plaid/model/automatically_verified_webhook.py +++ b/plaid/model/automatically_verified_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_income_complete_result.py b/plaid/model/bank_income_complete_result.py index 01c686c55..ddbcb5d6b 100644 --- a/plaid/model/bank_income_complete_result.py +++ b/plaid/model/bank_income_complete_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_income_complete_webhook.py b/plaid/model/bank_income_complete_webhook.py index 07141d4be..220a6702e 100644 --- a/plaid/model/bank_income_complete_webhook.py +++ b/plaid/model/bank_income_complete_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_income_refresh_complete_result.py b/plaid/model/bank_income_refresh_complete_result.py index 927376e2f..f5fb4e7b2 100644 --- a/plaid/model/bank_income_refresh_complete_result.py +++ b/plaid/model/bank_income_refresh_complete_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_income_refresh_complete_webhook.py b/plaid/model/bank_income_refresh_complete_webhook.py index 4fbf01dba..d3cb2b171 100644 --- a/plaid/model/bank_income_refresh_complete_webhook.py +++ b/plaid/model/bank_income_refresh_complete_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_income_refresh_update_webhook.py b/plaid/model/bank_income_refresh_update_webhook.py index 8c389a72c..a7ce5ece6 100644 --- a/plaid/model/bank_income_refresh_update_webhook.py +++ b/plaid/model/bank_income_refresh_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_initiated_return_risk.py b/plaid/model/bank_initiated_return_risk.py index 97ed110b8..19b767f39 100644 --- a/plaid/model/bank_initiated_return_risk.py +++ b/plaid/model/bank_initiated_return_risk.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_initiated_risk_tier.py b/plaid/model/bank_initiated_risk_tier.py index 7637999eb..f72a503e0 100644 --- a/plaid/model/bank_initiated_risk_tier.py +++ b/plaid/model/bank_initiated_risk_tier.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_penalties_indicators.py b/plaid/model/bank_penalties_indicators.py index dbdba775d..9cf2a6f66 100644 --- a/plaid/model/bank_penalties_indicators.py +++ b/plaid/model/bank_penalties_indicators.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer.py b/plaid/model/bank_transfer.py index 88df87324..b24cb0d60 100644 --- a/plaid/model/bank_transfer.py +++ b/plaid/model/bank_transfer.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_balance.py b/plaid/model/bank_transfer_balance.py index 24c7243c5..444d77487 100644 --- a/plaid/model/bank_transfer_balance.py +++ b/plaid/model/bank_transfer_balance.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_balance_get_request.py b/plaid/model/bank_transfer_balance_get_request.py index f9cbdad88..c299f03a2 100644 --- a/plaid/model/bank_transfer_balance_get_request.py +++ b/plaid/model/bank_transfer_balance_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_balance_get_response.py b/plaid/model/bank_transfer_balance_get_response.py index f6df035d9..b8afeeccc 100644 --- a/plaid/model/bank_transfer_balance_get_response.py +++ b/plaid/model/bank_transfer_balance_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_cancel_request.py b/plaid/model/bank_transfer_cancel_request.py index 70fbec4ce..01ee81ad9 100644 --- a/plaid/model/bank_transfer_cancel_request.py +++ b/plaid/model/bank_transfer_cancel_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_cancel_response.py b/plaid/model/bank_transfer_cancel_response.py index 3591d5920..9cc93b6e2 100644 --- a/plaid/model/bank_transfer_cancel_response.py +++ b/plaid/model/bank_transfer_cancel_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_create_request.py b/plaid/model/bank_transfer_create_request.py index 251d378f4..4e76508c7 100644 --- a/plaid/model/bank_transfer_create_request.py +++ b/plaid/model/bank_transfer_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_create_response.py b/plaid/model/bank_transfer_create_response.py index 0111a5955..904bb2736 100644 --- a/plaid/model/bank_transfer_create_response.py +++ b/plaid/model/bank_transfer_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_direction.py b/plaid/model/bank_transfer_direction.py index 8158529e6..a674f78d8 100644 --- a/plaid/model/bank_transfer_direction.py +++ b/plaid/model/bank_transfer_direction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_event.py b/plaid/model/bank_transfer_event.py index 0294b5c2a..629fdbd57 100644 --- a/plaid/model/bank_transfer_event.py +++ b/plaid/model/bank_transfer_event.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_event_list_bank_transfer_type.py b/plaid/model/bank_transfer_event_list_bank_transfer_type.py index e6767bbc7..3bdabb819 100644 --- a/plaid/model/bank_transfer_event_list_bank_transfer_type.py +++ b/plaid/model/bank_transfer_event_list_bank_transfer_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_event_list_direction.py b/plaid/model/bank_transfer_event_list_direction.py index 16f56f34c..d0efb9d67 100644 --- a/plaid/model/bank_transfer_event_list_direction.py +++ b/plaid/model/bank_transfer_event_list_direction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_event_list_request.py b/plaid/model/bank_transfer_event_list_request.py index 37791c9a7..c190a6d52 100644 --- a/plaid/model/bank_transfer_event_list_request.py +++ b/plaid/model/bank_transfer_event_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_event_list_response.py b/plaid/model/bank_transfer_event_list_response.py index 6ecf8b2bd..1ae6533bf 100644 --- a/plaid/model/bank_transfer_event_list_response.py +++ b/plaid/model/bank_transfer_event_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_event_sync_request.py b/plaid/model/bank_transfer_event_sync_request.py index fba3b9e98..25fc8953e 100644 --- a/plaid/model/bank_transfer_event_sync_request.py +++ b/plaid/model/bank_transfer_event_sync_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_event_sync_response.py b/plaid/model/bank_transfer_event_sync_response.py index dbfed8e06..b214a522b 100644 --- a/plaid/model/bank_transfer_event_sync_response.py +++ b/plaid/model/bank_transfer_event_sync_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_event_type.py b/plaid/model/bank_transfer_event_type.py index 191f1a0d6..af5a305f6 100644 --- a/plaid/model/bank_transfer_event_type.py +++ b/plaid/model/bank_transfer_event_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_failure.py b/plaid/model/bank_transfer_failure.py index 5098a608b..bab55fc1e 100644 --- a/plaid/model/bank_transfer_failure.py +++ b/plaid/model/bank_transfer_failure.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_get_request.py b/plaid/model/bank_transfer_get_request.py index 06e48f1eb..79631853d 100644 --- a/plaid/model/bank_transfer_get_request.py +++ b/plaid/model/bank_transfer_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_get_response.py b/plaid/model/bank_transfer_get_response.py index 5672d0bcd..8035c4a3b 100644 --- a/plaid/model/bank_transfer_get_response.py +++ b/plaid/model/bank_transfer_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_idempotency_key.py b/plaid/model/bank_transfer_idempotency_key.py index 538796abb..2913c8011 100644 --- a/plaid/model/bank_transfer_idempotency_key.py +++ b/plaid/model/bank_transfer_idempotency_key.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_list_request.py b/plaid/model/bank_transfer_list_request.py index 04631b18f..6e2b9fa54 100644 --- a/plaid/model/bank_transfer_list_request.py +++ b/plaid/model/bank_transfer_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_list_response.py b/plaid/model/bank_transfer_list_response.py index b3d298d16..467d7282d 100644 --- a/plaid/model/bank_transfer_list_response.py +++ b/plaid/model/bank_transfer_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_metadata.py b/plaid/model/bank_transfer_metadata.py index 5fed1268d..32ef8cf93 100644 --- a/plaid/model/bank_transfer_metadata.py +++ b/plaid/model/bank_transfer_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_migrate_account_request.py b/plaid/model/bank_transfer_migrate_account_request.py index 3853fd1bd..8a45f89a5 100644 --- a/plaid/model/bank_transfer_migrate_account_request.py +++ b/plaid/model/bank_transfer_migrate_account_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_migrate_account_response.py b/plaid/model/bank_transfer_migrate_account_response.py index 89c07d25d..05836fcc9 100644 --- a/plaid/model/bank_transfer_migrate_account_response.py +++ b/plaid/model/bank_transfer_migrate_account_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_network.py b/plaid/model/bank_transfer_network.py index 7aae17d74..a25666231 100644 --- a/plaid/model/bank_transfer_network.py +++ b/plaid/model/bank_transfer_network.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_status.py b/plaid/model/bank_transfer_status.py index 7128ed38e..91b149a4f 100644 --- a/plaid/model/bank_transfer_status.py +++ b/plaid/model/bank_transfer_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_sweep.py b/plaid/model/bank_transfer_sweep.py index 9b05415b0..fadf73926 100644 --- a/plaid/model/bank_transfer_sweep.py +++ b/plaid/model/bank_transfer_sweep.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_sweep_get_request.py b/plaid/model/bank_transfer_sweep_get_request.py index 4aa19abc1..18db7c353 100644 --- a/plaid/model/bank_transfer_sweep_get_request.py +++ b/plaid/model/bank_transfer_sweep_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_sweep_get_response.py b/plaid/model/bank_transfer_sweep_get_response.py index 5c5dc2c15..674f94fad 100644 --- a/plaid/model/bank_transfer_sweep_get_response.py +++ b/plaid/model/bank_transfer_sweep_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_sweep_list_request.py b/plaid/model/bank_transfer_sweep_list_request.py index 1bd371a0a..4343fddf1 100644 --- a/plaid/model/bank_transfer_sweep_list_request.py +++ b/plaid/model/bank_transfer_sweep_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_sweep_list_response.py b/plaid/model/bank_transfer_sweep_list_response.py index cfc3d7221..cc1ea872c 100644 --- a/plaid/model/bank_transfer_sweep_list_response.py +++ b/plaid/model/bank_transfer_sweep_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_type.py b/plaid/model/bank_transfer_type.py index 76c5adcda..fa4edbefe 100644 --- a/plaid/model/bank_transfer_type.py +++ b/plaid/model/bank_transfer_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_user.py b/plaid/model/bank_transfer_user.py index 757c7f450..1d5c665ec 100644 --- a/plaid/model/bank_transfer_user.py +++ b/plaid/model/bank_transfer_user.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfers_events_update_webhook.py b/plaid/model/bank_transfers_events_update_webhook.py index 5c36a51ce..13a5731df 100644 --- a/plaid/model/bank_transfers_events_update_webhook.py +++ b/plaid/model/bank_transfers_events_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfers_events_update_webhook_for_auth.py b/plaid/model/bank_transfers_events_update_webhook_for_auth.py index 25a20c9a1..3822628c3 100644 --- a/plaid/model/bank_transfers_events_update_webhook_for_auth.py +++ b/plaid/model/bank_transfers_events_update_webhook_for_auth.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report.py b/plaid/model/base_report.py index fb202d628..beebba40b 100644 --- a/plaid/model/base_report.py +++ b/plaid/model/base_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_account.py b/plaid/model/base_report_account.py index b323ecba4..f03068c8e 100644 --- a/plaid/model/base_report_account.py +++ b/plaid/model/base_report_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_account_balances.py b/plaid/model/base_report_account_balances.py index bac0c4c77..653c508c1 100644 --- a/plaid/model/base_report_account_balances.py +++ b/plaid/model/base_report_account_balances.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_account_insights.py b/plaid/model/base_report_account_insights.py index 2ee51e599..ffbd140d1 100644 --- a/plaid/model/base_report_account_insights.py +++ b/plaid/model/base_report_account_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_account_metadata.py b/plaid/model/base_report_account_metadata.py index 8ddf85abb..d196f8161 100644 --- a/plaid/model/base_report_account_metadata.py +++ b/plaid/model/base_report_account_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_attributes.py b/plaid/model/base_report_attributes.py index 8eeee2615..6190dd523 100644 --- a/plaid/model/base_report_attributes.py +++ b/plaid/model/base_report_attributes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_average_flow_insights.py b/plaid/model/base_report_average_flow_insights.py index 4f316fc84..b5c615af2 100644 --- a/plaid/model/base_report_average_flow_insights.py +++ b/plaid/model/base_report_average_flow_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_average_monthly_balances.py b/plaid/model/base_report_average_monthly_balances.py index df40cea12..fe515fe04 100644 --- a/plaid/model/base_report_average_monthly_balances.py +++ b/plaid/model/base_report_average_monthly_balances.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_historical_balance.py b/plaid/model/base_report_historical_balance.py index f81276124..972c76e8d 100644 --- a/plaid/model/base_report_historical_balance.py +++ b/plaid/model/base_report_historical_balance.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_investment_holding.py b/plaid/model/base_report_investment_holding.py index 3c0994762..48ba282ac 100644 --- a/plaid/model/base_report_investment_holding.py +++ b/plaid/model/base_report_investment_holding.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_investment_security.py b/plaid/model/base_report_investment_security.py index d09c903db..bac1ee2c4 100644 --- a/plaid/model/base_report_investment_security.py +++ b/plaid/model/base_report_investment_security.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_investment_transaction.py b/plaid/model/base_report_investment_transaction.py index 697823a62..e925de428 100644 --- a/plaid/model/base_report_investment_transaction.py +++ b/plaid/model/base_report_investment_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_investments.py b/plaid/model/base_report_investments.py index dd6052654..5a8a6a55d 100644 --- a/plaid/model/base_report_investments.py +++ b/plaid/model/base_report_investments.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_item.py b/plaid/model/base_report_item.py index 4dab0e975..efa3c4399 100644 --- a/plaid/model/base_report_item.py +++ b/plaid/model/base_report_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_longest_gap_insights.py b/plaid/model/base_report_longest_gap_insights.py index d0304a711..4f418a4c7 100644 --- a/plaid/model/base_report_longest_gap_insights.py +++ b/plaid/model/base_report_longest_gap_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_number_flow_insights.py b/plaid/model/base_report_number_flow_insights.py index e0f764653..3ee1e374c 100644 --- a/plaid/model/base_report_number_flow_insights.py +++ b/plaid/model/base_report_number_flow_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_transaction.py b/plaid/model/base_report_transaction.py index 76f6f1d00..fef91bb6f 100644 --- a/plaid/model/base_report_transaction.py +++ b/plaid/model/base_report_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_transaction_personal_finance_category.py b/plaid/model/base_report_transaction_personal_finance_category.py index 920fbaf36..6e972e379 100644 --- a/plaid/model/base_report_transaction_personal_finance_category.py +++ b/plaid/model/base_report_transaction_personal_finance_category.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_transaction_type.py b/plaid/model/base_report_transaction_type.py index f730a515f..ff2c2de9d 100644 --- a/plaid/model/base_report_transaction_type.py +++ b/plaid/model/base_report_transaction_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_user_attributes.py b/plaid/model/base_report_user_attributes.py index 23d15488a..d67f5b6ed 100644 --- a/plaid/model/base_report_user_attributes.py +++ b/plaid/model/base_report_user_attributes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_warning.py b/plaid/model/base_report_warning.py index 8c51c0aa7..f89311b39 100644 --- a/plaid/model/base_report_warning.py +++ b/plaid/model/base_report_warning.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_warning_code.py b/plaid/model/base_report_warning_code.py index 4e52d5103..4c52da6cf 100644 --- a/plaid/model/base_report_warning_code.py +++ b/plaid/model/base_report_warning_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_reports_error_webhook.py b/plaid/model/base_reports_error_webhook.py index 5419cce80..4cd5f8620 100644 --- a/plaid/model/base_reports_error_webhook.py +++ b/plaid/model/base_reports_error_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_account_risk_attributes.py b/plaid/model/beacon_account_risk_attributes.py index 57ca394a4..17bbf0db7 100644 --- a/plaid/model/beacon_account_risk_attributes.py +++ b/plaid/model/beacon_account_risk_attributes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_account_risk_evaluate_account.py b/plaid/model/beacon_account_risk_evaluate_account.py index cf7a956a7..307058f62 100644 --- a/plaid/model/beacon_account_risk_evaluate_account.py +++ b/plaid/model/beacon_account_risk_evaluate_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_account_risk_evaluate_account_attributes.py b/plaid/model/beacon_account_risk_evaluate_account_attributes.py index 48f2c7091..ea1e0cc82 100644 --- a/plaid/model/beacon_account_risk_evaluate_account_attributes.py +++ b/plaid/model/beacon_account_risk_evaluate_account_attributes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_account_risk_evaluate_evaluation_reason.py b/plaid/model/beacon_account_risk_evaluate_evaluation_reason.py index 2d11bc557..12c2f65a6 100644 --- a/plaid/model/beacon_account_risk_evaluate_evaluation_reason.py +++ b/plaid/model/beacon_account_risk_evaluate_evaluation_reason.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_account_risk_evaluate_request.py b/plaid/model/beacon_account_risk_evaluate_request.py index a343b7032..41cf4a10e 100644 --- a/plaid/model/beacon_account_risk_evaluate_request.py +++ b/plaid/model/beacon_account_risk_evaluate_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_account_risk_evaluate_request_options.py b/plaid/model/beacon_account_risk_evaluate_request_options.py index fb37f7e53..9d61acbb7 100644 --- a/plaid/model/beacon_account_risk_evaluate_request_options.py +++ b/plaid/model/beacon_account_risk_evaluate_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_account_risk_evaluate_response.py b/plaid/model/beacon_account_risk_evaluate_response.py index 1ed96d74f..f6f71660f 100644 --- a/plaid/model/beacon_account_risk_evaluate_response.py +++ b/plaid/model/beacon_account_risk_evaluate_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_audit_trail.py b/plaid/model/beacon_audit_trail.py index 7e4059389..6d3b3106a 100644 --- a/plaid/model/beacon_audit_trail.py +++ b/plaid/model/beacon_audit_trail.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_audit_trail_source.py b/plaid/model/beacon_audit_trail_source.py index 52d37674a..292e4cd3c 100644 --- a/plaid/model/beacon_audit_trail_source.py +++ b/plaid/model/beacon_audit_trail_source.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_bank_account_insights.py b/plaid/model/beacon_bank_account_insights.py index 6b7955051..5fe079e83 100644 --- a/plaid/model/beacon_bank_account_insights.py +++ b/plaid/model/beacon_bank_account_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_bank_accounts.py b/plaid/model/beacon_bank_accounts.py index d28405ea3..e8b7de1a2 100644 --- a/plaid/model/beacon_bank_accounts.py +++ b/plaid/model/beacon_bank_accounts.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_duplicate_detected_webhook.py b/plaid/model/beacon_duplicate_detected_webhook.py index d1b36055d..4c0f205b9 100644 --- a/plaid/model/beacon_duplicate_detected_webhook.py +++ b/plaid/model/beacon_duplicate_detected_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_duplicate_get_request.py b/plaid/model/beacon_duplicate_get_request.py index 66dbb6b40..3e673400e 100644 --- a/plaid/model/beacon_duplicate_get_request.py +++ b/plaid/model/beacon_duplicate_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_duplicate_get_response.py b/plaid/model/beacon_duplicate_get_response.py index 60376b4ba..38c825e85 100644 --- a/plaid/model/beacon_duplicate_get_response.py +++ b/plaid/model/beacon_duplicate_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_match_summary_analysis.py b/plaid/model/beacon_match_summary_analysis.py index 379a0d083..a892ceea8 100644 --- a/plaid/model/beacon_match_summary_analysis.py +++ b/plaid/model/beacon_match_summary_analysis.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_match_summary_code.py b/plaid/model/beacon_match_summary_code.py index 758ac694d..931226d04 100644 --- a/plaid/model/beacon_match_summary_code.py +++ b/plaid/model/beacon_match_summary_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report.py b/plaid/model/beacon_report.py index 3f7621e61..80618d9a2 100644 --- a/plaid/model/beacon_report.py +++ b/plaid/model/beacon_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_create_request.py b/plaid/model/beacon_report_create_request.py index 275c0a34d..580903042 100644 --- a/plaid/model/beacon_report_create_request.py +++ b/plaid/model/beacon_report_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_create_response.py b/plaid/model/beacon_report_create_response.py index aff481b27..a15445f59 100644 --- a/plaid/model/beacon_report_create_response.py +++ b/plaid/model/beacon_report_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_create_type.py b/plaid/model/beacon_report_create_type.py index 88b88b91c..8f6d7185c 100644 --- a/plaid/model/beacon_report_create_type.py +++ b/plaid/model/beacon_report_create_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_created_webhook.py b/plaid/model/beacon_report_created_webhook.py index 645645238..48389fd73 100644 --- a/plaid/model/beacon_report_created_webhook.py +++ b/plaid/model/beacon_report_created_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_get_request.py b/plaid/model/beacon_report_get_request.py index 144bcc2cf..46a987140 100644 --- a/plaid/model/beacon_report_get_request.py +++ b/plaid/model/beacon_report_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_get_response.py b/plaid/model/beacon_report_get_response.py index 22afa9037..5e4a9b843 100644 --- a/plaid/model/beacon_report_get_response.py +++ b/plaid/model/beacon_report_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_list_request.py b/plaid/model/beacon_report_list_request.py index 715cbac49..b6b82fe4b 100644 --- a/plaid/model/beacon_report_list_request.py +++ b/plaid/model/beacon_report_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_list_response.py b/plaid/model/beacon_report_list_response.py index c724b0315..65d264ffa 100644 --- a/plaid/model/beacon_report_list_response.py +++ b/plaid/model/beacon_report_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_syndication.py b/plaid/model/beacon_report_syndication.py index e095a0b45..63e2dd541 100644 --- a/plaid/model/beacon_report_syndication.py +++ b/plaid/model/beacon_report_syndication.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_syndication_analysis.py b/plaid/model/beacon_report_syndication_analysis.py index 424e26d8e..59c795fc2 100644 --- a/plaid/model/beacon_report_syndication_analysis.py +++ b/plaid/model/beacon_report_syndication_analysis.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_syndication_created_webhook.py b/plaid/model/beacon_report_syndication_created_webhook.py index 5b2cfa089..00b72e06d 100644 --- a/plaid/model/beacon_report_syndication_created_webhook.py +++ b/plaid/model/beacon_report_syndication_created_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_syndication_get_request.py b/plaid/model/beacon_report_syndication_get_request.py index d1e7be34b..9f9543756 100644 --- a/plaid/model/beacon_report_syndication_get_request.py +++ b/plaid/model/beacon_report_syndication_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_syndication_get_response.py b/plaid/model/beacon_report_syndication_get_response.py index e267b5095..a898f6d00 100644 --- a/plaid/model/beacon_report_syndication_get_response.py +++ b/plaid/model/beacon_report_syndication_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_syndication_list_request.py b/plaid/model/beacon_report_syndication_list_request.py index 4cbafff95..3710ed8c4 100644 --- a/plaid/model/beacon_report_syndication_list_request.py +++ b/plaid/model/beacon_report_syndication_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_syndication_list_response.py b/plaid/model/beacon_report_syndication_list_response.py index d8c6e8d41..7501fd2bb 100644 --- a/plaid/model/beacon_report_syndication_list_response.py +++ b/plaid/model/beacon_report_syndication_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_syndication_original_report.py b/plaid/model/beacon_report_syndication_original_report.py index 555d6b394..c25193630 100644 --- a/plaid/model/beacon_report_syndication_original_report.py +++ b/plaid/model/beacon_report_syndication_original_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_type.py b/plaid/model/beacon_report_type.py index 3ba568220..7e9af1657 100644 --- a/plaid/model/beacon_report_type.py +++ b/plaid/model/beacon_report_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_updated_webhook.py b/plaid/model/beacon_report_updated_webhook.py index d24327559..596c179f7 100644 --- a/plaid/model/beacon_report_updated_webhook.py +++ b/plaid/model/beacon_report_updated_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_syndicated_report_depository_account_match_analysis.py b/plaid/model/beacon_syndicated_report_depository_account_match_analysis.py index 288ac8ee2..3e036b4e6 100644 --- a/plaid/model/beacon_syndicated_report_depository_account_match_analysis.py +++ b/plaid/model/beacon_syndicated_report_depository_account_match_analysis.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user.py b/plaid/model/beacon_user.py index 33ab1b9e8..247c26274 100644 --- a/plaid/model/beacon_user.py +++ b/plaid/model/beacon_user.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_account_insights_get_request.py b/plaid/model/beacon_user_account_insights_get_request.py index 7bf98b042..efb61e5f5 100644 --- a/plaid/model/beacon_user_account_insights_get_request.py +++ b/plaid/model/beacon_user_account_insights_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_account_insights_get_response.py b/plaid/model/beacon_user_account_insights_get_response.py index cf2426da9..892ff85e9 100644 --- a/plaid/model/beacon_user_account_insights_get_response.py +++ b/plaid/model/beacon_user_account_insights_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_address.py b/plaid/model/beacon_user_address.py index 4909c533f..4414c666e 100644 --- a/plaid/model/beacon_user_address.py +++ b/plaid/model/beacon_user_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_create_request.py b/plaid/model/beacon_user_create_request.py index e8cabddb0..077b59ad1 100644 --- a/plaid/model/beacon_user_create_request.py +++ b/plaid/model/beacon_user_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_create_response.py b/plaid/model/beacon_user_create_response.py index 3b461c954..b4585173e 100644 --- a/plaid/model/beacon_user_create_response.py +++ b/plaid/model/beacon_user_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_data.py b/plaid/model/beacon_user_data.py index c9e9308ce..5fa2da286 100644 --- a/plaid/model/beacon_user_data.py +++ b/plaid/model/beacon_user_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_depository_account.py b/plaid/model/beacon_user_depository_account.py index 66e56ea0c..be6e17fb9 100644 --- a/plaid/model/beacon_user_depository_account.py +++ b/plaid/model/beacon_user_depository_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_get_request.py b/plaid/model/beacon_user_get_request.py index 18f709b32..5c0b38922 100644 --- a/plaid/model/beacon_user_get_request.py +++ b/plaid/model/beacon_user_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_get_response.py b/plaid/model/beacon_user_get_response.py index bce109c4a..6d74774b3 100644 --- a/plaid/model/beacon_user_get_response.py +++ b/plaid/model/beacon_user_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_history_list_request.py b/plaid/model/beacon_user_history_list_request.py index 938e18fc8..e4fa16023 100644 --- a/plaid/model/beacon_user_history_list_request.py +++ b/plaid/model/beacon_user_history_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_history_list_response.py b/plaid/model/beacon_user_history_list_response.py index 3bfcab43b..652527faf 100644 --- a/plaid/model/beacon_user_history_list_response.py +++ b/plaid/model/beacon_user_history_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_id_number.py b/plaid/model/beacon_user_id_number.py index affd27e3f..2e72ed948 100644 --- a/plaid/model/beacon_user_id_number.py +++ b/plaid/model/beacon_user_id_number.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_name.py b/plaid/model/beacon_user_name.py index 793c69886..4fc900a7e 100644 --- a/plaid/model/beacon_user_name.py +++ b/plaid/model/beacon_user_name.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_name_nullable.py b/plaid/model/beacon_user_name_nullable.py index 66f689cb5..a5444123c 100644 --- a/plaid/model/beacon_user_name_nullable.py +++ b/plaid/model/beacon_user_name_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_request_address.py b/plaid/model/beacon_user_request_address.py index 83532f70d..6c5838457 100644 --- a/plaid/model/beacon_user_request_address.py +++ b/plaid/model/beacon_user_request_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_request_address_nullable.py b/plaid/model/beacon_user_request_address_nullable.py index fea27179b..e6f71ef96 100644 --- a/plaid/model/beacon_user_request_address_nullable.py +++ b/plaid/model/beacon_user_request_address_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_request_data.py b/plaid/model/beacon_user_request_data.py index af5d5e8c0..14aef6dcc 100644 --- a/plaid/model/beacon_user_request_data.py +++ b/plaid/model/beacon_user_request_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_request_depository_account.py b/plaid/model/beacon_user_request_depository_account.py index 7815b0f04..d86d92720 100644 --- a/plaid/model/beacon_user_request_depository_account.py +++ b/plaid/model/beacon_user_request_depository_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_review_request.py b/plaid/model/beacon_user_review_request.py index 3aca65b05..c27d30b9c 100644 --- a/plaid/model/beacon_user_review_request.py +++ b/plaid/model/beacon_user_review_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_revision.py b/plaid/model/beacon_user_revision.py index f74512585..0d0c73f9c 100644 --- a/plaid/model/beacon_user_revision.py +++ b/plaid/model/beacon_user_revision.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_status.py b/plaid/model/beacon_user_status.py index c9a2df7bb..1b9f3dde7 100644 --- a/plaid/model/beacon_user_status.py +++ b/plaid/model/beacon_user_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_status_updated_webhook.py b/plaid/model/beacon_user_status_updated_webhook.py index 859cea5d0..48bce2297 100644 --- a/plaid/model/beacon_user_status_updated_webhook.py +++ b/plaid/model/beacon_user_status_updated_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_update_request.py b/plaid/model/beacon_user_update_request.py index aae160cf3..a6b5ebfbf 100644 --- a/plaid/model/beacon_user_update_request.py +++ b/plaid/model/beacon_user_update_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_update_request_data.py b/plaid/model/beacon_user_update_request_data.py index 5ff2eaddb..dd819f9f7 100644 --- a/plaid/model/beacon_user_update_request_data.py +++ b/plaid/model/beacon_user_update_request_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_update_response.py b/plaid/model/beacon_user_update_response.py index 3c5df1e0b..3195ccd56 100644 --- a/plaid/model/beacon_user_update_response.py +++ b/plaid/model/beacon_user_update_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beta_ewa_report_v1_get_request.py b/plaid/model/beta_ewa_report_v1_get_request.py index f9ef740c4..e57cb1b4a 100644 --- a/plaid/model/beta_ewa_report_v1_get_request.py +++ b/plaid/model/beta_ewa_report_v1_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beta_ewa_report_v1_get_response.py b/plaid/model/beta_ewa_report_v1_get_response.py index 405986861..703243dfb 100644 --- a/plaid/model/beta_ewa_report_v1_get_response.py +++ b/plaid/model/beta_ewa_report_v1_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beta_partner_customer_v1_create_request.py b/plaid/model/beta_partner_customer_v1_create_request.py index 041a7319b..bd457e9ee 100644 --- a/plaid/model/beta_partner_customer_v1_create_request.py +++ b/plaid/model/beta_partner_customer_v1_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beta_partner_customer_v1_create_response.py b/plaid/model/beta_partner_customer_v1_create_response.py index d23de02c3..ef380fedb 100644 --- a/plaid/model/beta_partner_customer_v1_create_response.py +++ b/plaid/model/beta_partner_customer_v1_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beta_partner_customer_v1_enable_request.py b/plaid/model/beta_partner_customer_v1_enable_request.py index d8ce6c65b..36a0b9383 100644 --- a/plaid/model/beta_partner_customer_v1_enable_request.py +++ b/plaid/model/beta_partner_customer_v1_enable_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beta_partner_customer_v1_enable_response.py b/plaid/model/beta_partner_customer_v1_enable_response.py index 89b98c117..c1f7f441f 100644 --- a/plaid/model/beta_partner_customer_v1_enable_response.py +++ b/plaid/model/beta_partner_customer_v1_enable_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beta_partner_customer_v1_get_request.py b/plaid/model/beta_partner_customer_v1_get_request.py index 9fd5725ba..35d4f059e 100644 --- a/plaid/model/beta_partner_customer_v1_get_request.py +++ b/plaid/model/beta_partner_customer_v1_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beta_partner_customer_v1_get_response.py b/plaid/model/beta_partner_customer_v1_get_response.py index 656e56403..fd8d245c4 100644 --- a/plaid/model/beta_partner_customer_v1_get_response.py +++ b/plaid/model/beta_partner_customer_v1_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beta_partner_customer_v1_update_request.py b/plaid/model/beta_partner_customer_v1_update_request.py index 4ab71970c..d3828aa93 100644 --- a/plaid/model/beta_partner_customer_v1_update_request.py +++ b/plaid/model/beta_partner_customer_v1_update_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beta_partner_customer_v1_update_response.py b/plaid/model/beta_partner_customer_v1_update_response.py index 50c5da9a6..d7c038f46 100644 --- a/plaid/model/beta_partner_customer_v1_update_response.py +++ b/plaid/model/beta_partner_customer_v1_update_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beta_partner_end_customer.py b/plaid/model/beta_partner_end_customer.py index 306dde075..d450583cc 100644 --- a/plaid/model/beta_partner_end_customer.py +++ b/plaid/model/beta_partner_end_customer.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beta_partner_end_customer_with_secrets.py b/plaid/model/beta_partner_end_customer_with_secrets.py index 71398d19d..f7d19ebb3 100644 --- a/plaid/model/beta_partner_end_customer_with_secrets.py +++ b/plaid/model/beta_partner_end_customer_with_secrets.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_account.py b/plaid/model/business_account.py index 53aa9e712..194a23c20 100644 --- a/plaid/model/business_account.py +++ b/plaid/model/business_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_account_all_of.py b/plaid/model/business_account_all_of.py index 79d5f5c6b..0d57b5b64 100644 --- a/plaid/model/business_account_all_of.py +++ b/plaid/model/business_account_all_of.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_check_boolean_status.py b/plaid/model/business_check_boolean_status.py index 74a53cc78..5f319d830 100644 --- a/plaid/model/business_check_boolean_status.py +++ b/plaid/model/business_check_boolean_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_digital_presence_check.py b/plaid/model/business_digital_presence_check.py index 15120a066..9b918350a 100644 --- a/plaid/model/business_digital_presence_check.py +++ b/plaid/model/business_digital_presence_check.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_email_address.py b/plaid/model/business_email_address.py index 4e5ebe957..05d1297d1 100644 --- a/plaid/model/business_email_address.py +++ b/plaid/model/business_email_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_entity_type.py b/plaid/model/business_entity_type.py index afe57587e..1ff6789df 100644 --- a/plaid/model/business_entity_type.py +++ b/plaid/model/business_entity_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_field_match_summary.py b/plaid/model/business_field_match_summary.py index e07171c82..0b2d21302 100644 --- a/plaid/model/business_field_match_summary.py +++ b/plaid/model/business_field_match_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_finance_category.py b/plaid/model/business_finance_category.py index dca611213..5a1f3ccd0 100644 --- a/plaid/model/business_finance_category.py +++ b/plaid/model/business_finance_category.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_industry_prediction.py b/plaid/model/business_industry_prediction.py index 5d4b9d405..4dceaff3f 100644 --- a/plaid/model/business_industry_prediction.py +++ b/plaid/model/business_industry_prediction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_industry_prediction_nullable.py b/plaid/model/business_industry_prediction_nullable.py index afa791205..f2b976dfe 100644 --- a/plaid/model/business_industry_prediction_nullable.py +++ b/plaid/model/business_industry_prediction_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_kyb_check.py b/plaid/model/business_kyb_check.py index a037f3b43..0abb31967 100644 --- a/plaid/model/business_kyb_check.py +++ b/plaid/model/business_kyb_check.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_kyb_match_details.py b/plaid/model/business_kyb_match_details.py index 89c7123fa..46e31c6b9 100644 --- a/plaid/model/business_kyb_match_details.py +++ b/plaid/model/business_kyb_match_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_phone_number.py b/plaid/model/business_phone_number.py index 5339703a8..78ac04e30 100644 --- a/plaid/model/business_phone_number.py +++ b/plaid/model/business_phone_number.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_risk_check.py b/plaid/model/business_risk_check.py index 58198e112..712f45dfb 100644 --- a/plaid/model/business_risk_check.py +++ b/plaid/model/business_risk_check.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_search_terms.py b/plaid/model/business_search_terms.py index e715ee2a3..fb15951eb 100644 --- a/plaid/model/business_search_terms.py +++ b/plaid/model/business_search_terms.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_verification_create_request.py b/plaid/model/business_verification_create_request.py index 16e5285e0..d6e8f8aa9 100644 --- a/plaid/model/business_verification_create_request.py +++ b/plaid/model/business_verification_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_verification_create_request_business.py b/plaid/model/business_verification_create_request_business.py index cbc12eb4a..9c1170c85 100644 --- a/plaid/model/business_verification_create_request_business.py +++ b/plaid/model/business_verification_create_request_business.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_verification_create_response.py b/plaid/model/business_verification_create_response.py index 8fe30d27b..a133ef002 100644 --- a/plaid/model/business_verification_create_response.py +++ b/plaid/model/business_verification_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_verification_get_request.py b/plaid/model/business_verification_get_request.py index b397df549..68368d6a1 100644 --- a/plaid/model/business_verification_get_request.py +++ b/plaid/model/business_verification_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_verification_get_response.py b/plaid/model/business_verification_get_response.py index fa87548cf..b093b6837 100644 --- a/plaid/model/business_verification_get_response.py +++ b/plaid/model/business_verification_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_verification_status_kyb_check.py b/plaid/model/business_verification_status_kyb_check.py index 916d9ca7b..77310eac0 100644 --- a/plaid/model/business_verification_status_kyb_check.py +++ b/plaid/model/business_verification_status_kyb_check.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_verification_status_overall.py b/plaid/model/business_verification_status_overall.py index 15735c17f..71ad48c95 100644 --- a/plaid/model/business_verification_status_overall.py +++ b/plaid/model/business_verification_status_overall.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_verification_status_risk_check.py b/plaid/model/business_verification_status_risk_check.py index c77bb425b..ccf6c25c2 100644 --- a/plaid/model/business_verification_status_risk_check.py +++ b/plaid/model/business_verification_status_risk_check.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_verification_status_web_presence_check.py b/plaid/model/business_verification_status_web_presence_check.py index d16814191..1f8edffd7 100644 --- a/plaid/model/business_verification_status_web_presence_check.py +++ b/plaid/model/business_verification_status_web_presence_check.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_website.py b/plaid/model/business_website.py index d1e1f47ce..58c801df0 100644 --- a/plaid/model/business_website.py +++ b/plaid/model/business_website.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_website_analysis.py b/plaid/model/business_website_analysis.py index 72a9a5c3d..c7dda3733 100644 --- a/plaid/model/business_website_analysis.py +++ b/plaid/model/business_website_analysis.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_website_build_status.py b/plaid/model/business_website_build_status.py index 45daf1f17..752b72a1a 100644 --- a/plaid/model/business_website_build_status.py +++ b/plaid/model/business_website_build_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_website_ssl.py b/plaid/model/business_website_ssl.py index 437b097fb..bf18c18a2 100644 --- a/plaid/model/business_website_ssl.py +++ b/plaid/model/business_website_ssl.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/business_whois_record.py b/plaid/model/business_whois_record.py index 0ed54be88..bf4ca450a 100644 --- a/plaid/model/business_whois_record.py +++ b/plaid/model/business_whois_record.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cash_flow_insight.py b/plaid/model/cash_flow_insight.py index 8288d19f8..2b0231a55 100644 --- a/plaid/model/cash_flow_insight.py +++ b/plaid/model/cash_flow_insight.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cash_flow_updates_event_webhook_codes.py b/plaid/model/cash_flow_updates_event_webhook_codes.py index 15b8f269a..fa721f8e7 100644 --- a/plaid/model/cash_flow_updates_event_webhook_codes.py +++ b/plaid/model/cash_flow_updates_event_webhook_codes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cash_flow_updates_expected_deposit_missed_webhook.py b/plaid/model/cash_flow_updates_expected_deposit_missed_webhook.py index 2e0cbaf50..886bd1c87 100644 --- a/plaid/model/cash_flow_updates_expected_deposit_missed_webhook.py +++ b/plaid/model/cash_flow_updates_expected_deposit_missed_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cash_flow_updates_insights_v2_webhook.py b/plaid/model/cash_flow_updates_insights_v2_webhook.py index e6d3db6dd..03d9a2901 100644 --- a/plaid/model/cash_flow_updates_insights_v2_webhook.py +++ b/plaid/model/cash_flow_updates_insights_v2_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cash_flow_updates_insights_webhook.py b/plaid/model/cash_flow_updates_insights_webhook.py index d8f9c5510..aea760520 100644 --- a/plaid/model/cash_flow_updates_insights_webhook.py +++ b/plaid/model/cash_flow_updates_insights_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cash_flow_updates_large_deposit_webhook.py b/plaid/model/cash_flow_updates_large_deposit_webhook.py index 3e39ce6a2..1d1c85133 100644 --- a/plaid/model/cash_flow_updates_large_deposit_webhook.py +++ b/plaid/model/cash_flow_updates_large_deposit_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cash_flow_updates_low_balance_webhook.py b/plaid/model/cash_flow_updates_low_balance_webhook.py index cb198b7ae..b63b891f2 100644 --- a/plaid/model/cash_flow_updates_low_balance_webhook.py +++ b/plaid/model/cash_flow_updates_low_balance_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cash_flow_updates_new_income_stream_webhook.py b/plaid/model/cash_flow_updates_new_income_stream_webhook.py index 432196930..d3cd14ee1 100644 --- a/plaid/model/cash_flow_updates_new_income_stream_webhook.py +++ b/plaid/model/cash_flow_updates_new_income_stream_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cash_flow_updates_new_loan_payment_webhook.py b/plaid/model/cash_flow_updates_new_loan_payment_webhook.py index ce1fe30c5..87f2a9b0a 100644 --- a/plaid/model/cash_flow_updates_new_loan_payment_webhook.py +++ b/plaid/model/cash_flow_updates_new_loan_payment_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cash_flow_updates_nsf_webhook.py b/plaid/model/cash_flow_updates_nsf_webhook.py index 2ec721316..8794e60d4 100644 --- a/plaid/model/cash_flow_updates_nsf_webhook.py +++ b/plaid/model/cash_flow_updates_nsf_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_attributes_version.py b/plaid/model/cashflow_attributes_version.py index 35966f24b..6dea0aefe 100644 --- a/plaid/model/cashflow_attributes_version.py +++ b/plaid/model/cashflow_attributes_version.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_account_insights.py b/plaid/model/cashflow_report_account_insights.py index f56e08e23..e5ffda42e 100644 --- a/plaid/model/cashflow_report_account_insights.py +++ b/plaid/model/cashflow_report_account_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_get_request.py b/plaid/model/cashflow_report_get_request.py index aa552a61c..4beeed1d5 100644 --- a/plaid/model/cashflow_report_get_request.py +++ b/plaid/model/cashflow_report_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_get_request_options.py b/plaid/model/cashflow_report_get_request_options.py index 7e8fa6c36..7d53eacb8 100644 --- a/plaid/model/cashflow_report_get_request_options.py +++ b/plaid/model/cashflow_report_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_get_response.py b/plaid/model/cashflow_report_get_response.py index f42209e26..5d91a041b 100644 --- a/plaid/model/cashflow_report_get_response.py +++ b/plaid/model/cashflow_report_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_historical_balance.py b/plaid/model/cashflow_report_historical_balance.py index b6b919e05..4263e3874 100644 --- a/plaid/model/cashflow_report_historical_balance.py +++ b/plaid/model/cashflow_report_historical_balance.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_insights_get_request.py b/plaid/model/cashflow_report_insights_get_request.py index 6c9043d2b..85b94e85a 100644 --- a/plaid/model/cashflow_report_insights_get_request.py +++ b/plaid/model/cashflow_report_insights_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_insights_get_response.py b/plaid/model/cashflow_report_insights_get_response.py index 2a5d2d2a0..24ffb47bb 100644 --- a/plaid/model/cashflow_report_insights_get_response.py +++ b/plaid/model/cashflow_report_insights_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_monthly_summary.py b/plaid/model/cashflow_report_monthly_summary.py index 400e06a6b..15b1d75f3 100644 --- a/plaid/model/cashflow_report_monthly_summary.py +++ b/plaid/model/cashflow_report_monthly_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_monthly_summary_average_daily_ending_balance.py b/plaid/model/cashflow_report_monthly_summary_average_daily_ending_balance.py index 5ea37b734..f48159a3e 100644 --- a/plaid/model/cashflow_report_monthly_summary_average_daily_ending_balance.py +++ b/plaid/model/cashflow_report_monthly_summary_average_daily_ending_balance.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_monthly_summary_average_daily_inflow_amount.py b/plaid/model/cashflow_report_monthly_summary_average_daily_inflow_amount.py index ee9f1fb1c..be48279ec 100644 --- a/plaid/model/cashflow_report_monthly_summary_average_daily_inflow_amount.py +++ b/plaid/model/cashflow_report_monthly_summary_average_daily_inflow_amount.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_monthly_summary_average_daily_net_cashflow_amount.py b/plaid/model/cashflow_report_monthly_summary_average_daily_net_cashflow_amount.py index d43a61b36..28726162f 100644 --- a/plaid/model/cashflow_report_monthly_summary_average_daily_net_cashflow_amount.py +++ b/plaid/model/cashflow_report_monthly_summary_average_daily_net_cashflow_amount.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_monthly_summary_average_daily_outflow_amount.py b/plaid/model/cashflow_report_monthly_summary_average_daily_outflow_amount.py index 85aca48d0..0c914c67f 100644 --- a/plaid/model/cashflow_report_monthly_summary_average_daily_outflow_amount.py +++ b/plaid/model/cashflow_report_monthly_summary_average_daily_outflow_amount.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_monthly_summary_ending_balance.py b/plaid/model/cashflow_report_monthly_summary_ending_balance.py index 835295de1..eed849be3 100644 --- a/plaid/model/cashflow_report_monthly_summary_ending_balance.py +++ b/plaid/model/cashflow_report_monthly_summary_ending_balance.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_monthly_summary_starting_balance.py b/plaid/model/cashflow_report_monthly_summary_starting_balance.py index 50bb18017..4b54875b0 100644 --- a/plaid/model/cashflow_report_monthly_summary_starting_balance.py +++ b/plaid/model/cashflow_report_monthly_summary_starting_balance.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_monthly_summary_total_loan_payment.py b/plaid/model/cashflow_report_monthly_summary_total_loan_payment.py index 22a8aba0c..798ce1ae8 100644 --- a/plaid/model/cashflow_report_monthly_summary_total_loan_payment.py +++ b/plaid/model/cashflow_report_monthly_summary_total_loan_payment.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_monthly_summary_total_payroll.py b/plaid/model/cashflow_report_monthly_summary_total_payroll.py index 85c2460c3..61f25f494 100644 --- a/plaid/model/cashflow_report_monthly_summary_total_payroll.py +++ b/plaid/model/cashflow_report_monthly_summary_total_payroll.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_monthly_summary_total_revenue.py b/plaid/model/cashflow_report_monthly_summary_total_revenue.py index 406866a95..c613b917a 100644 --- a/plaid/model/cashflow_report_monthly_summary_total_revenue.py +++ b/plaid/model/cashflow_report_monthly_summary_total_revenue.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_monthly_summary_total_variable_expense.py b/plaid/model/cashflow_report_monthly_summary_total_variable_expense.py index f92731a1b..efdfd74ab 100644 --- a/plaid/model/cashflow_report_monthly_summary_total_variable_expense.py +++ b/plaid/model/cashflow_report_monthly_summary_total_variable_expense.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_payment_meta.py b/plaid/model/cashflow_report_payment_meta.py index d7f0c233e..f33b622d7 100644 --- a/plaid/model/cashflow_report_payment_meta.py +++ b/plaid/model/cashflow_report_payment_meta.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_refresh_request.py b/plaid/model/cashflow_report_refresh_request.py index ab9629003..252c61cb6 100644 --- a/plaid/model/cashflow_report_refresh_request.py +++ b/plaid/model/cashflow_report_refresh_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_refresh_response.py b/plaid/model/cashflow_report_refresh_response.py index 7c9d17b8c..f92e858fa 100644 --- a/plaid/model/cashflow_report_refresh_response.py +++ b/plaid/model/cashflow_report_refresh_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_transaction.py b/plaid/model/cashflow_report_transaction.py index d860b72a1..84a8eec94 100644 --- a/plaid/model/cashflow_report_transaction.py +++ b/plaid/model/cashflow_report_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_transactions_get_request.py b/plaid/model/cashflow_report_transactions_get_request.py index 669724c6c..bf9909c38 100644 --- a/plaid/model/cashflow_report_transactions_get_request.py +++ b/plaid/model/cashflow_report_transactions_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_transactions_get_request_options.py b/plaid/model/cashflow_report_transactions_get_request_options.py index 017cda20c..1dad57f31 100644 --- a/plaid/model/cashflow_report_transactions_get_request_options.py +++ b/plaid/model/cashflow_report_transactions_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cashflow_report_transactions_get_response.py b/plaid/model/cashflow_report_transactions_get_response.py index 8a90b0774..9175e6de8 100644 --- a/plaid/model/cashflow_report_transactions_get_response.py +++ b/plaid/model/cashflow_report_transactions_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/categories_get_response.py b/plaid/model/categories_get_response.py index ba64c5e3d..20c262f71 100644 --- a/plaid/model/categories_get_response.py +++ b/plaid/model/categories_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/category.py b/plaid/model/category.py index 62361529b..bada52b65 100644 --- a/plaid/model/category.py +++ b/plaid/model/category.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/category_expenses.py b/plaid/model/category_expenses.py index a8c6df62d..21ecbe336 100644 --- a/plaid/model/category_expenses.py +++ b/plaid/model/category_expenses.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/category_insight_details.py b/plaid/model/category_insight_details.py index 9c93d0460..590aff346 100644 --- a/plaid/model/category_insight_details.py +++ b/plaid/model/category_insight_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/category_insights.py b/plaid/model/category_insights.py index 03115a4c5..f6d0990d1 100644 --- a/plaid/model/category_insights.py +++ b/plaid/model/category_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cause.py b/plaid/model/cause.py index 4504f0009..5e012d9a7 100644 --- a/plaid/model/cause.py +++ b/plaid/model/cause.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cause_all_of.py b/plaid/model/cause_all_of.py index dce8c84b0..7a4a3febe 100644 --- a/plaid/model/cause_all_of.py +++ b/plaid/model/cause_all_of.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/check_report_repairable_item.py b/plaid/model/check_report_repairable_item.py index 925958447..626bac288 100644 --- a/plaid/model/check_report_repairable_item.py +++ b/plaid/model/check_report_repairable_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/check_report_warning.py b/plaid/model/check_report_warning.py index a220b16c1..e175d937b 100644 --- a/plaid/model/check_report_warning.py +++ b/plaid/model/check_report_warning.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/check_report_warning_code.py b/plaid/model/check_report_warning_code.py index 935d48c15..7afd45b8e 100644 --- a/plaid/model/check_report_warning_code.py +++ b/plaid/model/check_report_warning_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/client_customization.py b/plaid/model/client_customization.py index 13af594cb..6272364ac 100644 --- a/plaid/model/client_customization.py +++ b/plaid/model/client_customization.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/client_provided_enhanced_transaction.py b/plaid/model/client_provided_enhanced_transaction.py index 7c61dede1..0177a61c4 100644 --- a/plaid/model/client_provided_enhanced_transaction.py +++ b/plaid/model/client_provided_enhanced_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/client_provided_enriched_transaction.py b/plaid/model/client_provided_enriched_transaction.py index b51022ea1..9b2f88c52 100644 --- a/plaid/model/client_provided_enriched_transaction.py +++ b/plaid/model/client_provided_enriched_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/client_provided_raw_transaction.py b/plaid/model/client_provided_raw_transaction.py index fb7844e45..b17cf1ab0 100644 --- a/plaid/model/client_provided_raw_transaction.py +++ b/plaid/model/client_provided_raw_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/client_provided_transaction.py b/plaid/model/client_provided_transaction.py index 5e9da843b..016930210 100644 --- a/plaid/model/client_provided_transaction.py +++ b/plaid/model/client_provided_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/client_provided_transaction_location.py b/plaid/model/client_provided_transaction_location.py index bd63853ee..edba799b9 100644 --- a/plaid/model/client_provided_transaction_location.py +++ b/plaid/model/client_provided_transaction_location.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/client_user_identity.py b/plaid/model/client_user_identity.py index 20e1a4c31..4ba9fb8b7 100644 --- a/plaid/model/client_user_identity.py +++ b/plaid/model/client_user_identity.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/client_user_identity_address.py b/plaid/model/client_user_identity_address.py index ee0d94da2..784019fa6 100644 --- a/plaid/model/client_user_identity_address.py +++ b/plaid/model/client_user_identity_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/client_user_identity_email.py b/plaid/model/client_user_identity_email.py index 4dd668373..1a11f04f1 100644 --- a/plaid/model/client_user_identity_email.py +++ b/plaid/model/client_user_identity_email.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/client_user_identity_name.py b/plaid/model/client_user_identity_name.py index 40ecf7ce2..34b053203 100644 --- a/plaid/model/client_user_identity_name.py +++ b/plaid/model/client_user_identity_name.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/client_user_identity_phone_number.py b/plaid/model/client_user_identity_phone_number.py index 762ff32f4..f1f809428 100644 --- a/plaid/model/client_user_identity_phone_number.py +++ b/plaid/model/client_user_identity_phone_number.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/connected_application.py b/plaid/model/connected_application.py index 331f85536..53ecf8f38 100644 --- a/plaid/model/connected_application.py +++ b/plaid/model/connected_application.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/consent_event.py b/plaid/model/consent_event.py index 3bf2b7467..edb69dec3 100644 --- a/plaid/model/consent_event.py +++ b/plaid/model/consent_event.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/consent_event_code.py b/plaid/model/consent_event_code.py index f10b1f504..721d81a7e 100644 --- a/plaid/model/consent_event_code.py +++ b/plaid/model/consent_event_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/consent_event_initiator.py b/plaid/model/consent_event_initiator.py index c7c7743c6..7548022b9 100644 --- a/plaid/model/consent_event_initiator.py +++ b/plaid/model/consent_event_initiator.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/consent_event_type.py b/plaid/model/consent_event_type.py index 6ec4b1099..ce623d728 100644 --- a/plaid/model/consent_event_type.py +++ b/plaid/model/consent_event_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/consent_events_get_request.py b/plaid/model/consent_events_get_request.py index af45899b0..90307d6df 100644 --- a/plaid/model/consent_events_get_request.py +++ b/plaid/model/consent_events_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/consent_events_get_response.py b/plaid/model/consent_events_get_response.py index d313603af..9afbffe13 100644 --- a/plaid/model/consent_events_get_response.py +++ b/plaid/model/consent_events_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/consent_payment_idempotency_key.py b/plaid/model/consent_payment_idempotency_key.py index 875ea98b9..0942ec0ea 100644 --- a/plaid/model/consent_payment_idempotency_key.py +++ b/plaid/model/consent_payment_idempotency_key.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/consented_account.py b/plaid/model/consented_account.py index 22f07b805..6f791d945 100644 --- a/plaid/model/consented_account.py +++ b/plaid/model/consented_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/consumer_dispute.py b/plaid/model/consumer_dispute.py index 7dc90d27d..326988201 100644 --- a/plaid/model/consumer_dispute.py +++ b/plaid/model/consumer_dispute.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/consumer_dispute_category.py b/plaid/model/consumer_dispute_category.py index 1cdff8504..4e81af027 100644 --- a/plaid/model/consumer_dispute_category.py +++ b/plaid/model/consumer_dispute_category.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/consumer_report_pdf_get_request.py b/plaid/model/consumer_report_pdf_get_request.py index c87098f12..24c68cbbc 100644 --- a/plaid/model/consumer_report_pdf_get_request.py +++ b/plaid/model/consumer_report_pdf_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/consumer_report_permissible_purpose.py b/plaid/model/consumer_report_permissible_purpose.py index 925b444f6..40bd14fb5 100644 --- a/plaid/model/consumer_report_permissible_purpose.py +++ b/plaid/model/consumer_report_permissible_purpose.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/consumer_report_user_identity.py b/plaid/model/consumer_report_user_identity.py index b6691224a..5b87ea05b 100644 --- a/plaid/model/consumer_report_user_identity.py +++ b/plaid/model/consumer_report_user_identity.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/counterparty.py b/plaid/model/counterparty.py index 7e8d31099..27b6a3925 100644 --- a/plaid/model/counterparty.py +++ b/plaid/model/counterparty.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/counterparty_insights.py b/plaid/model/counterparty_insights.py index 078bbc48b..c5beb7897 100644 --- a/plaid/model/counterparty_insights.py +++ b/plaid/model/counterparty_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/counterparty_numbers.py b/plaid/model/counterparty_numbers.py index 8ea222d45..ed6f25d17 100644 --- a/plaid/model/counterparty_numbers.py +++ b/plaid/model/counterparty_numbers.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/counterparty_numbers_bacs.py b/plaid/model/counterparty_numbers_bacs.py index 408c625e0..b08c79655 100644 --- a/plaid/model/counterparty_numbers_bacs.py +++ b/plaid/model/counterparty_numbers_bacs.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/counterparty_numbers_international.py b/plaid/model/counterparty_numbers_international.py index 39c1c9236..743de1e4f 100644 --- a/plaid/model/counterparty_numbers_international.py +++ b/plaid/model/counterparty_numbers_international.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/counterparty_type.py b/plaid/model/counterparty_type.py index 135239be5..040330907 100644 --- a/plaid/model/counterparty_type.py +++ b/plaid/model/counterparty_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/country_code.py b/plaid/model/country_code.py index 0c8e80794..ae996bb11 100644 --- a/plaid/model/country_code.py +++ b/plaid/model/country_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_annual_income_values.py b/plaid/model/cra_annual_income_values.py index 74799179a..2e25681b2 100644 --- a/plaid/model/cra_annual_income_values.py +++ b/plaid/model/cra_annual_income_values.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_account.py b/plaid/model/cra_bank_income_account.py index 94a91ef1c..e08955c35 100644 --- a/plaid/model/cra_bank_income_account.py +++ b/plaid/model/cra_bank_income_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_account_metadata.py b/plaid/model/cra_bank_income_account_metadata.py index 7e59a7016..72927e3e1 100644 --- a/plaid/model/cra_bank_income_account_metadata.py +++ b/plaid/model/cra_bank_income_account_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_bonus_type.py b/plaid/model/cra_bank_income_bonus_type.py index b49efe782..f59b0b6d2 100644 --- a/plaid/model/cra_bank_income_bonus_type.py +++ b/plaid/model/cra_bank_income_bonus_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_cause.py b/plaid/model/cra_bank_income_cause.py index d9ce74137..74f41a907 100644 --- a/plaid/model/cra_bank_income_cause.py +++ b/plaid/model/cra_bank_income_cause.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_complete_result.py b/plaid/model/cra_bank_income_complete_result.py index 06ba50b31..b6e12456e 100644 --- a/plaid/model/cra_bank_income_complete_result.py +++ b/plaid/model/cra_bank_income_complete_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_complete_webhook.py b/plaid/model/cra_bank_income_complete_webhook.py index 4c277ffdb..94bc57b83 100644 --- a/plaid/model/cra_bank_income_complete_webhook.py +++ b/plaid/model/cra_bank_income_complete_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_employer.py b/plaid/model/cra_bank_income_employer.py index 5f45b7a98..3886dcd15 100644 --- a/plaid/model/cra_bank_income_employer.py +++ b/plaid/model/cra_bank_income_employer.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_error_webhook.py b/plaid/model/cra_bank_income_error_webhook.py index c1a3f3097..b04154b88 100644 --- a/plaid/model/cra_bank_income_error_webhook.py +++ b/plaid/model/cra_bank_income_error_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_historical_summary.py b/plaid/model/cra_bank_income_historical_summary.py index 265771d83..027f02965 100644 --- a/plaid/model/cra_bank_income_historical_summary.py +++ b/plaid/model/cra_bank_income_historical_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_income_provider.py b/plaid/model/cra_bank_income_income_provider.py index 4d36fb9ac..fa4c7bb74 100644 --- a/plaid/model/cra_bank_income_income_provider.py +++ b/plaid/model/cra_bank_income_income_provider.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_item.py b/plaid/model/cra_bank_income_item.py index 109ac01f8..83eb49e8b 100644 --- a/plaid/model/cra_bank_income_item.py +++ b/plaid/model/cra_bank_income_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_source.py b/plaid/model/cra_bank_income_source.py index 2759a8744..96bd05f69 100644 --- a/plaid/model/cra_bank_income_source.py +++ b/plaid/model/cra_bank_income_source.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_status.py b/plaid/model/cra_bank_income_status.py index bf1508d3a..b22bb1b73 100644 --- a/plaid/model/cra_bank_income_status.py +++ b/plaid/model/cra_bank_income_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_summary.py b/plaid/model/cra_bank_income_summary.py index a4763938c..376c1148a 100644 --- a/plaid/model/cra_bank_income_summary.py +++ b/plaid/model/cra_bank_income_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_transaction.py b/plaid/model/cra_bank_income_transaction.py index 83ba9ef72..dcf1c09a4 100644 --- a/plaid/model/cra_bank_income_transaction.py +++ b/plaid/model/cra_bank_income_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_warning.py b/plaid/model/cra_bank_income_warning.py index 0282aa5a8..961ea55e5 100644 --- a/plaid/model/cra_bank_income_warning.py +++ b/plaid/model/cra_bank_income_warning.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_warning_code.py b/plaid/model/cra_bank_income_warning_code.py index 9ec5dd002..576f81f6e 100644 --- a/plaid/model/cra_bank_income_warning_code.py +++ b/plaid/model/cra_bank_income_warning_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_cashflow_insights_report.py b/plaid/model/cra_cashflow_insights_report.py index ada5d0fea..8845e7d31 100644 --- a/plaid/model/cra_cashflow_insights_report.py +++ b/plaid/model/cra_cashflow_insights_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ @@ -142,7 +142,7 @@ def _from_openapi_data(cls, report_id, generated_time, *args, **kwargs): # noqa Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - attributes ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): A map of cash flow attributes, where the key is a string, and the value is a float, int, or boolean. The specific list of attributes will depend on the cash flow attributes version used. For a full list of attributes, contact your account manager.. [optional] # noqa: E501 + attributes ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): A map of cash flow attributes, where the key is a string, and the value is a string, float, int, or boolean. The specific list of attributes will depend on the cash flow attributes version used. For a full list of attributes, contact your account manager.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -234,7 +234,7 @@ def __init__(self, report_id, generated_time, *args, **kwargs): # noqa: E501 Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - attributes ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): A map of cash flow attributes, where the key is a string, and the value is a float, int, or boolean. The specific list of attributes will depend on the cash flow attributes version used. For a full list of attributes, contact your account manager.. [optional] # noqa: E501 + attributes ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): A map of cash flow attributes, where the key is a string, and the value is a string, float, int, or boolean. The specific list of attributes will depend on the cash flow attributes version used. For a full list of attributes, contact your account manager.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/plaid/model/cra_check_report_base_report_get_request.py b/plaid/model/cra_check_report_base_report_get_request.py index 328518b55..84bac7f15 100644 --- a/plaid/model/cra_check_report_base_report_get_request.py +++ b/plaid/model/cra_check_report_base_report_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_base_report_get_response.py b/plaid/model/cra_check_report_base_report_get_response.py index 301839208..8efdb047d 100644 --- a/plaid/model/cra_check_report_base_report_get_response.py +++ b/plaid/model/cra_check_report_base_report_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_cashflow_insights_get_options.py b/plaid/model/cra_check_report_cashflow_insights_get_options.py index a991e2b4b..965d4357b 100644 --- a/plaid/model/cra_check_report_cashflow_insights_get_options.py +++ b/plaid/model/cra_check_report_cashflow_insights_get_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_cashflow_insights_get_request.py b/plaid/model/cra_check_report_cashflow_insights_get_request.py index 0018b7a68..6ed877627 100644 --- a/plaid/model/cra_check_report_cashflow_insights_get_request.py +++ b/plaid/model/cra_check_report_cashflow_insights_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_cashflow_insights_get_response.py b/plaid/model/cra_check_report_cashflow_insights_get_response.py index 4aef84753..0996962d6 100644 --- a/plaid/model/cra_check_report_cashflow_insights_get_response.py +++ b/plaid/model/cra_check_report_cashflow_insights_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_create_base_report_options.py b/plaid/model/cra_check_report_create_base_report_options.py index 1edc2473c..841229496 100644 --- a/plaid/model/cra_check_report_create_base_report_options.py +++ b/plaid/model/cra_check_report_create_base_report_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_create_cashflow_insights_options.py b/plaid/model/cra_check_report_create_cashflow_insights_options.py index db885cc11..e88feae7d 100644 --- a/plaid/model/cra_check_report_create_cashflow_insights_options.py +++ b/plaid/model/cra_check_report_create_cashflow_insights_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_create_employment_refresh_options.py b/plaid/model/cra_check_report_create_employment_refresh_options.py index c80966719..3dd78fa3c 100644 --- a/plaid/model/cra_check_report_create_employment_refresh_options.py +++ b/plaid/model/cra_check_report_create_employment_refresh_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_create_income_insights_options.py b/plaid/model/cra_check_report_create_income_insights_options.py index 8eb31d74f..edc8dfd72 100644 --- a/plaid/model/cra_check_report_create_income_insights_options.py +++ b/plaid/model/cra_check_report_create_income_insights_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_create_lend_score_options.py b/plaid/model/cra_check_report_create_lend_score_options.py index e806d801f..10f1983e8 100644 --- a/plaid/model/cra_check_report_create_lend_score_options.py +++ b/plaid/model/cra_check_report_create_lend_score_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_create_network_insights_options.py b/plaid/model/cra_check_report_create_network_insights_options.py index f5594a067..e449a5443 100644 --- a/plaid/model/cra_check_report_create_network_insights_options.py +++ b/plaid/model/cra_check_report_create_network_insights_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_create_partner_insights_options.py b/plaid/model/cra_check_report_create_partner_insights_options.py index d4e2342ab..817ae17c1 100644 --- a/plaid/model/cra_check_report_create_partner_insights_options.py +++ b/plaid/model/cra_check_report_create_partner_insights_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_create_request.py b/plaid/model/cra_check_report_create_request.py index 8b5d51473..0c1b8968c 100644 --- a/plaid/model/cra_check_report_create_request.py +++ b/plaid/model/cra_check_report_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_create_response.py b/plaid/model/cra_check_report_create_response.py index b0f18901b..de9e1cde4 100644 --- a/plaid/model/cra_check_report_create_response.py +++ b/plaid/model/cra_check_report_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_failed_webhook.py b/plaid/model/cra_check_report_failed_webhook.py index 072b9d794..f12495243 100644 --- a/plaid/model/cra_check_report_failed_webhook.py +++ b/plaid/model/cra_check_report_failed_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_failed_webhook_error.py b/plaid/model/cra_check_report_failed_webhook_error.py index 28f7a8bc5..044ac1e52 100644 --- a/plaid/model/cra_check_report_failed_webhook_error.py +++ b/plaid/model/cra_check_report_failed_webhook_error.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_freddie_mac_get_request.py b/plaid/model/cra_check_report_freddie_mac_get_request.py index ba06a9eab..6362fd0f3 100644 --- a/plaid/model/cra_check_report_freddie_mac_get_request.py +++ b/plaid/model/cra_check_report_freddie_mac_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_freddie_mac_get_response.py b/plaid/model/cra_check_report_freddie_mac_get_response.py index 3d31015d8..b082c19fc 100644 --- a/plaid/model/cra_check_report_freddie_mac_get_response.py +++ b/plaid/model/cra_check_report_freddie_mac_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_freddie_mac_verification_of_assets_deal.py b/plaid/model/cra_check_report_freddie_mac_verification_of_assets_deal.py index 7a95dc86b..534ce0130 100644 --- a/plaid/model/cra_check_report_freddie_mac_verification_of_assets_deal.py +++ b/plaid/model/cra_check_report_freddie_mac_verification_of_assets_deal.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_gse_options.py b/plaid/model/cra_check_report_gse_options.py index 955cb1fa0..edb761e05 100644 --- a/plaid/model/cra_check_report_gse_options.py +++ b/plaid/model/cra_check_report_gse_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_home_lending_report_options.py b/plaid/model/cra_check_report_home_lending_report_options.py index 2a536ca61..6c8fa360e 100644 --- a/plaid/model/cra_check_report_home_lending_report_options.py +++ b/plaid/model/cra_check_report_home_lending_report_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_income_insights_get_options.py b/plaid/model/cra_check_report_income_insights_get_options.py index 05d391cc2..ef8ec1d58 100644 --- a/plaid/model/cra_check_report_income_insights_get_options.py +++ b/plaid/model/cra_check_report_income_insights_get_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_income_insights_get_request.py b/plaid/model/cra_check_report_income_insights_get_request.py index 1447cc115..39f16192e 100644 --- a/plaid/model/cra_check_report_income_insights_get_request.py +++ b/plaid/model/cra_check_report_income_insights_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_income_insights_get_response.py b/plaid/model/cra_check_report_income_insights_get_response.py index 66be60fcb..99f615ad1 100644 --- a/plaid/model/cra_check_report_income_insights_get_response.py +++ b/plaid/model/cra_check_report_income_insights_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_lend_score_get_options.py b/plaid/model/cra_check_report_lend_score_get_options.py index edbb9738c..732fc4f5e 100644 --- a/plaid/model/cra_check_report_lend_score_get_options.py +++ b/plaid/model/cra_check_report_lend_score_get_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_lend_score_get_request.py b/plaid/model/cra_check_report_lend_score_get_request.py index 20a0c01d4..f59b05bd4 100644 --- a/plaid/model/cra_check_report_lend_score_get_request.py +++ b/plaid/model/cra_check_report_lend_score_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_lend_score_get_response.py b/plaid/model/cra_check_report_lend_score_get_response.py index 7bbb266c9..f269ceb52 100644 --- a/plaid/model/cra_check_report_lend_score_get_response.py +++ b/plaid/model/cra_check_report_lend_score_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_network_insights_get_options.py b/plaid/model/cra_check_report_network_insights_get_options.py index 622552609..481652bca 100644 --- a/plaid/model/cra_check_report_network_insights_get_options.py +++ b/plaid/model/cra_check_report_network_insights_get_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_network_insights_get_request.py b/plaid/model/cra_check_report_network_insights_get_request.py index 17b389200..b4fac9d89 100644 --- a/plaid/model/cra_check_report_network_insights_get_request.py +++ b/plaid/model/cra_check_report_network_insights_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_network_insights_get_response.py b/plaid/model/cra_check_report_network_insights_get_response.py index e8b8146bb..b60c091d0 100644 --- a/plaid/model/cra_check_report_network_insights_get_response.py +++ b/plaid/model/cra_check_report_network_insights_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_partner_insights_get_options.py b/plaid/model/cra_check_report_partner_insights_get_options.py index a65385d1c..97f7a3dea 100644 --- a/plaid/model/cra_check_report_partner_insights_get_options.py +++ b/plaid/model/cra_check_report_partner_insights_get_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_partner_insights_get_partner_insights.py b/plaid/model/cra_check_report_partner_insights_get_partner_insights.py index f9ef8b691..fbc082ee9 100644 --- a/plaid/model/cra_check_report_partner_insights_get_partner_insights.py +++ b/plaid/model/cra_check_report_partner_insights_get_partner_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_partner_insights_get_request.py b/plaid/model/cra_check_report_partner_insights_get_request.py index d940f8950..71fa67bb7 100644 --- a/plaid/model/cra_check_report_partner_insights_get_request.py +++ b/plaid/model/cra_check_report_partner_insights_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_partner_insights_get_response.py b/plaid/model/cra_check_report_partner_insights_get_response.py index 7d430e03f..afe7308de 100644 --- a/plaid/model/cra_check_report_partner_insights_get_response.py +++ b/plaid/model/cra_check_report_partner_insights_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_pdf_get_request.py b/plaid/model/cra_check_report_pdf_get_request.py index 608d2c048..9451abd26 100644 --- a/plaid/model/cra_check_report_pdf_get_request.py +++ b/plaid/model/cra_check_report_pdf_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_permissible_purpose.py b/plaid/model/cra_check_report_permissible_purpose.py index ddac382a8..327e8e3ed 100644 --- a/plaid/model/cra_check_report_permissible_purpose.py +++ b/plaid/model/cra_check_report_permissible_purpose.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_ready_webhook.py b/plaid/model/cra_check_report_ready_webhook.py index b15906631..b6a4c6e56 100644 --- a/plaid/model/cra_check_report_ready_webhook.py +++ b/plaid/model/cra_check_report_ready_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_verification_get_employment_refresh_options.py b/plaid/model/cra_check_report_verification_get_employment_refresh_options.py index 59315611f..6453bbde7 100644 --- a/plaid/model/cra_check_report_verification_get_employment_refresh_options.py +++ b/plaid/model/cra_check_report_verification_get_employment_refresh_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_verification_get_report_type.py b/plaid/model/cra_check_report_verification_get_report_type.py index c9636cce1..10894488f 100644 --- a/plaid/model/cra_check_report_verification_get_report_type.py +++ b/plaid/model/cra_check_report_verification_get_report_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_verification_get_request.py b/plaid/model/cra_check_report_verification_get_request.py index 6c6cde213..f232602a6 100644 --- a/plaid/model/cra_check_report_verification_get_request.py +++ b/plaid/model/cra_check_report_verification_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_verification_get_response.py b/plaid/model/cra_check_report_verification_get_response.py index 43ec157ff..338deb233 100644 --- a/plaid/model/cra_check_report_verification_get_response.py +++ b/plaid/model/cra_check_report_verification_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_verification_pdf_get_request.py b/plaid/model/cra_check_report_verification_pdf_get_request.py index e15b31d6d..e3ae0792d 100644 --- a/plaid/model/cra_check_report_verification_pdf_get_request.py +++ b/plaid/model/cra_check_report_verification_pdf_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_check_report_verification_pdf_report_type.py b/plaid/model/cra_check_report_verification_pdf_report_type.py index 471080f13..3204b39ed 100644 --- a/plaid/model/cra_check_report_verification_pdf_report_type.py +++ b/plaid/model/cra_check_report_verification_pdf_report_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_credit_profile_cashflow_attributes_schema.py b/plaid/model/cra_credit_profile_cashflow_attributes_schema.py index 3114fd6c1..a69911a3f 100644 --- a/plaid/model/cra_credit_profile_cashflow_attributes_schema.py +++ b/plaid/model/cra_credit_profile_cashflow_attributes_schema.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_credit_profile_inquiry_type.py b/plaid/model/cra_credit_profile_inquiry_type.py index d335f7005..845d252f9 100644 --- a/plaid/model/cra_credit_profile_inquiry_type.py +++ b/plaid/model/cra_credit_profile_inquiry_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_credit_profile_lend_score.py b/plaid/model/cra_credit_profile_lend_score.py index 99cd5b316..3a0ddf661 100644 --- a/plaid/model/cra_credit_profile_lend_score.py +++ b/plaid/model/cra_credit_profile_lend_score.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_credit_profile_network_insights_schema.py b/plaid/model/cra_credit_profile_network_insights_schema.py index 3f3ca022d..6e3ddc472 100644 --- a/plaid/model/cra_credit_profile_network_insights_schema.py +++ b/plaid/model/cra_credit_profile_network_insights_schema.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_credit_profile_report.py b/plaid/model/cra_credit_profile_report.py index 010d60b38..94b3d2400 100644 --- a/plaid/model/cra_credit_profile_report.py +++ b/plaid/model/cra_credit_profile_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_credit_profile_report_get_request.py b/plaid/model/cra_credit_profile_report_get_request.py index aaebf2049..07c300f60 100644 --- a/plaid/model/cra_credit_profile_report_get_request.py +++ b/plaid/model/cra_credit_profile_report_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_credit_profile_report_get_response.py b/plaid/model/cra_credit_profile_report_get_response.py index 634291f18..a40a3b328 100644 --- a/plaid/model/cra_credit_profile_report_get_response.py +++ b/plaid/model/cra_credit_profile_report_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_credit_profile_report_metadata.py b/plaid/model/cra_credit_profile_report_metadata.py index 47d3c79ac..3546a38a6 100644 --- a/plaid/model/cra_credit_profile_report_metadata.py +++ b/plaid/model/cra_credit_profile_report_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_credit_profile_report_type.py b/plaid/model/cra_credit_profile_report_type.py index bf54e2b81..12a1a0151 100644 --- a/plaid/model/cra_credit_profile_report_type.py +++ b/plaid/model/cra_credit_profile_report_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_credit_profile_report_version.py b/plaid/model/cra_credit_profile_report_version.py index 853035207..3094c395b 100644 --- a/plaid/model/cra_credit_profile_report_version.py +++ b/plaid/model/cra_credit_profile_report_version.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_current_modeled_income.py b/plaid/model/cra_current_modeled_income.py index fef0ab4c4..18b2f3291 100644 --- a/plaid/model/cra_current_modeled_income.py +++ b/plaid/model/cra_current_modeled_income.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_employment_refresh_report.py b/plaid/model/cra_employment_refresh_report.py index 592ecef81..7d6f977ee 100644 --- a/plaid/model/cra_employment_refresh_report.py +++ b/plaid/model/cra_employment_refresh_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_employment_refresh_report_account.py b/plaid/model/cra_employment_refresh_report_account.py index b7cf227fe..ca29886a8 100644 --- a/plaid/model/cra_employment_refresh_report_account.py +++ b/plaid/model/cra_employment_refresh_report_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_employment_refresh_report_item.py b/plaid/model/cra_employment_refresh_report_item.py index bca8a81e3..30f345c66 100644 --- a/plaid/model/cra_employment_refresh_report_item.py +++ b/plaid/model/cra_employment_refresh_report_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_employment_refresh_report_transaction.py b/plaid/model/cra_employment_refresh_report_transaction.py index cb4d5da32..2823a8a48 100644 --- a/plaid/model/cra_employment_refresh_report_transaction.py +++ b/plaid/model/cra_employment_refresh_report_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_income_category.py b/plaid/model/cra_income_category.py index 8fbd94ff3..16a079dc0 100644 --- a/plaid/model/cra_income_category.py +++ b/plaid/model/cra_income_category.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_income_insights.py b/plaid/model/cra_income_insights.py index c78c9d9c4..eec7ea15a 100644 --- a/plaid/model/cra_income_insights.py +++ b/plaid/model/cra_income_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_income_insights_user_summary.py b/plaid/model/cra_income_insights_user_summary.py index 4157aa3e9..ab8b64002 100644 --- a/plaid/model/cra_income_insights_user_summary.py +++ b/plaid/model/cra_income_insights_user_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_income_metrics.py b/plaid/model/cra_income_metrics.py index 395b54cf0..e1d4e122f 100644 --- a/plaid/model/cra_income_metrics.py +++ b/plaid/model/cra_income_metrics.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_income_next_payment.py b/plaid/model/cra_income_next_payment.py index 32edfe90d..4679cb76b 100644 --- a/plaid/model/cra_income_next_payment.py +++ b/plaid/model/cra_income_next_payment.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_income_stream.py b/plaid/model/cra_income_stream.py index aa4b8a56b..5e526d52e 100644 --- a/plaid/model/cra_income_stream.py +++ b/plaid/model/cra_income_stream.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_income_stream_insights.py b/plaid/model/cra_income_stream_insights.py index d98b66e12..8eaee403b 100644 --- a/plaid/model/cra_income_stream_insights.py +++ b/plaid/model/cra_income_stream_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_income_transaction.py b/plaid/model/cra_income_transaction.py index d8dcf8687..d22350ea4 100644 --- a/plaid/model/cra_income_transaction.py +++ b/plaid/model/cra_income_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_income_transaction_outlier.py b/plaid/model/cra_income_transaction_outlier.py index 8199d1d40..7dfb4ebe1 100644 --- a/plaid/model/cra_income_transaction_outlier.py +++ b/plaid/model/cra_income_transaction_outlier.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_lend_score_report.py b/plaid/model/cra_lend_score_report.py index 53ae5453a..493aea5c0 100644 --- a/plaid/model/cra_lend_score_report.py +++ b/plaid/model/cra_lend_score_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loan_application.py b/plaid/model/cra_loan_application.py index 07e2849d1..26f3ab37f 100644 --- a/plaid/model/cra_loan_application.py +++ b/plaid/model/cra_loan_application.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loan_application_decision.py b/plaid/model/cra_loan_application_decision.py index 4ddd5d2c0..b67ed2591 100644 --- a/plaid/model/cra_loan_application_decision.py +++ b/plaid/model/cra_loan_application_decision.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loan_closed_status.py b/plaid/model/cra_loan_closed_status.py index c7400756c..520fc2ec7 100644 --- a/plaid/model/cra_loan_closed_status.py +++ b/plaid/model/cra_loan_closed_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loan_opened_status.py b/plaid/model/cra_loan_opened_status.py index 8796bd73e..fd890854b 100644 --- a/plaid/model/cra_loan_opened_status.py +++ b/plaid/model/cra_loan_opened_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loan_payment_history.py b/plaid/model/cra_loan_payment_history.py index 50a51e818..74daa080e 100644 --- a/plaid/model/cra_loan_payment_history.py +++ b/plaid/model/cra_loan_payment_history.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loan_payment_schedule.py b/plaid/model/cra_loan_payment_schedule.py index c06578584..37351e9de 100644 --- a/plaid/model/cra_loan_payment_schedule.py +++ b/plaid/model/cra_loan_payment_schedule.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loan_register.py b/plaid/model/cra_loan_register.py index fb8a95e49..b75972e70 100644 --- a/plaid/model/cra_loan_register.py +++ b/plaid/model/cra_loan_register.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loan_register_application.py b/plaid/model/cra_loan_register_application.py index 02b1f19d7..4d58c30e6 100644 --- a/plaid/model/cra_loan_register_application.py +++ b/plaid/model/cra_loan_register_application.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loan_status.py b/plaid/model/cra_loan_status.py index cce0032cc..e5c8da152 100644 --- a/plaid/model/cra_loan_status.py +++ b/plaid/model/cra_loan_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loan_status_history_update.py b/plaid/model/cra_loan_status_history_update.py index b63e2a0ae..c88a6694f 100644 --- a/plaid/model/cra_loan_status_history_update.py +++ b/plaid/model/cra_loan_status_history_update.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loan_type.py b/plaid/model/cra_loan_type.py index 8382412d4..3f1cc5e3d 100644 --- a/plaid/model/cra_loan_type.py +++ b/plaid/model/cra_loan_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loan_unregister.py b/plaid/model/cra_loan_unregister.py index f73344641..f5ded340d 100644 --- a/plaid/model/cra_loan_unregister.py +++ b/plaid/model/cra_loan_unregister.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loan_unregister_response.py b/plaid/model/cra_loan_unregister_response.py index c65722fae..2250c77e3 100644 --- a/plaid/model/cra_loan_unregister_response.py +++ b/plaid/model/cra_loan_unregister_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loan_update.py b/plaid/model/cra_loan_update.py index 220282183..7d1f46d59 100644 --- a/plaid/model/cra_loan_update.py +++ b/plaid/model/cra_loan_update.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loans_applications_register_request.py b/plaid/model/cra_loans_applications_register_request.py index 06ee1652c..9c4e9f04b 100644 --- a/plaid/model/cra_loans_applications_register_request.py +++ b/plaid/model/cra_loans_applications_register_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loans_applications_register_response.py b/plaid/model/cra_loans_applications_register_response.py index a69856f7e..e4f0c38b8 100644 --- a/plaid/model/cra_loans_applications_register_response.py +++ b/plaid/model/cra_loans_applications_register_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loans_register_request.py b/plaid/model/cra_loans_register_request.py index 141806147..8fc69e258 100644 --- a/plaid/model/cra_loans_register_request.py +++ b/plaid/model/cra_loans_register_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loans_register_response.py b/plaid/model/cra_loans_register_response.py index 8f16218bb..74e73bed0 100644 --- a/plaid/model/cra_loans_register_response.py +++ b/plaid/model/cra_loans_register_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loans_unregister_request.py b/plaid/model/cra_loans_unregister_request.py index a852d13a1..381688b57 100644 --- a/plaid/model/cra_loans_unregister_request.py +++ b/plaid/model/cra_loans_unregister_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loans_update_request.py b/plaid/model/cra_loans_update_request.py index 7e6583733..d509193c2 100644 --- a/plaid/model/cra_loans_update_request.py +++ b/plaid/model/cra_loans_update_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_loans_update_response.py b/plaid/model/cra_loans_update_response.py index c01be03b7..c1894fc43 100644 --- a/plaid/model/cra_loans_update_response.py +++ b/plaid/model/cra_loans_update_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_monitoring_insights_get_request.py b/plaid/model/cra_monitoring_insights_get_request.py index baed7128f..6a78c36cc 100644 --- a/plaid/model/cra_monitoring_insights_get_request.py +++ b/plaid/model/cra_monitoring_insights_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_monitoring_insights_get_response.py b/plaid/model/cra_monitoring_insights_get_response.py index 28aae7acb..892eff565 100644 --- a/plaid/model/cra_monitoring_insights_get_response.py +++ b/plaid/model/cra_monitoring_insights_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_monitoring_insights_item.py b/plaid/model/cra_monitoring_insights_item.py index 381b8e631..8b21556b4 100644 --- a/plaid/model/cra_monitoring_insights_item.py +++ b/plaid/model/cra_monitoring_insights_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_monitoring_insights_subscribe_request.py b/plaid/model/cra_monitoring_insights_subscribe_request.py index 2b53b191a..c0b296ca7 100644 --- a/plaid/model/cra_monitoring_insights_subscribe_request.py +++ b/plaid/model/cra_monitoring_insights_subscribe_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_monitoring_insights_subscribe_response.py b/plaid/model/cra_monitoring_insights_subscribe_response.py index bdb75afdf..9f7bdf113 100644 --- a/plaid/model/cra_monitoring_insights_subscribe_response.py +++ b/plaid/model/cra_monitoring_insights_subscribe_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_monitoring_insights_unsubscribe_request.py b/plaid/model/cra_monitoring_insights_unsubscribe_request.py index 867195fa6..b010eb03f 100644 --- a/plaid/model/cra_monitoring_insights_unsubscribe_request.py +++ b/plaid/model/cra_monitoring_insights_unsubscribe_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_monitoring_insights_unsubscribe_response.py b/plaid/model/cra_monitoring_insights_unsubscribe_response.py index 68ffa85b0..29d75bbd9 100644 --- a/plaid/model/cra_monitoring_insights_unsubscribe_response.py +++ b/plaid/model/cra_monitoring_insights_unsubscribe_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_monthly_income_values.py b/plaid/model/cra_monthly_income_values.py index 70cd668af..70463ce79 100644 --- a/plaid/model/cra_monthly_income_values.py +++ b/plaid/model/cra_monthly_income_values.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_network_insights_item.py b/plaid/model/cra_network_insights_item.py index 7b789f8b8..53d516006 100644 --- a/plaid/model/cra_network_insights_item.py +++ b/plaid/model/cra_network_insights_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_network_insights_report.py b/plaid/model/cra_network_insights_report.py index 392d30bba..6a5154a0f 100644 --- a/plaid/model/cra_network_insights_report.py +++ b/plaid/model/cra_network_insights_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights.py b/plaid/model/cra_partner_insights.py index 82e3c54b4..215ebe850 100644 --- a/plaid/model/cra_partner_insights.py +++ b/plaid/model/cra_partner_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_base_fico_score.py b/plaid/model/cra_partner_insights_base_fico_score.py index 152649e31..1dd5c3623 100644 --- a/plaid/model/cra_partner_insights_base_fico_score.py +++ b/plaid/model/cra_partner_insights_base_fico_score.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_base_fico_score_version.py b/plaid/model/cra_partner_insights_base_fico_score_version.py index 790fe9e3f..500a530e9 100644 --- a/plaid/model/cra_partner_insights_base_fico_score_version.py +++ b/plaid/model/cra_partner_insights_base_fico_score_version.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_bureau.py b/plaid/model/cra_partner_insights_bureau.py index 2f6d170ff..9a21d44ca 100644 --- a/plaid/model/cra_partner_insights_bureau.py +++ b/plaid/model/cra_partner_insights_bureau.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_complete_webhook.py b/plaid/model/cra_partner_insights_complete_webhook.py index 5cc709eb9..f4ad3965e 100644 --- a/plaid/model/cra_partner_insights_complete_webhook.py +++ b/plaid/model/cra_partner_insights_complete_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_error_webhook.py b/plaid/model/cra_partner_insights_error_webhook.py index aba8c084b..11529f512 100644 --- a/plaid/model/cra_partner_insights_error_webhook.py +++ b/plaid/model/cra_partner_insights_error_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_fico_input.py b/plaid/model/cra_partner_insights_fico_input.py index ba4bfe25b..9ce41cf8d 100644 --- a/plaid/model/cra_partner_insights_fico_input.py +++ b/plaid/model/cra_partner_insights_fico_input.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_fico_report_characteristics.py b/plaid/model/cra_partner_insights_fico_report_characteristics.py index 934939c01..f81cc1d8d 100644 --- a/plaid/model/cra_partner_insights_fico_report_characteristics.py +++ b/plaid/model/cra_partner_insights_fico_report_characteristics.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_fico_results.py b/plaid/model/cra_partner_insights_fico_results.py index 034aa0a8e..fa43b1216 100644 --- a/plaid/model/cra_partner_insights_fico_results.py +++ b/plaid/model/cra_partner_insights_fico_results.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_get_request.py b/plaid/model/cra_partner_insights_get_request.py index a5cd0b6e0..e857f828c 100644 --- a/plaid/model/cra_partner_insights_get_request.py +++ b/plaid/model/cra_partner_insights_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_get_response.py b/plaid/model/cra_partner_insights_get_response.py index f5aacf8da..37b7843d0 100644 --- a/plaid/model/cra_partner_insights_get_response.py +++ b/plaid/model/cra_partner_insights_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_item.py b/plaid/model/cra_partner_insights_item.py index be701f135..14c6cd21a 100644 --- a/plaid/model/cra_partner_insights_item.py +++ b/plaid/model/cra_partner_insights_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_item_account.py b/plaid/model/cra_partner_insights_item_account.py index 1da9b3f43..5fab42059 100644 --- a/plaid/model/cra_partner_insights_item_account.py +++ b/plaid/model/cra_partner_insights_item_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_item_account_metadata.py b/plaid/model/cra_partner_insights_item_account_metadata.py index 266bc717c..9aad7caf7 100644 --- a/plaid/model/cra_partner_insights_item_account_metadata.py +++ b/plaid/model/cra_partner_insights_item_account_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_prism.py b/plaid/model/cra_partner_insights_prism.py index f35082202..04538e419 100644 --- a/plaid/model/cra_partner_insights_prism.py +++ b/plaid/model/cra_partner_insights_prism.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_ultra_fico_score.py b/plaid/model/cra_partner_insights_ultra_fico_score.py index c83359682..694d1bc69 100644 --- a/plaid/model/cra_partner_insights_ultra_fico_score.py +++ b/plaid/model/cra_partner_insights_ultra_fico_score.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_ultra_fico_score_request.py b/plaid/model/cra_partner_insights_ultra_fico_score_request.py index e02e17340..00b573cd0 100644 --- a/plaid/model/cra_partner_insights_ultra_fico_score_request.py +++ b/plaid/model/cra_partner_insights_ultra_fico_score_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_ultra_fico_score_result.py b/plaid/model/cra_partner_insights_ultra_fico_score_result.py index 6b46088eb..567b3ac7e 100644 --- a/plaid/model/cra_partner_insights_ultra_fico_score_result.py +++ b/plaid/model/cra_partner_insights_ultra_fico_score_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights_ultra_fico_score_version.py b/plaid/model/cra_partner_insights_ultra_fico_score_version.py index 3a5b0ad32..b70a417bc 100644 --- a/plaid/model/cra_partner_insights_ultra_fico_score_version.py +++ b/plaid/model/cra_partner_insights_ultra_fico_score_version.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_pdf_add_ons.py b/plaid/model/cra_pdf_add_ons.py index 036ec8f64..1868dc548 100644 --- a/plaid/model/cra_pdf_add_ons.py +++ b/plaid/model/cra_pdf_add_ons.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_prediction_interval.py b/plaid/model/cra_prediction_interval.py index f17b2cb00..19cb15e18 100644 --- a/plaid/model/cra_prediction_interval.py +++ b/plaid/model/cra_prediction_interval.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_projected_modeled_income.py b/plaid/model/cra_projected_modeled_income.py index 449c4ed81..3d9cc623a 100644 --- a/plaid/model/cra_projected_modeled_income.py +++ b/plaid/model/cra_projected_modeled_income.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_report_decision_stage.py b/plaid/model/cra_report_decision_stage.py index b9ad83c62..7e245ada1 100644 --- a/plaid/model/cra_report_decision_stage.py +++ b/plaid/model/cra_report_decision_stage.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_report_get_product_attributes.py b/plaid/model/cra_report_get_product_attributes.py index c25124291..169fe5ba9 100644 --- a/plaid/model/cra_report_get_product_attributes.py +++ b/plaid/model/cra_report_get_product_attributes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_report_get_product_metadata.py b/plaid/model/cra_report_get_product_metadata.py index 908d5d9d4..d360eddb7 100644 --- a/plaid/model/cra_report_get_product_metadata.py +++ b/plaid/model/cra_report_get_product_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_report_get_report.py b/plaid/model/cra_report_get_report.py index ad29573a8..9fa0e305e 100644 --- a/plaid/model/cra_report_get_report.py +++ b/plaid/model/cra_report_get_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_report_get_request.py b/plaid/model/cra_report_get_request.py index 83887aaa2..4d9510ffb 100644 --- a/plaid/model/cra_report_get_request.py +++ b/plaid/model/cra_report_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_report_get_request_product.py b/plaid/model/cra_report_get_request_product.py index a279a4157..589e3abf7 100644 --- a/plaid/model/cra_report_get_request_product.py +++ b/plaid/model/cra_report_get_request_product.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_report_get_response.py b/plaid/model/cra_report_get_response.py index 873ab0e15..ab58090e5 100644 --- a/plaid/model/cra_report_get_response.py +++ b/plaid/model/cra_report_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_report_get_response_product.py b/plaid/model/cra_report_get_response_product.py index c9c5fb8bf..fea3c6339 100644 --- a/plaid/model/cra_report_get_response_product.py +++ b/plaid/model/cra_report_get_response_product.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_report_scope.py b/plaid/model/cra_report_scope.py index 36da600e3..01323b5df 100644 --- a/plaid/model/cra_report_scope.py +++ b/plaid/model/cra_report_scope.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_upgrade_failed_webhook.py b/plaid/model/cra_upgrade_failed_webhook.py index 324100ec8..d32c146d8 100644 --- a/plaid/model/cra_upgrade_failed_webhook.py +++ b/plaid/model/cra_upgrade_failed_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_user_check_report_failed_webhook.py b/plaid/model/cra_user_check_report_failed_webhook.py index 545a5a955..e3f6681e6 100644 --- a/plaid/model/cra_user_check_report_failed_webhook.py +++ b/plaid/model/cra_user_check_report_failed_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_user_check_report_ready_webhook.py b/plaid/model/cra_user_check_report_ready_webhook.py index 094980941..9005a0db3 100644 --- a/plaid/model/cra_user_check_report_ready_webhook.py +++ b/plaid/model/cra_user_check_report_ready_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_user_tier.py b/plaid/model/cra_user_tier.py index f55946951..45f949067 100644 --- a/plaid/model/cra_user_tier.py +++ b/plaid/model/cra_user_tier.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_verification_income_account.py b/plaid/model/cra_verification_income_account.py index 4a7cafe31..426e392bb 100644 --- a/plaid/model/cra_verification_income_account.py +++ b/plaid/model/cra_verification_income_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_verification_income_category.py b/plaid/model/cra_verification_income_category.py index 8d54c5277..6820261dd 100644 --- a/plaid/model/cra_verification_income_category.py +++ b/plaid/model/cra_verification_income_category.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_verification_income_item.py b/plaid/model/cra_verification_income_item.py index 0e60c6274..8cec88cb1 100644 --- a/plaid/model/cra_verification_income_item.py +++ b/plaid/model/cra_verification_income_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_verification_income_metrics.py b/plaid/model/cra_verification_income_metrics.py index 6a355a288..5ff03f136 100644 --- a/plaid/model/cra_verification_income_metrics.py +++ b/plaid/model/cra_verification_income_metrics.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_verification_income_next_payment.py b/plaid/model/cra_verification_income_next_payment.py index d321fe2dc..be4716d59 100644 --- a/plaid/model/cra_verification_income_next_payment.py +++ b/plaid/model/cra_verification_income_next_payment.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_verification_income_pay_frequency.py b/plaid/model/cra_verification_income_pay_frequency.py index 6f8e03b5f..f424f412e 100644 --- a/plaid/model/cra_verification_income_pay_frequency.py +++ b/plaid/model/cra_verification_income_pay_frequency.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_verification_income_provider.py b/plaid/model/cra_verification_income_provider.py index eeaa3b4c6..ff243617e 100644 --- a/plaid/model/cra_verification_income_provider.py +++ b/plaid/model/cra_verification_income_provider.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_verification_income_report.py b/plaid/model/cra_verification_income_report.py index 85d4ba917..e02753dc3 100644 --- a/plaid/model/cra_verification_income_report.py +++ b/plaid/model/cra_verification_income_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_verification_income_status.py b/plaid/model/cra_verification_income_status.py index 34470a492..e6abdfb13 100644 --- a/plaid/model/cra_verification_income_status.py +++ b/plaid/model/cra_verification_income_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_verification_income_stream.py b/plaid/model/cra_verification_income_stream.py index 3535d2701..11edb2fb9 100644 --- a/plaid/model/cra_verification_income_stream.py +++ b/plaid/model/cra_verification_income_stream.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_verification_income_stream_insights.py b/plaid/model/cra_verification_income_stream_insights.py index 8cb9efaac..879c57e54 100644 --- a/plaid/model/cra_verification_income_stream_insights.py +++ b/plaid/model/cra_verification_income_stream_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_verification_income_transaction.py b/plaid/model/cra_verification_income_transaction.py index bc1aad6f6..149f2411d 100644 --- a/plaid/model/cra_verification_income_transaction.py +++ b/plaid/model/cra_verification_income_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_verification_income_transaction_outlier.py b/plaid/model/cra_verification_income_transaction_outlier.py index 08158c7ee..66f96c4f3 100644 --- a/plaid/model/cra_verification_income_transaction_outlier.py +++ b/plaid/model/cra_verification_income_transaction_outlier.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_verification_income_user_summary.py b/plaid/model/cra_verification_income_user_summary.py index f1268222e..97d2b4916 100644 --- a/plaid/model/cra_verification_income_user_summary.py +++ b/plaid/model/cra_verification_income_user_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_verification_income_values.py b/plaid/model/cra_verification_income_values.py index 0f0acb3b3..4ddd95e04 100644 --- a/plaid/model/cra_verification_income_values.py +++ b/plaid/model/cra_verification_income_values.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_verification_modeled_income.py b/plaid/model/cra_verification_modeled_income.py index 0022bea8e..83e5bb593 100644 --- a/plaid/model/cra_verification_modeled_income.py +++ b/plaid/model/cra_verification_modeled_income.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_verification_report.py b/plaid/model/cra_verification_report.py index bd853d531..5631c451b 100644 --- a/plaid/model/cra_verification_report.py +++ b/plaid/model/cra_verification_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_voa_report.py b/plaid/model/cra_voa_report.py index e4f3e228a..9e45715cd 100644 --- a/plaid/model/cra_voa_report.py +++ b/plaid/model/cra_voa_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_voa_report_account.py b/plaid/model/cra_voa_report_account.py index 52216d173..90c9e549d 100644 --- a/plaid/model/cra_voa_report_account.py +++ b/plaid/model/cra_voa_report_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_voa_report_account_balances.py b/plaid/model/cra_voa_report_account_balances.py index 7ff331a20..1d7e28bdf 100644 --- a/plaid/model/cra_voa_report_account_balances.py +++ b/plaid/model/cra_voa_report_account_balances.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_voa_report_account_historical_balance.py b/plaid/model/cra_voa_report_account_historical_balance.py index 7ea2eef6e..55b3cbc1b 100644 --- a/plaid/model/cra_voa_report_account_historical_balance.py +++ b/plaid/model/cra_voa_report_account_historical_balance.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_voa_report_attributes.py b/plaid/model/cra_voa_report_attributes.py index f3a61c2a3..75bff2004 100644 --- a/plaid/model/cra_voa_report_attributes.py +++ b/plaid/model/cra_voa_report_attributes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_voa_report_item.py b/plaid/model/cra_voa_report_item.py index 1433ab7fb..934849359 100644 --- a/plaid/model/cra_voa_report_item.py +++ b/plaid/model/cra_voa_report_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_voa_report_transactions_insights.py b/plaid/model/cra_voa_report_transactions_insights.py index c6ad47a84..4db915d25 100644 --- a/plaid/model/cra_voa_report_transactions_insights.py +++ b/plaid/model/cra_voa_report_transactions_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit1099.py b/plaid/model/credit1099.py index c0fd4169b..bac7d5431 100644 --- a/plaid/model/credit1099.py +++ b/plaid/model/credit1099.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit1099_filer.py b/plaid/model/credit1099_filer.py index b98b45b7a..5580c08fd 100644 --- a/plaid/model/credit1099_filer.py +++ b/plaid/model/credit1099_filer.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit1099_payer.py b/plaid/model/credit1099_payer.py index a426fe5c8..9845e1732 100644 --- a/plaid/model/credit1099_payer.py +++ b/plaid/model/credit1099_payer.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit1099_recipient.py b/plaid/model/credit1099_recipient.py index d66157a94..a41fd0d3b 100644 --- a/plaid/model/credit1099_recipient.py +++ b/plaid/model/credit1099_recipient.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_account_subtype.py b/plaid/model/credit_account_subtype.py index 5c4eb56fa..e00caded3 100644 --- a/plaid/model/credit_account_subtype.py +++ b/plaid/model/credit_account_subtype.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_account_subtypes.py b/plaid/model/credit_account_subtypes.py index 6079de26b..73af703e6 100644 --- a/plaid/model/credit_account_subtypes.py +++ b/plaid/model/credit_account_subtypes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_ach_class.py b/plaid/model/credit_ach_class.py index 7277613ea..25e7a9b4b 100644 --- a/plaid/model/credit_ach_class.py +++ b/plaid/model/credit_ach_class.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_amount_with_currency.py b/plaid/model/credit_amount_with_currency.py index e825e72ae..b95caea38 100644 --- a/plaid/model/credit_amount_with_currency.py +++ b/plaid/model/credit_amount_with_currency.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_audit_copy_token_create_request.py b/plaid/model/credit_audit_copy_token_create_request.py index c64cb2038..dac85a685 100644 --- a/plaid/model/credit_audit_copy_token_create_request.py +++ b/plaid/model/credit_audit_copy_token_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_audit_copy_token_create_response.py b/plaid/model/credit_audit_copy_token_create_response.py index 77cde05e1..944d89e31 100644 --- a/plaid/model/credit_audit_copy_token_create_response.py +++ b/plaid/model/credit_audit_copy_token_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_audit_copy_token_remove_request.py b/plaid/model/credit_audit_copy_token_remove_request.py index 676a37dbd..d27001d90 100644 --- a/plaid/model/credit_audit_copy_token_remove_request.py +++ b/plaid/model/credit_audit_copy_token_remove_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_audit_copy_token_remove_response.py b/plaid/model/credit_audit_copy_token_remove_response.py index c9845e23d..06a86c20f 100644 --- a/plaid/model/credit_audit_copy_token_remove_response.py +++ b/plaid/model/credit_audit_copy_token_remove_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_audit_copy_token_update_request.py b/plaid/model/credit_audit_copy_token_update_request.py index 42a297a02..bc7391144 100644 --- a/plaid/model/credit_audit_copy_token_update_request.py +++ b/plaid/model/credit_audit_copy_token_update_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_audit_copy_token_update_response.py b/plaid/model/credit_audit_copy_token_update_response.py index c56ac9628..ba72cc815 100644 --- a/plaid/model/credit_audit_copy_token_update_response.py +++ b/plaid/model/credit_audit_copy_token_update_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_employer.py b/plaid/model/credit_bank_employer.py index ef8bf2591..11bfc2e4e 100644 --- a/plaid/model/credit_bank_employer.py +++ b/plaid/model/credit_bank_employer.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_employment.py b/plaid/model/credit_bank_employment.py index 4de0d0919..6019f32b5 100644 --- a/plaid/model/credit_bank_employment.py +++ b/plaid/model/credit_bank_employment.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_employment_get_request.py b/plaid/model/credit_bank_employment_get_request.py index fdf09e3bf..452a77cd7 100644 --- a/plaid/model/credit_bank_employment_get_request.py +++ b/plaid/model/credit_bank_employment_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_employment_get_response.py b/plaid/model/credit_bank_employment_get_response.py index 51dd68f17..bac13a42a 100644 --- a/plaid/model/credit_bank_employment_get_response.py +++ b/plaid/model/credit_bank_employment_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_employment_item.py b/plaid/model/credit_bank_employment_item.py index b7806c050..684952e76 100644 --- a/plaid/model/credit_bank_employment_item.py +++ b/plaid/model/credit_bank_employment_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_employment_report.py b/plaid/model/credit_bank_employment_report.py index 14ee80101..b186489b9 100644 --- a/plaid/model/credit_bank_employment_report.py +++ b/plaid/model/credit_bank_employment_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_employment_warning.py b/plaid/model/credit_bank_employment_warning.py index 061bb8beb..872ea7d29 100644 --- a/plaid/model/credit_bank_employment_warning.py +++ b/plaid/model/credit_bank_employment_warning.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_employment_warning_type.py b/plaid/model/credit_bank_employment_warning_type.py index af5d6e090..87f2b126d 100644 --- a/plaid/model/credit_bank_employment_warning_type.py +++ b/plaid/model/credit_bank_employment_warning_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income.py b/plaid/model/credit_bank_income.py index ce22b40d7..74011d065 100644 --- a/plaid/model/credit_bank_income.py +++ b/plaid/model/credit_bank_income.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_account.py b/plaid/model/credit_bank_income_account.py index efe7a9a77..8fbd78e38 100644 --- a/plaid/model/credit_bank_income_account.py +++ b/plaid/model/credit_bank_income_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_account_type.py b/plaid/model/credit_bank_income_account_type.py index b0fd05f5d..539abed7f 100644 --- a/plaid/model/credit_bank_income_account_type.py +++ b/plaid/model/credit_bank_income_account_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_category.py b/plaid/model/credit_bank_income_category.py index fa2fe8317..1d52cd2d6 100644 --- a/plaid/model/credit_bank_income_category.py +++ b/plaid/model/credit_bank_income_category.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_cause.py b/plaid/model/credit_bank_income_cause.py index 3f12c5419..6f635b2c7 100644 --- a/plaid/model/credit_bank_income_cause.py +++ b/plaid/model/credit_bank_income_cause.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_error_type.py b/plaid/model/credit_bank_income_error_type.py index 54da98229..fb8bb022d 100644 --- a/plaid/model/credit_bank_income_error_type.py +++ b/plaid/model/credit_bank_income_error_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_get_request.py b/plaid/model/credit_bank_income_get_request.py index a8aaebba3..ddde8febc 100644 --- a/plaid/model/credit_bank_income_get_request.py +++ b/plaid/model/credit_bank_income_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_get_request_options.py b/plaid/model/credit_bank_income_get_request_options.py index 8ba3a7fed..e1443157c 100644 --- a/plaid/model/credit_bank_income_get_request_options.py +++ b/plaid/model/credit_bank_income_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_get_response.py b/plaid/model/credit_bank_income_get_response.py index 90049b32e..5a57aa0f9 100644 --- a/plaid/model/credit_bank_income_get_response.py +++ b/plaid/model/credit_bank_income_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_historical_summary.py b/plaid/model/credit_bank_income_historical_summary.py index 876cd5fe6..e6acf8572 100644 --- a/plaid/model/credit_bank_income_historical_summary.py +++ b/plaid/model/credit_bank_income_historical_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_item.py b/plaid/model/credit_bank_income_item.py index 1dc09b44d..54227f3ec 100644 --- a/plaid/model/credit_bank_income_item.py +++ b/plaid/model/credit_bank_income_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_pay_frequency.py b/plaid/model/credit_bank_income_pay_frequency.py index e0839e9b5..84e92a7dd 100644 --- a/plaid/model/credit_bank_income_pay_frequency.py +++ b/plaid/model/credit_bank_income_pay_frequency.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_pdf_get_request.py b/plaid/model/credit_bank_income_pdf_get_request.py index ce90a8102..e954f5bad 100644 --- a/plaid/model/credit_bank_income_pdf_get_request.py +++ b/plaid/model/credit_bank_income_pdf_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_refresh_request.py b/plaid/model/credit_bank_income_refresh_request.py index 1214a069b..732b0f2b4 100644 --- a/plaid/model/credit_bank_income_refresh_request.py +++ b/plaid/model/credit_bank_income_refresh_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_refresh_request_options.py b/plaid/model/credit_bank_income_refresh_request_options.py index 4c28a9681..09e9b3024 100644 --- a/plaid/model/credit_bank_income_refresh_request_options.py +++ b/plaid/model/credit_bank_income_refresh_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_refresh_response.py b/plaid/model/credit_bank_income_refresh_response.py index 3afc2cbba..da2574692 100644 --- a/plaid/model/credit_bank_income_refresh_response.py +++ b/plaid/model/credit_bank_income_refresh_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_source.py b/plaid/model/credit_bank_income_source.py index 59b6f5436..50f9a9a88 100644 --- a/plaid/model/credit_bank_income_source.py +++ b/plaid/model/credit_bank_income_source.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_summary.py b/plaid/model/credit_bank_income_summary.py index c06abb982..21e52c7b1 100644 --- a/plaid/model/credit_bank_income_summary.py +++ b/plaid/model/credit_bank_income_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_transaction.py b/plaid/model/credit_bank_income_transaction.py index a8e12c271..c58343dcc 100644 --- a/plaid/model/credit_bank_income_transaction.py +++ b/plaid/model/credit_bank_income_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_warning.py b/plaid/model/credit_bank_income_warning.py index cac861dfc..f5912a8c5 100644 --- a/plaid/model/credit_bank_income_warning.py +++ b/plaid/model/credit_bank_income_warning.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_warning_code.py b/plaid/model/credit_bank_income_warning_code.py index 4c350951a..f473acc04 100644 --- a/plaid/model/credit_bank_income_warning_code.py +++ b/plaid/model/credit_bank_income_warning_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_warning_type.py b/plaid/model/credit_bank_income_warning_type.py index 7e06dd23d..6d2a16039 100644 --- a/plaid/model/credit_bank_income_warning_type.py +++ b/plaid/model/credit_bank_income_warning_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_webhook_update_request.py b/plaid/model/credit_bank_income_webhook_update_request.py index e5b4dc896..013652d57 100644 --- a/plaid/model/credit_bank_income_webhook_update_request.py +++ b/plaid/model/credit_bank_income_webhook_update_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income_webhook_update_response.py b/plaid/model/credit_bank_income_webhook_update_response.py index 889a22d1a..96f218bea 100644 --- a/plaid/model/credit_bank_income_webhook_update_response.py +++ b/plaid/model/credit_bank_income_webhook_update_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_statement_upload_account_owner.py b/plaid/model/credit_bank_statement_upload_account_owner.py index f5b353460..d37f39f1c 100644 --- a/plaid/model/credit_bank_statement_upload_account_owner.py +++ b/plaid/model/credit_bank_statement_upload_account_owner.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_statement_upload_account_owner_address.py b/plaid/model/credit_bank_statement_upload_account_owner_address.py index af1d3521d..e90278f66 100644 --- a/plaid/model/credit_bank_statement_upload_account_owner_address.py +++ b/plaid/model/credit_bank_statement_upload_account_owner_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_statement_upload_bank_account.py b/plaid/model/credit_bank_statement_upload_bank_account.py index 394767ece..662466734 100644 --- a/plaid/model/credit_bank_statement_upload_bank_account.py +++ b/plaid/model/credit_bank_statement_upload_bank_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_statement_upload_bank_account_period.py b/plaid/model/credit_bank_statement_upload_bank_account_period.py index b65f03cc5..7c8fcb798 100644 --- a/plaid/model/credit_bank_statement_upload_bank_account_period.py +++ b/plaid/model/credit_bank_statement_upload_bank_account_period.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_statement_upload_item.py b/plaid/model/credit_bank_statement_upload_item.py index 2e2d6c6a1..b6efbbc56 100644 --- a/plaid/model/credit_bank_statement_upload_item.py +++ b/plaid/model/credit_bank_statement_upload_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_statement_upload_object.py b/plaid/model/credit_bank_statement_upload_object.py index bcc3ffb61..ca70fce2b 100644 --- a/plaid/model/credit_bank_statement_upload_object.py +++ b/plaid/model/credit_bank_statement_upload_object.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_statement_upload_transaction.py b/plaid/model/credit_bank_statement_upload_transaction.py index 87ed942c1..0ee6d58e6 100644 --- a/plaid/model/credit_bank_statement_upload_transaction.py +++ b/plaid/model/credit_bank_statement_upload_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_statements_uploads_get_request.py b/plaid/model/credit_bank_statements_uploads_get_request.py index 4facdc0a7..9722b750a 100644 --- a/plaid/model/credit_bank_statements_uploads_get_request.py +++ b/plaid/model/credit_bank_statements_uploads_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ @@ -90,6 +90,7 @@ def openapi_types(): 'user_token': (str,), # noqa: E501 'client_id': (str,), # noqa: E501 'secret': (str,), # noqa: E501 + 'user_id': (bool, date, datetime, dict, float, int, list, str, none_type,), # noqa: E501 'options': (CreditBankStatementsUploadsGetRequestOptions,), # noqa: E501 } @@ -102,6 +103,7 @@ def discriminator(): 'user_token': 'user_token', # noqa: E501 'client_id': 'client_id', # noqa: E501 'secret': 'secret', # noqa: E501 + 'user_id': 'user_id', # noqa: E501 'options': 'options', # noqa: E501 } @@ -151,6 +153,7 @@ def _from_openapi_data(cls, user_token, *args, **kwargs): # noqa: E501 _visited_composed_classes = (Animal,) client_id (str): 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.. [optional] # noqa: E501 secret (str): 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.. [optional] # noqa: E501 + user_id (bool, date, datetime, dict, float, int, list, str, none_type): [optional] # noqa: E501 options (CreditBankStatementsUploadsGetRequestOptions): [optional] # noqa: E501 """ @@ -243,6 +246,7 @@ def __init__(self, user_token, *args, **kwargs): # noqa: E501 _visited_composed_classes = (Animal,) client_id (str): 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.. [optional] # noqa: E501 secret (str): 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.. [optional] # noqa: E501 + user_id (bool, date, datetime, dict, float, int, list, str, none_type): [optional] # noqa: E501 options (CreditBankStatementsUploadsGetRequestOptions): [optional] # noqa: E501 """ diff --git a/plaid/model/credit_bank_statements_uploads_get_request_options.py b/plaid/model/credit_bank_statements_uploads_get_request_options.py index 405be86e7..d0dcc7ae7 100644 --- a/plaid/model/credit_bank_statements_uploads_get_request_options.py +++ b/plaid/model/credit_bank_statements_uploads_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_statements_uploads_get_response.py b/plaid/model/credit_bank_statements_uploads_get_response.py index 0258ff73a..514d5b548 100644 --- a/plaid/model/credit_bank_statements_uploads_get_response.py +++ b/plaid/model/credit_bank_statements_uploads_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_card_liability.py b/plaid/model/credit_card_liability.py index d2dc89adc..c0e4984c6 100644 --- a/plaid/model/credit_card_liability.py +++ b/plaid/model/credit_card_liability.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_category.py b/plaid/model/credit_category.py index 5679aa0aa..39fdb45b7 100644 --- a/plaid/model/credit_category.py +++ b/plaid/model/credit_category.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_document_metadata.py b/plaid/model/credit_document_metadata.py index 68db0cdda..d7d825c2c 100644 --- a/plaid/model/credit_document_metadata.py +++ b/plaid/model/credit_document_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_employer_verification.py b/plaid/model/credit_employer_verification.py index 2985272c9..a7c5df8dc 100644 --- a/plaid/model/credit_employer_verification.py +++ b/plaid/model/credit_employer_verification.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_employment_get_request.py b/plaid/model/credit_employment_get_request.py index 630b98e0d..86173d234 100644 --- a/plaid/model/credit_employment_get_request.py +++ b/plaid/model/credit_employment_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_employment_get_response.py b/plaid/model/credit_employment_get_response.py index 6a1c72606..a2ea6341b 100644 --- a/plaid/model/credit_employment_get_response.py +++ b/plaid/model/credit_employment_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_employment_item.py b/plaid/model/credit_employment_item.py index 135a711a1..2b0b748c4 100644 --- a/plaid/model/credit_employment_item.py +++ b/plaid/model/credit_employment_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_employment_verification.py b/plaid/model/credit_employment_verification.py index 022e9d93e..c22767a3c 100644 --- a/plaid/model/credit_employment_verification.py +++ b/plaid/model/credit_employment_verification.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_filter.py b/plaid/model/credit_filter.py index 2579f2554..aa16f8bea 100644 --- a/plaid/model/credit_filter.py +++ b/plaid/model/credit_filter.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_asset.py b/plaid/model/credit_freddie_mac_asset.py index e69ab3bd7..921bf2e35 100644 --- a/plaid/model/credit_freddie_mac_asset.py +++ b/plaid/model/credit_freddie_mac_asset.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_asset_transaction.py b/plaid/model/credit_freddie_mac_asset_transaction.py index bd70231c1..b9b831192 100644 --- a/plaid/model/credit_freddie_mac_asset_transaction.py +++ b/plaid/model/credit_freddie_mac_asset_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_asset_transactions.py b/plaid/model/credit_freddie_mac_asset_transactions.py index 9ba8976c8..0021fe51b 100644 --- a/plaid/model/credit_freddie_mac_asset_transactions.py +++ b/plaid/model/credit_freddie_mac_asset_transactions.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_assets.py b/plaid/model/credit_freddie_mac_assets.py index b0b71fb66..4378ce57a 100644 --- a/plaid/model/credit_freddie_mac_assets.py +++ b/plaid/model/credit_freddie_mac_assets.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_individual_name.py b/plaid/model/credit_freddie_mac_individual_name.py index e409fe628..5d05e4c4d 100644 --- a/plaid/model/credit_freddie_mac_individual_name.py +++ b/plaid/model/credit_freddie_mac_individual_name.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_loan.py b/plaid/model/credit_freddie_mac_loan.py index f2e8b705c..278cf1341 100644 --- a/plaid/model/credit_freddie_mac_loan.py +++ b/plaid/model/credit_freddie_mac_loan.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_loan_identifiers.py b/plaid/model/credit_freddie_mac_loan_identifiers.py index 325e519ba..306016bf1 100644 --- a/plaid/model/credit_freddie_mac_loan_identifiers.py +++ b/plaid/model/credit_freddie_mac_loan_identifiers.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_loans.py b/plaid/model/credit_freddie_mac_loans.py index 513b3b7e2..f0086a47d 100644 --- a/plaid/model/credit_freddie_mac_loans.py +++ b/plaid/model/credit_freddie_mac_loans.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_parties.py b/plaid/model/credit_freddie_mac_parties.py index 4a06b95dd..63ad7f48d 100644 --- a/plaid/model/credit_freddie_mac_parties.py +++ b/plaid/model/credit_freddie_mac_parties.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_party.py b/plaid/model/credit_freddie_mac_party.py index 032e9f7a4..bc80588c6 100644 --- a/plaid/model/credit_freddie_mac_party.py +++ b/plaid/model/credit_freddie_mac_party.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_party_individual.py b/plaid/model/credit_freddie_mac_party_individual.py index cb9835547..c9d2e779b 100644 --- a/plaid/model/credit_freddie_mac_party_individual.py +++ b/plaid/model/credit_freddie_mac_party_individual.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_reporting_information.py b/plaid/model/credit_freddie_mac_reporting_information.py index d251a2339..509eec9a1 100644 --- a/plaid/model/credit_freddie_mac_reporting_information.py +++ b/plaid/model/credit_freddie_mac_reporting_information.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_reports_get_request.py b/plaid/model/credit_freddie_mac_reports_get_request.py index c91a3d1c5..f5052537d 100644 --- a/plaid/model/credit_freddie_mac_reports_get_request.py +++ b/plaid/model/credit_freddie_mac_reports_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_reports_get_response.py b/plaid/model/credit_freddie_mac_reports_get_response.py index 51d993df2..8b3f0be36 100644 --- a/plaid/model/credit_freddie_mac_reports_get_response.py +++ b/plaid/model/credit_freddie_mac_reports_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_service.py b/plaid/model/credit_freddie_mac_service.py index e28fc0164..80f90d95a 100644 --- a/plaid/model/credit_freddie_mac_service.py +++ b/plaid/model/credit_freddie_mac_service.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_services.py b/plaid/model/credit_freddie_mac_services.py index 9b5806629..aab2badd6 100644 --- a/plaid/model/credit_freddie_mac_services.py +++ b/plaid/model/credit_freddie_mac_services.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_verification_of_asset.py b/plaid/model/credit_freddie_mac_verification_of_asset.py index ae39acee9..30c38b477 100644 --- a/plaid/model/credit_freddie_mac_verification_of_asset.py +++ b/plaid/model/credit_freddie_mac_verification_of_asset.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_verification_of_asset_response.py b/plaid/model/credit_freddie_mac_verification_of_asset_response.py index c76958a2d..3eb21877f 100644 --- a/plaid/model/credit_freddie_mac_verification_of_asset_response.py +++ b/plaid/model/credit_freddie_mac_verification_of_asset_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_freddie_mac_verification_of_assets_deal.py b/plaid/model/credit_freddie_mac_verification_of_assets_deal.py index fc78edf88..9c571baea 100644 --- a/plaid/model/credit_freddie_mac_verification_of_assets_deal.py +++ b/plaid/model/credit_freddie_mac_verification_of_assets_deal.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_i20.py b/plaid/model/credit_i20.py index ee8a58871..ae31a8a78 100644 --- a/plaid/model/credit_i20.py +++ b/plaid/model/credit_i20.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_i20_student.py b/plaid/model/credit_i20_student.py index 648fc77a3..6449adc39 100644 --- a/plaid/model/credit_i20_student.py +++ b/plaid/model/credit_i20_student.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_pay_stub.py b/plaid/model/credit_pay_stub.py index d8340e0d0..9ac16140b 100644 --- a/plaid/model/credit_pay_stub.py +++ b/plaid/model/credit_pay_stub.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_pay_stub_address.py b/plaid/model/credit_pay_stub_address.py index a66d8d449..281e7c791 100644 --- a/plaid/model/credit_pay_stub_address.py +++ b/plaid/model/credit_pay_stub_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_pay_stub_deductions.py b/plaid/model/credit_pay_stub_deductions.py index 0c71684e7..aa5da9477 100644 --- a/plaid/model/credit_pay_stub_deductions.py +++ b/plaid/model/credit_pay_stub_deductions.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_pay_stub_earnings.py b/plaid/model/credit_pay_stub_earnings.py index 52cc41aba..d4a8a0b1b 100644 --- a/plaid/model/credit_pay_stub_earnings.py +++ b/plaid/model/credit_pay_stub_earnings.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_pay_stub_employee.py b/plaid/model/credit_pay_stub_employee.py index 27e5cdce8..e7048ae0c 100644 --- a/plaid/model/credit_pay_stub_employee.py +++ b/plaid/model/credit_pay_stub_employee.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_pay_stub_employer.py b/plaid/model/credit_pay_stub_employer.py index 006466b5a..c986aec30 100644 --- a/plaid/model/credit_pay_stub_employer.py +++ b/plaid/model/credit_pay_stub_employer.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_pay_stub_net_pay.py b/plaid/model/credit_pay_stub_net_pay.py index 09610ab56..1d15418bf 100644 --- a/plaid/model/credit_pay_stub_net_pay.py +++ b/plaid/model/credit_pay_stub_net_pay.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_pay_stub_pay_basis_type.py b/plaid/model/credit_pay_stub_pay_basis_type.py index e85992907..b73d6f852 100644 --- a/plaid/model/credit_pay_stub_pay_basis_type.py +++ b/plaid/model/credit_pay_stub_pay_basis_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_payroll_income_get_request.py b/plaid/model/credit_payroll_income_get_request.py index b5c811bd9..7e66218e8 100644 --- a/plaid/model/credit_payroll_income_get_request.py +++ b/plaid/model/credit_payroll_income_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_payroll_income_get_request_options.py b/plaid/model/credit_payroll_income_get_request_options.py index 6b0b6a334..cd6442fe1 100644 --- a/plaid/model/credit_payroll_income_get_request_options.py +++ b/plaid/model/credit_payroll_income_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_payroll_income_get_response.py b/plaid/model/credit_payroll_income_get_response.py index 0a82aa34b..c601fdf5b 100644 --- a/plaid/model/credit_payroll_income_get_response.py +++ b/plaid/model/credit_payroll_income_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_payroll_income_parsing_config_update_request.py b/plaid/model/credit_payroll_income_parsing_config_update_request.py index f8759ee3c..5f2d9ddc1 100644 --- a/plaid/model/credit_payroll_income_parsing_config_update_request.py +++ b/plaid/model/credit_payroll_income_parsing_config_update_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_payroll_income_parsing_config_update_response.py b/plaid/model/credit_payroll_income_parsing_config_update_response.py index 351b78abc..98d74941a 100644 --- a/plaid/model/credit_payroll_income_parsing_config_update_response.py +++ b/plaid/model/credit_payroll_income_parsing_config_update_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_payroll_income_precheck_request.py b/plaid/model/credit_payroll_income_precheck_request.py index 3d4b6cfc5..f1c11bc76 100644 --- a/plaid/model/credit_payroll_income_precheck_request.py +++ b/plaid/model/credit_payroll_income_precheck_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_payroll_income_precheck_response.py b/plaid/model/credit_payroll_income_precheck_response.py index 2e7a8b19e..5f4952b3c 100644 --- a/plaid/model/credit_payroll_income_precheck_response.py +++ b/plaid/model/credit_payroll_income_precheck_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_payroll_income_refresh_request.py b/plaid/model/credit_payroll_income_refresh_request.py index 2ebc7e68f..10592c1e5 100644 --- a/plaid/model/credit_payroll_income_refresh_request.py +++ b/plaid/model/credit_payroll_income_refresh_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_payroll_income_refresh_request_options.py b/plaid/model/credit_payroll_income_refresh_request_options.py index 0dea0f346..f9bb65f53 100644 --- a/plaid/model/credit_payroll_income_refresh_request_options.py +++ b/plaid/model/credit_payroll_income_refresh_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_payroll_income_refresh_response.py b/plaid/model/credit_payroll_income_refresh_response.py index dbbb3a777..201f8a140 100644 --- a/plaid/model/credit_payroll_income_refresh_response.py +++ b/plaid/model/credit_payroll_income_refresh_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_payroll_income_risk_signals_get_request.py b/plaid/model/credit_payroll_income_risk_signals_get_request.py index e5efb85ea..2c90ae22f 100644 --- a/plaid/model/credit_payroll_income_risk_signals_get_request.py +++ b/plaid/model/credit_payroll_income_risk_signals_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_payroll_income_risk_signals_get_response.py b/plaid/model/credit_payroll_income_risk_signals_get_response.py index 5504617b0..5655650b7 100644 --- a/plaid/model/credit_payroll_income_risk_signals_get_response.py +++ b/plaid/model/credit_payroll_income_risk_signals_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_platform_ids.py b/plaid/model/credit_platform_ids.py index 23eed6c79..720aaa494 100644 --- a/plaid/model/credit_platform_ids.py +++ b/plaid/model/credit_platform_ids.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_relay_create_request.py b/plaid/model/credit_relay_create_request.py index 4d2470370..71cba5dd5 100644 --- a/plaid/model/credit_relay_create_request.py +++ b/plaid/model/credit_relay_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_relay_create_response.py b/plaid/model/credit_relay_create_response.py index 7aa38c1bd..ec3e1150e 100644 --- a/plaid/model/credit_relay_create_response.py +++ b/plaid/model/credit_relay_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_relay_get_request.py b/plaid/model/credit_relay_get_request.py index 2a74a18c3..2aaaacef3 100644 --- a/plaid/model/credit_relay_get_request.py +++ b/plaid/model/credit_relay_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_relay_pdf_get_request.py b/plaid/model/credit_relay_pdf_get_request.py index b3b305bbe..0607191a8 100644 --- a/plaid/model/credit_relay_pdf_get_request.py +++ b/plaid/model/credit_relay_pdf_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_relay_refresh_request.py b/plaid/model/credit_relay_refresh_request.py index 946a05d98..4a9abe467 100644 --- a/plaid/model/credit_relay_refresh_request.py +++ b/plaid/model/credit_relay_refresh_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_relay_refresh_response.py b/plaid/model/credit_relay_refresh_response.py index 148f63d7d..8276e406b 100644 --- a/plaid/model/credit_relay_refresh_response.py +++ b/plaid/model/credit_relay_refresh_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_relay_remove_request.py b/plaid/model/credit_relay_remove_request.py index 60d687f7e..177d8e6bf 100644 --- a/plaid/model/credit_relay_remove_request.py +++ b/plaid/model/credit_relay_remove_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_relay_remove_response.py b/plaid/model/credit_relay_remove_response.py index b4df4341c..1c2cf211c 100644 --- a/plaid/model/credit_relay_remove_response.py +++ b/plaid/model/credit_relay_remove_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_session.py b/plaid/model/credit_session.py index 783ec41b0..0cfe9ce5d 100644 --- a/plaid/model/credit_session.py +++ b/plaid/model/credit_session.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_session_bank_employment_result.py b/plaid/model/credit_session_bank_employment_result.py index 8e0bc94e5..8d9bef56c 100644 --- a/plaid/model/credit_session_bank_employment_result.py +++ b/plaid/model/credit_session_bank_employment_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_session_bank_employment_status.py b/plaid/model/credit_session_bank_employment_status.py index a57bcbf70..0d78e9cee 100644 --- a/plaid/model/credit_session_bank_employment_status.py +++ b/plaid/model/credit_session_bank_employment_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_session_bank_income_result.py b/plaid/model/credit_session_bank_income_result.py index 5a1dcd1d2..4155abe56 100644 --- a/plaid/model/credit_session_bank_income_result.py +++ b/plaid/model/credit_session_bank_income_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_session_bank_income_status.py b/plaid/model/credit_session_bank_income_status.py index 6b3997a85..22db07f81 100644 --- a/plaid/model/credit_session_bank_income_status.py +++ b/plaid/model/credit_session_bank_income_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_session_document_income_result.py b/plaid/model/credit_session_document_income_result.py index 2d1a710bf..a68d5bfde 100644 --- a/plaid/model/credit_session_document_income_result.py +++ b/plaid/model/credit_session_document_income_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_session_error.py b/plaid/model/credit_session_error.py index 34e25f540..b5859458f 100644 --- a/plaid/model/credit_session_error.py +++ b/plaid/model/credit_session_error.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_session_item_add_result.py b/plaid/model/credit_session_item_add_result.py index d7cfbcc8c..925b64fea 100644 --- a/plaid/model/credit_session_item_add_result.py +++ b/plaid/model/credit_session_item_add_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_session_payroll_income_result.py b/plaid/model/credit_session_payroll_income_result.py index ff2239af8..035e35bff 100644 --- a/plaid/model/credit_session_payroll_income_result.py +++ b/plaid/model/credit_session_payroll_income_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_session_results.py b/plaid/model/credit_session_results.py index eec3b4fa7..735d8db19 100644 --- a/plaid/model/credit_session_results.py +++ b/plaid/model/credit_session_results.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_sessions_get_request.py b/plaid/model/credit_sessions_get_request.py index 15dd39bab..8d1546199 100644 --- a/plaid/model/credit_sessions_get_request.py +++ b/plaid/model/credit_sessions_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ @@ -84,6 +84,7 @@ def openapi_types(): 'user_token': (str,), # noqa: E501 'client_id': (str,), # noqa: E501 'secret': (str,), # noqa: E501 + 'user_id': (bool, date, datetime, dict, float, int, list, str, none_type,), # noqa: E501 } @cached_property @@ -95,6 +96,7 @@ def discriminator(): 'user_token': 'user_token', # noqa: E501 'client_id': 'client_id', # noqa: E501 'secret': 'secret', # noqa: E501 + 'user_id': 'user_id', # noqa: E501 } read_only_vars = { @@ -143,6 +145,7 @@ def _from_openapi_data(cls, user_token, *args, **kwargs): # noqa: E501 _visited_composed_classes = (Animal,) client_id (str): 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.. [optional] # noqa: E501 secret (str): 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.. [optional] # noqa: E501 + user_id (bool, date, datetime, dict, float, int, list, str, none_type): [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -234,6 +237,7 @@ def __init__(self, user_token, *args, **kwargs): # noqa: E501 _visited_composed_classes = (Animal,) client_id (str): 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.. [optional] # noqa: E501 secret (str): 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.. [optional] # noqa: E501 + user_id (bool, date, datetime, dict, float, int, list, str, none_type): [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/plaid/model/credit_sessions_get_response.py b/plaid/model/credit_sessions_get_response.py index a955116e4..5f12b8563 100644 --- a/plaid/model/credit_sessions_get_response.py +++ b/plaid/model/credit_sessions_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_w2.py b/plaid/model/credit_w2.py index 9ece827dc..09715d869 100644 --- a/plaid/model/credit_w2.py +++ b/plaid/model/credit_w2.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/custom_sandbox_transaction.py b/plaid/model/custom_sandbox_transaction.py index 69241a104..228864459 100644 --- a/plaid/model/custom_sandbox_transaction.py +++ b/plaid/model/custom_sandbox_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/customer_initiated_return_risk.py b/plaid/model/customer_initiated_return_risk.py index e17787771..b009f5c1b 100644 --- a/plaid/model/customer_initiated_return_risk.py +++ b/plaid/model/customer_initiated_return_risk.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/customer_initiated_risk_tier.py b/plaid/model/customer_initiated_risk_tier.py index d099ec3ca..684804ed2 100644 --- a/plaid/model/customer_initiated_risk_tier.py +++ b/plaid/model/customer_initiated_risk_tier.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/dashboard_user.py b/plaid/model/dashboard_user.py index 9d9d3f145..bf3710215 100644 --- a/plaid/model/dashboard_user.py +++ b/plaid/model/dashboard_user.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/dashboard_user_get_request.py b/plaid/model/dashboard_user_get_request.py index c0fd72269..386838bc2 100644 --- a/plaid/model/dashboard_user_get_request.py +++ b/plaid/model/dashboard_user_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/dashboard_user_get_response.py b/plaid/model/dashboard_user_get_response.py index 8dbf53724..ae8063c9d 100644 --- a/plaid/model/dashboard_user_get_response.py +++ b/plaid/model/dashboard_user_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/dashboard_user_list_request.py b/plaid/model/dashboard_user_list_request.py index fbb94fd09..a43619254 100644 --- a/plaid/model/dashboard_user_list_request.py +++ b/plaid/model/dashboard_user_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/dashboard_user_list_response.py b/plaid/model/dashboard_user_list_response.py index ac3e77b86..6e5b52b34 100644 --- a/plaid/model/dashboard_user_list_response.py +++ b/plaid/model/dashboard_user_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/dashboard_user_status.py b/plaid/model/dashboard_user_status.py index 737399d25..478bbd819 100644 --- a/plaid/model/dashboard_user_status.py +++ b/plaid/model/dashboard_user_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/data_sources.py b/plaid/model/data_sources.py index 05a3d9cf7..0b7242b0a 100644 --- a/plaid/model/data_sources.py +++ b/plaid/model/data_sources.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/date_range.py b/plaid/model/date_range.py index dac2c3ddf..f377ab87b 100644 --- a/plaid/model/date_range.py +++ b/plaid/model/date_range.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deductions.py b/plaid/model/deductions.py index 13b641ea0..e82b05272 100644 --- a/plaid/model/deductions.py +++ b/plaid/model/deductions.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deductions_breakdown.py b/plaid/model/deductions_breakdown.py index 3fd50154a..77e8cadc3 100644 --- a/plaid/model/deductions_breakdown.py +++ b/plaid/model/deductions_breakdown.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deductions_total.py b/plaid/model/deductions_total.py index 076373547..e684bfab5 100644 --- a/plaid/model/deductions_total.py +++ b/plaid/model/deductions_total.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/default_update_webhook.py b/plaid/model/default_update_webhook.py index 02ff08300..6c88191d2 100644 --- a/plaid/model/default_update_webhook.py +++ b/plaid/model/default_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/depository_account_subtype.py b/plaid/model/depository_account_subtype.py index adb300d12..63a563ee6 100644 --- a/plaid/model/depository_account_subtype.py +++ b/plaid/model/depository_account_subtype.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/depository_account_subtypes.py b/plaid/model/depository_account_subtypes.py index feee8dbca..a6935acd2 100644 --- a/plaid/model/depository_account_subtypes.py +++ b/plaid/model/depository_account_subtypes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/depository_filter.py b/plaid/model/depository_filter.py index d8467bc85..2df5f3374 100644 --- a/plaid/model/depository_filter.py +++ b/plaid/model/depository_filter.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/detailed_originator.py b/plaid/model/detailed_originator.py index 231512616..00a056dd4 100644 --- a/plaid/model/detailed_originator.py +++ b/plaid/model/detailed_originator.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/detected_account.py b/plaid/model/detected_account.py index 3e5abfe38..d2da26d00 100644 --- a/plaid/model/detected_account.py +++ b/plaid/model/detected_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/device_id.py b/plaid/model/device_id.py index fbd6ae778..8219471ee 100644 --- a/plaid/model/device_id.py +++ b/plaid/model/device_id.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/distribution_breakdown.py b/plaid/model/distribution_breakdown.py index 8c20cde73..7e5be247b 100644 --- a/plaid/model/distribution_breakdown.py +++ b/plaid/model/distribution_breakdown.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/doc_type.py b/plaid/model/doc_type.py index 64be0c7de..58b50a835 100644 --- a/plaid/model/doc_type.py +++ b/plaid/model/doc_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_analysis.py b/plaid/model/document_analysis.py index 7633e82f3..c65d4787c 100644 --- a/plaid/model/document_analysis.py +++ b/plaid/model/document_analysis.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_authenticity_match_code.py b/plaid/model/document_authenticity_match_code.py index 6653f5a09..4141b058c 100644 --- a/plaid/model/document_authenticity_match_code.py +++ b/plaid/model/document_authenticity_match_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_date_of_birth_match_code.py b/plaid/model/document_date_of_birth_match_code.py index 619fb754a..17c71460b 100644 --- a/plaid/model/document_date_of_birth_match_code.py +++ b/plaid/model/document_date_of_birth_match_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_metadata.py b/plaid/model/document_metadata.py index fe47612c8..11c9cbced 100644 --- a/plaid/model/document_metadata.py +++ b/plaid/model/document_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_name_match_code.py b/plaid/model/document_name_match_code.py index 9a86f1471..a39eee50b 100644 --- a/plaid/model/document_name_match_code.py +++ b/plaid/model/document_name_match_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_risk_signal.py b/plaid/model/document_risk_signal.py index d4c00e192..1648c262c 100644 --- a/plaid/model/document_risk_signal.py +++ b/plaid/model/document_risk_signal.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_risk_signal_institution_metadata.py b/plaid/model/document_risk_signal_institution_metadata.py index e3baa676b..33ccf2b85 100644 --- a/plaid/model/document_risk_signal_institution_metadata.py +++ b/plaid/model/document_risk_signal_institution_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_risk_signals_object.py b/plaid/model/document_risk_signals_object.py index f59f95886..e1c17cf0b 100644 --- a/plaid/model/document_risk_signals_object.py +++ b/plaid/model/document_risk_signals_object.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_risk_summary.py b/plaid/model/document_risk_summary.py index 650f118ce..bf4cb1d67 100644 --- a/plaid/model/document_risk_summary.py +++ b/plaid/model/document_risk_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_status.py b/plaid/model/document_status.py index ec6e1ca3e..0904afd3c 100644 --- a/plaid/model/document_status.py +++ b/plaid/model/document_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/documentary_verification.py b/plaid/model/documentary_verification.py index 30bcd55ee..11c06302b 100644 --- a/plaid/model/documentary_verification.py +++ b/plaid/model/documentary_verification.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/documentary_verification_document.py b/plaid/model/documentary_verification_document.py index 8727d8adc..d5293a71b 100644 --- a/plaid/model/documentary_verification_document.py +++ b/plaid/model/documentary_verification_document.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/earnings.py b/plaid/model/earnings.py index 593a04efe..c964040c3 100644 --- a/plaid/model/earnings.py +++ b/plaid/model/earnings.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/earnings_breakdown.py b/plaid/model/earnings_breakdown.py index 1672ac993..f46f05323 100644 --- a/plaid/model/earnings_breakdown.py +++ b/plaid/model/earnings_breakdown.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/earnings_breakdown_canonical_description.py b/plaid/model/earnings_breakdown_canonical_description.py index c0cbd4c98..d05eb860f 100644 --- a/plaid/model/earnings_breakdown_canonical_description.py +++ b/plaid/model/earnings_breakdown_canonical_description.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/earnings_total.py b/plaid/model/earnings_total.py index 028edb714..c76163bd3 100644 --- a/plaid/model/earnings_total.py +++ b/plaid/model/earnings_total.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/email.py b/plaid/model/email.py index 581d1b50e..91c90d7e3 100644 --- a/plaid/model/email.py +++ b/plaid/model/email.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/email_address_match_score.py b/plaid/model/email_address_match_score.py index bf802df8e..e51dad38b 100644 --- a/plaid/model/email_address_match_score.py +++ b/plaid/model/email_address_match_score.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employee.py b/plaid/model/employee.py index 0c0c410af..01af5bf00 100644 --- a/plaid/model/employee.py +++ b/plaid/model/employee.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employee_income_summary_field_string.py b/plaid/model/employee_income_summary_field_string.py index c9c18caa1..442c4f460 100644 --- a/plaid/model/employee_income_summary_field_string.py +++ b/plaid/model/employee_income_summary_field_string.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employer.py b/plaid/model/employer.py index 9b6273d5d..068131666 100644 --- a/plaid/model/employer.py +++ b/plaid/model/employer.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employer_income_summary_field_string.py b/plaid/model/employer_income_summary_field_string.py index dcca514d4..f7ac74b29 100644 --- a/plaid/model/employer_income_summary_field_string.py +++ b/plaid/model/employer_income_summary_field_string.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employer_verification.py b/plaid/model/employer_verification.py index 79cf30d45..d0427db06 100644 --- a/plaid/model/employer_verification.py +++ b/plaid/model/employer_verification.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employers_search_request.py b/plaid/model/employers_search_request.py index 39429e465..0d35be7b2 100644 --- a/plaid/model/employers_search_request.py +++ b/plaid/model/employers_search_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employers_search_response.py b/plaid/model/employers_search_response.py index c48abc126..d8bd39a3c 100644 --- a/plaid/model/employers_search_response.py +++ b/plaid/model/employers_search_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employment_details.py b/plaid/model/employment_details.py index 68b2c8424..353b4f3b9 100644 --- a/plaid/model/employment_details.py +++ b/plaid/model/employment_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employment_source_type.py b/plaid/model/employment_source_type.py index 671b4228c..eb1f9a48a 100644 --- a/plaid/model/employment_source_type.py +++ b/plaid/model/employment_source_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employment_verification.py b/plaid/model/employment_verification.py index 361a1cecb..d97acd8a4 100644 --- a/plaid/model/employment_verification.py +++ b/plaid/model/employment_verification.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employment_verification_get_request.py b/plaid/model/employment_verification_get_request.py index 77ad76cfa..5a2fca13e 100644 --- a/plaid/model/employment_verification_get_request.py +++ b/plaid/model/employment_verification_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employment_verification_get_response.py b/plaid/model/employment_verification_get_response.py index 0f97a2524..37912c159 100644 --- a/plaid/model/employment_verification_get_response.py +++ b/plaid/model/employment_verification_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employment_verification_status.py b/plaid/model/employment_verification_status.py index 1b1a9e9bd..8eeabd9ab 100644 --- a/plaid/model/employment_verification_status.py +++ b/plaid/model/employment_verification_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/enhancements.py b/plaid/model/enhancements.py index 16c170954..157b759ed 100644 --- a/plaid/model/enhancements.py +++ b/plaid/model/enhancements.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/enrich_transaction_direction.py b/plaid/model/enrich_transaction_direction.py index e7eeba2d0..a681e3e55 100644 --- a/plaid/model/enrich_transaction_direction.py +++ b/plaid/model/enrich_transaction_direction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/enrichments.py b/plaid/model/enrichments.py index 8dfe2c1cc..d74d1dc9e 100644 --- a/plaid/model/enrichments.py +++ b/plaid/model/enrichments.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_document.py b/plaid/model/entity_document.py index 21e971fbb..b3dcd2a9f 100644 --- a/plaid/model/entity_document.py +++ b/plaid/model/entity_document.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_document_type.py b/plaid/model/entity_document_type.py index d45c25923..034a10900 100644 --- a/plaid/model/entity_document_type.py +++ b/plaid/model/entity_document_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_screening_hit_analysis.py b/plaid/model/entity_screening_hit_analysis.py index ba730038b..9b12afda6 100644 --- a/plaid/model/entity_screening_hit_analysis.py +++ b/plaid/model/entity_screening_hit_analysis.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_screening_hit_data.py b/plaid/model/entity_screening_hit_data.py index 75965cb73..8b49d90be 100644 --- a/plaid/model/entity_screening_hit_data.py +++ b/plaid/model/entity_screening_hit_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_screening_hit_documents_items.py b/plaid/model/entity_screening_hit_documents_items.py index 4250b107a..fb2c64e96 100644 --- a/plaid/model/entity_screening_hit_documents_items.py +++ b/plaid/model/entity_screening_hit_documents_items.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_screening_hit_emails.py b/plaid/model/entity_screening_hit_emails.py index e0cce6de9..928f07c17 100644 --- a/plaid/model/entity_screening_hit_emails.py +++ b/plaid/model/entity_screening_hit_emails.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_screening_hit_emails_items.py b/plaid/model/entity_screening_hit_emails_items.py index a863b98dd..c591e815c 100644 --- a/plaid/model/entity_screening_hit_emails_items.py +++ b/plaid/model/entity_screening_hit_emails_items.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_screening_hit_names.py b/plaid/model/entity_screening_hit_names.py index e491aef18..18b503bb4 100644 --- a/plaid/model/entity_screening_hit_names.py +++ b/plaid/model/entity_screening_hit_names.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_screening_hit_names_items.py b/plaid/model/entity_screening_hit_names_items.py index c74ec8a15..b6c5ca689 100644 --- a/plaid/model/entity_screening_hit_names_items.py +++ b/plaid/model/entity_screening_hit_names_items.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_screening_hit_phone_numbers.py b/plaid/model/entity_screening_hit_phone_numbers.py index 1d834867e..c7a998ddc 100644 --- a/plaid/model/entity_screening_hit_phone_numbers.py +++ b/plaid/model/entity_screening_hit_phone_numbers.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_screening_hit_urls.py b/plaid/model/entity_screening_hit_urls.py index 0d252aa48..57db5f8ab 100644 --- a/plaid/model/entity_screening_hit_urls.py +++ b/plaid/model/entity_screening_hit_urls.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_screening_hit_urls_items.py b/plaid/model/entity_screening_hit_urls_items.py index 585ffb9b5..29b6fe97c 100644 --- a/plaid/model/entity_screening_hit_urls_items.py +++ b/plaid/model/entity_screening_hit_urls_items.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_screening_hits_phone_number_items.py b/plaid/model/entity_screening_hits_phone_number_items.py index 28c06a429..683c27176 100644 --- a/plaid/model/entity_screening_hits_phone_number_items.py +++ b/plaid/model/entity_screening_hits_phone_number_items.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_screening_status_updated_webhook.py b/plaid/model/entity_screening_status_updated_webhook.py index 2c9e6f5e8..630fca23d 100644 --- a/plaid/model/entity_screening_status_updated_webhook.py +++ b/plaid/model/entity_screening_status_updated_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_watchlist_code.py b/plaid/model/entity_watchlist_code.py index 11b7ac646..4ba6aba9d 100644 --- a/plaid/model/entity_watchlist_code.py +++ b/plaid/model/entity_watchlist_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_watchlist_program.py b/plaid/model/entity_watchlist_program.py index 6d4a4e7b9..38b0b7ca9 100644 --- a/plaid/model/entity_watchlist_program.py +++ b/plaid/model/entity_watchlist_program.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_watchlist_screening.py b/plaid/model/entity_watchlist_screening.py index 7fb1a5831..fbad29398 100644 --- a/plaid/model/entity_watchlist_screening.py +++ b/plaid/model/entity_watchlist_screening.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_watchlist_screening_hit.py b/plaid/model/entity_watchlist_screening_hit.py index c4f4851c4..2f8ed1fb6 100644 --- a/plaid/model/entity_watchlist_screening_hit.py +++ b/plaid/model/entity_watchlist_screening_hit.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_watchlist_screening_review.py b/plaid/model/entity_watchlist_screening_review.py index 91c16a6db..40628c9c7 100644 --- a/plaid/model/entity_watchlist_screening_review.py +++ b/plaid/model/entity_watchlist_screening_review.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_watchlist_screening_search_terms.py b/plaid/model/entity_watchlist_screening_search_terms.py index 30e6e728a..fd3eef7e3 100644 --- a/plaid/model/entity_watchlist_screening_search_terms.py +++ b/plaid/model/entity_watchlist_screening_search_terms.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_watchlist_search_terms.py b/plaid/model/entity_watchlist_search_terms.py index be0a9f754..c06c74b1a 100644 --- a/plaid/model/entity_watchlist_search_terms.py +++ b/plaid/model/entity_watchlist_search_terms.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/ewa_attributes.py b/plaid/model/ewa_attributes.py index c7ac287af..3056ed60b 100644 --- a/plaid/model/ewa_attributes.py +++ b/plaid/model/ewa_attributes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/ewa_score.py b/plaid/model/ewa_score.py index add0978af..198e65671 100644 --- a/plaid/model/ewa_score.py +++ b/plaid/model/ewa_score.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/expenditure_insights.py b/plaid/model/expenditure_insights.py index babc371b0..5a1bf1f9c 100644 --- a/plaid/model/expenditure_insights.py +++ b/plaid/model/expenditure_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/expenditure_insights_cash_flow.py b/plaid/model/expenditure_insights_cash_flow.py index 0afac07be..90666fa7d 100644 --- a/plaid/model/expenditure_insights_cash_flow.py +++ b/plaid/model/expenditure_insights_cash_flow.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/expenditure_summary.py b/plaid/model/expenditure_summary.py index f9a42b64f..7a9acfcc7 100644 --- a/plaid/model/expenditure_summary.py +++ b/plaid/model/expenditure_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/expiration_date.py b/plaid/model/expiration_date.py index 07b0956d5..1822976d9 100644 --- a/plaid/model/expiration_date.py +++ b/plaid/model/expiration_date.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/extended_recipient_metadata.py b/plaid/model/extended_recipient_metadata.py index e3e85bc8c..c1453cc6e 100644 --- a/plaid/model/extended_recipient_metadata.py +++ b/plaid/model/extended_recipient_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/extended_recipient_metadata_all_of.py b/plaid/model/extended_recipient_metadata_all_of.py index 67c9f42c2..dbb5bc98f 100644 --- a/plaid/model/extended_recipient_metadata_all_of.py +++ b/plaid/model/extended_recipient_metadata_all_of.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/external_payment_initiation_consent_options.py b/plaid/model/external_payment_initiation_consent_options.py index 19e365847..bfb032e15 100644 --- a/plaid/model/external_payment_initiation_consent_options.py +++ b/plaid/model/external_payment_initiation_consent_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/external_payment_options.py b/plaid/model/external_payment_options.py index 7981182ac..c37b3a1e6 100644 --- a/plaid/model/external_payment_options.py +++ b/plaid/model/external_payment_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/external_payment_refund_details.py b/plaid/model/external_payment_refund_details.py index 2ae95ff4b..b178cd474 100644 --- a/plaid/model/external_payment_refund_details.py +++ b/plaid/model/external_payment_refund_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/external_payment_schedule_base.py b/plaid/model/external_payment_schedule_base.py index fd705276f..0cf32fb54 100644 --- a/plaid/model/external_payment_schedule_base.py +++ b/plaid/model/external_payment_schedule_base.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/external_payment_schedule_get.py b/plaid/model/external_payment_schedule_get.py index 1cd375920..4c56224dd 100644 --- a/plaid/model/external_payment_schedule_get.py +++ b/plaid/model/external_payment_schedule_get.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/external_payment_schedule_request.py b/plaid/model/external_payment_schedule_request.py index 0248c2403..5b4df6ce8 100644 --- a/plaid/model/external_payment_schedule_request.py +++ b/plaid/model/external_payment_schedule_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fallback_auth_microdeposit_auto_verified_webhook.py b/plaid/model/fallback_auth_microdeposit_auto_verified_webhook.py index 0e1fccf25..66f6ed7dd 100644 --- a/plaid/model/fallback_auth_microdeposit_auto_verified_webhook.py +++ b/plaid/model/fallback_auth_microdeposit_auto_verified_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fallback_auth_microdeposit_verification_expired_webhook.py b/plaid/model/fallback_auth_microdeposit_verification_expired_webhook.py index 852ef6d1c..90015f620 100644 --- a/plaid/model/fallback_auth_microdeposit_verification_expired_webhook.py +++ b/plaid/model/fallback_auth_microdeposit_verification_expired_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_consent_grant.py b/plaid/model/fdx_consent_grant.py index 62d73e3fc..b65480efb 100644 --- a/plaid/model/fdx_consent_grant.py +++ b/plaid/model/fdx_consent_grant.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_consent_grant_resource.py b/plaid/model/fdx_consent_grant_resource.py index a6ee67d98..3a700a88a 100644 --- a/plaid/model/fdx_consent_grant_resource.py +++ b/plaid/model/fdx_consent_grant_resource.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_consent_grant_status.py b/plaid/model/fdx_consent_grant_status.py index 77e03294e..2d01e9e9e 100644 --- a/plaid/model/fdx_consent_grant_status.py +++ b/plaid/model/fdx_consent_grant_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_consent_resource_type.py b/plaid/model/fdx_consent_resource_type.py index cb7605960..915741b5f 100644 --- a/plaid/model/fdx_consent_resource_type.py +++ b/plaid/model/fdx_consent_resource_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_consent_revocation.py b/plaid/model/fdx_consent_revocation.py index a1795c55f..dcbf2e475 100644 --- a/plaid/model/fdx_consent_revocation.py +++ b/plaid/model/fdx_consent_revocation.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_consent_revocation_record.py b/plaid/model/fdx_consent_revocation_record.py index b07241249..310c8f245 100644 --- a/plaid/model/fdx_consent_revocation_record.py +++ b/plaid/model/fdx_consent_revocation_record.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_consent_revocations.py b/plaid/model/fdx_consent_revocations.py index 69b60d25a..f0d29da0e 100644 --- a/plaid/model/fdx_consent_revocations.py +++ b/plaid/model/fdx_consent_revocations.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_content_types.py b/plaid/model/fdx_content_types.py index 9c254d532..a0a006af1 100644 --- a/plaid/model/fdx_content_types.py +++ b/plaid/model/fdx_content_types.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_data_cluster.py b/plaid/model/fdx_data_cluster.py index e52cb0cbe..aab4b92e9 100644 --- a/plaid/model/fdx_data_cluster.py +++ b/plaid/model/fdx_data_cluster.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_event_status.py b/plaid/model/fdx_event_status.py index 6a5fcf45e..8bde2b79b 100644 --- a/plaid/model/fdx_event_status.py +++ b/plaid/model/fdx_event_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_hateoas_link.py b/plaid/model/fdx_hateoas_link.py index ecec34843..ccd32a19c 100644 --- a/plaid/model/fdx_hateoas_link.py +++ b/plaid/model/fdx_hateoas_link.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_hateoas_link_action.py b/plaid/model/fdx_hateoas_link_action.py index 300812b27..6874aeb2f 100644 --- a/plaid/model/fdx_hateoas_link_action.py +++ b/plaid/model/fdx_hateoas_link_action.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_initiator_fi_attribute.py b/plaid/model/fdx_initiator_fi_attribute.py index 9945b6c2e..9da6b995a 100644 --- a/plaid/model/fdx_initiator_fi_attribute.py +++ b/plaid/model/fdx_initiator_fi_attribute.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_lifecycle_event.py b/plaid/model/fdx_lifecycle_event.py index 0e2fa2fc3..16ebb768a 100644 --- a/plaid/model/fdx_lifecycle_event.py +++ b/plaid/model/fdx_lifecycle_event.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification.py b/plaid/model/fdx_notification.py index 14e7be6ea..c2bcb32ea 100644 --- a/plaid/model/fdx_notification.py +++ b/plaid/model/fdx_notification.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification_category.py b/plaid/model/fdx_notification_category.py index aeeb81084..acaca0d9e 100644 --- a/plaid/model/fdx_notification_category.py +++ b/plaid/model/fdx_notification_category.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification_payload.py b/plaid/model/fdx_notification_payload.py index e72b2041e..db90443a3 100644 --- a/plaid/model/fdx_notification_payload.py +++ b/plaid/model/fdx_notification_payload.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification_payload_id_type.py b/plaid/model/fdx_notification_payload_id_type.py index 172a768e2..081900e3d 100644 --- a/plaid/model/fdx_notification_payload_id_type.py +++ b/plaid/model/fdx_notification_payload_id_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification_priority.py b/plaid/model/fdx_notification_priority.py index e97c86623..c39d99cea 100644 --- a/plaid/model/fdx_notification_priority.py +++ b/plaid/model/fdx_notification_priority.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification_severity.py b/plaid/model/fdx_notification_severity.py index b6ea27ef8..c8fd37368 100644 --- a/plaid/model/fdx_notification_severity.py +++ b/plaid/model/fdx_notification_severity.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification_type.py b/plaid/model/fdx_notification_type.py index 44409b049..f64eb7445 100644 --- a/plaid/model/fdx_notification_type.py +++ b/plaid/model/fdx_notification_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_party.py b/plaid/model/fdx_party.py index a1e1dd189..7d3fc1d4b 100644 --- a/plaid/model/fdx_party.py +++ b/plaid/model/fdx_party.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_party_registry.py b/plaid/model/fdx_party_registry.py index a1eee0cf3..17497c8e3 100644 --- a/plaid/model/fdx_party_registry.py +++ b/plaid/model/fdx_party_registry.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_party_type.py b/plaid/model/fdx_party_type.py index 03822283d..93ccd40e3 100644 --- a/plaid/model/fdx_party_type.py +++ b/plaid/model/fdx_party_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_recipient_metadata.py b/plaid/model/fdx_recipient_metadata.py index 105fe8023..8f4c2fadd 100644 --- a/plaid/model/fdx_recipient_metadata.py +++ b/plaid/model/fdx_recipient_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_update_reason.py b/plaid/model/fdx_update_reason.py index a6010f482..3faf55d93 100644 --- a/plaid/model/fdx_update_reason.py +++ b/plaid/model/fdx_update_reason.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdxfi_attribute.py b/plaid/model/fdxfi_attribute.py index cdf9b72e7..988e76af1 100644 --- a/plaid/model/fdxfi_attribute.py +++ b/plaid/model/fdxfi_attribute.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/financial_institution_insights.py b/plaid/model/financial_institution_insights.py index 9e1300bc7..b8c9f39dd 100644 --- a/plaid/model/financial_institution_insights.py +++ b/plaid/model/financial_institution_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fixed_income.py b/plaid/model/fixed_income.py index b01ed4572..700b74d84 100644 --- a/plaid/model/fixed_income.py +++ b/plaid/model/fixed_income.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/forecasted_monthly_income.py b/plaid/model/forecasted_monthly_income.py index 72112df12..1adf97ddd 100644 --- a/plaid/model/forecasted_monthly_income.py +++ b/plaid/model/forecasted_monthly_income.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/form1099_type.py b/plaid/model/form1099_type.py index 5ad123a94..8f90cf30e 100644 --- a/plaid/model/form1099_type.py +++ b/plaid/model/form1099_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/forwarded_json_response.py b/plaid/model/forwarded_json_response.py index 79e5ae63b..77e114153 100644 --- a/plaid/model/forwarded_json_response.py +++ b/plaid/model/forwarded_json_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fraud_amount.py b/plaid/model/fraud_amount.py index 0ccea70b0..6a0219775 100644 --- a/plaid/model/fraud_amount.py +++ b/plaid/model/fraud_amount.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fraud_analysis_details.py b/plaid/model/fraud_analysis_details.py index 63527e501..fe9a90969 100644 --- a/plaid/model/fraud_analysis_details.py +++ b/plaid/model/fraud_analysis_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fraud_attributes.py b/plaid/model/fraud_attributes.py index 535f9720a..832873b11 100644 --- a/plaid/model/fraud_attributes.py +++ b/plaid/model/fraud_attributes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fraud_check_outcome.py b/plaid/model/fraud_check_outcome.py index 20c0fd815..04dca9d67 100644 --- a/plaid/model/fraud_check_outcome.py +++ b/plaid/model/fraud_check_outcome.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fraud_check_outcome_with_no_data.py b/plaid/model/fraud_check_outcome_with_no_data.py index 2522d91a0..9b037cf6f 100644 --- a/plaid/model/fraud_check_outcome_with_no_data.py +++ b/plaid/model/fraud_check_outcome_with_no_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/gambling_indicators.py b/plaid/model/gambling_indicators.py index 2b6126867..89be6f747 100644 --- a/plaid/model/gambling_indicators.py +++ b/plaid/model/gambling_indicators.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/generic_screening_hit_location_items.py b/plaid/model/generic_screening_hit_location_items.py index 0a5e9bf82..bfa42a02a 100644 --- a/plaid/model/generic_screening_hit_location_items.py +++ b/plaid/model/generic_screening_hit_location_items.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/get_consents_response.py b/plaid/model/get_consents_response.py index c16595719..54fa88dc6 100644 --- a/plaid/model/get_consents_response.py +++ b/plaid/model/get_consents_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/get_recipient_response.py b/plaid/model/get_recipient_response.py index 297a561e3..1ed9af059 100644 --- a/plaid/model/get_recipient_response.py +++ b/plaid/model/get_recipient_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/get_recipients_response.py b/plaid/model/get_recipients_response.py index 67f962a92..813c0453f 100644 --- a/plaid/model/get_recipients_response.py +++ b/plaid/model/get_recipients_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/gse_report_type.py b/plaid/model/gse_report_type.py index 035835b92..5b191b7c4 100644 --- a/plaid/model/gse_report_type.py +++ b/plaid/model/gse_report_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/health_incident.py b/plaid/model/health_incident.py index 34cf4d425..64187e0f0 100644 --- a/plaid/model/health_incident.py +++ b/plaid/model/health_incident.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/hidden_match_summary_code.py b/plaid/model/hidden_match_summary_code.py index 5a5eb60ce..6c93ff07d 100644 --- a/plaid/model/hidden_match_summary_code.py +++ b/plaid/model/hidden_match_summary_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/historical_annual_income.py b/plaid/model/historical_annual_income.py index 721d5b2e3..d2db0825e 100644 --- a/plaid/model/historical_annual_income.py +++ b/plaid/model/historical_annual_income.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/historical_balance.py b/plaid/model/historical_balance.py index 81a73b5b5..dff2c65bc 100644 --- a/plaid/model/historical_balance.py +++ b/plaid/model/historical_balance.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/historical_update_webhook.py b/plaid/model/historical_update_webhook.py index 1dda9d730..bf3e18e4f 100644 --- a/plaid/model/historical_update_webhook.py +++ b/plaid/model/historical_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/holding.py b/plaid/model/holding.py index 4cf6fc986..6258b5981 100644 --- a/plaid/model/holding.py +++ b/plaid/model/holding.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/holding_tax_lot.py b/plaid/model/holding_tax_lot.py index 34e159843..d66db7514 100644 --- a/plaid/model/holding_tax_lot.py +++ b/plaid/model/holding_tax_lot.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/holding_tax_lot_position_type.py b/plaid/model/holding_tax_lot_position_type.py index cde7a84ab..66065fd09 100644 --- a/plaid/model/holding_tax_lot_position_type.py +++ b/plaid/model/holding_tax_lot_position_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/holdings_default_update_webhook.py b/plaid/model/holdings_default_update_webhook.py index 89ab3cfee..e5dc1761e 100644 --- a/plaid/model/holdings_default_update_webhook.py +++ b/plaid/model/holdings_default_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/holdings_override.py b/plaid/model/holdings_override.py index eb91c947c..1be284e47 100644 --- a/plaid/model/holdings_override.py +++ b/plaid/model/holdings_override.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/hosted_link_delivery_method.py b/plaid/model/hosted_link_delivery_method.py index cf0d2b4a3..4a11ed55b 100644 --- a/plaid/model/hosted_link_delivery_method.py +++ b/plaid/model/hosted_link_delivery_method.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/hosted_mmd_verification_webhook.py b/plaid/model/hosted_mmd_verification_webhook.py index c1eb37aa3..b1874fda1 100644 --- a/plaid/model/hosted_mmd_verification_webhook.py +++ b/plaid/model/hosted_mmd_verification_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/human_review.py b/plaid/model/human_review.py index ad9ff8bc1..d22a80ddf 100644 --- a/plaid/model/human_review.py +++ b/plaid/model/human_review.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/human_review_status.py b/plaid/model/human_review_status.py index 2d0b60164..80575ed6f 100644 --- a/plaid/model/human_review_status.py +++ b/plaid/model/human_review_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/id_number_type.py b/plaid/model/id_number_type.py index 7822743c5..6f84fb8b2 100644 --- a/plaid/model/id_number_type.py +++ b/plaid/model/id_number_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_default_update_webhook.py b/plaid/model/identity_default_update_webhook.py index 799b48ab1..8aa76e5cf 100644 --- a/plaid/model/identity_default_update_webhook.py +++ b/plaid/model/identity_default_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_document_metadata.py b/plaid/model/identity_document_metadata.py index c903a66dd..e68b7e2be 100644 --- a/plaid/model/identity_document_metadata.py +++ b/plaid/model/identity_document_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_document_upload.py b/plaid/model/identity_document_upload.py index 2f57af024..dee1ef90d 100644 --- a/plaid/model/identity_document_upload.py +++ b/plaid/model/identity_document_upload.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_document_upload_metadata.py b/plaid/model/identity_document_upload_metadata.py index a5c4e4773..178ed24cb 100644 --- a/plaid/model/identity_document_upload_metadata.py +++ b/plaid/model/identity_document_upload_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_document_upload_risk_insights.py b/plaid/model/identity_document_upload_risk_insights.py index fd1bd7665..5edc2e158 100644 --- a/plaid/model/identity_document_upload_risk_insights.py +++ b/plaid/model/identity_document_upload_risk_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_document_upload_risk_signal.py b/plaid/model/identity_document_upload_risk_signal.py index 25959aa18..869895588 100644 --- a/plaid/model/identity_document_upload_risk_signal.py +++ b/plaid/model/identity_document_upload_risk_signal.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_document_upload_risk_summary.py b/plaid/model/identity_document_upload_risk_summary.py index 4a2f62bd8..234fdaf5f 100644 --- a/plaid/model/identity_document_upload_risk_summary.py +++ b/plaid/model/identity_document_upload_risk_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_documents_uploads_get_request.py b/plaid/model/identity_documents_uploads_get_request.py index d63c3af83..2ccab527c 100644 --- a/plaid/model/identity_documents_uploads_get_request.py +++ b/plaid/model/identity_documents_uploads_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_documents_uploads_get_request_options.py b/plaid/model/identity_documents_uploads_get_request_options.py index d9b1dd96a..e540c4f83 100644 --- a/plaid/model/identity_documents_uploads_get_request_options.py +++ b/plaid/model/identity_documents_uploads_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_documents_uploads_get_response.py b/plaid/model/identity_documents_uploads_get_response.py index b2991a21e..4936d2027 100644 --- a/plaid/model/identity_documents_uploads_get_response.py +++ b/plaid/model/identity_documents_uploads_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_get_request.py b/plaid/model/identity_get_request.py index fc9494902..f4df15ed2 100644 --- a/plaid/model/identity_get_request.py +++ b/plaid/model/identity_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_get_request_options.py b/plaid/model/identity_get_request_options.py index 848efb2ea..e432dcb79 100644 --- a/plaid/model/identity_get_request_options.py +++ b/plaid/model/identity_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_get_response.py b/plaid/model/identity_get_response.py index 2816384b9..622565012 100644 --- a/plaid/model/identity_get_response.py +++ b/plaid/model/identity_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_match_request.py b/plaid/model/identity_match_request.py index c9c76a440..7af1c6a5a 100644 --- a/plaid/model/identity_match_request.py +++ b/plaid/model/identity_match_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_match_request_options.py b/plaid/model/identity_match_request_options.py index 0cfdc061f..651ab2bf9 100644 --- a/plaid/model/identity_match_request_options.py +++ b/plaid/model/identity_match_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_match_response.py b/plaid/model/identity_match_response.py index a9c8eeab9..fd6caddae 100644 --- a/plaid/model/identity_match_response.py +++ b/plaid/model/identity_match_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_match_user.py b/plaid/model/identity_match_user.py index 576848f41..bc275d458 100644 --- a/plaid/model/identity_match_user.py +++ b/plaid/model/identity_match_user.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_refresh_request.py b/plaid/model/identity_refresh_request.py index 4c0177132..0dbe2bdb1 100644 --- a/plaid/model/identity_refresh_request.py +++ b/plaid/model/identity_refresh_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_refresh_response.py b/plaid/model/identity_refresh_response.py index ea458bf3e..f642078b8 100644 --- a/plaid/model/identity_refresh_response.py +++ b/plaid/model/identity_refresh_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_update_types.py b/plaid/model/identity_update_types.py index de04d796a..27590d097 100644 --- a/plaid/model/identity_update_types.py +++ b/plaid/model/identity_update_types.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification.py b/plaid/model/identity_verification.py index be430b34c..c4ee6157f 100644 --- a/plaid/model/identity_verification.py +++ b/plaid/model/identity_verification.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_autofill_address.py b/plaid/model/identity_verification_autofill_address.py index 097140fa0..f18b71905 100644 --- a/plaid/model/identity_verification_autofill_address.py +++ b/plaid/model/identity_verification_autofill_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_autofill_create_request.py b/plaid/model/identity_verification_autofill_create_request.py index 6597d3120..6b2d355e4 100644 --- a/plaid/model/identity_verification_autofill_create_request.py +++ b/plaid/model/identity_verification_autofill_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_autofill_create_response.py b/plaid/model/identity_verification_autofill_create_response.py index ef7857302..502f058f4 100644 --- a/plaid/model/identity_verification_autofill_create_response.py +++ b/plaid/model/identity_verification_autofill_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_autofill_status.py b/plaid/model/identity_verification_autofill_status.py index 857f0d9f3..6e49364a0 100644 --- a/plaid/model/identity_verification_autofill_status.py +++ b/plaid/model/identity_verification_autofill_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_autofill_user_data.py b/plaid/model/identity_verification_autofill_user_data.py index 1ff7693e5..45863467c 100644 --- a/plaid/model/identity_verification_autofill_user_data.py +++ b/plaid/model/identity_verification_autofill_user_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_create_request.py b/plaid/model/identity_verification_create_request.py index f9f57ee10..d719fba34 100644 --- a/plaid/model/identity_verification_create_request.py +++ b/plaid/model/identity_verification_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_create_request_user.py b/plaid/model/identity_verification_create_request_user.py index 62e863e37..f577f402f 100644 --- a/plaid/model/identity_verification_create_request_user.py +++ b/plaid/model/identity_verification_create_request_user.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_create_response.py b/plaid/model/identity_verification_create_response.py index a9df2f722..6af3735fc 100644 --- a/plaid/model/identity_verification_create_response.py +++ b/plaid/model/identity_verification_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_document_address_response.py b/plaid/model/identity_verification_document_address_response.py index 51d35cfc7..a34ecc33c 100644 --- a/plaid/model/identity_verification_document_address_response.py +++ b/plaid/model/identity_verification_document_address_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_document_name_response.py b/plaid/model/identity_verification_document_name_response.py index e1cfb675f..021666e1e 100644 --- a/plaid/model/identity_verification_document_name_response.py +++ b/plaid/model/identity_verification_document_name_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_get_request.py b/plaid/model/identity_verification_get_request.py index f34aaa48f..6dc6e87b1 100644 --- a/plaid/model/identity_verification_get_request.py +++ b/plaid/model/identity_verification_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_get_response.py b/plaid/model/identity_verification_get_response.py index 97aceeaa4..6a1bdb59f 100644 --- a/plaid/model/identity_verification_get_response.py +++ b/plaid/model/identity_verification_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_list_request.py b/plaid/model/identity_verification_list_request.py index ccf656a5f..63eab2afa 100644 --- a/plaid/model/identity_verification_list_request.py +++ b/plaid/model/identity_verification_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_list_response.py b/plaid/model/identity_verification_list_response.py index 64c3f73e4..d7ffe6805 100644 --- a/plaid/model/identity_verification_list_response.py +++ b/plaid/model/identity_verification_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_request_user.py b/plaid/model/identity_verification_request_user.py index e5d74683a..eac5e352b 100644 --- a/plaid/model/identity_verification_request_user.py +++ b/plaid/model/identity_verification_request_user.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_request_user_name.py b/plaid/model/identity_verification_request_user_name.py index 9923a0aee..38da6b1c3 100644 --- a/plaid/model/identity_verification_request_user_name.py +++ b/plaid/model/identity_verification_request_user_name.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_response_user_name.py b/plaid/model/identity_verification_response_user_name.py index 1f18a8e0e..c4b8f38bb 100644 --- a/plaid/model/identity_verification_response_user_name.py +++ b/plaid/model/identity_verification_response_user_name.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_retried_webhook.py b/plaid/model/identity_verification_retried_webhook.py index 9b9ba8c46..ece789da2 100644 --- a/plaid/model/identity_verification_retried_webhook.py +++ b/plaid/model/identity_verification_retried_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_retry_request.py b/plaid/model/identity_verification_retry_request.py index 979067854..2756add5a 100644 --- a/plaid/model/identity_verification_retry_request.py +++ b/plaid/model/identity_verification_retry_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_retry_request_steps_object.py b/plaid/model/identity_verification_retry_request_steps_object.py index 29db9cfcd..daf0eeb56 100644 --- a/plaid/model/identity_verification_retry_request_steps_object.py +++ b/plaid/model/identity_verification_retry_request_steps_object.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_retry_response.py b/plaid/model/identity_verification_retry_response.py index 9383b966a..36b79211e 100644 --- a/plaid/model/identity_verification_retry_response.py +++ b/plaid/model/identity_verification_retry_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_status.py b/plaid/model/identity_verification_status.py index 8410214c9..0eaf3a448 100644 --- a/plaid/model/identity_verification_status.py +++ b/plaid/model/identity_verification_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_status_updated_webhook.py b/plaid/model/identity_verification_status_updated_webhook.py index e8f663739..f81059c1c 100644 --- a/plaid/model/identity_verification_status_updated_webhook.py +++ b/plaid/model/identity_verification_status_updated_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_step_status.py b/plaid/model/identity_verification_step_status.py index d97c2cab5..fac7675de 100644 --- a/plaid/model/identity_verification_step_status.py +++ b/plaid/model/identity_verification_step_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_step_summary.py b/plaid/model/identity_verification_step_summary.py index c0cef4c7d..823d59a9c 100644 --- a/plaid/model/identity_verification_step_summary.py +++ b/plaid/model/identity_verification_step_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_step_updated_webhook.py b/plaid/model/identity_verification_step_updated_webhook.py index d0b8c419e..14fac8cf6 100644 --- a/plaid/model/identity_verification_step_updated_webhook.py +++ b/plaid/model/identity_verification_step_updated_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_template_reference.py b/plaid/model/identity_verification_template_reference.py index ed177e0f1..3ae947c61 100644 --- a/plaid/model/identity_verification_template_reference.py +++ b/plaid/model/identity_verification_template_reference.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_user_address.py b/plaid/model/identity_verification_user_address.py index 73a5c7f5a..b0b73cec9 100644 --- a/plaid/model/identity_verification_user_address.py +++ b/plaid/model/identity_verification_user_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_user_data.py b/plaid/model/identity_verification_user_data.py index c221192ad..c63bd5d41 100644 --- a/plaid/model/identity_verification_user_data.py +++ b/plaid/model/identity_verification_user_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/idv_protect_event.py b/plaid/model/idv_protect_event.py index b83b2a119..f4cd8f52e 100644 --- a/plaid/model/idv_protect_event.py +++ b/plaid/model/idv_protect_event.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/image_quality.py b/plaid/model/image_quality.py index 28508c1f7..8ae31a9b3 100644 --- a/plaid/model/image_quality.py +++ b/plaid/model/image_quality.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/image_quality_details.py b/plaid/model/image_quality_details.py index 93c10055a..f4b9e56c7 100644 --- a/plaid/model/image_quality_details.py +++ b/plaid/model/image_quality_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/image_quality_outcome.py b/plaid/model/image_quality_outcome.py index 94a1400ca..09074def3 100644 --- a/plaid/model/image_quality_outcome.py +++ b/plaid/model/image_quality_outcome.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/incident_update.py b/plaid/model/incident_update.py index faff4460d..bd8f328db 100644 --- a/plaid/model/incident_update.py +++ b/plaid/model/incident_update.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_breakdown.py b/plaid/model/income_breakdown.py index 0511418bb..4755042a2 100644 --- a/plaid/model/income_breakdown.py +++ b/plaid/model/income_breakdown.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_breakdown_type.py b/plaid/model/income_breakdown_type.py index 05caea763..c18ca33b2 100644 --- a/plaid/model/income_breakdown_type.py +++ b/plaid/model/income_breakdown_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_insights.py b/plaid/model/income_insights.py index a33c762cd..f1ed228c1 100644 --- a/plaid/model/income_insights.py +++ b/plaid/model/income_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_insights_filter.py b/plaid/model/income_insights_filter.py index 57d7c7888..f9c0a6a8a 100644 --- a/plaid/model/income_insights_filter.py +++ b/plaid/model/income_insights_filter.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_insights_income_excluding_transfers.py b/plaid/model/income_insights_income_excluding_transfers.py index 2bcf88bb5..0271816b6 100644 --- a/plaid/model/income_insights_income_excluding_transfers.py +++ b/plaid/model/income_insights_income_excluding_transfers.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_insights_total_income.py b/plaid/model/income_insights_total_income.py index 52956e5dd..2ed20f171 100644 --- a/plaid/model/income_insights_total_income.py +++ b/plaid/model/income_insights_total_income.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_insights_transfers_in.py b/plaid/model/income_insights_transfers_in.py index 3645b6a62..58e07a762 100644 --- a/plaid/model/income_insights_transfers_in.py +++ b/plaid/model/income_insights_transfers_in.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_insights_version.py b/plaid/model/income_insights_version.py index 145acdf2f..1b1a195ee 100644 --- a/plaid/model/income_insights_version.py +++ b/plaid/model/income_insights_version.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_override.py b/plaid/model/income_override.py index ffb0302c9..95eb05dc3 100644 --- a/plaid/model/income_override.py +++ b/plaid/model/income_override.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_sources_counts.py b/plaid/model/income_sources_counts.py index 450fade88..7efebbc7a 100644 --- a/plaid/model/income_sources_counts.py +++ b/plaid/model/income_sources_counts.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_summary.py b/plaid/model/income_summary.py index d7af58d2f..5e8f371e1 100644 --- a/plaid/model/income_summary.py +++ b/plaid/model/income_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_summary_field_number.py b/plaid/model/income_summary_field_number.py index 1482b87e7..ce62841ee 100644 --- a/plaid/model/income_summary_field_number.py +++ b/plaid/model/income_summary_field_number.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_summary_field_string.py b/plaid/model/income_summary_field_string.py index 05393365a..0d80f1a53 100644 --- a/plaid/model/income_summary_field_string.py +++ b/plaid/model/income_summary_field_string.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_create_request.py b/plaid/model/income_verification_create_request.py index 10927662d..105b9341b 100644 --- a/plaid/model/income_verification_create_request.py +++ b/plaid/model/income_verification_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_create_request_options.py b/plaid/model/income_verification_create_request_options.py index afd64d89c..97190d6a6 100644 --- a/plaid/model/income_verification_create_request_options.py +++ b/plaid/model/income_verification_create_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_create_response.py b/plaid/model/income_verification_create_response.py index db8203c49..c98e3fd44 100644 --- a/plaid/model/income_verification_create_response.py +++ b/plaid/model/income_verification_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_doc_parsing_config.py b/plaid/model/income_verification_doc_parsing_config.py index 2df80f78c..3705866f9 100644 --- a/plaid/model/income_verification_doc_parsing_config.py +++ b/plaid/model/income_verification_doc_parsing_config.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_documents_download_request.py b/plaid/model/income_verification_documents_download_request.py index 587ad0f8c..9bc7b8d65 100644 --- a/plaid/model/income_verification_documents_download_request.py +++ b/plaid/model/income_verification_documents_download_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_payroll_flow_type.py b/plaid/model/income_verification_payroll_flow_type.py index a823f5fe3..895e0d7c8 100644 --- a/plaid/model/income_verification_payroll_flow_type.py +++ b/plaid/model/income_verification_payroll_flow_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_paystubs_get_request.py b/plaid/model/income_verification_paystubs_get_request.py index f2e0ca5f1..f1ab3e468 100644 --- a/plaid/model/income_verification_paystubs_get_request.py +++ b/plaid/model/income_verification_paystubs_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_paystubs_get_response.py b/plaid/model/income_verification_paystubs_get_response.py index dbf483e29..05e2c8f16 100644 --- a/plaid/model/income_verification_paystubs_get_response.py +++ b/plaid/model/income_verification_paystubs_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_precheck_confidence.py b/plaid/model/income_verification_precheck_confidence.py index 439b96a9f..807d5154b 100644 --- a/plaid/model/income_verification_precheck_confidence.py +++ b/plaid/model/income_verification_precheck_confidence.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_precheck_employer.py b/plaid/model/income_verification_precheck_employer.py index 3aa08237d..f5b913d9f 100644 --- a/plaid/model/income_verification_precheck_employer.py +++ b/plaid/model/income_verification_precheck_employer.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_precheck_employer_address.py b/plaid/model/income_verification_precheck_employer_address.py index de0c727d2..5ee54dc31 100644 --- a/plaid/model/income_verification_precheck_employer_address.py +++ b/plaid/model/income_verification_precheck_employer_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_precheck_employer_address_data.py b/plaid/model/income_verification_precheck_employer_address_data.py index 53a0cf5c3..67fe23cd3 100644 --- a/plaid/model/income_verification_precheck_employer_address_data.py +++ b/plaid/model/income_verification_precheck_employer_address_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_precheck_military_info.py b/plaid/model/income_verification_precheck_military_info.py index 0e19f7f79..a24db4c0f 100644 --- a/plaid/model/income_verification_precheck_military_info.py +++ b/plaid/model/income_verification_precheck_military_info.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_precheck_payroll_institution.py b/plaid/model/income_verification_precheck_payroll_institution.py index 51d04cdf1..a9e0564ac 100644 --- a/plaid/model/income_verification_precheck_payroll_institution.py +++ b/plaid/model/income_verification_precheck_payroll_institution.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_precheck_request.py b/plaid/model/income_verification_precheck_request.py index 79f69dab4..9a5e97023 100644 --- a/plaid/model/income_verification_precheck_request.py +++ b/plaid/model/income_verification_precheck_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_precheck_response.py b/plaid/model/income_verification_precheck_response.py index ca7baed93..4e9d43fdb 100644 --- a/plaid/model/income_verification_precheck_response.py +++ b/plaid/model/income_verification_precheck_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_precheck_user.py b/plaid/model/income_verification_precheck_user.py index f75d0de27..c699dcf09 100644 --- a/plaid/model/income_verification_precheck_user.py +++ b/plaid/model/income_verification_precheck_user.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_refresh_reconnect_needed_webhook.py b/plaid/model/income_verification_refresh_reconnect_needed_webhook.py index 004c6f59b..459d5950c 100644 --- a/plaid/model/income_verification_refresh_reconnect_needed_webhook.py +++ b/plaid/model/income_verification_refresh_reconnect_needed_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_risk_signals_status_webhook.py b/plaid/model/income_verification_risk_signals_status_webhook.py index 5e0c2002d..07e48a0fd 100644 --- a/plaid/model/income_verification_risk_signals_status_webhook.py +++ b/plaid/model/income_verification_risk_signals_status_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_source_type.py b/plaid/model/income_verification_source_type.py index 9ed007d71..94a3d7d51 100644 --- a/plaid/model/income_verification_source_type.py +++ b/plaid/model/income_verification_source_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_status_webhook.py b/plaid/model/income_verification_status_webhook.py index 9c7a0af24..500015fd5 100644 --- a/plaid/model/income_verification_status_webhook.py +++ b/plaid/model/income_verification_status_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_taxforms_get_request.py b/plaid/model/income_verification_taxforms_get_request.py index eaba0c0b7..0ad9db60c 100644 --- a/plaid/model/income_verification_taxforms_get_request.py +++ b/plaid/model/income_verification_taxforms_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_taxforms_get_response.py b/plaid/model/income_verification_taxforms_get_response.py index 658299bc6..a9ee95f54 100644 --- a/plaid/model/income_verification_taxforms_get_response.py +++ b/plaid/model/income_verification_taxforms_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_verification_webhook_status.py b/plaid/model/income_verification_webhook_status.py index 3c40c84d6..ae88756d7 100644 --- a/plaid/model/income_verification_webhook_status.py +++ b/plaid/model/income_verification_webhook_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/individual_name.py b/plaid/model/individual_name.py index 4a68d090c..d0950169b 100644 --- a/plaid/model/individual_name.py +++ b/plaid/model/individual_name.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/individual_screening_hit_names.py b/plaid/model/individual_screening_hit_names.py index 3d99c2e76..f50e3ff34 100644 --- a/plaid/model/individual_screening_hit_names.py +++ b/plaid/model/individual_screening_hit_names.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/individual_watchlist_code.py b/plaid/model/individual_watchlist_code.py index 03bf8955f..24f49ed24 100644 --- a/plaid/model/individual_watchlist_code.py +++ b/plaid/model/individual_watchlist_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/individual_watchlist_program.py b/plaid/model/individual_watchlist_program.py index 05de7f075..65835d00c 100644 --- a/plaid/model/individual_watchlist_program.py +++ b/plaid/model/individual_watchlist_program.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/inflow_model.py b/plaid/model/inflow_model.py index 151219a74..513c0a6ba 100644 --- a/plaid/model/inflow_model.py +++ b/plaid/model/inflow_model.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/initial_update_webhook.py b/plaid/model/initial_update_webhook.py index 89fd3b294..61a927aea 100644 --- a/plaid/model/initial_update_webhook.py +++ b/plaid/model/initial_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institution.py b/plaid/model/institution.py index 38a4b5a69..9c6bf6a5e 100644 --- a/plaid/model/institution.py +++ b/plaid/model/institution.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institution_status.py b/plaid/model/institution_status.py index 7d6fada42..694fc1b43 100644 --- a/plaid/model/institution_status.py +++ b/plaid/model/institution_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institution_status_alert_webhook.py b/plaid/model/institution_status_alert_webhook.py index 609fdc04b..cd2673633 100644 --- a/plaid/model/institution_status_alert_webhook.py +++ b/plaid/model/institution_status_alert_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institution_supported_networks.py b/plaid/model/institution_supported_networks.py index c16906dba..e422b80e6 100644 --- a/plaid/model/institution_supported_networks.py +++ b/plaid/model/institution_supported_networks.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_get_by_id_request.py b/plaid/model/institutions_get_by_id_request.py index e4fe8fbb3..69bafcd87 100644 --- a/plaid/model/institutions_get_by_id_request.py +++ b/plaid/model/institutions_get_by_id_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_get_by_id_request_options.py b/plaid/model/institutions_get_by_id_request_options.py index 2ce9de3ff..5d8c72fdb 100644 --- a/plaid/model/institutions_get_by_id_request_options.py +++ b/plaid/model/institutions_get_by_id_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_get_by_id_response.py b/plaid/model/institutions_get_by_id_response.py index 04bcfb489..9c9e27f1e 100644 --- a/plaid/model/institutions_get_by_id_response.py +++ b/plaid/model/institutions_get_by_id_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_get_request.py b/plaid/model/institutions_get_request.py index 2648c1442..fcb568a6c 100644 --- a/plaid/model/institutions_get_request.py +++ b/plaid/model/institutions_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_get_request_options.py b/plaid/model/institutions_get_request_options.py index cd1426f30..bfc6c0ff4 100644 --- a/plaid/model/institutions_get_request_options.py +++ b/plaid/model/institutions_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_get_response.py b/plaid/model/institutions_get_response.py index 8797c9b00..9394a4541 100644 --- a/plaid/model/institutions_get_response.py +++ b/plaid/model/institutions_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_search_account_filter.py b/plaid/model/institutions_search_account_filter.py index 82e0ceee1..a05b47b4e 100644 --- a/plaid/model/institutions_search_account_filter.py +++ b/plaid/model/institutions_search_account_filter.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_search_payment_initiation_options.py b/plaid/model/institutions_search_payment_initiation_options.py index 722306da2..3816e25a5 100644 --- a/plaid/model/institutions_search_payment_initiation_options.py +++ b/plaid/model/institutions_search_payment_initiation_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_search_request.py b/plaid/model/institutions_search_request.py index c7a82afe1..f6837d05a 100644 --- a/plaid/model/institutions_search_request.py +++ b/plaid/model/institutions_search_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_search_request_options.py b/plaid/model/institutions_search_request_options.py index c7b8c8d8a..3f28a5e37 100644 --- a/plaid/model/institutions_search_request_options.py +++ b/plaid/model/institutions_search_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_search_response.py b/plaid/model/institutions_search_response.py index e82277b9f..dc1ecaf00 100644 --- a/plaid/model/institutions_search_response.py +++ b/plaid/model/institutions_search_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_account.py b/plaid/model/investment_account.py index b95ec9dee..06d0b9efd 100644 --- a/plaid/model/investment_account.py +++ b/plaid/model/investment_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_account_all_of.py b/plaid/model/investment_account_all_of.py index a3fcf9e2c..0c8f4954a 100644 --- a/plaid/model/investment_account_all_of.py +++ b/plaid/model/investment_account_all_of.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_account_balance.py b/plaid/model/investment_account_balance.py index 3958c2065..e0d6b661b 100644 --- a/plaid/model/investment_account_balance.py +++ b/plaid/model/investment_account_balance.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_account_balance_all_of.py b/plaid/model/investment_account_balance_all_of.py index 6af588987..7438dd29a 100644 --- a/plaid/model/investment_account_balance_all_of.py +++ b/plaid/model/investment_account_balance_all_of.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_account_subtype.py b/plaid/model/investment_account_subtype.py index 934d536f0..b044fc015 100644 --- a/plaid/model/investment_account_subtype.py +++ b/plaid/model/investment_account_subtype.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_account_subtypes.py b/plaid/model/investment_account_subtypes.py index 9ac72a8a3..19c459c26 100644 --- a/plaid/model/investment_account_subtypes.py +++ b/plaid/model/investment_account_subtypes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_filter.py b/plaid/model/investment_filter.py index ab54010f1..ec7c01d1d 100644 --- a/plaid/model/investment_filter.py +++ b/plaid/model/investment_filter.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_holdings_get_request_options.py b/plaid/model/investment_holdings_get_request_options.py index f359956c8..c02e744cb 100644 --- a/plaid/model/investment_holdings_get_request_options.py +++ b/plaid/model/investment_holdings_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_transaction.py b/plaid/model/investment_transaction.py index 9b98b56e6..4af0fec05 100644 --- a/plaid/model/investment_transaction.py +++ b/plaid/model/investment_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_transaction_subtype.py b/plaid/model/investment_transaction_subtype.py index d5e3968ad..bb483751e 100644 --- a/plaid/model/investment_transaction_subtype.py +++ b/plaid/model/investment_transaction_subtype.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_transaction_type.py b/plaid/model/investment_transaction_type.py index 6f8066e5c..744726f5f 100644 --- a/plaid/model/investment_transaction_type.py +++ b/plaid/model/investment_transaction_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_auth401k_contribution_details.py b/plaid/model/investments_auth401k_contribution_details.py index 5fa1a6848..2d35a918d 100644 --- a/plaid/model/investments_auth401k_contribution_details.py +++ b/plaid/model/investments_auth401k_contribution_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_auth401k_fee_details.py b/plaid/model/investments_auth401k_fee_details.py index a262b281a..747e64f66 100644 --- a/plaid/model/investments_auth401k_fee_details.py +++ b/plaid/model/investments_auth401k_fee_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_auth_account_details401k.py b/plaid/model/investments_auth_account_details401k.py index 283d6940a..880875e17 100644 --- a/plaid/model/investments_auth_account_details401k.py +++ b/plaid/model/investments_auth_account_details401k.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_auth_data_sources.py b/plaid/model/investments_auth_data_sources.py index 0ac4b1a5e..f8e03db15 100644 --- a/plaid/model/investments_auth_data_sources.py +++ b/plaid/model/investments_auth_data_sources.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_auth_get_numbers.py b/plaid/model/investments_auth_get_numbers.py index bb4e28210..44bc4aa35 100644 --- a/plaid/model/investments_auth_get_numbers.py +++ b/plaid/model/investments_auth_get_numbers.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_auth_get_request.py b/plaid/model/investments_auth_get_request.py index 0c74d2aff..084a54e8b 100644 --- a/plaid/model/investments_auth_get_request.py +++ b/plaid/model/investments_auth_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_auth_get_request_options.py b/plaid/model/investments_auth_get_request_options.py index 10f01a23c..478ae56a0 100644 --- a/plaid/model/investments_auth_get_request_options.py +++ b/plaid/model/investments_auth_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_auth_get_response.py b/plaid/model/investments_auth_get_response.py index 571ba56f5..fc0f8077c 100644 --- a/plaid/model/investments_auth_get_response.py +++ b/plaid/model/investments_auth_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_auth_owner.py b/plaid/model/investments_auth_owner.py index ee3a6b15b..78a754057 100644 --- a/plaid/model/investments_auth_owner.py +++ b/plaid/model/investments_auth_owner.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_default_update_webhook.py b/plaid/model/investments_default_update_webhook.py index c9a77d976..4dff9a13c 100644 --- a/plaid/model/investments_default_update_webhook.py +++ b/plaid/model/investments_default_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_historical_update_webhook.py b/plaid/model/investments_historical_update_webhook.py index ee2dbf4fd..065edda83 100644 --- a/plaid/model/investments_historical_update_webhook.py +++ b/plaid/model/investments_historical_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_holdings_get_request.py b/plaid/model/investments_holdings_get_request.py index e096a77e1..cbab74e42 100644 --- a/plaid/model/investments_holdings_get_request.py +++ b/plaid/model/investments_holdings_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_holdings_get_response.py b/plaid/model/investments_holdings_get_response.py index 2b1a66457..a0c7dbfec 100644 --- a/plaid/model/investments_holdings_get_response.py +++ b/plaid/model/investments_holdings_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_refresh_request.py b/plaid/model/investments_refresh_request.py index f525ecc5b..0a4b5a2be 100644 --- a/plaid/model/investments_refresh_request.py +++ b/plaid/model/investments_refresh_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_refresh_response.py b/plaid/model/investments_refresh_response.py index cb23c031a..4c60ac1e9 100644 --- a/plaid/model/investments_refresh_response.py +++ b/plaid/model/investments_refresh_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_transactions_get_request.py b/plaid/model/investments_transactions_get_request.py index b29637d5f..c0df88f4e 100644 --- a/plaid/model/investments_transactions_get_request.py +++ b/plaid/model/investments_transactions_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_transactions_get_request_options.py b/plaid/model/investments_transactions_get_request_options.py index 2db31f00e..088b971f8 100644 --- a/plaid/model/investments_transactions_get_request_options.py +++ b/plaid/model/investments_transactions_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_transactions_get_response.py b/plaid/model/investments_transactions_get_response.py index 4e403af14..3821cc596 100644 --- a/plaid/model/investments_transactions_get_response.py +++ b/plaid/model/investments_transactions_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_transactions_override.py b/plaid/model/investments_transactions_override.py index 7b9d77356..6c277f57c 100644 --- a/plaid/model/investments_transactions_override.py +++ b/plaid/model/investments_transactions_override.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/iso_currency_code.py b/plaid/model/iso_currency_code.py index dd947e0ef..24418bf10 100644 --- a/plaid/model/iso_currency_code.py +++ b/plaid/model/iso_currency_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/issue.py b/plaid/model/issue.py index a5430b188..ec330e1b0 100644 --- a/plaid/model/issue.py +++ b/plaid/model/issue.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/issue_resolved_webhook.py b/plaid/model/issue_resolved_webhook.py index eef13b3d4..c05c22045 100644 --- a/plaid/model/issue_resolved_webhook.py +++ b/plaid/model/issue_resolved_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/issues_get_request.py b/plaid/model/issues_get_request.py index 6fb515a5d..651fe2829 100644 --- a/plaid/model/issues_get_request.py +++ b/plaid/model/issues_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/issues_get_response.py b/plaid/model/issues_get_response.py index 00425a81b..3e8f5a251 100644 --- a/plaid/model/issues_get_response.py +++ b/plaid/model/issues_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/issues_search_request.py b/plaid/model/issues_search_request.py index 95e1ce00b..cb3bc055d 100644 --- a/plaid/model/issues_search_request.py +++ b/plaid/model/issues_search_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/issues_search_response.py b/plaid/model/issues_search_response.py index 799d170d7..e6fad7f66 100644 --- a/plaid/model/issues_search_response.py +++ b/plaid/model/issues_search_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/issues_status.py b/plaid/model/issues_status.py index 8525d8468..26ec39cb1 100644 --- a/plaid/model/issues_status.py +++ b/plaid/model/issues_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/issues_subscribe_request.py b/plaid/model/issues_subscribe_request.py index 110588d0c..9003688b5 100644 --- a/plaid/model/issues_subscribe_request.py +++ b/plaid/model/issues_subscribe_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/issues_subscribe_response.py b/plaid/model/issues_subscribe_response.py index 97f874495..1aefb8002 100644 --- a/plaid/model/issues_subscribe_response.py +++ b/plaid/model/issues_subscribe_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/issuing_country.py b/plaid/model/issuing_country.py index bb9bbf265..88a3f0578 100644 --- a/plaid/model/issuing_country.py +++ b/plaid/model/issuing_country.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item.py b/plaid/model/item.py index 82e3c9aad..cb45e9824 100644 --- a/plaid/model/item.py +++ b/plaid/model/item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_access_token_invalidate_request.py b/plaid/model/item_access_token_invalidate_request.py index 1f86adc15..1e4268112 100644 --- a/plaid/model/item_access_token_invalidate_request.py +++ b/plaid/model/item_access_token_invalidate_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_access_token_invalidate_response.py b/plaid/model/item_access_token_invalidate_response.py index 1ac5ed199..f94446a71 100644 --- a/plaid/model/item_access_token_invalidate_response.py +++ b/plaid/model/item_access_token_invalidate_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_activity_list_request.py b/plaid/model/item_activity_list_request.py index 2e31dde8e..5bd8fcf0c 100644 --- a/plaid/model/item_activity_list_request.py +++ b/plaid/model/item_activity_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_activity_list_response.py b/plaid/model/item_activity_list_response.py index bcae6cbce..feb0a6403 100644 --- a/plaid/model/item_activity_list_response.py +++ b/plaid/model/item_activity_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_add_result_webhook.py b/plaid/model/item_add_result_webhook.py index 747aa0955..e13a26ffd 100644 --- a/plaid/model/item_add_result_webhook.py +++ b/plaid/model/item_add_result_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_application_list_request.py b/plaid/model/item_application_list_request.py index 9c5b64d2c..06b1bf8dd 100644 --- a/plaid/model/item_application_list_request.py +++ b/plaid/model/item_application_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_application_list_response.py b/plaid/model/item_application_list_response.py index b000c82b7..5fd2e2f8d 100644 --- a/plaid/model/item_application_list_response.py +++ b/plaid/model/item_application_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_application_list_user_auth.py b/plaid/model/item_application_list_user_auth.py index 8d0c13d8a..078a97888 100644 --- a/plaid/model/item_application_list_user_auth.py +++ b/plaid/model/item_application_list_user_auth.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_application_scopes_update_request.py b/plaid/model/item_application_scopes_update_request.py index 17fab4025..c31e93f23 100644 --- a/plaid/model/item_application_scopes_update_request.py +++ b/plaid/model/item_application_scopes_update_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_application_scopes_update_response.py b/plaid/model/item_application_scopes_update_response.py index b109a39f9..d56e13e04 100644 --- a/plaid/model/item_application_scopes_update_response.py +++ b/plaid/model/item_application_scopes_update_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_application_unlink_request.py b/plaid/model/item_application_unlink_request.py index 6b2d4e06d..06d9085dd 100644 --- a/plaid/model/item_application_unlink_request.py +++ b/plaid/model/item_application_unlink_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_application_unlink_response.py b/plaid/model/item_application_unlink_response.py index 4fc987870..6b32ec9ce 100644 --- a/plaid/model/item_application_unlink_response.py +++ b/plaid/model/item_application_unlink_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_auth_method.py b/plaid/model/item_auth_method.py index df95344ce..8f947344c 100644 --- a/plaid/model/item_auth_method.py +++ b/plaid/model/item_auth_method.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_consented_data_scope.py b/plaid/model/item_consented_data_scope.py index 35b170b5f..45633d16c 100644 --- a/plaid/model/item_consented_data_scope.py +++ b/plaid/model/item_consented_data_scope.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_create_authentication.py b/plaid/model/item_create_authentication.py index 2c32c35b5..cf3954863 100644 --- a/plaid/model/item_create_authentication.py +++ b/plaid/model/item_create_authentication.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_error_webhook.py b/plaid/model/item_error_webhook.py index 055c5d01b..f5167c7fc 100644 --- a/plaid/model/item_error_webhook.py +++ b/plaid/model/item_error_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_get_request.py b/plaid/model/item_get_request.py index bbd7e97de..c8f57caae 100644 --- a/plaid/model/item_get_request.py +++ b/plaid/model/item_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_get_response.py b/plaid/model/item_get_response.py index 24a742edb..0a1423cb5 100644 --- a/plaid/model/item_get_response.py +++ b/plaid/model/item_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_import_request.py b/plaid/model/item_import_request.py index 7a0ada0fb..102464523 100644 --- a/plaid/model/item_import_request.py +++ b/plaid/model/item_import_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_import_request_options.py b/plaid/model/item_import_request_options.py index 185bb1edb..bd8207534 100644 --- a/plaid/model/item_import_request_options.py +++ b/plaid/model/item_import_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_import_request_user_auth.py b/plaid/model/item_import_request_user_auth.py index 0aaf40e45..b3536ab5a 100644 --- a/plaid/model/item_import_request_user_auth.py +++ b/plaid/model/item_import_request_user_auth.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_import_response.py b/plaid/model/item_import_response.py index 03d89fbc4..3a9c0c5ff 100644 --- a/plaid/model/item_import_response.py +++ b/plaid/model/item_import_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_login_repaired_webhook.py b/plaid/model/item_login_repaired_webhook.py index 691c2cf0a..8129755c4 100644 --- a/plaid/model/item_login_repaired_webhook.py +++ b/plaid/model/item_login_repaired_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_product_ready_webhook.py b/plaid/model/item_product_ready_webhook.py index 2a527464c..1491ef388 100644 --- a/plaid/model/item_product_ready_webhook.py +++ b/plaid/model/item_product_ready_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_products_terminate_request.py b/plaid/model/item_products_terminate_request.py index 2ad68333f..3cc76644b 100644 --- a/plaid/model/item_products_terminate_request.py +++ b/plaid/model/item_products_terminate_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_products_terminate_response.py b/plaid/model/item_products_terminate_response.py index d4a9f56b2..10e053bcd 100644 --- a/plaid/model/item_products_terminate_response.py +++ b/plaid/model/item_products_terminate_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_public_token_create_request.py b/plaid/model/item_public_token_create_request.py index 58c1b6867..87f538fdc 100644 --- a/plaid/model/item_public_token_create_request.py +++ b/plaid/model/item_public_token_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_public_token_create_response.py b/plaid/model/item_public_token_create_response.py index 7063eb1be..f7a006833 100644 --- a/plaid/model/item_public_token_create_response.py +++ b/plaid/model/item_public_token_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_public_token_exchange_request.py b/plaid/model/item_public_token_exchange_request.py index d26a1b32f..b3f76b79c 100644 --- a/plaid/model/item_public_token_exchange_request.py +++ b/plaid/model/item_public_token_exchange_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_public_token_exchange_response.py b/plaid/model/item_public_token_exchange_response.py index ba46aaf17..5ee7c2d81 100644 --- a/plaid/model/item_public_token_exchange_response.py +++ b/plaid/model/item_public_token_exchange_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_remove_reason_code.py b/plaid/model/item_remove_reason_code.py index d01349494..72a4a748a 100644 --- a/plaid/model/item_remove_reason_code.py +++ b/plaid/model/item_remove_reason_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_remove_request.py b/plaid/model/item_remove_request.py index ed98bacc0..52fe06523 100644 --- a/plaid/model/item_remove_request.py +++ b/plaid/model/item_remove_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_remove_response.py b/plaid/model/item_remove_response.py index 78756a391..19c70adf6 100644 --- a/plaid/model/item_remove_response.py +++ b/plaid/model/item_remove_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_status.py b/plaid/model/item_status.py index 5a85ad80b..98bc3c30b 100644 --- a/plaid/model/item_status.py +++ b/plaid/model/item_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_status_investments.py b/plaid/model/item_status_investments.py index 9652a8382..50537eac2 100644 --- a/plaid/model/item_status_investments.py +++ b/plaid/model/item_status_investments.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_status_last_webhook.py b/plaid/model/item_status_last_webhook.py index cd9b31cb6..9574d647e 100644 --- a/plaid/model/item_status_last_webhook.py +++ b/plaid/model/item_status_last_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_status_nullable.py b/plaid/model/item_status_nullable.py index 23fc8e587..26032c5b2 100644 --- a/plaid/model/item_status_nullable.py +++ b/plaid/model/item_status_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_status_transactions.py b/plaid/model/item_status_transactions.py index da27722e2..1bdf8354b 100644 --- a/plaid/model/item_status_transactions.py +++ b/plaid/model/item_status_transactions.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_webhook_update_request.py b/plaid/model/item_webhook_update_request.py index 3b947185d..642978216 100644 --- a/plaid/model/item_webhook_update_request.py +++ b/plaid/model/item_webhook_update_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_webhook_update_response.py b/plaid/model/item_webhook_update_response.py index da0d57f2a..08bcc2f1e 100644 --- a/plaid/model/item_webhook_update_response.py +++ b/plaid/model/item_webhook_update_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_with_consent_fields.py b/plaid/model/item_with_consent_fields.py index df1f640df..acec143f0 100644 --- a/plaid/model/item_with_consent_fields.py +++ b/plaid/model/item_with_consent_fields.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_with_consent_fields_all_of.py b/plaid/model/item_with_consent_fields_all_of.py index beb2c831f..e45b83cd9 100644 --- a/plaid/model/item_with_consent_fields_all_of.py +++ b/plaid/model/item_with_consent_fields_all_of.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/jwk_public_key.py b/plaid/model/jwk_public_key.py index 4e551ee9c..237dad2f5 100644 --- a/plaid/model/jwk_public_key.py +++ b/plaid/model/jwk_public_key.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/jwt_header.py b/plaid/model/jwt_header.py index b73018e46..796d0df0e 100644 --- a/plaid/model/jwt_header.py +++ b/plaid/model/jwt_header.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/kyc_check_address_summary.py b/plaid/model/kyc_check_address_summary.py index 1848488cf..a8df58d9c 100644 --- a/plaid/model/kyc_check_address_summary.py +++ b/plaid/model/kyc_check_address_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/kyc_check_date_of_birth_summary.py b/plaid/model/kyc_check_date_of_birth_summary.py index 828019208..f4cc10c24 100644 --- a/plaid/model/kyc_check_date_of_birth_summary.py +++ b/plaid/model/kyc_check_date_of_birth_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/kyc_check_details.py b/plaid/model/kyc_check_details.py index 7dd56047a..c6740d688 100644 --- a/plaid/model/kyc_check_details.py +++ b/plaid/model/kyc_check_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/kyc_check_details_international_address.py b/plaid/model/kyc_check_details_international_address.py index 446fae369..d9a732f8f 100644 --- a/plaid/model/kyc_check_details_international_address.py +++ b/plaid/model/kyc_check_details_international_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/kyc_check_id_number_summary.py b/plaid/model/kyc_check_id_number_summary.py index 15df48297..94570b9e4 100644 --- a/plaid/model/kyc_check_id_number_summary.py +++ b/plaid/model/kyc_check_id_number_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/kyc_check_name_summary.py b/plaid/model/kyc_check_name_summary.py index b2baf094a..a65b9a604 100644 --- a/plaid/model/kyc_check_name_summary.py +++ b/plaid/model/kyc_check_name_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/kyc_check_phone_summary.py b/plaid/model/kyc_check_phone_summary.py index aacbbaa4a..51de4e2e5 100644 --- a/plaid/model/kyc_check_phone_summary.py +++ b/plaid/model/kyc_check_phone_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/last_data_access_times.py b/plaid/model/last_data_access_times.py index ecffcbb08..ae76b5b2c 100644 --- a/plaid/model/last_data_access_times.py +++ b/plaid/model/last_data_access_times.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/latest_scored_event.py b/plaid/model/latest_scored_event.py index 2f3d76e60..352f1929c 100644 --- a/plaid/model/latest_scored_event.py +++ b/plaid/model/latest_scored_event.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/layer_authentication_passed_webhook.py b/plaid/model/layer_authentication_passed_webhook.py index 73bd5e5f3..26762de81 100644 --- a/plaid/model/layer_authentication_passed_webhook.py +++ b/plaid/model/layer_authentication_passed_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/ledger_deposit_idempotency_key.py b/plaid/model/ledger_deposit_idempotency_key.py index c4256a2f3..840675fe6 100644 --- a/plaid/model/ledger_deposit_idempotency_key.py +++ b/plaid/model/ledger_deposit_idempotency_key.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/ledger_distribute_idempotency_key.py b/plaid/model/ledger_distribute_idempotency_key.py index 441bd9199..6fa49fa9f 100644 --- a/plaid/model/ledger_distribute_idempotency_key.py +++ b/plaid/model/ledger_distribute_idempotency_key.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/ledger_event_source_type.py b/plaid/model/ledger_event_source_type.py index 18e009bba..14fe7c1ca 100644 --- a/plaid/model/ledger_event_source_type.py +++ b/plaid/model/ledger_event_source_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/ledger_withdraw_idempotency_key.py b/plaid/model/ledger_withdraw_idempotency_key.py index c48691a7e..283f27c90 100644 --- a/plaid/model/ledger_withdraw_idempotency_key.py +++ b/plaid/model/ledger_withdraw_idempotency_key.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/lend_score.py b/plaid/model/lend_score.py index 9fe2fccc0..8db3f348d 100644 --- a/plaid/model/lend_score.py +++ b/plaid/model/lend_score.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/liabilities_account_ids_with_updated_liabilities.py b/plaid/model/liabilities_account_ids_with_updated_liabilities.py index 4711d1c4f..181e6efd9 100644 --- a/plaid/model/liabilities_account_ids_with_updated_liabilities.py +++ b/plaid/model/liabilities_account_ids_with_updated_liabilities.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/liabilities_default_update_webhook.py b/plaid/model/liabilities_default_update_webhook.py index 50b570015..baf7daf0d 100644 --- a/plaid/model/liabilities_default_update_webhook.py +++ b/plaid/model/liabilities_default_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/liabilities_get_request.py b/plaid/model/liabilities_get_request.py index 85c3e6aa2..c430b8941 100644 --- a/plaid/model/liabilities_get_request.py +++ b/plaid/model/liabilities_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/liabilities_get_request_options.py b/plaid/model/liabilities_get_request_options.py index 8d5378302..c2746077f 100644 --- a/plaid/model/liabilities_get_request_options.py +++ b/plaid/model/liabilities_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/liabilities_get_response.py b/plaid/model/liabilities_get_response.py index 138be0ea1..10fd09f3e 100644 --- a/plaid/model/liabilities_get_response.py +++ b/plaid/model/liabilities_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/liabilities_object.py b/plaid/model/liabilities_object.py index bf2f97bb4..64303451c 100644 --- a/plaid/model/liabilities_object.py +++ b/plaid/model/liabilities_object.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/liability_override.py b/plaid/model/liability_override.py index 6af0890dd..a18940d72 100644 --- a/plaid/model/liability_override.py +++ b/plaid/model/liability_override.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/limited_purpose_type.py b/plaid/model/limited_purpose_type.py index 2886a3744..69f28a0dc 100644 --- a/plaid/model/limited_purpose_type.py +++ b/plaid/model/limited_purpose_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/limited_purpose_types.py b/plaid/model/limited_purpose_types.py index 71cb4521b..85940f2f7 100644 --- a/plaid/model/limited_purpose_types.py +++ b/plaid/model/limited_purpose_types.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_callback_metadata.py b/plaid/model/link_callback_metadata.py index 5f5fb1a55..09e92b2e3 100644 --- a/plaid/model/link_callback_metadata.py +++ b/plaid/model/link_callback_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_account.py b/plaid/model/link_delivery_account.py index a0b646a1f..bf1ccfcfc 100644 --- a/plaid/model/link_delivery_account.py +++ b/plaid/model/link_delivery_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_callback_webhook.py b/plaid/model/link_delivery_callback_webhook.py index 1ef371002..a0668098a 100644 --- a/plaid/model/link_delivery_callback_webhook.py +++ b/plaid/model/link_delivery_callback_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_communication_method.py b/plaid/model/link_delivery_communication_method.py index 396ebe7fe..9e4b948b4 100644 --- a/plaid/model/link_delivery_communication_method.py +++ b/plaid/model/link_delivery_communication_method.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_create_request.py b/plaid/model/link_delivery_create_request.py index c261dd75a..2baa6feb9 100644 --- a/plaid/model/link_delivery_create_request.py +++ b/plaid/model/link_delivery_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_create_response.py b/plaid/model/link_delivery_create_response.py index 50fe481b8..679011be6 100644 --- a/plaid/model/link_delivery_create_response.py +++ b/plaid/model/link_delivery_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_delivery_method.py b/plaid/model/link_delivery_delivery_method.py index a65ededfa..7b01efb8b 100644 --- a/plaid/model/link_delivery_delivery_method.py +++ b/plaid/model/link_delivery_delivery_method.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_get_request.py b/plaid/model/link_delivery_get_request.py index 4d927e9a7..869a068cb 100644 --- a/plaid/model/link_delivery_get_request.py +++ b/plaid/model/link_delivery_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_get_response.py b/plaid/model/link_delivery_get_response.py index 2681aca73..842ecd21a 100644 --- a/plaid/model/link_delivery_get_response.py +++ b/plaid/model/link_delivery_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_institution.py b/plaid/model/link_delivery_institution.py index 42cc63432..0503f9b4c 100644 --- a/plaid/model/link_delivery_institution.py +++ b/plaid/model/link_delivery_institution.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_metadata.py b/plaid/model/link_delivery_metadata.py index 7f0afa5c9..66aea3e53 100644 --- a/plaid/model/link_delivery_metadata.py +++ b/plaid/model/link_delivery_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_options.py b/plaid/model/link_delivery_options.py index 8f6eb50ff..c4274208e 100644 --- a/plaid/model/link_delivery_options.py +++ b/plaid/model/link_delivery_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_recipient.py b/plaid/model/link_delivery_recipient.py index 296c1b9f2..510b2ce7c 100644 --- a/plaid/model/link_delivery_recipient.py +++ b/plaid/model/link_delivery_recipient.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_session_status.py b/plaid/model/link_delivery_session_status.py index 6f9db1318..3d9c5bd22 100644 --- a/plaid/model/link_delivery_session_status.py +++ b/plaid/model/link_delivery_session_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_verification_status.py b/plaid/model/link_delivery_verification_status.py index b4c93adb4..36086c9a9 100644 --- a/plaid/model/link_delivery_verification_status.py +++ b/plaid/model/link_delivery_verification_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_webhook_callback_type.py b/plaid/model/link_delivery_webhook_callback_type.py index 1b1317fc1..07707814e 100644 --- a/plaid/model/link_delivery_webhook_callback_type.py +++ b/plaid/model/link_delivery_webhook_callback_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_webhook_communication_method.py b/plaid/model/link_delivery_webhook_communication_method.py index 5ebe19d13..18f93c87d 100644 --- a/plaid/model/link_delivery_webhook_communication_method.py +++ b/plaid/model/link_delivery_webhook_communication_method.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_webhook_delivery_status.py b/plaid/model/link_delivery_webhook_delivery_status.py index 520bd910c..0f45b11bc 100644 --- a/plaid/model/link_delivery_webhook_delivery_status.py +++ b/plaid/model/link_delivery_webhook_delivery_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_event.py b/plaid/model/link_event.py index bd736da63..251d54b90 100644 --- a/plaid/model/link_event.py +++ b/plaid/model/link_event.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_event_metadata.py b/plaid/model/link_event_metadata.py index 12440a492..f530ebcb7 100644 --- a/plaid/model/link_event_metadata.py +++ b/plaid/model/link_event_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_event_name.py b/plaid/model/link_event_name.py index 3656bb488..a3106f13a 100644 --- a/plaid/model/link_event_name.py +++ b/plaid/model/link_event_name.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_events_webhook.py b/plaid/model/link_events_webhook.py index d1f8b8f11..a82676665 100644 --- a/plaid/model/link_events_webhook.py +++ b/plaid/model/link_events_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_o_auth_correlation_id_exchange_request.py b/plaid/model/link_o_auth_correlation_id_exchange_request.py index 2ab81c663..aafa93e90 100644 --- a/plaid/model/link_o_auth_correlation_id_exchange_request.py +++ b/plaid/model/link_o_auth_correlation_id_exchange_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_o_auth_correlation_id_exchange_response.py b/plaid/model/link_o_auth_correlation_id_exchange_response.py index a30114e0c..2adfe2cfe 100644 --- a/plaid/model/link_o_auth_correlation_id_exchange_response.py +++ b/plaid/model/link_o_auth_correlation_id_exchange_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_bank_employment_result.py b/plaid/model/link_session_bank_employment_result.py index 8c8515761..be09807be 100644 --- a/plaid/model/link_session_bank_employment_result.py +++ b/plaid/model/link_session_bank_employment_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_bank_income_result.py b/plaid/model/link_session_bank_income_result.py index f3c2d719d..278dff846 100644 --- a/plaid/model/link_session_bank_income_result.py +++ b/plaid/model/link_session_bank_income_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_cra_document_upload_result.py b/plaid/model/link_session_cra_document_upload_result.py index 4ec5d3c96..4e60f88d0 100644 --- a/plaid/model/link_session_cra_document_upload_result.py +++ b/plaid/model/link_session_cra_document_upload_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_cra_item_add_result.py b/plaid/model/link_session_cra_item_add_result.py index c44efa7a4..ec52ffbeb 100644 --- a/plaid/model/link_session_cra_item_add_result.py +++ b/plaid/model/link_session_cra_item_add_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_cra_update_result.py b/plaid/model/link_session_cra_update_result.py index fbf4f4d41..5fd68f230 100644 --- a/plaid/model/link_session_cra_update_result.py +++ b/plaid/model/link_session_cra_update_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_exit.py b/plaid/model/link_session_exit.py index d76647549..ca4cbbf5a 100644 --- a/plaid/model/link_session_exit.py +++ b/plaid/model/link_session_exit.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_exit_deprecated.py b/plaid/model/link_session_exit_deprecated.py index 9f5eefb1b..e8e7ed56a 100644 --- a/plaid/model/link_session_exit_deprecated.py +++ b/plaid/model/link_session_exit_deprecated.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_exit_metadata.py b/plaid/model/link_session_exit_metadata.py index 0ee295699..2536c30bd 100644 --- a/plaid/model/link_session_exit_metadata.py +++ b/plaid/model/link_session_exit_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_exit_metadata_institution.py b/plaid/model/link_session_exit_metadata_institution.py index 4402f82ea..ccf203a19 100644 --- a/plaid/model/link_session_exit_metadata_institution.py +++ b/plaid/model/link_session_exit_metadata_institution.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_finished_webhook.py b/plaid/model/link_session_finished_webhook.py index fdbc68598..259cec9ac 100644 --- a/plaid/model/link_session_finished_webhook.py +++ b/plaid/model/link_session_finished_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_item_add_result.py b/plaid/model/link_session_item_add_result.py index ce4d85178..d0052a279 100644 --- a/plaid/model/link_session_item_add_result.py +++ b/plaid/model/link_session_item_add_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_payroll_income_result.py b/plaid/model/link_session_payroll_income_result.py index f4c845e91..d19b42a11 100644 --- a/plaid/model/link_session_payroll_income_result.py +++ b/plaid/model/link_session_payroll_income_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_results.py b/plaid/model/link_session_results.py index 6af743c38..53d7d0cbc 100644 --- a/plaid/model/link_session_results.py +++ b/plaid/model/link_session_results.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_success.py b/plaid/model/link_session_success.py index 9f6e42169..5e7e2f613 100644 --- a/plaid/model/link_session_success.py +++ b/plaid/model/link_session_success.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_success_metadata.py b/plaid/model/link_session_success_metadata.py index dfcd890fc..4118882d7 100644 --- a/plaid/model/link_session_success_metadata.py +++ b/plaid/model/link_session_success_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_success_metadata_account.py b/plaid/model/link_session_success_metadata_account.py index 9a4ba8b75..23ebe045a 100644 --- a/plaid/model/link_session_success_metadata_account.py +++ b/plaid/model/link_session_success_metadata_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_success_metadata_institution.py b/plaid/model/link_session_success_metadata_institution.py index 32633c3db..855036465 100644 --- a/plaid/model/link_session_success_metadata_institution.py +++ b/plaid/model/link_session_success_metadata_institution.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_success_metadata_transfer_status.py b/plaid/model/link_session_success_metadata_transfer_status.py index efb1d01ea..a742bedad 100644 --- a/plaid/model/link_session_success_metadata_transfer_status.py +++ b/plaid/model/link_session_success_metadata_transfer_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_account_filters.py b/plaid/model/link_token_account_filters.py index 6d1ac8d08..c1b571dad 100644 --- a/plaid/model/link_token_account_filters.py +++ b/plaid/model/link_token_account_filters.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_cashflow_report.py b/plaid/model/link_token_cashflow_report.py index 5773f0755..fb34afca7 100644 --- a/plaid/model/link_token_cashflow_report.py +++ b/plaid/model/link_token_cashflow_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_card_switch.py b/plaid/model/link_token_create_card_switch.py index 907fcc03b..25b4de007 100644 --- a/plaid/model/link_token_create_card_switch.py +++ b/plaid/model/link_token_create_card_switch.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_credit_filter.py b/plaid/model/link_token_create_credit_filter.py index 85083c9e5..9876e963c 100644 --- a/plaid/model/link_token_create_credit_filter.py +++ b/plaid/model/link_token_create_credit_filter.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_depository_filter.py b/plaid/model/link_token_create_depository_filter.py index c2f98712c..2022f4a73 100644 --- a/plaid/model/link_token_create_depository_filter.py +++ b/plaid/model/link_token_create_depository_filter.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_hosted_link.py b/plaid/model/link_token_create_hosted_link.py index 3693cc241..889962e6f 100644 --- a/plaid/model/link_token_create_hosted_link.py +++ b/plaid/model/link_token_create_hosted_link.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_identity.py b/plaid/model/link_token_create_identity.py index f9b5d8429..a43fcf6bd 100644 --- a/plaid/model/link_token_create_identity.py +++ b/plaid/model/link_token_create_identity.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_institution_data.py b/plaid/model/link_token_create_institution_data.py index 9b0334712..aca3c7045 100644 --- a/plaid/model/link_token_create_institution_data.py +++ b/plaid/model/link_token_create_institution_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_investment_filter.py b/plaid/model/link_token_create_investment_filter.py index 9844cac29..c13eb37bd 100644 --- a/plaid/model/link_token_create_investment_filter.py +++ b/plaid/model/link_token_create_investment_filter.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_loan_filter.py b/plaid/model/link_token_create_loan_filter.py index 122d70f65..670f77b0d 100644 --- a/plaid/model/link_token_create_loan_filter.py +++ b/plaid/model/link_token_create_loan_filter.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request.py b/plaid/model/link_token_create_request.py index ba40898be..17386b464 100644 --- a/plaid/model/link_token_create_request.py +++ b/plaid/model/link_token_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_account_subtypes.py b/plaid/model/link_token_create_request_account_subtypes.py index 1659fa227..6a345a2cb 100644 --- a/plaid/model/link_token_create_request_account_subtypes.py +++ b/plaid/model/link_token_create_request_account_subtypes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_appearance_mode.py b/plaid/model/link_token_create_request_appearance_mode.py index cafb98326..6263bfbda 100644 --- a/plaid/model/link_token_create_request_appearance_mode.py +++ b/plaid/model/link_token_create_request_appearance_mode.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_auth.py b/plaid/model/link_token_create_request_auth.py index ca4aedb04..8268b75e8 100644 --- a/plaid/model/link_token_create_request_auth.py +++ b/plaid/model/link_token_create_request_auth.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_base_report.py b/plaid/model/link_token_create_request_base_report.py index b8763b464..37ac1a779 100644 --- a/plaid/model/link_token_create_request_base_report.py +++ b/plaid/model/link_token_create_request_base_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_cra_options.py b/plaid/model/link_token_create_request_cra_options.py index c4d5dca76..9de98e854 100644 --- a/plaid/model/link_token_create_request_cra_options.py +++ b/plaid/model/link_token_create_request_cra_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_cra_options_base_report.py b/plaid/model/link_token_create_request_cra_options_base_report.py index 55d0dc6a5..321f4227c 100644 --- a/plaid/model/link_token_create_request_cra_options_base_report.py +++ b/plaid/model/link_token_create_request_cra_options_base_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_cra_options_base_report_gse_options.py b/plaid/model/link_token_create_request_cra_options_base_report_gse_options.py index ea4e8f5e3..e3a152f8a 100644 --- a/plaid/model/link_token_create_request_cra_options_base_report_gse_options.py +++ b/plaid/model/link_token_create_request_cra_options_base_report_gse_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_cra_options_cashflow_insights.py b/plaid/model/link_token_create_request_cra_options_cashflow_insights.py index 894c7f68d..7005656f3 100644 --- a/plaid/model/link_token_create_request_cra_options_cashflow_insights.py +++ b/plaid/model/link_token_create_request_cra_options_cashflow_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_cra_options_income_insights.py b/plaid/model/link_token_create_request_cra_options_income_insights.py index ccd01840f..815189bf3 100644 --- a/plaid/model/link_token_create_request_cra_options_income_insights.py +++ b/plaid/model/link_token_create_request_cra_options_income_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_cra_options_lend_score.py b/plaid/model/link_token_create_request_cra_options_lend_score.py index 1e6fea416..1e103eea3 100644 --- a/plaid/model/link_token_create_request_cra_options_lend_score.py +++ b/plaid/model/link_token_create_request_cra_options_lend_score.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_cra_options_network_insights.py b/plaid/model/link_token_create_request_cra_options_network_insights.py index d27353ec5..b0c20c405 100644 --- a/plaid/model/link_token_create_request_cra_options_network_insights.py +++ b/plaid/model/link_token_create_request_cra_options_network_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_cra_options_partner_insights.py b/plaid/model/link_token_create_request_cra_options_partner_insights.py index 92280473d..676bc0edd 100644 --- a/plaid/model/link_token_create_request_cra_options_partner_insights.py +++ b/plaid/model/link_token_create_request_cra_options_partner_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_credit_partner_insights.py b/plaid/model/link_token_create_request_credit_partner_insights.py index 82413946f..170c8c1de 100644 --- a/plaid/model/link_token_create_request_credit_partner_insights.py +++ b/plaid/model/link_token_create_request_credit_partner_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_deposit_switch.py b/plaid/model/link_token_create_request_deposit_switch.py index a086ebe26..5e71e6561 100644 --- a/plaid/model/link_token_create_request_deposit_switch.py +++ b/plaid/model/link_token_create_request_deposit_switch.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_employment.py b/plaid/model/link_token_create_request_employment.py index 132bc6f95..d53ee81f5 100644 --- a/plaid/model/link_token_create_request_employment.py +++ b/plaid/model/link_token_create_request_employment.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_employment_bank_income.py b/plaid/model/link_token_create_request_employment_bank_income.py index 63f0fe071..48a9b22d7 100644 --- a/plaid/model/link_token_create_request_employment_bank_income.py +++ b/plaid/model/link_token_create_request_employment_bank_income.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_identity_verification.py b/plaid/model/link_token_create_request_identity_verification.py index a9d4cd060..e171c9a9c 100644 --- a/plaid/model/link_token_create_request_identity_verification.py +++ b/plaid/model/link_token_create_request_identity_verification.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_income_verification.py b/plaid/model/link_token_create_request_income_verification.py index c7a376e7e..3c71bc854 100644 --- a/plaid/model/link_token_create_request_income_verification.py +++ b/plaid/model/link_token_create_request_income_verification.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_income_verification_bank_income.py b/plaid/model/link_token_create_request_income_verification_bank_income.py index a4c7aaec6..ffb993fac 100644 --- a/plaid/model/link_token_create_request_income_verification_bank_income.py +++ b/plaid/model/link_token_create_request_income_verification_bank_income.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_income_verification_payroll_income.py b/plaid/model/link_token_create_request_income_verification_payroll_income.py index cbdab8233..9a4213e72 100644 --- a/plaid/model/link_token_create_request_income_verification_payroll_income.py +++ b/plaid/model/link_token_create_request_income_verification_payroll_income.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_payment_configuration.py b/plaid/model/link_token_create_request_payment_configuration.py index 31ee11984..91b676df4 100644 --- a/plaid/model/link_token_create_request_payment_configuration.py +++ b/plaid/model/link_token_create_request_payment_configuration.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_payment_initiation.py b/plaid/model/link_token_create_request_payment_initiation.py index e31b55318..02b04e72e 100644 --- a/plaid/model/link_token_create_request_payment_initiation.py +++ b/plaid/model/link_token_create_request_payment_initiation.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_statements.py b/plaid/model/link_token_create_request_statements.py index 72b38c1ef..7a6a1a670 100644 --- a/plaid/model/link_token_create_request_statements.py +++ b/plaid/model/link_token_create_request_statements.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_transfer.py b/plaid/model/link_token_create_request_transfer.py index e286d4e7a..159c03b6c 100644 --- a/plaid/model/link_token_create_request_transfer.py +++ b/plaid/model/link_token_create_request_transfer.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_update.py b/plaid/model/link_token_create_request_update.py index 8a5ff85e9..afd650882 100644 --- a/plaid/model/link_token_create_request_update.py +++ b/plaid/model/link_token_create_request_update.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_user.py b/plaid/model/link_token_create_request_user.py index 59061775a..e8293fe1d 100644 --- a/plaid/model/link_token_create_request_user.py +++ b/plaid/model/link_token_create_request_user.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_user_address.py b/plaid/model/link_token_create_request_user_address.py index b6be9ae48..135c71eb7 100644 --- a/plaid/model/link_token_create_request_user_address.py +++ b/plaid/model/link_token_create_request_user_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_user_id_number.py b/plaid/model/link_token_create_request_user_id_number.py index 864d70195..adcac32f0 100644 --- a/plaid/model/link_token_create_request_user_id_number.py +++ b/plaid/model/link_token_create_request_user_id_number.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_user_name.py b/plaid/model/link_token_create_request_user_name.py index a4dbd58c0..337268096 100644 --- a/plaid/model/link_token_create_request_user_name.py +++ b/plaid/model/link_token_create_request_user_name.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_user_stated_income_source.py b/plaid/model/link_token_create_request_user_stated_income_source.py index aaf640a23..5e8314f81 100644 --- a/plaid/model/link_token_create_request_user_stated_income_source.py +++ b/plaid/model/link_token_create_request_user_stated_income_source.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_response.py b/plaid/model/link_token_create_response.py index 664affcca..15f1aa9e4 100644 --- a/plaid/model/link_token_create_response.py +++ b/plaid/model/link_token_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_eu_config.py b/plaid/model/link_token_eu_config.py index e0f434713..5ee904f49 100644 --- a/plaid/model/link_token_eu_config.py +++ b/plaid/model/link_token_eu_config.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_get_metadata_response.py b/plaid/model/link_token_get_metadata_response.py index 3ca37535a..548d32d62 100644 --- a/plaid/model/link_token_get_metadata_response.py +++ b/plaid/model/link_token_get_metadata_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_get_request.py b/plaid/model/link_token_get_request.py index 4c138c420..69343cf4a 100644 --- a/plaid/model/link_token_get_request.py +++ b/plaid/model/link_token_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_get_response.py b/plaid/model/link_token_get_response.py index ef3def92f..2c4937101 100644 --- a/plaid/model/link_token_get_response.py +++ b/plaid/model/link_token_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_get_sessions_response.py b/plaid/model/link_token_get_sessions_response.py index 21c93e2ec..4bbcb1aab 100644 --- a/plaid/model/link_token_get_sessions_response.py +++ b/plaid/model/link_token_get_sessions_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_investments.py b/plaid/model/link_token_investments.py index 9113c679f..2346c5d8c 100644 --- a/plaid/model/link_token_investments.py +++ b/plaid/model/link_token_investments.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_investments_auth.py b/plaid/model/link_token_investments_auth.py index 9fb547da5..943f5634a 100644 --- a/plaid/model/link_token_investments_auth.py +++ b/plaid/model/link_token_investments_auth.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_transactions.py b/plaid/model/link_token_transactions.py index d744280b8..b47f76cc6 100644 --- a/plaid/model/link_token_transactions.py +++ b/plaid/model/link_token_transactions.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_user_delivery_status_webhook.py b/plaid/model/link_user_delivery_status_webhook.py index 923f41f83..3689cfc28 100644 --- a/plaid/model/link_user_delivery_status_webhook.py +++ b/plaid/model/link_user_delivery_status_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan.py b/plaid/model/loan.py index 89f3ae75c..299bdf4a8 100644 --- a/plaid/model/loan.py +++ b/plaid/model/loan.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_account_subtype.py b/plaid/model/loan_account_subtype.py index 3752d439d..ab858f7bf 100644 --- a/plaid/model/loan_account_subtype.py +++ b/plaid/model/loan_account_subtype.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_account_subtypes.py b/plaid/model/loan_account_subtypes.py index 3adde793b..9a0b251a1 100644 --- a/plaid/model/loan_account_subtypes.py +++ b/plaid/model/loan_account_subtypes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_disbursements_indicators.py b/plaid/model/loan_disbursements_indicators.py index bc0b86b9b..2447810d2 100644 --- a/plaid/model/loan_disbursements_indicators.py +++ b/plaid/model/loan_disbursements_indicators.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_filter.py b/plaid/model/loan_filter.py index d66aeeac1..719435412 100644 --- a/plaid/model/loan_filter.py +++ b/plaid/model/loan_filter.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_identifier.py b/plaid/model/loan_identifier.py index 45c400a43..279b609ce 100644 --- a/plaid/model/loan_identifier.py +++ b/plaid/model/loan_identifier.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_identifier_type.py b/plaid/model/loan_identifier_type.py index eb30b7dac..ca06fbe34 100644 --- a/plaid/model/loan_identifier_type.py +++ b/plaid/model/loan_identifier_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_identifiers.py b/plaid/model/loan_identifiers.py index 4e8d458ee..630bb93f6 100644 --- a/plaid/model/loan_identifiers.py +++ b/plaid/model/loan_identifiers.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_payments_counts.py b/plaid/model/loan_payments_counts.py index 3dd3ed5c4..29e679fbb 100644 --- a/plaid/model/loan_payments_counts.py +++ b/plaid/model/loan_payments_counts.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_payments_indicators.py b/plaid/model/loan_payments_indicators.py index a2f9982b1..f1ab06e41 100644 --- a/plaid/model/loan_payments_indicators.py +++ b/plaid/model/loan_payments_indicators.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_payments_merchant_counts.py b/plaid/model/loan_payments_merchant_counts.py index fcbac15c8..f16f6c8a1 100644 --- a/plaid/model/loan_payments_merchant_counts.py +++ b/plaid/model/loan_payments_merchant_counts.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loans.py b/plaid/model/loans.py index 0094aadbc..648d805e6 100644 --- a/plaid/model/loans.py +++ b/plaid/model/loans.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/location.py b/plaid/model/location.py index 1b39efb4f..79ef1bbc5 100644 --- a/plaid/model/location.py +++ b/plaid/model/location.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/match_summary.py b/plaid/model/match_summary.py index 40a4a66af..6a6349a57 100644 --- a/plaid/model/match_summary.py +++ b/plaid/model/match_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/match_summary_code.py b/plaid/model/match_summary_code.py index cc5b064aa..52fb908d4 100644 --- a/plaid/model/match_summary_code.py +++ b/plaid/model/match_summary_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/merchant_insights.py b/plaid/model/merchant_insights.py index 48c302df0..399a7ff93 100644 --- a/plaid/model/merchant_insights.py +++ b/plaid/model/merchant_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/meta.py b/plaid/model/meta.py index 50b40f59e..db5821fce 100644 --- a/plaid/model/meta.py +++ b/plaid/model/meta.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/mfa.py b/plaid/model/mfa.py index 7c08b7f75..a4e314b74 100644 --- a/plaid/model/mfa.py +++ b/plaid/model/mfa.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/monitoring_consumer_report_permissible_purpose.py b/plaid/model/monitoring_consumer_report_permissible_purpose.py index 9a3bcd5a5..45c982caf 100644 --- a/plaid/model/monitoring_consumer_report_permissible_purpose.py +++ b/plaid/model/monitoring_consumer_report_permissible_purpose.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/monitoring_income_insights.py b/plaid/model/monitoring_income_insights.py index 9813ab143..03449a129 100644 --- a/plaid/model/monitoring_income_insights.py +++ b/plaid/model/monitoring_income_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/monitoring_income_source.py b/plaid/model/monitoring_income_source.py index 5de063a31..acb06ec53 100644 --- a/plaid/model/monitoring_income_source.py +++ b/plaid/model/monitoring_income_source.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/monitoring_insights.py b/plaid/model/monitoring_insights.py index 1d1e0f463..edd46d0cd 100644 --- a/plaid/model/monitoring_insights.py +++ b/plaid/model/monitoring_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/monitoring_insights_item_status.py b/plaid/model/monitoring_insights_item_status.py index d438c6333..f83d1a76e 100644 --- a/plaid/model/monitoring_insights_item_status.py +++ b/plaid/model/monitoring_insights_item_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/monitoring_insights_status.py b/plaid/model/monitoring_insights_status.py index 6e4287e5f..234aab2c8 100644 --- a/plaid/model/monitoring_insights_status.py +++ b/plaid/model/monitoring_insights_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/monitoring_item_status_code.py b/plaid/model/monitoring_item_status_code.py index af062bba1..8d522ccbc 100644 --- a/plaid/model/monitoring_item_status_code.py +++ b/plaid/model/monitoring_item_status_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/monitoring_loan_insights.py b/plaid/model/monitoring_loan_insights.py index 6c4d0e25c..f4df28393 100644 --- a/plaid/model/monitoring_loan_insights.py +++ b/plaid/model/monitoring_loan_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/monthly_average.py b/plaid/model/monthly_average.py index 096f80e39..e8115398f 100644 --- a/plaid/model/monthly_average.py +++ b/plaid/model/monthly_average.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/monthly_summary.py b/plaid/model/monthly_summary.py index 9e2e1adcf..9d365be0e 100644 --- a/plaid/model/monthly_summary.py +++ b/plaid/model/monthly_summary.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/mortgage_interest_rate.py b/plaid/model/mortgage_interest_rate.py index 1f1b8561f..fc6556216 100644 --- a/plaid/model/mortgage_interest_rate.py +++ b/plaid/model/mortgage_interest_rate.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/mortgage_liability.py b/plaid/model/mortgage_liability.py index 0b42a41d1..f8bb8caed 100644 --- a/plaid/model/mortgage_liability.py +++ b/plaid/model/mortgage_liability.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/mortgage_property_address.py b/plaid/model/mortgage_property_address.py index 931d06bac..21731f8ed 100644 --- a/plaid/model/mortgage_property_address.py +++ b/plaid/model/mortgage_property_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/multi_document_risk_signal.py b/plaid/model/multi_document_risk_signal.py index 72d79ec7d..13750b3e4 100644 --- a/plaid/model/multi_document_risk_signal.py +++ b/plaid/model/multi_document_risk_signal.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/name_match_score.py b/plaid/model/name_match_score.py index dec14f1e4..3a4cc271b 100644 --- a/plaid/model/name_match_score.py +++ b/plaid/model/name_match_score.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/negative_balance_insights.py b/plaid/model/negative_balance_insights.py index 142cb1e7d..6daa8698d 100644 --- a/plaid/model/negative_balance_insights.py +++ b/plaid/model/negative_balance_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/negative_balance_occurrence.py b/plaid/model/negative_balance_occurrence.py index 55ef180aa..d36523634 100644 --- a/plaid/model/negative_balance_occurrence.py +++ b/plaid/model/negative_balance_occurrence.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/net_pay.py b/plaid/model/net_pay.py index d62d6b00c..fdd67b895 100644 --- a/plaid/model/net_pay.py +++ b/plaid/model/net_pay.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/network_insights_version.py b/plaid/model/network_insights_version.py index 7bfa2ce3a..c65d824c7 100644 --- a/plaid/model/network_insights_version.py +++ b/plaid/model/network_insights_version.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/network_status_get_request.py b/plaid/model/network_status_get_request.py index e861b0273..ff0aeeb4b 100644 --- a/plaid/model/network_status_get_request.py +++ b/plaid/model/network_status_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/network_status_get_response.py b/plaid/model/network_status_get_response.py index c2c026f2c..a94ae9679 100644 --- a/plaid/model/network_status_get_response.py +++ b/plaid/model/network_status_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/network_status_get_response_layer.py b/plaid/model/network_status_get_response_layer.py index 09966f0a9..138f110d7 100644 --- a/plaid/model/network_status_get_response_layer.py +++ b/plaid/model/network_status_get_response_layer.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/network_status_get_response_network_status.py b/plaid/model/network_status_get_response_network_status.py index a8905df50..2c8e94902 100644 --- a/plaid/model/network_status_get_response_network_status.py +++ b/plaid/model/network_status_get_response_network_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/network_status_get_user.py b/plaid/model/network_status_get_user.py index 9d0d83c0f..7b2506b1b 100644 --- a/plaid/model/network_status_get_user.py +++ b/plaid/model/network_status_get_user.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/new_accounts_available_webhook.py b/plaid/model/new_accounts_available_webhook.py index 7a03d348e..f385041ad 100644 --- a/plaid/model/new_accounts_available_webhook.py +++ b/plaid/model/new_accounts_available_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers.py b/plaid/model/numbers.py index 34771d7cb..2306c92dc 100644 --- a/plaid/model/numbers.py +++ b/plaid/model/numbers.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_acats.py b/plaid/model/numbers_acats.py index b2cb4c0c6..3d448a3c0 100644 --- a/plaid/model/numbers_acats.py +++ b/plaid/model/numbers_acats.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_ach.py b/plaid/model/numbers_ach.py index 71b70ec96..e89397168 100644 --- a/plaid/model/numbers_ach.py +++ b/plaid/model/numbers_ach.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_ach_nullable.py b/plaid/model/numbers_ach_nullable.py index dea9592b7..17ffc5097 100644 --- a/plaid/model/numbers_ach_nullable.py +++ b/plaid/model/numbers_ach_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_aton.py b/plaid/model/numbers_aton.py index d9f2fa355..1a1d7ba0f 100644 --- a/plaid/model/numbers_aton.py +++ b/plaid/model/numbers_aton.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_bacs.py b/plaid/model/numbers_bacs.py index 4051b52eb..06f6e2d01 100644 --- a/plaid/model/numbers_bacs.py +++ b/plaid/model/numbers_bacs.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_bacs_nullable.py b/plaid/model/numbers_bacs_nullable.py index 2d6ab4000..6ed6a8f1f 100644 --- a/plaid/model/numbers_bacs_nullable.py +++ b/plaid/model/numbers_bacs_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_eft.py b/plaid/model/numbers_eft.py index 2bd14a1ed..2fd76baa9 100644 --- a/plaid/model/numbers_eft.py +++ b/plaid/model/numbers_eft.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_eft_nullable.py b/plaid/model/numbers_eft_nullable.py index c06f53b9d..cca705dd7 100644 --- a/plaid/model/numbers_eft_nullable.py +++ b/plaid/model/numbers_eft_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_iban.py b/plaid/model/numbers_iban.py index a761cf919..07aee4505 100644 --- a/plaid/model/numbers_iban.py +++ b/plaid/model/numbers_iban.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_iban_nullable.py b/plaid/model/numbers_iban_nullable.py index a5439b36d..40658b664 100644 --- a/plaid/model/numbers_iban_nullable.py +++ b/plaid/model/numbers_iban_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_international.py b/plaid/model/numbers_international.py index 28ec9a9f6..8413f0a4e 100644 --- a/plaid/model/numbers_international.py +++ b/plaid/model/numbers_international.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_international_iban.py b/plaid/model/numbers_international_iban.py index e9961b649..587a5f22c 100644 --- a/plaid/model/numbers_international_iban.py +++ b/plaid/model/numbers_international_iban.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_international_nullable.py b/plaid/model/numbers_international_nullable.py index 90b533d09..f68976214 100644 --- a/plaid/model/numbers_international_nullable.py +++ b/plaid/model/numbers_international_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_retirement401k.py b/plaid/model/numbers_retirement401k.py index 026103e59..9996376f0 100644 --- a/plaid/model/numbers_retirement401k.py +++ b/plaid/model/numbers_retirement401k.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/o_auth_error_code.py b/plaid/model/o_auth_error_code.py index 0928d6065..dd746d81a 100644 --- a/plaid/model/o_auth_error_code.py +++ b/plaid/model/o_auth_error_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/o_auth_error_response.py b/plaid/model/o_auth_error_response.py index 7872799c1..4cbae1c1d 100644 --- a/plaid/model/o_auth_error_response.py +++ b/plaid/model/o_auth_error_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/o_auth_grant_type.py b/plaid/model/o_auth_grant_type.py index fe912d264..3af84c6e1 100644 --- a/plaid/model/o_auth_grant_type.py +++ b/plaid/model/o_auth_grant_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/o_auth_introspect_request.py b/plaid/model/o_auth_introspect_request.py index aad591166..083206cdf 100644 --- a/plaid/model/o_auth_introspect_request.py +++ b/plaid/model/o_auth_introspect_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/o_auth_introspect_response.py b/plaid/model/o_auth_introspect_response.py index c9fb642df..a95f0a302 100644 --- a/plaid/model/o_auth_introspect_response.py +++ b/plaid/model/o_auth_introspect_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/o_auth_revoke_request.py b/plaid/model/o_auth_revoke_request.py index 886ad32e8..e75f2e785 100644 --- a/plaid/model/o_auth_revoke_request.py +++ b/plaid/model/o_auth_revoke_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/o_auth_revoke_response.py b/plaid/model/o_auth_revoke_response.py index cbadf450d..ac457be5a 100644 --- a/plaid/model/o_auth_revoke_response.py +++ b/plaid/model/o_auth_revoke_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/o_auth_subject_token_type.py b/plaid/model/o_auth_subject_token_type.py index a3100c38f..4432a152a 100644 --- a/plaid/model/o_auth_subject_token_type.py +++ b/plaid/model/o_auth_subject_token_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/o_auth_token_request.py b/plaid/model/o_auth_token_request.py index a8f0a03ba..1f9f14306 100644 --- a/plaid/model/o_auth_token_request.py +++ b/plaid/model/o_auth_token_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/o_auth_token_response.py b/plaid/model/o_auth_token_response.py index 13cc264c5..9baf13924 100644 --- a/plaid/model/o_auth_token_response.py +++ b/plaid/model/o_auth_token_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/omittable_transfer_type.py b/plaid/model/omittable_transfer_type.py index a3929c0a7..3097a7df8 100644 --- a/plaid/model/omittable_transfer_type.py +++ b/plaid/model/omittable_transfer_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/option_contract.py b/plaid/model/option_contract.py index e21fe239c..26e3466cc 100644 --- a/plaid/model/option_contract.py +++ b/plaid/model/option_contract.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/originating_fund_source.py b/plaid/model/originating_fund_source.py index 0d4040c4e..9b43515fb 100644 --- a/plaid/model/originating_fund_source.py +++ b/plaid/model/originating_fund_source.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/originator.py b/plaid/model/originator.py index 2799da3bb..bfae1cc6b 100644 --- a/plaid/model/originator.py +++ b/plaid/model/originator.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/originator_expected_transfer_frequency.py b/plaid/model/originator_expected_transfer_frequency.py index 5897599df..255a599a4 100644 --- a/plaid/model/originator_expected_transfer_frequency.py +++ b/plaid/model/originator_expected_transfer_frequency.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/other_account_subtype.py b/plaid/model/other_account_subtype.py index 496990dec..c5de3639e 100644 --- a/plaid/model/other_account_subtype.py +++ b/plaid/model/other_account_subtype.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/other_account_subtypes.py b/plaid/model/other_account_subtypes.py index f875c2185..7d65ec2e0 100644 --- a/plaid/model/other_account_subtypes.py +++ b/plaid/model/other_account_subtypes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/other_filter.py b/plaid/model/other_filter.py index d2f9ebd17..d7d7ba80b 100644 --- a/plaid/model/other_filter.py +++ b/plaid/model/other_filter.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/outlier_transactions_insights.py b/plaid/model/outlier_transactions_insights.py index 84e3fe7fe..26dcc61b8 100644 --- a/plaid/model/outlier_transactions_insights.py +++ b/plaid/model/outlier_transactions_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/override_account_type.py b/plaid/model/override_account_type.py index c43d47553..2a19aed23 100644 --- a/plaid/model/override_account_type.py +++ b/plaid/model/override_account_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/override_accounts.py b/plaid/model/override_accounts.py index f47dd8c4a..608d82e86 100644 --- a/plaid/model/override_accounts.py +++ b/plaid/model/override_accounts.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/owner.py b/plaid/model/owner.py index 71f2e97b2..a37095c1d 100644 --- a/plaid/model/owner.py +++ b/plaid/model/owner.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/owner_override.py b/plaid/model/owner_override.py index d862da4c6..a8efdf736 100644 --- a/plaid/model/owner_override.py +++ b/plaid/model/owner_override.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/ownership_type.py b/plaid/model/ownership_type.py index 2b9e77cf4..b1dfbd595 100644 --- a/plaid/model/ownership_type.py +++ b/plaid/model/ownership_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/parties.py b/plaid/model/parties.py index 938e412bc..8fcf46588 100644 --- a/plaid/model/parties.py +++ b/plaid/model/parties.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_customer_create_request.py b/plaid/model/partner_customer_create_request.py index ae3bd90c8..b691ca6bb 100644 --- a/plaid/model/partner_customer_create_request.py +++ b/plaid/model/partner_customer_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_customer_create_response.py b/plaid/model/partner_customer_create_response.py index f8756089b..e24d29a27 100644 --- a/plaid/model/partner_customer_create_response.py +++ b/plaid/model/partner_customer_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_customer_enable_request.py b/plaid/model/partner_customer_enable_request.py index c7eada39b..9a6591268 100644 --- a/plaid/model/partner_customer_enable_request.py +++ b/plaid/model/partner_customer_enable_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_customer_enable_response.py b/plaid/model/partner_customer_enable_response.py index e638d3fa3..1964a10e0 100644 --- a/plaid/model/partner_customer_enable_response.py +++ b/plaid/model/partner_customer_enable_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_customer_get_request.py b/plaid/model/partner_customer_get_request.py index 7fcc21258..b62c5643a 100644 --- a/plaid/model/partner_customer_get_request.py +++ b/plaid/model/partner_customer_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_customer_get_response.py b/plaid/model/partner_customer_get_response.py index db4a19bb1..b9eddf56d 100644 --- a/plaid/model/partner_customer_get_response.py +++ b/plaid/model/partner_customer_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_customer_o_auth_institutions_get_request.py b/plaid/model/partner_customer_o_auth_institutions_get_request.py index 371f6f8d7..c325865cd 100644 --- a/plaid/model/partner_customer_o_auth_institutions_get_request.py +++ b/plaid/model/partner_customer_o_auth_institutions_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_customer_o_auth_institutions_get_response.py b/plaid/model/partner_customer_o_auth_institutions_get_response.py index 647063673..c86f2ac7d 100644 --- a/plaid/model/partner_customer_o_auth_institutions_get_response.py +++ b/plaid/model/partner_customer_o_auth_institutions_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_customer_remove_request.py b/plaid/model/partner_customer_remove_request.py index f9d7fdaa8..0952c1a0b 100644 --- a/plaid/model/partner_customer_remove_request.py +++ b/plaid/model/partner_customer_remove_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_customer_remove_response.py b/plaid/model/partner_customer_remove_response.py index 6b06b9e37..9af078aed 100644 --- a/plaid/model/partner_customer_remove_response.py +++ b/plaid/model/partner_customer_remove_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer.py b/plaid/model/partner_end_customer.py index c2598a9a1..928caa08f 100644 --- a/plaid/model/partner_end_customer.py +++ b/plaid/model/partner_end_customer.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_address.py b/plaid/model/partner_end_customer_address.py index 0efbe65d4..591eef052 100644 --- a/plaid/model/partner_end_customer_address.py +++ b/plaid/model/partner_end_customer_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_assets_under_management.py b/plaid/model/partner_end_customer_assets_under_management.py index 9a7c22109..2771f20a1 100644 --- a/plaid/model/partner_end_customer_assets_under_management.py +++ b/plaid/model/partner_end_customer_assets_under_management.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_bank_addendum_acceptance.py b/plaid/model/partner_end_customer_bank_addendum_acceptance.py index a35cb4505..5ae81ad74 100644 --- a/plaid/model/partner_end_customer_bank_addendum_acceptance.py +++ b/plaid/model/partner_end_customer_bank_addendum_acceptance.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_billing_contact.py b/plaid/model/partner_end_customer_billing_contact.py index d1fefea3f..4ed11e7ce 100644 --- a/plaid/model/partner_end_customer_billing_contact.py +++ b/plaid/model/partner_end_customer_billing_contact.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_cra_purposes.py b/plaid/model/partner_end_customer_cra_purposes.py index 7d5f97079..e09796c3a 100644 --- a/plaid/model/partner_end_customer_cra_purposes.py +++ b/plaid/model/partner_end_customer_cra_purposes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_cra_questionnaire.py b/plaid/model/partner_end_customer_cra_questionnaire.py index b553c5bc4..f77afd91b 100644 --- a/plaid/model/partner_end_customer_cra_questionnaire.py +++ b/plaid/model/partner_end_customer_cra_questionnaire.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_cra_use_case.py b/plaid/model/partner_end_customer_cra_use_case.py index 4733b3183..319649a0c 100644 --- a/plaid/model/partner_end_customer_cra_use_case.py +++ b/plaid/model/partner_end_customer_cra_use_case.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_cra_use_cases.py b/plaid/model/partner_end_customer_cra_use_cases.py index 61b1f721a..62546fdb7 100644 --- a/plaid/model/partner_end_customer_cra_use_cases.py +++ b/plaid/model/partner_end_customer_cra_use_cases.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_customer_support_info.py b/plaid/model/partner_end_customer_customer_support_info.py index c6cc7a267..08cde53a0 100644 --- a/plaid/model/partner_end_customer_customer_support_info.py +++ b/plaid/model/partner_end_customer_customer_support_info.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_flowdown_status.py b/plaid/model/partner_end_customer_flowdown_status.py index 43cd3ce45..be9af1f00 100644 --- a/plaid/model/partner_end_customer_flowdown_status.py +++ b/plaid/model/partner_end_customer_flowdown_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_o_auth_institution.py b/plaid/model/partner_end_customer_o_auth_institution.py index cbebbfeb4..0982878af 100644 --- a/plaid/model/partner_end_customer_o_auth_institution.py +++ b/plaid/model/partner_end_customer_o_auth_institution.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_o_auth_institution_application_status.py b/plaid/model/partner_end_customer_o_auth_institution_application_status.py index 5efc11df4..72df269cc 100644 --- a/plaid/model/partner_end_customer_o_auth_institution_application_status.py +++ b/plaid/model/partner_end_customer_o_auth_institution_application_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_o_auth_institution_environments.py b/plaid/model/partner_end_customer_o_auth_institution_environments.py index 8adda18ae..51f8674bd 100644 --- a/plaid/model/partner_end_customer_o_auth_institution_environments.py +++ b/plaid/model/partner_end_customer_o_auth_institution_environments.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_o_auth_status_updated_values.py b/plaid/model/partner_end_customer_o_auth_status_updated_values.py index efacf036b..6ae1500b9 100644 --- a/plaid/model/partner_end_customer_o_auth_status_updated_values.py +++ b/plaid/model/partner_end_customer_o_auth_status_updated_values.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_o_auth_status_updated_webhook.py b/plaid/model/partner_end_customer_o_auth_status_updated_webhook.py index b762bcd62..dc1100587 100644 --- a/plaid/model/partner_end_customer_o_auth_status_updated_webhook.py +++ b/plaid/model/partner_end_customer_o_auth_status_updated_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_product_statuses.py b/plaid/model/partner_end_customer_product_statuses.py index 6ae4b76c3..3e15af4fb 100644 --- a/plaid/model/partner_end_customer_product_statuses.py +++ b/plaid/model/partner_end_customer_product_statuses.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_questionnaire_status.py b/plaid/model/partner_end_customer_questionnaire_status.py index fc21d6afa..6bbf756eb 100644 --- a/plaid/model/partner_end_customer_questionnaire_status.py +++ b/plaid/model/partner_end_customer_questionnaire_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_questionnaires.py b/plaid/model/partner_end_customer_questionnaires.py index 18e3c739c..a0f09e283 100644 --- a/plaid/model/partner_end_customer_questionnaires.py +++ b/plaid/model/partner_end_customer_questionnaires.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_requirement_due.py b/plaid/model/partner_end_customer_requirement_due.py index 668f99213..39611314a 100644 --- a/plaid/model/partner_end_customer_requirement_due.py +++ b/plaid/model/partner_end_customer_requirement_due.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_requirements_due.py b/plaid/model/partner_end_customer_requirements_due.py index 30a181a64..ae4c5bc79 100644 --- a/plaid/model/partner_end_customer_requirements_due.py +++ b/plaid/model/partner_end_customer_requirements_due.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_secrets.py b/plaid/model/partner_end_customer_secrets.py index 96db24f0d..30947426a 100644 --- a/plaid/model/partner_end_customer_secrets.py +++ b/plaid/model/partner_end_customer_secrets.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_status.py b/plaid/model/partner_end_customer_status.py index 5f76ff372..0da5aa7bc 100644 --- a/plaid/model/partner_end_customer_status.py +++ b/plaid/model/partner_end_customer_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_technical_contact.py b/plaid/model/partner_end_customer_technical_contact.py index 97e6f7346..9a6063da7 100644 --- a/plaid/model/partner_end_customer_technical_contact.py +++ b/plaid/model/partner_end_customer_technical_contact.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_with_secrets.py b/plaid/model/partner_end_customer_with_secrets.py index b2a7b7f26..e2cfdb48b 100644 --- a/plaid/model/partner_end_customer_with_secrets.py +++ b/plaid/model/partner_end_customer_with_secrets.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer_with_secrets_all_of.py b/plaid/model/partner_end_customer_with_secrets_all_of.py index 9df7beb6f..accd0d140 100644 --- a/plaid/model/partner_end_customer_with_secrets_all_of.py +++ b/plaid/model/partner_end_customer_with_secrets_all_of.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/party.py b/plaid/model/party.py index 2e7523298..d53e5ebf6 100644 --- a/plaid/model/party.py +++ b/plaid/model/party.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/party_individual.py b/plaid/model/party_individual.py index 20f0db448..cce8e35b7 100644 --- a/plaid/model/party_individual.py +++ b/plaid/model/party_individual.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/party_role_type.py b/plaid/model/party_role_type.py index 22f54759d..48c60960b 100644 --- a/plaid/model/party_role_type.py +++ b/plaid/model/party_role_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay.py b/plaid/model/pay.py index 3a9e6f0b6..bba9b029a 100644 --- a/plaid/model/pay.py +++ b/plaid/model/pay.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay_frequency.py b/plaid/model/pay_frequency.py index 859d2eb93..0848e6de2 100644 --- a/plaid/model/pay_frequency.py +++ b/plaid/model/pay_frequency.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay_frequency_value.py b/plaid/model/pay_frequency_value.py index fd651afee..37c87f9b0 100644 --- a/plaid/model/pay_frequency_value.py +++ b/plaid/model/pay_frequency_value.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay_period_details.py b/plaid/model/pay_period_details.py index 91db68783..3a84239ff 100644 --- a/plaid/model/pay_period_details.py +++ b/plaid/model/pay_period_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay_period_details_pay_frequency.py b/plaid/model/pay_period_details_pay_frequency.py index 02fbcb095..7b62cec41 100644 --- a/plaid/model/pay_period_details_pay_frequency.py +++ b/plaid/model/pay_period_details_pay_frequency.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay_stub_deductions_breakdown.py b/plaid/model/pay_stub_deductions_breakdown.py index 98a64d687..cbddd100a 100644 --- a/plaid/model/pay_stub_deductions_breakdown.py +++ b/plaid/model/pay_stub_deductions_breakdown.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay_stub_deductions_total.py b/plaid/model/pay_stub_deductions_total.py index 111e42a18..3e496e8fb 100644 --- a/plaid/model/pay_stub_deductions_total.py +++ b/plaid/model/pay_stub_deductions_total.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay_stub_distribution_breakdown.py b/plaid/model/pay_stub_distribution_breakdown.py index 924eb1915..2373ac0db 100644 --- a/plaid/model/pay_stub_distribution_breakdown.py +++ b/plaid/model/pay_stub_distribution_breakdown.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay_stub_earnings_breakdown.py b/plaid/model/pay_stub_earnings_breakdown.py index e4373792f..ae30e3651 100644 --- a/plaid/model/pay_stub_earnings_breakdown.py +++ b/plaid/model/pay_stub_earnings_breakdown.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay_stub_earnings_total.py b/plaid/model/pay_stub_earnings_total.py index 3d38ce759..c03254a1d 100644 --- a/plaid/model/pay_stub_earnings_total.py +++ b/plaid/model/pay_stub_earnings_total.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay_stub_pay_period_details.py b/plaid/model/pay_stub_pay_period_details.py index d538128e2..111926ede 100644 --- a/plaid/model/pay_stub_pay_period_details.py +++ b/plaid/model/pay_stub_pay_period_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay_stub_taxpayer_id.py b/plaid/model/pay_stub_taxpayer_id.py index 23756b537..2bdc99e3c 100644 --- a/plaid/model/pay_stub_taxpayer_id.py +++ b/plaid/model/pay_stub_taxpayer_id.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_amount.py b/plaid/model/payment_amount.py index ded0db07f..78db305dd 100644 --- a/plaid/model/payment_amount.py +++ b/plaid/model/payment_amount.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_amount_currency.py b/plaid/model/payment_amount_currency.py index bd6f5f3f2..e1624c692 100644 --- a/plaid/model/payment_amount_currency.py +++ b/plaid/model/payment_amount_currency.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_amount_nullable.py b/plaid/model/payment_amount_nullable.py index ab35d02b6..37934b266 100644 --- a/plaid/model/payment_amount_nullable.py +++ b/plaid/model/payment_amount_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_amount_refunded.py b/plaid/model/payment_amount_refunded.py index 15ce335eb..397504706 100644 --- a/plaid/model/payment_amount_refunded.py +++ b/plaid/model/payment_amount_refunded.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_amount_to_refund.py b/plaid/model/payment_amount_to_refund.py index ced579b32..095dfa83b 100644 --- a/plaid/model/payment_amount_to_refund.py +++ b/plaid/model/payment_amount_to_refund.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_channel.py b/plaid/model/payment_channel.py index b45031da3..3070409cf 100644 --- a/plaid/model/payment_channel.py +++ b/plaid/model/payment_channel.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_consent_max_payment_amount.py b/plaid/model/payment_consent_max_payment_amount.py index 6cf9aebec..c5e124bf0 100644 --- a/plaid/model/payment_consent_max_payment_amount.py +++ b/plaid/model/payment_consent_max_payment_amount.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_consent_periodic_alignment.py b/plaid/model/payment_consent_periodic_alignment.py index aa661d2dd..512bd23b9 100644 --- a/plaid/model/payment_consent_periodic_alignment.py +++ b/plaid/model/payment_consent_periodic_alignment.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_consent_periodic_amount.py b/plaid/model/payment_consent_periodic_amount.py index 3e7fe5b19..cb4b97bac 100644 --- a/plaid/model/payment_consent_periodic_amount.py +++ b/plaid/model/payment_consent_periodic_amount.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_consent_periodic_amount_amount.py b/plaid/model/payment_consent_periodic_amount_amount.py index 6847718cf..cebc14c16 100644 --- a/plaid/model/payment_consent_periodic_amount_amount.py +++ b/plaid/model/payment_consent_periodic_amount_amount.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_consent_periodic_interval.py b/plaid/model/payment_consent_periodic_interval.py index 1ae757272..effaf93fd 100644 --- a/plaid/model/payment_consent_periodic_interval.py +++ b/plaid/model/payment_consent_periodic_interval.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_consent_valid_date_time.py b/plaid/model/payment_consent_valid_date_time.py index 60fb65ac1..e2877c81c 100644 --- a/plaid/model/payment_consent_valid_date_time.py +++ b/plaid/model/payment_consent_valid_date_time.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_address.py b/plaid/model/payment_initiation_address.py index c72187173..f1b0d5b13 100644 --- a/plaid/model/payment_initiation_address.py +++ b/plaid/model/payment_initiation_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent.py b/plaid/model/payment_initiation_consent.py index 12b51d171..8a849ae43 100644 --- a/plaid/model/payment_initiation_consent.py +++ b/plaid/model/payment_initiation_consent.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent_constraints.py b/plaid/model/payment_initiation_consent_constraints.py index d7fac819b..619c436c1 100644 --- a/plaid/model/payment_initiation_consent_constraints.py +++ b/plaid/model/payment_initiation_consent_constraints.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent_create_request.py b/plaid/model/payment_initiation_consent_create_request.py index 80fabd58a..230f45085 100644 --- a/plaid/model/payment_initiation_consent_create_request.py +++ b/plaid/model/payment_initiation_consent_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent_create_response.py b/plaid/model/payment_initiation_consent_create_response.py index 659a6dc52..673230cff 100644 --- a/plaid/model/payment_initiation_consent_create_response.py +++ b/plaid/model/payment_initiation_consent_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent_get_request.py b/plaid/model/payment_initiation_consent_get_request.py index e9709dec7..def20b791 100644 --- a/plaid/model/payment_initiation_consent_get_request.py +++ b/plaid/model/payment_initiation_consent_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent_get_response.py b/plaid/model/payment_initiation_consent_get_response.py index 52ddbcd0c..b73579c5a 100644 --- a/plaid/model/payment_initiation_consent_get_response.py +++ b/plaid/model/payment_initiation_consent_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent_payer_details.py b/plaid/model/payment_initiation_consent_payer_details.py index f1842cf5e..6a3a642c8 100644 --- a/plaid/model/payment_initiation_consent_payer_details.py +++ b/plaid/model/payment_initiation_consent_payer_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent_payer_numbers.py b/plaid/model/payment_initiation_consent_payer_numbers.py index f0bb9bc6c..432060ab2 100644 --- a/plaid/model/payment_initiation_consent_payer_numbers.py +++ b/plaid/model/payment_initiation_consent_payer_numbers.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent_payment_execute_request.py b/plaid/model/payment_initiation_consent_payment_execute_request.py index 785e4a7b8..8356a3866 100644 --- a/plaid/model/payment_initiation_consent_payment_execute_request.py +++ b/plaid/model/payment_initiation_consent_payment_execute_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent_payment_execute_response.py b/plaid/model/payment_initiation_consent_payment_execute_response.py index a13ba4318..88960384c 100644 --- a/plaid/model/payment_initiation_consent_payment_execute_response.py +++ b/plaid/model/payment_initiation_consent_payment_execute_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent_processing_mode.py b/plaid/model/payment_initiation_consent_processing_mode.py index 073f1ae3e..aeb12e82e 100644 --- a/plaid/model/payment_initiation_consent_processing_mode.py +++ b/plaid/model/payment_initiation_consent_processing_mode.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent_revoke_request.py b/plaid/model/payment_initiation_consent_revoke_request.py index f32a0910a..40a25504f 100644 --- a/plaid/model/payment_initiation_consent_revoke_request.py +++ b/plaid/model/payment_initiation_consent_revoke_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent_revoke_response.py b/plaid/model/payment_initiation_consent_revoke_response.py index e186f2881..fb2cdb984 100644 --- a/plaid/model/payment_initiation_consent_revoke_response.py +++ b/plaid/model/payment_initiation_consent_revoke_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent_scope.py b/plaid/model/payment_initiation_consent_scope.py index cd26375df..a58669464 100644 --- a/plaid/model/payment_initiation_consent_scope.py +++ b/plaid/model/payment_initiation_consent_scope.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent_status.py b/plaid/model/payment_initiation_consent_status.py index 05d707dc5..775cbbe2b 100644 --- a/plaid/model/payment_initiation_consent_status.py +++ b/plaid/model/payment_initiation_consent_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent_status_update_webhook.py b/plaid/model/payment_initiation_consent_status_update_webhook.py index b84c3ec13..ea77d7ec5 100644 --- a/plaid/model/payment_initiation_consent_status_update_webhook.py +++ b/plaid/model/payment_initiation_consent_status_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent_type.py b/plaid/model/payment_initiation_consent_type.py index 70716aaac..23237b643 100644 --- a/plaid/model/payment_initiation_consent_type.py +++ b/plaid/model/payment_initiation_consent_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_maximum_payment_amount.py b/plaid/model/payment_initiation_maximum_payment_amount.py index 8197b1483..fd07fe9de 100644 --- a/plaid/model/payment_initiation_maximum_payment_amount.py +++ b/plaid/model/payment_initiation_maximum_payment_amount.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_metadata.py b/plaid/model/payment_initiation_metadata.py index 9f3dd1e76..61a8f49e7 100644 --- a/plaid/model/payment_initiation_metadata.py +++ b/plaid/model/payment_initiation_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_optional_restriction_bacs.py b/plaid/model/payment_initiation_optional_restriction_bacs.py index 4293ffddd..03274fc42 100644 --- a/plaid/model/payment_initiation_optional_restriction_bacs.py +++ b/plaid/model/payment_initiation_optional_restriction_bacs.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_payment.py b/plaid/model/payment_initiation_payment.py index 86eca8f98..6a2b30455 100644 --- a/plaid/model/payment_initiation_payment.py +++ b/plaid/model/payment_initiation_payment.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_payment_create_request.py b/plaid/model/payment_initiation_payment_create_request.py index 2a990e0de..6158596d7 100644 --- a/plaid/model/payment_initiation_payment_create_request.py +++ b/plaid/model/payment_initiation_payment_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_payment_create_response.py b/plaid/model/payment_initiation_payment_create_response.py index 44e30ade8..e8f4bd3f0 100644 --- a/plaid/model/payment_initiation_payment_create_response.py +++ b/plaid/model/payment_initiation_payment_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_payment_create_status.py b/plaid/model/payment_initiation_payment_create_status.py index 499d17a56..844818857 100644 --- a/plaid/model/payment_initiation_payment_create_status.py +++ b/plaid/model/payment_initiation_payment_create_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_payment_get_request.py b/plaid/model/payment_initiation_payment_get_request.py index 708d173aa..87850fd67 100644 --- a/plaid/model/payment_initiation_payment_get_request.py +++ b/plaid/model/payment_initiation_payment_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_payment_get_response.py b/plaid/model/payment_initiation_payment_get_response.py index f270b70b9..a0044786e 100644 --- a/plaid/model/payment_initiation_payment_get_response.py +++ b/plaid/model/payment_initiation_payment_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_payment_list_request.py b/plaid/model/payment_initiation_payment_list_request.py index d73778341..513e00117 100644 --- a/plaid/model/payment_initiation_payment_list_request.py +++ b/plaid/model/payment_initiation_payment_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_payment_list_response.py b/plaid/model/payment_initiation_payment_list_response.py index b761bb19e..290253b39 100644 --- a/plaid/model/payment_initiation_payment_list_response.py +++ b/plaid/model/payment_initiation_payment_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_payment_reverse_request.py b/plaid/model/payment_initiation_payment_reverse_request.py index caa81a661..90c346631 100644 --- a/plaid/model/payment_initiation_payment_reverse_request.py +++ b/plaid/model/payment_initiation_payment_reverse_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_payment_reverse_response.py b/plaid/model/payment_initiation_payment_reverse_response.py index 277f1762b..8357d2103 100644 --- a/plaid/model/payment_initiation_payment_reverse_response.py +++ b/plaid/model/payment_initiation_payment_reverse_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_payment_status.py b/plaid/model/payment_initiation_payment_status.py index f63d97456..b5344e7df 100644 --- a/plaid/model/payment_initiation_payment_status.py +++ b/plaid/model/payment_initiation_payment_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_payment_token_create_request.py b/plaid/model/payment_initiation_payment_token_create_request.py index 9930e0f5d..301b810e1 100644 --- a/plaid/model/payment_initiation_payment_token_create_request.py +++ b/plaid/model/payment_initiation_payment_token_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_payment_token_create_response.py b/plaid/model/payment_initiation_payment_token_create_response.py index 12f435c9e..1ec625091 100644 --- a/plaid/model/payment_initiation_payment_token_create_response.py +++ b/plaid/model/payment_initiation_payment_token_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_recipient.py b/plaid/model/payment_initiation_recipient.py index 3340da921..6e95aa6cb 100644 --- a/plaid/model/payment_initiation_recipient.py +++ b/plaid/model/payment_initiation_recipient.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_recipient_create_request.py b/plaid/model/payment_initiation_recipient_create_request.py index b0cadae8e..94fbae480 100644 --- a/plaid/model/payment_initiation_recipient_create_request.py +++ b/plaid/model/payment_initiation_recipient_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_recipient_create_response.py b/plaid/model/payment_initiation_recipient_create_response.py index e903d6b01..4ea76fbe4 100644 --- a/plaid/model/payment_initiation_recipient_create_response.py +++ b/plaid/model/payment_initiation_recipient_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_recipient_get_request.py b/plaid/model/payment_initiation_recipient_get_request.py index 66658979e..ab6a744ee 100644 --- a/plaid/model/payment_initiation_recipient_get_request.py +++ b/plaid/model/payment_initiation_recipient_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_recipient_get_response.py b/plaid/model/payment_initiation_recipient_get_response.py index bc702cf93..940fec10a 100644 --- a/plaid/model/payment_initiation_recipient_get_response.py +++ b/plaid/model/payment_initiation_recipient_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_recipient_get_response_all_of.py b/plaid/model/payment_initiation_recipient_get_response_all_of.py index bc42a2915..40dd6cc4e 100644 --- a/plaid/model/payment_initiation_recipient_get_response_all_of.py +++ b/plaid/model/payment_initiation_recipient_get_response_all_of.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_recipient_list_request.py b/plaid/model/payment_initiation_recipient_list_request.py index a22dbdf9a..991a28c78 100644 --- a/plaid/model/payment_initiation_recipient_list_request.py +++ b/plaid/model/payment_initiation_recipient_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_recipient_list_response.py b/plaid/model/payment_initiation_recipient_list_response.py index 8c5a4a0b4..e42531c53 100644 --- a/plaid/model/payment_initiation_recipient_list_response.py +++ b/plaid/model/payment_initiation_recipient_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_standing_order_metadata.py b/plaid/model/payment_initiation_standing_order_metadata.py index e0a610ed4..571066c19 100644 --- a/plaid/model/payment_initiation_standing_order_metadata.py +++ b/plaid/model/payment_initiation_standing_order_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_meta.py b/plaid/model/payment_meta.py index b21c95e27..a0b356d3b 100644 --- a/plaid/model/payment_meta.py +++ b/plaid/model/payment_meta.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_profile_create_request.py b/plaid/model/payment_profile_create_request.py index 100a2e3aa..f942c3ccd 100644 --- a/plaid/model/payment_profile_create_request.py +++ b/plaid/model/payment_profile_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_profile_create_response.py b/plaid/model/payment_profile_create_response.py index c8c28c902..12413f85c 100644 --- a/plaid/model/payment_profile_create_response.py +++ b/plaid/model/payment_profile_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_profile_get_request.py b/plaid/model/payment_profile_get_request.py index a1d0bb129..7ac12a714 100644 --- a/plaid/model/payment_profile_get_request.py +++ b/plaid/model/payment_profile_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_profile_get_response.py b/plaid/model/payment_profile_get_response.py index 2e0bd7e00..fb66e3a5b 100644 --- a/plaid/model/payment_profile_get_response.py +++ b/plaid/model/payment_profile_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_profile_remove_request.py b/plaid/model/payment_profile_remove_request.py index f907994f9..390af4037 100644 --- a/plaid/model/payment_profile_remove_request.py +++ b/plaid/model/payment_profile_remove_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_profile_remove_response.py b/plaid/model/payment_profile_remove_response.py index e19398632..e5d0753b2 100644 --- a/plaid/model/payment_profile_remove_response.py +++ b/plaid/model/payment_profile_remove_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_profile_status.py b/plaid/model/payment_profile_status.py index a0294ec12..0a4bb131a 100644 --- a/plaid/model/payment_profile_status.py +++ b/plaid/model/payment_profile_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_schedule_interval.py b/plaid/model/payment_schedule_interval.py index cffe6ecbc..f9126e280 100644 --- a/plaid/model/payment_schedule_interval.py +++ b/plaid/model/payment_schedule_interval.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_scheme.py b/plaid/model/payment_scheme.py index 317e9ebe7..7771c417f 100644 --- a/plaid/model/payment_scheme.py +++ b/plaid/model/payment_scheme.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_status_update_webhook.py b/plaid/model/payment_status_update_webhook.py index efdff1c2c..877e0dcf9 100644 --- a/plaid/model/payment_status_update_webhook.py +++ b/plaid/model/payment_status_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payroll_income_account_data.py b/plaid/model/payroll_income_account_data.py index 76b5f30df..0cb99c2aa 100644 --- a/plaid/model/payroll_income_account_data.py +++ b/plaid/model/payroll_income_account_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payroll_income_object.py b/plaid/model/payroll_income_object.py index a2bb6c800..d25583aa4 100644 --- a/plaid/model/payroll_income_object.py +++ b/plaid/model/payroll_income_object.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payroll_income_rate_of_pay.py b/plaid/model/payroll_income_rate_of_pay.py index c86b2c0bf..1f0e81052 100644 --- a/plaid/model/payroll_income_rate_of_pay.py +++ b/plaid/model/payroll_income_rate_of_pay.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payroll_item.py b/plaid/model/payroll_item.py index 18b22e1bf..95e52a96c 100644 --- a/plaid/model/payroll_item.py +++ b/plaid/model/payroll_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payroll_item_status.py b/plaid/model/payroll_item_status.py index b0dab9d73..c9e8018c1 100644 --- a/plaid/model/payroll_item_status.py +++ b/plaid/model/payroll_item_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payroll_risk_signals_item.py b/plaid/model/payroll_risk_signals_item.py index 9119b6d39..f18757ca4 100644 --- a/plaid/model/payroll_risk_signals_item.py +++ b/plaid/model/payroll_risk_signals_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub.py b/plaid/model/paystub.py index bddd2338f..7a4c27b98 100644 --- a/plaid/model/paystub.py +++ b/plaid/model/paystub.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_address.py b/plaid/model/paystub_address.py index d349377bf..47c11057e 100644 --- a/plaid/model/paystub_address.py +++ b/plaid/model/paystub_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_deduction.py b/plaid/model/paystub_deduction.py index a7e22a1c0..a102e76bb 100644 --- a/plaid/model/paystub_deduction.py +++ b/plaid/model/paystub_deduction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_details.py b/plaid/model/paystub_details.py index 1e7fcac5a..3ee12a527 100644 --- a/plaid/model/paystub_details.py +++ b/plaid/model/paystub_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_employer.py b/plaid/model/paystub_employer.py index ce06bb5f4..922f73b6f 100644 --- a/plaid/model/paystub_employer.py +++ b/plaid/model/paystub_employer.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override.py b/plaid/model/paystub_override.py index 305c0bf94..92ba69195 100644 --- a/plaid/model/paystub_override.py +++ b/plaid/model/paystub_override.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_deductions.py b/plaid/model/paystub_override_deductions.py index 8ce6a936a..8b778e947 100644 --- a/plaid/model/paystub_override_deductions.py +++ b/plaid/model/paystub_override_deductions.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_deductions_breakdown.py b/plaid/model/paystub_override_deductions_breakdown.py index 7a6997eb2..0ede38304 100644 --- a/plaid/model/paystub_override_deductions_breakdown.py +++ b/plaid/model/paystub_override_deductions_breakdown.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_deductions_total.py b/plaid/model/paystub_override_deductions_total.py index f86f6f9db..29de7123c 100644 --- a/plaid/model/paystub_override_deductions_total.py +++ b/plaid/model/paystub_override_deductions_total.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_distribution_breakdown.py b/plaid/model/paystub_override_distribution_breakdown.py index a033a6eac..3057d2cf1 100644 --- a/plaid/model/paystub_override_distribution_breakdown.py +++ b/plaid/model/paystub_override_distribution_breakdown.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_earnings.py b/plaid/model/paystub_override_earnings.py index b77f277e8..ec347fda6 100644 --- a/plaid/model/paystub_override_earnings.py +++ b/plaid/model/paystub_override_earnings.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_earnings_breakdown.py b/plaid/model/paystub_override_earnings_breakdown.py index cebc1b3b4..5ee0bfa7f 100644 --- a/plaid/model/paystub_override_earnings_breakdown.py +++ b/plaid/model/paystub_override_earnings_breakdown.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_earnings_total.py b/plaid/model/paystub_override_earnings_total.py index 06d780ee5..b35aa3e95 100644 --- a/plaid/model/paystub_override_earnings_total.py +++ b/plaid/model/paystub_override_earnings_total.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_employee.py b/plaid/model/paystub_override_employee.py index 036b23c9f..a64646c00 100644 --- a/plaid/model/paystub_override_employee.py +++ b/plaid/model/paystub_override_employee.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_employee_address.py b/plaid/model/paystub_override_employee_address.py index fde2483ed..317bf01d5 100644 --- a/plaid/model/paystub_override_employee_address.py +++ b/plaid/model/paystub_override_employee_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_employer.py b/plaid/model/paystub_override_employer.py index c2049d59a..c8789a060 100644 --- a/plaid/model/paystub_override_employer.py +++ b/plaid/model/paystub_override_employer.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_employer_address.py b/plaid/model/paystub_override_employer_address.py index 114d6352a..8bb2ea157 100644 --- a/plaid/model/paystub_override_employer_address.py +++ b/plaid/model/paystub_override_employer_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_net_pay.py b/plaid/model/paystub_override_net_pay.py index e10571a39..332edb37c 100644 --- a/plaid/model/paystub_override_net_pay.py +++ b/plaid/model/paystub_override_net_pay.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_pay_period_details.py b/plaid/model/paystub_override_pay_period_details.py index 9dada1329..208202c7e 100644 --- a/plaid/model/paystub_override_pay_period_details.py +++ b/plaid/model/paystub_override_pay_period_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_taxpayer_id.py b/plaid/model/paystub_override_taxpayer_id.py index 44fe6c386..eae2eecb5 100644 --- a/plaid/model/paystub_override_taxpayer_id.py +++ b/plaid/model/paystub_override_taxpayer_id.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_pay_frequency.py b/plaid/model/paystub_pay_frequency.py index f38b890bb..9a098cd0e 100644 --- a/plaid/model/paystub_pay_frequency.py +++ b/plaid/model/paystub_pay_frequency.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_ytd_details.py b/plaid/model/paystub_ytd_details.py index d9548977b..fac1cec6b 100644 --- a/plaid/model/paystub_ytd_details.py +++ b/plaid/model/paystub_ytd_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pending_disconnect_webhook.py b/plaid/model/pending_disconnect_webhook.py index e4a91c1ed..2306c9e9a 100644 --- a/plaid/model/pending_disconnect_webhook.py +++ b/plaid/model/pending_disconnect_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pending_disconnect_webhook_reason.py b/plaid/model/pending_disconnect_webhook_reason.py index 9af1f35f6..abdb88cf8 100644 --- a/plaid/model/pending_disconnect_webhook_reason.py +++ b/plaid/model/pending_disconnect_webhook_reason.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pending_expiration_webhook.py b/plaid/model/pending_expiration_webhook.py index a37c89800..45a030ced 100644 --- a/plaid/model/pending_expiration_webhook.py +++ b/plaid/model/pending_expiration_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/personal_finance_category.py b/plaid/model/personal_finance_category.py index d1ef9bee9..e86bd7aee 100644 --- a/plaid/model/personal_finance_category.py +++ b/plaid/model/personal_finance_category.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/personal_finance_category_version.py b/plaid/model/personal_finance_category_version.py index bf21bca75..66061d67b 100644 --- a/plaid/model/personal_finance_category_version.py +++ b/plaid/model/personal_finance_category_version.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/phone_number.py b/plaid/model/phone_number.py index ff13075c8..96c6665d3 100644 --- a/plaid/model/phone_number.py +++ b/plaid/model/phone_number.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/phone_number_match_score.py b/plaid/model/phone_number_match_score.py index 035fd55f9..6b9748516 100644 --- a/plaid/model/phone_number_match_score.py +++ b/plaid/model/phone_number_match_score.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/phone_type.py b/plaid/model/phone_type.py index 83e877251..a1abc4b3b 100644 --- a/plaid/model/phone_type.py +++ b/plaid/model/phone_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/physical_document_category.py b/plaid/model/physical_document_category.py index dae13aa5d..f6da4093b 100644 --- a/plaid/model/physical_document_category.py +++ b/plaid/model/physical_document_category.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/physical_document_extracted_data.py b/plaid/model/physical_document_extracted_data.py index 908e708c8..7f2095bd2 100644 --- a/plaid/model/physical_document_extracted_data.py +++ b/plaid/model/physical_document_extracted_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/physical_document_extracted_data_analysis.py b/plaid/model/physical_document_extracted_data_analysis.py index 583aef87e..a4e85fcf5 100644 --- a/plaid/model/physical_document_extracted_data_analysis.py +++ b/plaid/model/physical_document_extracted_data_analysis.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/physical_document_images.py b/plaid/model/physical_document_images.py index 3350d3d70..6c384dcea 100644 --- a/plaid/model/physical_document_images.py +++ b/plaid/model/physical_document_images.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/plaid_error.py b/plaid/model/plaid_error.py index e314cab87..397cdf34b 100644 --- a/plaid/model/plaid_error.py +++ b/plaid/model/plaid_error.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/plaid_error_type.py b/plaid/model/plaid_error_type.py index 2c7088b96..191df420e 100644 --- a/plaid/model/plaid_error_type.py +++ b/plaid/model/plaid_error_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/plaid_lend_score_version.py b/plaid/model/plaid_lend_score_version.py index ae198f63a..415f4f64e 100644 --- a/plaid/model/plaid_lend_score_version.py +++ b/plaid/model/plaid_lend_score_version.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/platform_ids.py b/plaid/model/platform_ids.py index 7c3109155..f0679d88f 100644 --- a/plaid/model/platform_ids.py +++ b/plaid/model/platform_ids.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/po_box_status.py b/plaid/model/po_box_status.py index b33d1e5d7..80d19ea19 100644 --- a/plaid/model/po_box_status.py +++ b/plaid/model/po_box_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/prism_cash_score.py b/plaid/model/prism_cash_score.py index f110ed4b5..b793dd26c 100644 --- a/plaid/model/prism_cash_score.py +++ b/plaid/model/prism_cash_score.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/prism_cash_score_metadata.py b/plaid/model/prism_cash_score_metadata.py index a7128786a..3e4f9c1ff 100644 --- a/plaid/model/prism_cash_score_metadata.py +++ b/plaid/model/prism_cash_score_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/prism_cash_score_version.py b/plaid/model/prism_cash_score_version.py index 0aab92300..5ce5791be 100644 --- a/plaid/model/prism_cash_score_version.py +++ b/plaid/model/prism_cash_score_version.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/prism_detect.py b/plaid/model/prism_detect.py index ff095d827..1a171f6ae 100644 --- a/plaid/model/prism_detect.py +++ b/plaid/model/prism_detect.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/prism_detect_version.py b/plaid/model/prism_detect_version.py index f3bf3dfe4..fbd9be552 100644 --- a/plaid/model/prism_detect_version.py +++ b/plaid/model/prism_detect_version.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/prism_extend.py b/plaid/model/prism_extend.py index 90dd4148e..2ddedbe8a 100644 --- a/plaid/model/prism_extend.py +++ b/plaid/model/prism_extend.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/prism_extend_version.py b/plaid/model/prism_extend_version.py index 328a41e7a..b69af7073 100644 --- a/plaid/model/prism_extend_version.py +++ b/plaid/model/prism_extend_version.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/prism_first_detect.py b/plaid/model/prism_first_detect.py index 6ab4827de..a7950fc04 100644 --- a/plaid/model/prism_first_detect.py +++ b/plaid/model/prism_first_detect.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/prism_first_detect_version.py b/plaid/model/prism_first_detect_version.py index 59a2cff05..4c02d81a9 100644 --- a/plaid/model/prism_first_detect_version.py +++ b/plaid/model/prism_first_detect_version.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/prism_insights.py b/plaid/model/prism_insights.py index 1b87abd8c..1d90c0537 100644 --- a/plaid/model/prism_insights.py +++ b/plaid/model/prism_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/prism_insights_version.py b/plaid/model/prism_insights_version.py index 54da41df1..8300140b9 100644 --- a/plaid/model/prism_insights_version.py +++ b/plaid/model/prism_insights_version.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/prism_versions.py b/plaid/model/prism_versions.py index ea9c5d853..d915ece06 100644 --- a/plaid/model/prism_versions.py +++ b/plaid/model/prism_versions.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/prism_versions_deprecated.py b/plaid/model/prism_versions_deprecated.py index 2524168ff..a54ea1058 100644 --- a/plaid/model/prism_versions_deprecated.py +++ b/plaid/model/prism_versions_deprecated.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_account_get_request.py b/plaid/model/processor_account_get_request.py index 8d54bc2a6..ed7d2d368 100644 --- a/plaid/model/processor_account_get_request.py +++ b/plaid/model/processor_account_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_account_get_response.py b/plaid/model/processor_account_get_response.py index 260272d2c..4c61e2058 100644 --- a/plaid/model/processor_account_get_response.py +++ b/plaid/model/processor_account_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_apex_processor_token_create_request.py b/plaid/model/processor_apex_processor_token_create_request.py index 37f13cc2d..020c1d20f 100644 --- a/plaid/model/processor_apex_processor_token_create_request.py +++ b/plaid/model/processor_apex_processor_token_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_auth_get_request.py b/plaid/model/processor_auth_get_request.py index c8abcaf7f..782f3d2bd 100644 --- a/plaid/model/processor_auth_get_request.py +++ b/plaid/model/processor_auth_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_auth_get_response.py b/plaid/model/processor_auth_get_response.py index 0d94140f5..025ed04f4 100644 --- a/plaid/model/processor_auth_get_response.py +++ b/plaid/model/processor_auth_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_balance_get_request.py b/plaid/model/processor_balance_get_request.py index 217c6c26c..35baba19c 100644 --- a/plaid/model/processor_balance_get_request.py +++ b/plaid/model/processor_balance_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_balance_get_request_options.py b/plaid/model/processor_balance_get_request_options.py index 0da7999a6..2a8b63def 100644 --- a/plaid/model/processor_balance_get_request_options.py +++ b/plaid/model/processor_balance_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_balance_get_response.py b/plaid/model/processor_balance_get_response.py index 4f81946ae..de7091cc2 100644 --- a/plaid/model/processor_balance_get_response.py +++ b/plaid/model/processor_balance_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_bank_transfer_create_request.py b/plaid/model/processor_bank_transfer_create_request.py index 010690353..bf811ee52 100644 --- a/plaid/model/processor_bank_transfer_create_request.py +++ b/plaid/model/processor_bank_transfer_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_bank_transfer_create_response.py b/plaid/model/processor_bank_transfer_create_response.py index cf1b401d3..320c247af 100644 --- a/plaid/model/processor_bank_transfer_create_response.py +++ b/plaid/model/processor_bank_transfer_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_default_update_webhook.py b/plaid/model/processor_default_update_webhook.py index 30f4f522f..1540d800b 100644 --- a/plaid/model/processor_default_update_webhook.py +++ b/plaid/model/processor_default_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_historical_update_webhook.py b/plaid/model/processor_historical_update_webhook.py index 6c9727b05..ac0c12608 100644 --- a/plaid/model/processor_historical_update_webhook.py +++ b/plaid/model/processor_historical_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_identity_get_request.py b/plaid/model/processor_identity_get_request.py index 583a84371..0b93334d3 100644 --- a/plaid/model/processor_identity_get_request.py +++ b/plaid/model/processor_identity_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_identity_get_response.py b/plaid/model/processor_identity_get_response.py index 309d70377..68d687fc2 100644 --- a/plaid/model/processor_identity_get_response.py +++ b/plaid/model/processor_identity_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_identity_match_request.py b/plaid/model/processor_identity_match_request.py index c8bec77a2..95da5d26c 100644 --- a/plaid/model/processor_identity_match_request.py +++ b/plaid/model/processor_identity_match_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_identity_match_response.py b/plaid/model/processor_identity_match_response.py index 06b0252af..21498430e 100644 --- a/plaid/model/processor_identity_match_response.py +++ b/plaid/model/processor_identity_match_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_initial_update_webhook.py b/plaid/model/processor_initial_update_webhook.py index 6e0147019..1af9c2f0d 100644 --- a/plaid/model/processor_initial_update_webhook.py +++ b/plaid/model/processor_initial_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_investments_auth_get_request.py b/plaid/model/processor_investments_auth_get_request.py index d23c2d2fb..b844f39eb 100644 --- a/plaid/model/processor_investments_auth_get_request.py +++ b/plaid/model/processor_investments_auth_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_investments_auth_get_response.py b/plaid/model/processor_investments_auth_get_response.py index 514e44d51..fc7f96ff1 100644 --- a/plaid/model/processor_investments_auth_get_response.py +++ b/plaid/model/processor_investments_auth_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_investments_holdings_get_request.py b/plaid/model/processor_investments_holdings_get_request.py index c29aa4cbc..3964d9fc2 100644 --- a/plaid/model/processor_investments_holdings_get_request.py +++ b/plaid/model/processor_investments_holdings_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_investments_holdings_get_response.py b/plaid/model/processor_investments_holdings_get_response.py index d883a44af..3b390f458 100644 --- a/plaid/model/processor_investments_holdings_get_response.py +++ b/plaid/model/processor_investments_holdings_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_investments_transactions_get_request.py b/plaid/model/processor_investments_transactions_get_request.py index 419de843c..1f2e72a57 100644 --- a/plaid/model/processor_investments_transactions_get_request.py +++ b/plaid/model/processor_investments_transactions_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_investments_transactions_get_response.py b/plaid/model/processor_investments_transactions_get_response.py index 19ea29afd..bb79da0c6 100644 --- a/plaid/model/processor_investments_transactions_get_response.py +++ b/plaid/model/processor_investments_transactions_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_liabilities_get_request.py b/plaid/model/processor_liabilities_get_request.py index b560bacbb..2bc6db73d 100644 --- a/plaid/model/processor_liabilities_get_request.py +++ b/plaid/model/processor_liabilities_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_liabilities_get_response.py b/plaid/model/processor_liabilities_get_response.py index f3e62eec3..397aac48d 100644 --- a/plaid/model/processor_liabilities_get_response.py +++ b/plaid/model/processor_liabilities_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_number.py b/plaid/model/processor_number.py index d3fe1a780..db81a2a2a 100644 --- a/plaid/model/processor_number.py +++ b/plaid/model/processor_number.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_recurring_transactions_update_webhook.py b/plaid/model/processor_recurring_transactions_update_webhook.py index b5862799c..90f498f38 100644 --- a/plaid/model/processor_recurring_transactions_update_webhook.py +++ b/plaid/model/processor_recurring_transactions_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_signal_decision_report_request.py b/plaid/model/processor_signal_decision_report_request.py index 1b55fbc26..61544c7ee 100644 --- a/plaid/model/processor_signal_decision_report_request.py +++ b/plaid/model/processor_signal_decision_report_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_signal_decision_report_response.py b/plaid/model/processor_signal_decision_report_response.py index fd3bd37af..4ff050054 100644 --- a/plaid/model/processor_signal_decision_report_response.py +++ b/plaid/model/processor_signal_decision_report_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_signal_evaluate_request.py b/plaid/model/processor_signal_evaluate_request.py index 9bf32f404..86a6d87f0 100644 --- a/plaid/model/processor_signal_evaluate_request.py +++ b/plaid/model/processor_signal_evaluate_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_signal_evaluate_response.py b/plaid/model/processor_signal_evaluate_response.py index 5f3ed3119..7c7de8300 100644 --- a/plaid/model/processor_signal_evaluate_response.py +++ b/plaid/model/processor_signal_evaluate_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_signal_prepare_request.py b/plaid/model/processor_signal_prepare_request.py index 147f5bf22..0341bb074 100644 --- a/plaid/model/processor_signal_prepare_request.py +++ b/plaid/model/processor_signal_prepare_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_signal_prepare_response.py b/plaid/model/processor_signal_prepare_response.py index 664173d40..3b067fd7b 100644 --- a/plaid/model/processor_signal_prepare_response.py +++ b/plaid/model/processor_signal_prepare_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_signal_return_report_request.py b/plaid/model/processor_signal_return_report_request.py index 71dbb3211..7a1546fec 100644 --- a/plaid/model/processor_signal_return_report_request.py +++ b/plaid/model/processor_signal_return_report_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_signal_return_report_response.py b/plaid/model/processor_signal_return_report_response.py index b2556695f..d1f5b7313 100644 --- a/plaid/model/processor_signal_return_report_response.py +++ b/plaid/model/processor_signal_return_report_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_stripe_bank_account_token_create_request.py b/plaid/model/processor_stripe_bank_account_token_create_request.py index 1b29b32d4..815105a7a 100644 --- a/plaid/model/processor_stripe_bank_account_token_create_request.py +++ b/plaid/model/processor_stripe_bank_account_token_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_stripe_bank_account_token_create_response.py b/plaid/model/processor_stripe_bank_account_token_create_response.py index 0be2c469b..9b1dc5192 100644 --- a/plaid/model/processor_stripe_bank_account_token_create_response.py +++ b/plaid/model/processor_stripe_bank_account_token_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_sync_updates_available_webhook.py b/plaid/model/processor_sync_updates_available_webhook.py index dc0ba61fa..2f241c20b 100644 --- a/plaid/model/processor_sync_updates_available_webhook.py +++ b/plaid/model/processor_sync_updates_available_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_token_create_request.py b/plaid/model/processor_token_create_request.py index 8f5701b60..62566f3e9 100644 --- a/plaid/model/processor_token_create_request.py +++ b/plaid/model/processor_token_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ @@ -135,6 +135,7 @@ class ProcessorTokenCreateRequest(ModelNormal): 'NATURAL': "natural", 'KANMON': "kanmon", 'KICK': "kick", + 'INCREASE': "increase", }, } diff --git a/plaid/model/processor_token_create_response.py b/plaid/model/processor_token_create_response.py index f6f26fad5..55123dd1e 100644 --- a/plaid/model/processor_token_create_response.py +++ b/plaid/model/processor_token_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_token_permissions_get_request.py b/plaid/model/processor_token_permissions_get_request.py index 1df344ecf..6e4d9cab1 100644 --- a/plaid/model/processor_token_permissions_get_request.py +++ b/plaid/model/processor_token_permissions_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_token_permissions_get_response.py b/plaid/model/processor_token_permissions_get_response.py index 92a80da4c..28277472d 100644 --- a/plaid/model/processor_token_permissions_get_response.py +++ b/plaid/model/processor_token_permissions_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_token_permissions_set_request.py b/plaid/model/processor_token_permissions_set_request.py index e61e07c90..6a3e9fb71 100644 --- a/plaid/model/processor_token_permissions_set_request.py +++ b/plaid/model/processor_token_permissions_set_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_token_permissions_set_response.py b/plaid/model/processor_token_permissions_set_response.py index dc2d25846..ee75e6f95 100644 --- a/plaid/model/processor_token_permissions_set_response.py +++ b/plaid/model/processor_token_permissions_set_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_token_webhook_update.py b/plaid/model/processor_token_webhook_update.py index a08fc6b4b..5ff5a3b90 100644 --- a/plaid/model/processor_token_webhook_update.py +++ b/plaid/model/processor_token_webhook_update.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_token_webhook_update_request.py b/plaid/model/processor_token_webhook_update_request.py index 4918a0c7d..cc6760ad0 100644 --- a/plaid/model/processor_token_webhook_update_request.py +++ b/plaid/model/processor_token_webhook_update_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_token_webhook_update_response.py b/plaid/model/processor_token_webhook_update_response.py index 1204493b6..8292ade1a 100644 --- a/plaid/model/processor_token_webhook_update_response.py +++ b/plaid/model/processor_token_webhook_update_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_transactions_get_request.py b/plaid/model/processor_transactions_get_request.py index 3495ed916..c78dd0d44 100644 --- a/plaid/model/processor_transactions_get_request.py +++ b/plaid/model/processor_transactions_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_transactions_get_request_options.py b/plaid/model/processor_transactions_get_request_options.py index 047950f6a..d5b33463c 100644 --- a/plaid/model/processor_transactions_get_request_options.py +++ b/plaid/model/processor_transactions_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_transactions_get_response.py b/plaid/model/processor_transactions_get_response.py index a743d42ca..1c640d6b5 100644 --- a/plaid/model/processor_transactions_get_response.py +++ b/plaid/model/processor_transactions_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_transactions_recurring_get_request.py b/plaid/model/processor_transactions_recurring_get_request.py index c6249eb6d..c4551da9a 100644 --- a/plaid/model/processor_transactions_recurring_get_request.py +++ b/plaid/model/processor_transactions_recurring_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_transactions_recurring_get_response.py b/plaid/model/processor_transactions_recurring_get_response.py index b53064b3c..c3bdde407 100644 --- a/plaid/model/processor_transactions_recurring_get_response.py +++ b/plaid/model/processor_transactions_recurring_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_transactions_refresh_request.py b/plaid/model/processor_transactions_refresh_request.py index 8611b6419..ebff4ad2d 100644 --- a/plaid/model/processor_transactions_refresh_request.py +++ b/plaid/model/processor_transactions_refresh_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_transactions_refresh_response.py b/plaid/model/processor_transactions_refresh_response.py index 8dc3a7065..0322d0950 100644 --- a/plaid/model/processor_transactions_refresh_response.py +++ b/plaid/model/processor_transactions_refresh_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_transactions_removed_webhook.py b/plaid/model/processor_transactions_removed_webhook.py index cb2138368..2c3c16b20 100644 --- a/plaid/model/processor_transactions_removed_webhook.py +++ b/plaid/model/processor_transactions_removed_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_transactions_sync_request.py b/plaid/model/processor_transactions_sync_request.py index ebc4eb068..7dc2062c7 100644 --- a/plaid/model/processor_transactions_sync_request.py +++ b/plaid/model/processor_transactions_sync_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_transactions_sync_response.py b/plaid/model/processor_transactions_sync_response.py index f7caf33a9..05cecb072 100644 --- a/plaid/model/processor_transactions_sync_response.py +++ b/plaid/model/processor_transactions_sync_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/product_access.py b/plaid/model/product_access.py index 01d9057d7..6d299e97e 100644 --- a/plaid/model/product_access.py +++ b/plaid/model/product_access.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/product_permissions_required_auth_webhook.py b/plaid/model/product_permissions_required_auth_webhook.py index ed3ae5e83..d9e717824 100644 --- a/plaid/model/product_permissions_required_auth_webhook.py +++ b/plaid/model/product_permissions_required_auth_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/product_permissions_required_identity_webhook.py b/plaid/model/product_permissions_required_identity_webhook.py index e8e73c263..efd5b9177 100644 --- a/plaid/model/product_permissions_required_identity_webhook.py +++ b/plaid/model/product_permissions_required_identity_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/product_status.py b/plaid/model/product_status.py index e5ca6bb36..d6e813e4a 100644 --- a/plaid/model/product_status.py +++ b/plaid/model/product_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/product_status_breakdown.py b/plaid/model/product_status_breakdown.py index 84eb4ac02..cb8622831 100644 --- a/plaid/model/product_status_breakdown.py +++ b/plaid/model/product_status_breakdown.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/products.py b/plaid/model/products.py index 38b210264..0ff135174 100644 --- a/plaid/model/products.py +++ b/plaid/model/products.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/products_terminate_reason_code.py b/plaid/model/products_terminate_reason_code.py index fdd18f1f2..89cf02a8f 100644 --- a/plaid/model/products_terminate_reason_code.py +++ b/plaid/model/products_terminate_reason_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/profile_network_status_get_request.py b/plaid/model/profile_network_status_get_request.py index 0f5d532c0..2688d887d 100644 --- a/plaid/model/profile_network_status_get_request.py +++ b/plaid/model/profile_network_status_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/profile_network_status_get_response.py b/plaid/model/profile_network_status_get_response.py index c2abc1db6..6d6820013 100644 --- a/plaid/model/profile_network_status_get_response.py +++ b/plaid/model/profile_network_status_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/program_name_sensitivity.py b/plaid/model/program_name_sensitivity.py index 93bd2e448..b38c91cd3 100644 --- a/plaid/model/program_name_sensitivity.py +++ b/plaid/model/program_name_sensitivity.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/projected_income_summary_field_number.py b/plaid/model/projected_income_summary_field_number.py index c4240a44e..28e2e0726 100644 --- a/plaid/model/projected_income_summary_field_number.py +++ b/plaid/model/projected_income_summary_field_number.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_app_visit_event.py b/plaid/model/protect_app_visit_event.py index a5d28b2da..c592a99bf 100644 --- a/plaid/model/protect_app_visit_event.py +++ b/plaid/model/protect_app_visit_event.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_bank_account.py b/plaid/model/protect_bank_account.py index 54aa88733..f8a2c6840 100644 --- a/plaid/model/protect_bank_account.py +++ b/plaid/model/protect_bank_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_compute_request.py b/plaid/model/protect_compute_request.py index 762e5592b..71d9c1739 100644 --- a/plaid/model/protect_compute_request.py +++ b/plaid/model/protect_compute_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_compute_response.py b/plaid/model/protect_compute_response.py index a2ce7b93c..84c880644 100644 --- a/plaid/model/protect_compute_response.py +++ b/plaid/model/protect_compute_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_compute_subscores.py b/plaid/model/protect_compute_subscores.py index 4431478a3..3ffe01ed5 100644 --- a/plaid/model/protect_compute_subscores.py +++ b/plaid/model/protect_compute_subscores.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_event.py b/plaid/model/protect_event.py index 9c709a60f..b69d996ea 100644 --- a/plaid/model/protect_event.py +++ b/plaid/model/protect_event.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_event_get_request.py b/plaid/model/protect_event_get_request.py index 58311f887..c67db2add 100644 --- a/plaid/model/protect_event_get_request.py +++ b/plaid/model/protect_event_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_event_get_response.py b/plaid/model/protect_event_get_response.py index d13ece48b..439b6835b 100644 --- a/plaid/model/protect_event_get_response.py +++ b/plaid/model/protect_event_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_event_send_request.py b/plaid/model/protect_event_send_request.py index 228e671ee..6e62fa5c0 100644 --- a/plaid/model/protect_event_send_request.py +++ b/plaid/model/protect_event_send_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_event_send_response.py b/plaid/model/protect_event_send_response.py index 63f71a141..3216a6def 100644 --- a/plaid/model/protect_event_send_response.py +++ b/plaid/model/protect_event_send_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_incident_amount.py b/plaid/model/protect_incident_amount.py index 52f2dab53..608f84ffb 100644 --- a/plaid/model/protect_incident_amount.py +++ b/plaid/model/protect_incident_amount.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_incident_event.py b/plaid/model/protect_incident_event.py index 52e81d188..c866372a1 100644 --- a/plaid/model/protect_incident_event.py +++ b/plaid/model/protect_incident_event.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_incident_event_response.py b/plaid/model/protect_incident_event_response.py index de090c18b..51be4d4fb 100644 --- a/plaid/model/protect_incident_event_response.py +++ b/plaid/model/protect_incident_event_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_link_model_inputs.py b/plaid/model/protect_link_model_inputs.py index 9654838bb..961ed37af 100644 --- a/plaid/model/protect_link_model_inputs.py +++ b/plaid/model/protect_link_model_inputs.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_model_inputs.py b/plaid/model/protect_model_inputs.py index 8b553c797..755196d14 100644 --- a/plaid/model/protect_model_inputs.py +++ b/plaid/model/protect_model_inputs.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_report.py b/plaid/model/protect_report.py index c406859bc..e821202e8 100644 --- a/plaid/model/protect_report.py +++ b/plaid/model/protect_report.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_report_confidence.py b/plaid/model/protect_report_confidence.py index be28b775d..51c60dfaa 100644 --- a/plaid/model/protect_report_confidence.py +++ b/plaid/model/protect_report_confidence.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_report_create_request.py b/plaid/model/protect_report_create_request.py index e0d695465..78cfe98d3 100644 --- a/plaid/model/protect_report_create_request.py +++ b/plaid/model/protect_report_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_report_create_response.py b/plaid/model/protect_report_create_response.py index 9aaf62673..0c4b5db03 100644 --- a/plaid/model/protect_report_create_response.py +++ b/plaid/model/protect_report_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_report_source.py b/plaid/model/protect_report_source.py index 7c78a2278..a00b8b5b9 100644 --- a/plaid/model/protect_report_source.py +++ b/plaid/model/protect_report_source.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_report_type.py b/plaid/model/protect_report_type.py index e23c8486e..05ba0b19b 100644 --- a/plaid/model/protect_report_type.py +++ b/plaid/model/protect_report_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_sdk_model_inputs.py b/plaid/model/protect_sdk_model_inputs.py index f51ebfacc..234a1bafa 100644 --- a/plaid/model/protect_sdk_model_inputs.py +++ b/plaid/model/protect_sdk_model_inputs.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_user.py b/plaid/model/protect_user.py index 750dbb241..128a6b1d5 100644 --- a/plaid/model/protect_user.py +++ b/plaid/model/protect_user.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_user_event_webhook.py b/plaid/model/protect_user_event_webhook.py index 3056dc64f..cd0fe10f0 100644 --- a/plaid/model/protect_user_event_webhook.py +++ b/plaid/model/protect_user_event_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_user_insights_get_request.py b/plaid/model/protect_user_insights_get_request.py index 31dfd5a0e..6dc811056 100644 --- a/plaid/model/protect_user_insights_get_request.py +++ b/plaid/model/protect_user_insights_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_user_insights_get_response.py b/plaid/model/protect_user_insights_get_response.py index ddca0cd52..673a6f47e 100644 --- a/plaid/model/protect_user_insights_get_response.py +++ b/plaid/model/protect_user_insights_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_user_sign_in_event.py b/plaid/model/protect_user_sign_in_event.py index 700388fc2..3c6b0681f 100644 --- a/plaid/model/protect_user_sign_in_event.py +++ b/plaid/model/protect_user_sign_in_event.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/protect_user_sign_up_event.py b/plaid/model/protect_user_sign_up_event.py index 8ea7beb40..871364a95 100644 --- a/plaid/model/protect_user_sign_up_event.py +++ b/plaid/model/protect_user_sign_up_event.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/provider_business_address.py b/plaid/model/provider_business_address.py index 35ade6cbe..9d7b898b6 100644 --- a/plaid/model/provider_business_address.py +++ b/plaid/model/provider_business_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/provider_business_name.py b/plaid/model/provider_business_name.py index a213d3d69..02a4b7ac0 100644 --- a/plaid/model/provider_business_name.py +++ b/plaid/model/provider_business_name.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/proxy_type.py b/plaid/model/proxy_type.py index e0b6e43ec..ac687e753 100644 --- a/plaid/model/proxy_type.py +++ b/plaid/model/proxy_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pslf_status.py b/plaid/model/pslf_status.py index 79f0900b7..72344795e 100644 --- a/plaid/model/pslf_status.py +++ b/plaid/model/pslf_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/reason_code.py b/plaid/model/reason_code.py index 04db43c7c..86a221dc9 100644 --- a/plaid/model/reason_code.py +++ b/plaid/model/reason_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recaptcha_required_error.py b/plaid/model/recaptcha_required_error.py index 1b3edc918..82b9415db 100644 --- a/plaid/model/recaptcha_required_error.py +++ b/plaid/model/recaptcha_required_error.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/receiver_details.py b/plaid/model/receiver_details.py index a9ac2aba2..8a8fa40f1 100644 --- a/plaid/model/receiver_details.py +++ b/plaid/model/receiver_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recipient_bacs.py b/plaid/model/recipient_bacs.py index ae411bdaf..b1a042b35 100644 --- a/plaid/model/recipient_bacs.py +++ b/plaid/model/recipient_bacs.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recipient_bacs_nullable.py b/plaid/model/recipient_bacs_nullable.py index 269a49f39..e58832af0 100644 --- a/plaid/model/recipient_bacs_nullable.py +++ b/plaid/model/recipient_bacs_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recommendation_string.py b/plaid/model/recommendation_string.py index 319158048..3514c178e 100644 --- a/plaid/model/recommendation_string.py +++ b/plaid/model/recommendation_string.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_cancelled_webhook.py b/plaid/model/recurring_cancelled_webhook.py index 468f827e7..2f3880661 100644 --- a/plaid/model/recurring_cancelled_webhook.py +++ b/plaid/model/recurring_cancelled_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_insights_stream.py b/plaid/model/recurring_insights_stream.py index 511c7f172..15c7d3233 100644 --- a/plaid/model/recurring_insights_stream.py +++ b/plaid/model/recurring_insights_stream.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_new_transfer_webhook.py b/plaid/model/recurring_new_transfer_webhook.py index 1e508f5cf..3b25f95ea 100644 --- a/plaid/model/recurring_new_transfer_webhook.py +++ b/plaid/model/recurring_new_transfer_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_transaction_frequency.py b/plaid/model/recurring_transaction_frequency.py index 9bce794c4..808edaa50 100644 --- a/plaid/model/recurring_transaction_frequency.py +++ b/plaid/model/recurring_transaction_frequency.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_transactions.py b/plaid/model/recurring_transactions.py index be991a753..39b1c29d0 100644 --- a/plaid/model/recurring_transactions.py +++ b/plaid/model/recurring_transactions.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_transactions_update_webhook.py b/plaid/model/recurring_transactions_update_webhook.py index 5bd032d56..7d4f48272 100644 --- a/plaid/model/recurring_transactions_update_webhook.py +++ b/plaid/model/recurring_transactions_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_transfer.py b/plaid/model/recurring_transfer.py index 64e7c9e15..4127b81ec 100644 --- a/plaid/model/recurring_transfer.py +++ b/plaid/model/recurring_transfer.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_transfer_nullable.py b/plaid/model/recurring_transfer_nullable.py index a9fb0e83c..c36bc4988 100644 --- a/plaid/model/recurring_transfer_nullable.py +++ b/plaid/model/recurring_transfer_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_transfer_skipped_webhook.py b/plaid/model/recurring_transfer_skipped_webhook.py index a212c1a3a..781bfd5a8 100644 --- a/plaid/model/recurring_transfer_skipped_webhook.py +++ b/plaid/model/recurring_transfer_skipped_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/refresh_result.py b/plaid/model/refresh_result.py index 15849ed2d..8d222eaab 100644 --- a/plaid/model/refresh_result.py +++ b/plaid/model/refresh_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/removed_transaction.py b/plaid/model/removed_transaction.py index 1a527c96b..21f9e8257 100644 --- a/plaid/model/removed_transaction.py +++ b/plaid/model/removed_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/report_type.py b/plaid/model/report_type.py index 5996aa7d6..e0722878a 100644 --- a/plaid/model/report_type.py +++ b/plaid/model/report_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/reporting_information.py b/plaid/model/reporting_information.py index 4b25d3ce0..369fcd59b 100644 --- a/plaid/model/reporting_information.py +++ b/plaid/model/reporting_information.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/request_business_address.py b/plaid/model/request_business_address.py index 1b509afba..8d64313a9 100644 --- a/plaid/model/request_business_address.py +++ b/plaid/model/request_business_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/response_business_address.py b/plaid/model/response_business_address.py index c60352104..8c889adec 100644 --- a/plaid/model/response_business_address.py +++ b/plaid/model/response_business_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_behavior.py b/plaid/model/risk_check_behavior.py index 3256efd3b..94e80f391 100644 --- a/plaid/model/risk_check_behavior.py +++ b/plaid/model/risk_check_behavior.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_behavior_bot_detected_label.py b/plaid/model/risk_check_behavior_bot_detected_label.py index 146922b48..8fb86c9ee 100644 --- a/plaid/model/risk_check_behavior_bot_detected_label.py +++ b/plaid/model/risk_check_behavior_bot_detected_label.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_behavior_fraud_ring_detected_label.py b/plaid/model/risk_check_behavior_fraud_ring_detected_label.py index 4f2847b5b..85cb478b1 100644 --- a/plaid/model/risk_check_behavior_fraud_ring_detected_label.py +++ b/plaid/model/risk_check_behavior_fraud_ring_detected_label.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_behavior_user_interactions_label.py b/plaid/model/risk_check_behavior_user_interactions_label.py index 06bb33435..cd9298201 100644 --- a/plaid/model/risk_check_behavior_user_interactions_label.py +++ b/plaid/model/risk_check_behavior_user_interactions_label.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_details.py b/plaid/model/risk_check_details.py index c00165a8f..2da115cce 100644 --- a/plaid/model/risk_check_details.py +++ b/plaid/model/risk_check_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_device.py b/plaid/model/risk_check_device.py index 70b7c2072..2f29b8c7a 100644 --- a/plaid/model/risk_check_device.py +++ b/plaid/model/risk_check_device.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_email.py b/plaid/model/risk_check_email.py index a3fda563c..2c45b35cc 100644 --- a/plaid/model/risk_check_email.py +++ b/plaid/model/risk_check_email.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_email_domain_is_custom.py b/plaid/model/risk_check_email_domain_is_custom.py index 643934c34..efa54e056 100644 --- a/plaid/model/risk_check_email_domain_is_custom.py +++ b/plaid/model/risk_check_email_domain_is_custom.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_email_domain_is_disposable.py b/plaid/model/risk_check_email_domain_is_disposable.py index 9c09b89dc..2c43d9c2a 100644 --- a/plaid/model/risk_check_email_domain_is_disposable.py +++ b/plaid/model/risk_check_email_domain_is_disposable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_email_domain_is_free_provider.py b/plaid/model/risk_check_email_domain_is_free_provider.py index 8c302dc4b..b9488dbeb 100644 --- a/plaid/model/risk_check_email_domain_is_free_provider.py +++ b/plaid/model/risk_check_email_domain_is_free_provider.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_email_includes_date_of_birth.py b/plaid/model/risk_check_email_includes_date_of_birth.py index 1fc537db1..f1cff4326 100644 --- a/plaid/model/risk_check_email_includes_date_of_birth.py +++ b/plaid/model/risk_check_email_includes_date_of_birth.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_email_is_deliverable_status.py b/plaid/model/risk_check_email_is_deliverable_status.py index c89dff672..813cbaee1 100644 --- a/plaid/model/risk_check_email_is_deliverable_status.py +++ b/plaid/model/risk_check_email_is_deliverable_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_email_is_edu.py b/plaid/model/risk_check_email_is_edu.py index e96129e55..546d17dc4 100644 --- a/plaid/model/risk_check_email_is_edu.py +++ b/plaid/model/risk_check_email_is_edu.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_email_name.py b/plaid/model/risk_check_email_name.py index 5b599277b..68fe34d2b 100644 --- a/plaid/model/risk_check_email_name.py +++ b/plaid/model/risk_check_email_name.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_email_top_level_domain_is_suspicious.py b/plaid/model/risk_check_email_top_level_domain_is_suspicious.py index bceeae765..f35d20678 100644 --- a/plaid/model/risk_check_email_top_level_domain_is_suspicious.py +++ b/plaid/model/risk_check_email_top_level_domain_is_suspicious.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_facial_duplicate.py b/plaid/model/risk_check_facial_duplicate.py index 45dd7efc0..d725efaf2 100644 --- a/plaid/model/risk_check_facial_duplicate.py +++ b/plaid/model/risk_check_facial_duplicate.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_factors.py b/plaid/model/risk_check_factors.py index e2be22135..86ab52e11 100644 --- a/plaid/model/risk_check_factors.py +++ b/plaid/model/risk_check_factors.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_identity_abuse_signals.py b/plaid/model/risk_check_identity_abuse_signals.py index 7592fcf12..68061918a 100644 --- a/plaid/model/risk_check_identity_abuse_signals.py +++ b/plaid/model/risk_check_identity_abuse_signals.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_linked_service.py b/plaid/model/risk_check_linked_service.py index e15141d95..10fe97244 100644 --- a/plaid/model/risk_check_linked_service.py +++ b/plaid/model/risk_check_linked_service.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_network.py b/plaid/model/risk_check_network.py index ede3286de..f8c9ac339 100644 --- a/plaid/model/risk_check_network.py +++ b/plaid/model/risk_check_network.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_phone.py b/plaid/model/risk_check_phone.py index de5cf5758..241a29156 100644 --- a/plaid/model/risk_check_phone.py +++ b/plaid/model/risk_check_phone.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_stolen_identity.py b/plaid/model/risk_check_stolen_identity.py index 3b8738cf2..379763ef1 100644 --- a/plaid/model/risk_check_stolen_identity.py +++ b/plaid/model/risk_check_stolen_identity.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_synthetic_identity.py b/plaid/model/risk_check_synthetic_identity.py index fcfa9a980..3eedba86a 100644 --- a/plaid/model/risk_check_synthetic_identity.py +++ b/plaid/model/risk_check_synthetic_identity.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_indicators.py b/plaid/model/risk_indicators.py index 1631a23fd..c8df8adb7 100644 --- a/plaid/model/risk_indicators.py +++ b/plaid/model/risk_indicators.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_level.py b/plaid/model/risk_level.py index f78d072d3..00973aece 100644 --- a/plaid/model/risk_level.py +++ b/plaid/model/risk_level.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_level_with_no_data.py b/plaid/model/risk_level_with_no_data.py index b716de814..a3aceef6e 100644 --- a/plaid/model/risk_level_with_no_data.py +++ b/plaid/model/risk_level_with_no_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_profile.py b/plaid/model/risk_profile.py index 959230fb3..bb94e4ea6 100644 --- a/plaid/model/risk_profile.py +++ b/plaid/model/risk_profile.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_reason.py b/plaid/model/risk_reason.py index a039b1f70..6adb8a0b8 100644 --- a/plaid/model/risk_reason.py +++ b/plaid/model/risk_reason.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_signal_document_reference.py b/plaid/model/risk_signal_document_reference.py index 8a4611b5a..69ce5298d 100644 --- a/plaid/model/risk_signal_document_reference.py +++ b/plaid/model/risk_signal_document_reference.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_signal_document_status.py b/plaid/model/risk_signal_document_status.py index f83c9da09..271988fd1 100644 --- a/plaid/model/risk_signal_document_status.py +++ b/plaid/model/risk_signal_document_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_signal_document_type.py b/plaid/model/risk_signal_document_type.py index 9028445d4..828cc5883 100644 --- a/plaid/model/risk_signal_document_type.py +++ b/plaid/model/risk_signal_document_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_signal_file_type.py b/plaid/model/risk_signal_file_type.py index 4ca2594dc..460959cd9 100644 --- a/plaid/model/risk_signal_file_type.py +++ b/plaid/model/risk_signal_file_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/role.py b/plaid/model/role.py index 683befd38..ab24cb914 100644 --- a/plaid/model/role.py +++ b/plaid/model/role.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/role_detail.py b/plaid/model/role_detail.py index 9bb68a1e2..e153142ee 100644 --- a/plaid/model/role_detail.py +++ b/plaid/model/role_detail.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/roles.py b/plaid/model/roles.py index d0ce4b4c0..507b1e1d2 100644 --- a/plaid/model/roles.py +++ b/plaid/model/roles.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/rule_details.py b/plaid/model/rule_details.py index 75b668911..e8b4169b4 100644 --- a/plaid/model/rule_details.py +++ b/plaid/model/rule_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/rule_result.py b/plaid/model/rule_result.py index 8a0864f83..e2df2a4a6 100644 --- a/plaid/model/rule_result.py +++ b/plaid/model/rule_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/ruleset.py b/plaid/model/ruleset.py index 4dcfba92e..7823b639c 100644 --- a/plaid/model/ruleset.py +++ b/plaid/model/ruleset.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_bank_income_fire_webhook_request.py b/plaid/model/sandbox_bank_income_fire_webhook_request.py index a1f375962..4842a9347 100644 --- a/plaid/model/sandbox_bank_income_fire_webhook_request.py +++ b/plaid/model/sandbox_bank_income_fire_webhook_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_bank_income_fire_webhook_response.py b/plaid/model/sandbox_bank_income_fire_webhook_response.py index aae5183e4..054461135 100644 --- a/plaid/model/sandbox_bank_income_fire_webhook_response.py +++ b/plaid/model/sandbox_bank_income_fire_webhook_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_bank_income_webhook_fire_request_webhook_code.py b/plaid/model/sandbox_bank_income_webhook_fire_request_webhook_code.py index 2e4bffbfd..7df68894d 100644 --- a/plaid/model/sandbox_bank_income_webhook_fire_request_webhook_code.py +++ b/plaid/model/sandbox_bank_income_webhook_fire_request_webhook_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_bank_income_webhook_fire_request_webhook_fields.py b/plaid/model/sandbox_bank_income_webhook_fire_request_webhook_fields.py index b6a0c5d47..96db298c6 100644 --- a/plaid/model/sandbox_bank_income_webhook_fire_request_webhook_fields.py +++ b/plaid/model/sandbox_bank_income_webhook_fire_request_webhook_fields.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_bank_transfer_fire_webhook_request.py b/plaid/model/sandbox_bank_transfer_fire_webhook_request.py index de07abe2e..e0715dfc2 100644 --- a/plaid/model/sandbox_bank_transfer_fire_webhook_request.py +++ b/plaid/model/sandbox_bank_transfer_fire_webhook_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_bank_transfer_fire_webhook_response.py b/plaid/model/sandbox_bank_transfer_fire_webhook_response.py index 542b2f5f6..97a823fda 100644 --- a/plaid/model/sandbox_bank_transfer_fire_webhook_response.py +++ b/plaid/model/sandbox_bank_transfer_fire_webhook_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_bank_transfer_simulate_request.py b/plaid/model/sandbox_bank_transfer_simulate_request.py index c41f104be..e38e1b9e0 100644 --- a/plaid/model/sandbox_bank_transfer_simulate_request.py +++ b/plaid/model/sandbox_bank_transfer_simulate_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_bank_transfer_simulate_response.py b/plaid/model/sandbox_bank_transfer_simulate_response.py index e0f0fdf37..65a33870e 100644 --- a/plaid/model/sandbox_bank_transfer_simulate_response.py +++ b/plaid/model/sandbox_bank_transfer_simulate_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_cra_cashflow_updates_update_request.py b/plaid/model/sandbox_cra_cashflow_updates_update_request.py index dad084da7..1ee374189 100644 --- a/plaid/model/sandbox_cra_cashflow_updates_update_request.py +++ b/plaid/model/sandbox_cra_cashflow_updates_update_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_cra_cashflow_updates_update_response.py b/plaid/model/sandbox_cra_cashflow_updates_update_response.py index aec99f29b..e678cd58d 100644 --- a/plaid/model/sandbox_cra_cashflow_updates_update_response.py +++ b/plaid/model/sandbox_cra_cashflow_updates_update_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_fdx_consent_seed_request.py b/plaid/model/sandbox_fdx_consent_seed_request.py index 60f3ed264..5f65bb1bb 100644 --- a/plaid/model/sandbox_fdx_consent_seed_request.py +++ b/plaid/model/sandbox_fdx_consent_seed_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_fdx_consent_seed_response.py b/plaid/model/sandbox_fdx_consent_seed_response.py index d06b2acfb..e4deb0ecc 100644 --- a/plaid/model/sandbox_fdx_consent_seed_response.py +++ b/plaid/model/sandbox_fdx_consent_seed_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_income_fire_webhook_request.py b/plaid/model/sandbox_income_fire_webhook_request.py index 3de22ec97..461028d0d 100644 --- a/plaid/model/sandbox_income_fire_webhook_request.py +++ b/plaid/model/sandbox_income_fire_webhook_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_income_fire_webhook_response.py b/plaid/model/sandbox_income_fire_webhook_response.py index 81cddc287..cec0e3176 100644 --- a/plaid/model/sandbox_income_fire_webhook_response.py +++ b/plaid/model/sandbox_income_fire_webhook_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_income_webhook_fire_request_webhook_code.py b/plaid/model/sandbox_income_webhook_fire_request_webhook_code.py index d1bf7a5bc..4ad268ea6 100644 --- a/plaid/model/sandbox_income_webhook_fire_request_webhook_code.py +++ b/plaid/model/sandbox_income_webhook_fire_request_webhook_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_item_application_seed_request.py b/plaid/model/sandbox_item_application_seed_request.py index f00269ced..bd6a39bc4 100644 --- a/plaid/model/sandbox_item_application_seed_request.py +++ b/plaid/model/sandbox_item_application_seed_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_item_application_seed_response.py b/plaid/model/sandbox_item_application_seed_response.py index 7c9cab964..266d1c9f4 100644 --- a/plaid/model/sandbox_item_application_seed_response.py +++ b/plaid/model/sandbox_item_application_seed_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_item_fire_webhook_request.py b/plaid/model/sandbox_item_fire_webhook_request.py index d10c583da..7fdbe3be7 100644 --- a/plaid/model/sandbox_item_fire_webhook_request.py +++ b/plaid/model/sandbox_item_fire_webhook_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_item_fire_webhook_response.py b/plaid/model/sandbox_item_fire_webhook_response.py index 2d6127b87..6b8460a13 100644 --- a/plaid/model/sandbox_item_fire_webhook_response.py +++ b/plaid/model/sandbox_item_fire_webhook_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_item_reset_login_request.py b/plaid/model/sandbox_item_reset_login_request.py index 320b04dc1..3fa903a2c 100644 --- a/plaid/model/sandbox_item_reset_login_request.py +++ b/plaid/model/sandbox_item_reset_login_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_item_reset_login_response.py b/plaid/model/sandbox_item_reset_login_response.py index 430e3014d..bad7a0a7a 100644 --- a/plaid/model/sandbox_item_reset_login_response.py +++ b/plaid/model/sandbox_item_reset_login_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_item_set_verification_status_request.py b/plaid/model/sandbox_item_set_verification_status_request.py index 9c371199e..4f3318069 100644 --- a/plaid/model/sandbox_item_set_verification_status_request.py +++ b/plaid/model/sandbox_item_set_verification_status_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_item_set_verification_status_response.py b/plaid/model/sandbox_item_set_verification_status_response.py index 9cc324b64..17123ffd0 100644 --- a/plaid/model/sandbox_item_set_verification_status_response.py +++ b/plaid/model/sandbox_item_set_verification_status_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_oauth_select_accounts_request.py b/plaid/model/sandbox_oauth_select_accounts_request.py index f8e8f158b..53bc09391 100644 --- a/plaid/model/sandbox_oauth_select_accounts_request.py +++ b/plaid/model/sandbox_oauth_select_accounts_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_oauth_select_accounts_response.py b/plaid/model/sandbox_oauth_select_accounts_response.py index 2427f59af..56c21fa27 100644 --- a/plaid/model/sandbox_oauth_select_accounts_response.py +++ b/plaid/model/sandbox_oauth_select_accounts_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_payment_profile_reset_login_request.py b/plaid/model/sandbox_payment_profile_reset_login_request.py index 5bbf873cc..e7cf059fb 100644 --- a/plaid/model/sandbox_payment_profile_reset_login_request.py +++ b/plaid/model/sandbox_payment_profile_reset_login_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_payment_profile_reset_login_response.py b/plaid/model/sandbox_payment_profile_reset_login_response.py index 9f906ea7b..c3645723e 100644 --- a/plaid/model/sandbox_payment_profile_reset_login_response.py +++ b/plaid/model/sandbox_payment_profile_reset_login_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_payment_simulate_request.py b/plaid/model/sandbox_payment_simulate_request.py index e556901a0..56193784b 100644 --- a/plaid/model/sandbox_payment_simulate_request.py +++ b/plaid/model/sandbox_payment_simulate_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_payment_simulate_response.py b/plaid/model/sandbox_payment_simulate_response.py index 47932b3e1..391315232 100644 --- a/plaid/model/sandbox_payment_simulate_response.py +++ b/plaid/model/sandbox_payment_simulate_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_processor_token_create_request.py b/plaid/model/sandbox_processor_token_create_request.py index c3282bb68..1cc8cb85c 100644 --- a/plaid/model/sandbox_processor_token_create_request.py +++ b/plaid/model/sandbox_processor_token_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_processor_token_create_request_options.py b/plaid/model/sandbox_processor_token_create_request_options.py index a273381c0..556c6856d 100644 --- a/plaid/model/sandbox_processor_token_create_request_options.py +++ b/plaid/model/sandbox_processor_token_create_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_processor_token_create_response.py b/plaid/model/sandbox_processor_token_create_response.py index d351ced9d..1a0b72336 100644 --- a/plaid/model/sandbox_processor_token_create_response.py +++ b/plaid/model/sandbox_processor_token_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_public_token_create_request.py b/plaid/model/sandbox_public_token_create_request.py index 1f854088e..478a5f8e4 100644 --- a/plaid/model/sandbox_public_token_create_request.py +++ b/plaid/model/sandbox_public_token_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_public_token_create_request_income_verification_bank_income.py b/plaid/model/sandbox_public_token_create_request_income_verification_bank_income.py index a79ddf2f7..b7aec7aff 100644 --- a/plaid/model/sandbox_public_token_create_request_income_verification_bank_income.py +++ b/plaid/model/sandbox_public_token_create_request_income_verification_bank_income.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_public_token_create_request_options.py b/plaid/model/sandbox_public_token_create_request_options.py index 21b949bba..c9b2980fa 100644 --- a/plaid/model/sandbox_public_token_create_request_options.py +++ b/plaid/model/sandbox_public_token_create_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_public_token_create_request_options_income_verification.py b/plaid/model/sandbox_public_token_create_request_options_income_verification.py index fe5968850..9dd56d7b9 100644 --- a/plaid/model/sandbox_public_token_create_request_options_income_verification.py +++ b/plaid/model/sandbox_public_token_create_request_options_income_verification.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_public_token_create_request_options_statements.py b/plaid/model/sandbox_public_token_create_request_options_statements.py index 5dd72a8d9..d1ad7db77 100644 --- a/plaid/model/sandbox_public_token_create_request_options_statements.py +++ b/plaid/model/sandbox_public_token_create_request_options_statements.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_public_token_create_request_options_transactions.py b/plaid/model/sandbox_public_token_create_request_options_transactions.py index eea38f85b..fcb9640db 100644 --- a/plaid/model/sandbox_public_token_create_request_options_transactions.py +++ b/plaid/model/sandbox_public_token_create_request_options_transactions.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_public_token_create_response.py b/plaid/model/sandbox_public_token_create_response.py index 83dfb81bf..5ffd70eeb 100644 --- a/plaid/model/sandbox_public_token_create_response.py +++ b/plaid/model/sandbox_public_token_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transactions_create_request.py b/plaid/model/sandbox_transactions_create_request.py index 7eceea023..cfe9b84c1 100644 --- a/plaid/model/sandbox_transactions_create_request.py +++ b/plaid/model/sandbox_transactions_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transactions_create_response.py b/plaid/model/sandbox_transactions_create_response.py index 577d8718b..846e6ba81 100644 --- a/plaid/model/sandbox_transactions_create_response.py +++ b/plaid/model/sandbox_transactions_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_fire_webhook_request.py b/plaid/model/sandbox_transfer_fire_webhook_request.py index 654776124..661fce73a 100644 --- a/plaid/model/sandbox_transfer_fire_webhook_request.py +++ b/plaid/model/sandbox_transfer_fire_webhook_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_fire_webhook_response.py b/plaid/model/sandbox_transfer_fire_webhook_response.py index f41110851..572454fcf 100644 --- a/plaid/model/sandbox_transfer_fire_webhook_response.py +++ b/plaid/model/sandbox_transfer_fire_webhook_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_ledger_deposit_simulate_request.py b/plaid/model/sandbox_transfer_ledger_deposit_simulate_request.py index 312541d8e..681f70282 100644 --- a/plaid/model/sandbox_transfer_ledger_deposit_simulate_request.py +++ b/plaid/model/sandbox_transfer_ledger_deposit_simulate_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_ledger_deposit_simulate_response.py b/plaid/model/sandbox_transfer_ledger_deposit_simulate_response.py index 17c24c46b..1ddff4f68 100644 --- a/plaid/model/sandbox_transfer_ledger_deposit_simulate_response.py +++ b/plaid/model/sandbox_transfer_ledger_deposit_simulate_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_ledger_simulate_available_request.py b/plaid/model/sandbox_transfer_ledger_simulate_available_request.py index 9f8986e9c..d93d5d401 100644 --- a/plaid/model/sandbox_transfer_ledger_simulate_available_request.py +++ b/plaid/model/sandbox_transfer_ledger_simulate_available_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_ledger_simulate_available_response.py b/plaid/model/sandbox_transfer_ledger_simulate_available_response.py index 36230fbb3..1a26c38d8 100644 --- a/plaid/model/sandbox_transfer_ledger_simulate_available_response.py +++ b/plaid/model/sandbox_transfer_ledger_simulate_available_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_ledger_withdraw_simulate_request.py b/plaid/model/sandbox_transfer_ledger_withdraw_simulate_request.py index 83b6a5ce0..26b6b3db9 100644 --- a/plaid/model/sandbox_transfer_ledger_withdraw_simulate_request.py +++ b/plaid/model/sandbox_transfer_ledger_withdraw_simulate_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_ledger_withdraw_simulate_response.py b/plaid/model/sandbox_transfer_ledger_withdraw_simulate_response.py index ecfc6f45c..073744c5f 100644 --- a/plaid/model/sandbox_transfer_ledger_withdraw_simulate_response.py +++ b/plaid/model/sandbox_transfer_ledger_withdraw_simulate_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_refund_simulate_request.py b/plaid/model/sandbox_transfer_refund_simulate_request.py index f39a84f7d..5afb6122d 100644 --- a/plaid/model/sandbox_transfer_refund_simulate_request.py +++ b/plaid/model/sandbox_transfer_refund_simulate_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_refund_simulate_response.py b/plaid/model/sandbox_transfer_refund_simulate_response.py index cd6d5ad6e..be1dd8ff4 100644 --- a/plaid/model/sandbox_transfer_refund_simulate_response.py +++ b/plaid/model/sandbox_transfer_refund_simulate_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_repayment_simulate_request.py b/plaid/model/sandbox_transfer_repayment_simulate_request.py index 6f5ce8990..619099457 100644 --- a/plaid/model/sandbox_transfer_repayment_simulate_request.py +++ b/plaid/model/sandbox_transfer_repayment_simulate_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_repayment_simulate_response.py b/plaid/model/sandbox_transfer_repayment_simulate_response.py index 57f3cb48a..b2c1fd453 100644 --- a/plaid/model/sandbox_transfer_repayment_simulate_response.py +++ b/plaid/model/sandbox_transfer_repayment_simulate_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_rfp_simulate_action.py b/plaid/model/sandbox_transfer_rfp_simulate_action.py index 476d885a4..bee16bc64 100644 --- a/plaid/model/sandbox_transfer_rfp_simulate_action.py +++ b/plaid/model/sandbox_transfer_rfp_simulate_action.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_rfp_simulate_request.py b/plaid/model/sandbox_transfer_rfp_simulate_request.py index 9aed40611..c58ff6544 100644 --- a/plaid/model/sandbox_transfer_rfp_simulate_request.py +++ b/plaid/model/sandbox_transfer_rfp_simulate_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_rfp_simulate_response.py b/plaid/model/sandbox_transfer_rfp_simulate_response.py index 200b28797..3d6e8a565 100644 --- a/plaid/model/sandbox_transfer_rfp_simulate_response.py +++ b/plaid/model/sandbox_transfer_rfp_simulate_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_simulate_request.py b/plaid/model/sandbox_transfer_simulate_request.py index 1d951b07b..a395ba228 100644 --- a/plaid/model/sandbox_transfer_simulate_request.py +++ b/plaid/model/sandbox_transfer_simulate_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_simulate_response.py b/plaid/model/sandbox_transfer_simulate_response.py index 4dad4fbe5..33e56ac29 100644 --- a/plaid/model/sandbox_transfer_simulate_response.py +++ b/plaid/model/sandbox_transfer_simulate_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_sweep_simulate_request.py b/plaid/model/sandbox_transfer_sweep_simulate_request.py index 892e3cb62..520fc9c70 100644 --- a/plaid/model/sandbox_transfer_sweep_simulate_request.py +++ b/plaid/model/sandbox_transfer_sweep_simulate_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_sweep_simulate_response.py b/plaid/model/sandbox_transfer_sweep_simulate_response.py index f01245684..94f780fbd 100644 --- a/plaid/model/sandbox_transfer_sweep_simulate_response.py +++ b/plaid/model/sandbox_transfer_sweep_simulate_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_test_clock_advance_request.py b/plaid/model/sandbox_transfer_test_clock_advance_request.py index 45a934225..8a4984079 100644 --- a/plaid/model/sandbox_transfer_test_clock_advance_request.py +++ b/plaid/model/sandbox_transfer_test_clock_advance_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_test_clock_advance_response.py b/plaid/model/sandbox_transfer_test_clock_advance_response.py index 9d9526062..9e58900e8 100644 --- a/plaid/model/sandbox_transfer_test_clock_advance_response.py +++ b/plaid/model/sandbox_transfer_test_clock_advance_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_test_clock_create_request.py b/plaid/model/sandbox_transfer_test_clock_create_request.py index 0a2b5beda..0b9d3e64d 100644 --- a/plaid/model/sandbox_transfer_test_clock_create_request.py +++ b/plaid/model/sandbox_transfer_test_clock_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_test_clock_create_response.py b/plaid/model/sandbox_transfer_test_clock_create_response.py index 64e055a56..542e4ebab 100644 --- a/plaid/model/sandbox_transfer_test_clock_create_response.py +++ b/plaid/model/sandbox_transfer_test_clock_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_test_clock_get_request.py b/plaid/model/sandbox_transfer_test_clock_get_request.py index 700cbb326..beb1039de 100644 --- a/plaid/model/sandbox_transfer_test_clock_get_request.py +++ b/plaid/model/sandbox_transfer_test_clock_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_test_clock_get_response.py b/plaid/model/sandbox_transfer_test_clock_get_response.py index 233fdbeea..179181592 100644 --- a/plaid/model/sandbox_transfer_test_clock_get_response.py +++ b/plaid/model/sandbox_transfer_test_clock_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_test_clock_list_request.py b/plaid/model/sandbox_transfer_test_clock_list_request.py index 062c13bf7..3c8feb1d8 100644 --- a/plaid/model/sandbox_transfer_test_clock_list_request.py +++ b/plaid/model/sandbox_transfer_test_clock_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_transfer_test_clock_list_response.py b/plaid/model/sandbox_transfer_test_clock_list_response.py index b879fb913..348650c36 100644 --- a/plaid/model/sandbox_transfer_test_clock_list_response.py +++ b/plaid/model/sandbox_transfer_test_clock_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_user_reset_login_request.py b/plaid/model/sandbox_user_reset_login_request.py index e147bf357..3aa2f9cb7 100644 --- a/plaid/model/sandbox_user_reset_login_request.py +++ b/plaid/model/sandbox_user_reset_login_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_user_reset_login_response.py b/plaid/model/sandbox_user_reset_login_response.py index 864df06ca..eae5b8892 100644 --- a/plaid/model/sandbox_user_reset_login_response.py +++ b/plaid/model/sandbox_user_reset_login_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/scopes.py b/plaid/model/scopes.py index 183ea7d3f..28b138a87 100644 --- a/plaid/model/scopes.py +++ b/plaid/model/scopes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/scopes_context.py b/plaid/model/scopes_context.py index 6fdcdc861..5490744a8 100644 --- a/plaid/model/scopes_context.py +++ b/plaid/model/scopes_context.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/scopes_nullable.py b/plaid/model/scopes_nullable.py index 8682c35e1..b7151487c 100644 --- a/plaid/model/scopes_nullable.py +++ b/plaid/model/scopes_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/screening_hit_analysis.py b/plaid/model/screening_hit_analysis.py index 00e059b74..36c20e6f2 100644 --- a/plaid/model/screening_hit_analysis.py +++ b/plaid/model/screening_hit_analysis.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/screening_hit_data.py b/plaid/model/screening_hit_data.py index b19a0f178..2b904bf69 100644 --- a/plaid/model/screening_hit_data.py +++ b/plaid/model/screening_hit_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/screening_hit_date_of_birth_item.py b/plaid/model/screening_hit_date_of_birth_item.py index 249a1ef16..1e7f7c57e 100644 --- a/plaid/model/screening_hit_date_of_birth_item.py +++ b/plaid/model/screening_hit_date_of_birth_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/screening_hit_documents_items.py b/plaid/model/screening_hit_documents_items.py index 8d61735b6..89a2c0c3f 100644 --- a/plaid/model/screening_hit_documents_items.py +++ b/plaid/model/screening_hit_documents_items.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/screening_hit_names_items.py b/plaid/model/screening_hit_names_items.py index 86d0cd2d5..b5dc6f48a 100644 --- a/plaid/model/screening_hit_names_items.py +++ b/plaid/model/screening_hit_names_items.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/screening_status_updated_webhook.py b/plaid/model/screening_status_updated_webhook.py index 9fe8b4df1..3bb98da39 100644 --- a/plaid/model/screening_status_updated_webhook.py +++ b/plaid/model/screening_status_updated_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/security.py b/plaid/model/security.py index e8a0d321e..9ad824597 100644 --- a/plaid/model/security.py +++ b/plaid/model/security.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/security_override.py b/plaid/model/security_override.py index db8789971..973f9acd9 100644 --- a/plaid/model/security_override.py +++ b/plaid/model/security_override.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_age_check.py b/plaid/model/selfie_age_check.py index 9cccf012d..9dd11213b 100644 --- a/plaid/model/selfie_age_check.py +++ b/plaid/model/selfie_age_check.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_age_check_status.py b/plaid/model/selfie_age_check_status.py index 22e99dc48..69a7a39c2 100644 --- a/plaid/model/selfie_age_check_status.py +++ b/plaid/model/selfie_age_check_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_analysis.py b/plaid/model/selfie_analysis.py index 756371a19..f0e4ca151 100644 --- a/plaid/model/selfie_analysis.py +++ b/plaid/model/selfie_analysis.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_analysis_document_comparison.py b/plaid/model/selfie_analysis_document_comparison.py index 71502480c..39f0d7d12 100644 --- a/plaid/model/selfie_analysis_document_comparison.py +++ b/plaid/model/selfie_analysis_document_comparison.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_analysis_facial_analysis.py b/plaid/model/selfie_analysis_facial_analysis.py index df3e88c24..ac9360537 100644 --- a/plaid/model/selfie_analysis_facial_analysis.py +++ b/plaid/model/selfie_analysis_facial_analysis.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_analysis_facial_analysis_outcome.py b/plaid/model/selfie_analysis_facial_analysis_outcome.py index 91525133a..11fc4ec7d 100644 --- a/plaid/model/selfie_analysis_facial_analysis_outcome.py +++ b/plaid/model/selfie_analysis_facial_analysis_outcome.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_analysis_liveness_check.py b/plaid/model/selfie_analysis_liveness_check.py index 6cdb3cd98..5b721ced5 100644 --- a/plaid/model/selfie_analysis_liveness_check.py +++ b/plaid/model/selfie_analysis_liveness_check.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_capture.py b/plaid/model/selfie_capture.py index 56975c95f..51e568cd8 100644 --- a/plaid/model/selfie_capture.py +++ b/plaid/model/selfie_capture.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_check.py b/plaid/model/selfie_check.py index 6737ea793..c5bea94ec 100644 --- a/plaid/model/selfie_check.py +++ b/plaid/model/selfie_check.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_check_selfie.py b/plaid/model/selfie_check_selfie.py index 4e4351b10..a1346bede 100644 --- a/plaid/model/selfie_check_selfie.py +++ b/plaid/model/selfie_check_selfie.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_check_status.py b/plaid/model/selfie_check_status.py index ac444dc5f..532c757ac 100644 --- a/plaid/model/selfie_check_status.py +++ b/plaid/model/selfie_check_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_status.py b/plaid/model/selfie_status.py index 2a4e89e92..c9f3d24ca 100644 --- a/plaid/model/selfie_status.py +++ b/plaid/model/selfie_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sender_bacs_nullable.py b/plaid/model/sender_bacs_nullable.py index 08d5001bb..87d7a7f80 100644 --- a/plaid/model/sender_bacs_nullable.py +++ b/plaid/model/sender_bacs_nullable.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/service.py b/plaid/model/service.py index 581eb7cc9..8d6dee6ad 100644 --- a/plaid/model/service.py +++ b/plaid/model/service.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/service_product_fulfillment.py b/plaid/model/service_product_fulfillment.py index d4212429a..5fea11355 100644 --- a/plaid/model/service_product_fulfillment.py +++ b/plaid/model/service_product_fulfillment.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/service_product_fulfillment_detail.py b/plaid/model/service_product_fulfillment_detail.py index d53f38950..a3510d621 100644 --- a/plaid/model/service_product_fulfillment_detail.py +++ b/plaid/model/service_product_fulfillment_detail.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/service_product_fulfillment_identifier.py b/plaid/model/service_product_fulfillment_identifier.py index 592845678..acab43a30 100644 --- a/plaid/model/service_product_fulfillment_identifier.py +++ b/plaid/model/service_product_fulfillment_identifier.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/servicer_address_data.py b/plaid/model/servicer_address_data.py index 2d29f9a5d..375966e6e 100644 --- a/plaid/model/servicer_address_data.py +++ b/plaid/model/servicer_address_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/services.py b/plaid/model/services.py index 6a3c67715..c76887ad9 100644 --- a/plaid/model/services.py +++ b/plaid/model/services.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/session_token_create_request.py b/plaid/model/session_token_create_request.py index fc51f64e2..ad77fe8c9 100644 --- a/plaid/model/session_token_create_request.py +++ b/plaid/model/session_token_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/session_token_create_request_user.py b/plaid/model/session_token_create_request_user.py index 3b0833e3e..2a38b9333 100644 --- a/plaid/model/session_token_create_request_user.py +++ b/plaid/model/session_token_create_request_user.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/session_token_create_response.py b/plaid/model/session_token_create_response.py index 151dc9b30..6eff51159 100644 --- a/plaid/model/session_token_create_response.py +++ b/plaid/model/session_token_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/session_token_create_response_link.py b/plaid/model/session_token_create_response_link.py index 3baa2e69d..537e6ee23 100644 --- a/plaid/model/session_token_create_response_link.py +++ b/plaid/model/session_token_create_response_link.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_address_data.py b/plaid/model/signal_address_data.py index 99114432e..22d5915c3 100644 --- a/plaid/model/signal_address_data.py +++ b/plaid/model/signal_address_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_decision_outcome.py b/plaid/model/signal_decision_outcome.py index f8c95b298..2d236d977 100644 --- a/plaid/model/signal_decision_outcome.py +++ b/plaid/model/signal_decision_outcome.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_decision_report_request.py b/plaid/model/signal_decision_report_request.py index 783cd79d9..505210cdc 100644 --- a/plaid/model/signal_decision_report_request.py +++ b/plaid/model/signal_decision_report_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_decision_report_response.py b/plaid/model/signal_decision_report_response.py index 7c8a9bc46..3d760320b 100644 --- a/plaid/model/signal_decision_report_response.py +++ b/plaid/model/signal_decision_report_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_device.py b/plaid/model/signal_device.py index 84a605c47..725d9ee67 100644 --- a/plaid/model/signal_device.py +++ b/plaid/model/signal_device.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_evaluate_core_attributes.py b/plaid/model/signal_evaluate_core_attributes.py index e96cc2596..4874e7208 100644 --- a/plaid/model/signal_evaluate_core_attributes.py +++ b/plaid/model/signal_evaluate_core_attributes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_evaluate_request.py b/plaid/model/signal_evaluate_request.py index 78987d214..c8f6e225b 100644 --- a/plaid/model/signal_evaluate_request.py +++ b/plaid/model/signal_evaluate_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_evaluate_response.py b/plaid/model/signal_evaluate_response.py index af139c0b1..a7de7d4fd 100644 --- a/plaid/model/signal_evaluate_response.py +++ b/plaid/model/signal_evaluate_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_payment_method.py b/plaid/model/signal_payment_method.py index cfc53d72b..50e1e30dc 100644 --- a/plaid/model/signal_payment_method.py +++ b/plaid/model/signal_payment_method.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_person_name.py b/plaid/model/signal_person_name.py index c9738655b..f531af29c 100644 --- a/plaid/model/signal_person_name.py +++ b/plaid/model/signal_person_name.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_prepare_request.py b/plaid/model/signal_prepare_request.py index cd294349e..0fd11fe01 100644 --- a/plaid/model/signal_prepare_request.py +++ b/plaid/model/signal_prepare_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_prepare_response.py b/plaid/model/signal_prepare_response.py index b976fcc92..d5d48819e 100644 --- a/plaid/model/signal_prepare_response.py +++ b/plaid/model/signal_prepare_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_return_report_request.py b/plaid/model/signal_return_report_request.py index b0882d23c..e0563bfc4 100644 --- a/plaid/model/signal_return_report_request.py +++ b/plaid/model/signal_return_report_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_return_report_response.py b/plaid/model/signal_return_report_response.py index 85d8dcc4f..dc6e01ecc 100644 --- a/plaid/model/signal_return_report_response.py +++ b/plaid/model/signal_return_report_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_schedule_default_payment_method.py b/plaid/model/signal_schedule_default_payment_method.py index 32a27c3e0..3fac1e765 100644 --- a/plaid/model/signal_schedule_default_payment_method.py +++ b/plaid/model/signal_schedule_default_payment_method.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_schedule_recommendation.py b/plaid/model/signal_schedule_recommendation.py index 15752dfe9..58c859d57 100644 --- a/plaid/model/signal_schedule_recommendation.py +++ b/plaid/model/signal_schedule_recommendation.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_schedule_request.py b/plaid/model/signal_schedule_request.py index c563faec8..0f4278823 100644 --- a/plaid/model/signal_schedule_request.py +++ b/plaid/model/signal_schedule_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_schedule_response.py b/plaid/model/signal_schedule_response.py index d95dbd8b4..45f03443c 100644 --- a/plaid/model/signal_schedule_response.py +++ b/plaid/model/signal_schedule_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_score.py b/plaid/model/signal_score.py index bbb9aaf77..3af9cd34d 100644 --- a/plaid/model/signal_score.py +++ b/plaid/model/signal_score.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_scores.py b/plaid/model/signal_scores.py index df6749f22..609a52829 100644 --- a/plaid/model/signal_scores.py +++ b/plaid/model/signal_scores.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_user.py b/plaid/model/signal_user.py index 30210828e..e5767de9e 100644 --- a/plaid/model/signal_user.py +++ b/plaid/model/signal_user.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_warning.py b/plaid/model/signal_warning.py index b14874b93..aa5a4d4a5 100644 --- a/plaid/model/signal_warning.py +++ b/plaid/model/signal_warning.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/simulated_transfer_sweep.py b/plaid/model/simulated_transfer_sweep.py index dd3cad5e9..fbf96f612 100644 --- a/plaid/model/simulated_transfer_sweep.py +++ b/plaid/model/simulated_transfer_sweep.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/single_document_risk_signal.py b/plaid/model/single_document_risk_signal.py index 6fe25bf1b..0a1a3d319 100644 --- a/plaid/model/single_document_risk_signal.py +++ b/plaid/model/single_document_risk_signal.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sms_verification.py b/plaid/model/sms_verification.py index 52019147c..9da84b0af 100644 --- a/plaid/model/sms_verification.py +++ b/plaid/model/sms_verification.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sms_verification_status.py b/plaid/model/sms_verification_status.py index 24d31ad77..e7c4b6d0b 100644 --- a/plaid/model/sms_verification_status.py +++ b/plaid/model/sms_verification_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/source.py b/plaid/model/source.py index 389b2a3fd..711f854bf 100644 --- a/plaid/model/source.py +++ b/plaid/model/source.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/standalone_account_type.py b/plaid/model/standalone_account_type.py index ad5f89c7f..db6eb44a2 100644 --- a/plaid/model/standalone_account_type.py +++ b/plaid/model/standalone_account_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/standalone_currency_code_list.py b/plaid/model/standalone_currency_code_list.py index ed611b3a7..21924d296 100644 --- a/plaid/model/standalone_currency_code_list.py +++ b/plaid/model/standalone_currency_code_list.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/standalone_investment_transaction_type.py b/plaid/model/standalone_investment_transaction_type.py index 23f1a760c..d4bd817a7 100644 --- a/plaid/model/standalone_investment_transaction_type.py +++ b/plaid/model/standalone_investment_transaction_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_account.py b/plaid/model/statements_account.py index d9bd2f41f..624023f44 100644 --- a/plaid/model/statements_account.py +++ b/plaid/model/statements_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_download_request.py b/plaid/model/statements_download_request.py index 1fb497d4a..3bebe5874 100644 --- a/plaid/model/statements_download_request.py +++ b/plaid/model/statements_download_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_list_request.py b/plaid/model/statements_list_request.py index cb933b621..9f73dc35f 100644 --- a/plaid/model/statements_list_request.py +++ b/plaid/model/statements_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_list_response.py b/plaid/model/statements_list_response.py index 5bdd5b8ba..c7aa6927a 100644 --- a/plaid/model/statements_list_response.py +++ b/plaid/model/statements_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_refresh_complete_result.py b/plaid/model/statements_refresh_complete_result.py index f4dab383e..ffbf33923 100644 --- a/plaid/model/statements_refresh_complete_result.py +++ b/plaid/model/statements_refresh_complete_result.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_refresh_complete_webhook.py b/plaid/model/statements_refresh_complete_webhook.py index 30d119de8..56588b49a 100644 --- a/plaid/model/statements_refresh_complete_webhook.py +++ b/plaid/model/statements_refresh_complete_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_refresh_request.py b/plaid/model/statements_refresh_request.py index cf3069b48..a7c3d2c8e 100644 --- a/plaid/model/statements_refresh_request.py +++ b/plaid/model/statements_refresh_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_refresh_response.py b/plaid/model/statements_refresh_response.py index be9a87c74..04d329945 100644 --- a/plaid/model/statements_refresh_response.py +++ b/plaid/model/statements_refresh_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_statement.py b/plaid/model/statements_statement.py index dc3e6f33b..b39030f64 100644 --- a/plaid/model/statements_statement.py +++ b/plaid/model/statements_statement.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/status.py b/plaid/model/status.py index 907e2dfd2..e38ef3deb 100644 --- a/plaid/model/status.py +++ b/plaid/model/status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statuses.py b/plaid/model/statuses.py index d18e19e97..450e09131 100644 --- a/plaid/model/statuses.py +++ b/plaid/model/statuses.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/strategy.py b/plaid/model/strategy.py index 508ed103d..41a7c364f 100644 --- a/plaid/model/strategy.py +++ b/plaid/model/strategy.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/student_loan.py b/plaid/model/student_loan.py index 759d91dc5..9be2c5a61 100644 --- a/plaid/model/student_loan.py +++ b/plaid/model/student_loan.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/student_loan_repayment_model.py b/plaid/model/student_loan_repayment_model.py index f1b8d7e11..c225418fb 100644 --- a/plaid/model/student_loan_repayment_model.py +++ b/plaid/model/student_loan_repayment_model.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/student_loan_status.py b/plaid/model/student_loan_status.py index eec8dbed5..3dc90c92b 100644 --- a/plaid/model/student_loan_status.py +++ b/plaid/model/student_loan_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/student_repayment_plan.py b/plaid/model/student_repayment_plan.py index ffbbffb07..3eaa1ad90 100644 --- a/plaid/model/student_repayment_plan.py +++ b/plaid/model/student_repayment_plan.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sweep_description.py b/plaid/model/sweep_description.py index 910f0627d..3d7c6fbfb 100644 --- a/plaid/model/sweep_description.py +++ b/plaid/model/sweep_description.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sweep_failure.py b/plaid/model/sweep_failure.py index 73471693f..dcf24f285 100644 --- a/plaid/model/sweep_failure.py +++ b/plaid/model/sweep_failure.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sweep_status.py b/plaid/model/sweep_status.py index 6b8b40aa1..54831b9e4 100644 --- a/plaid/model/sweep_status.py +++ b/plaid/model/sweep_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sweep_trigger.py b/plaid/model/sweep_trigger.py index 70cbd9142..8c4356037 100644 --- a/plaid/model/sweep_trigger.py +++ b/plaid/model/sweep_trigger.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sync_updates_available_webhook.py b/plaid/model/sync_updates_available_webhook.py index 96331bb93..aad7b321d 100644 --- a/plaid/model/sync_updates_available_webhook.py +++ b/plaid/model/sync_updates_available_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/synthetic_fraud.py b/plaid/model/synthetic_fraud.py index 3d2e17cc1..b4b93c624 100644 --- a/plaid/model/synthetic_fraud.py +++ b/plaid/model/synthetic_fraud.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/taxform.py b/plaid/model/taxform.py index 5dc02405b..bb3750a0d 100644 --- a/plaid/model/taxform.py +++ b/plaid/model/taxform.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/taxpayer_id.py b/plaid/model/taxpayer_id.py index eb55f81fe..be470d48e 100644 --- a/plaid/model/taxpayer_id.py +++ b/plaid/model/taxpayer_id.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/taxpayer_identifier.py b/plaid/model/taxpayer_identifier.py index 7953181aa..4e2acf915 100644 --- a/plaid/model/taxpayer_identifier.py +++ b/plaid/model/taxpayer_identifier.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/taxpayer_identifier_type.py b/plaid/model/taxpayer_identifier_type.py index c0a32a8d7..377536a52 100644 --- a/plaid/model/taxpayer_identifier_type.py +++ b/plaid/model/taxpayer_identifier_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/taxpayer_identifiers.py b/plaid/model/taxpayer_identifiers.py index d3233bb9f..9c5b17ce9 100644 --- a/plaid/model/taxpayer_identifiers.py +++ b/plaid/model/taxpayer_identifiers.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total.py b/plaid/model/total.py index 1320b31da..11a655372 100644 --- a/plaid/model/total.py +++ b/plaid/model/total.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_canonical_description.py b/plaid/model/total_canonical_description.py index 82d6ff0d0..d9959116d 100644 --- a/plaid/model/total_canonical_description.py +++ b/plaid/model/total_canonical_description.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_inflow_amount.py b/plaid/model/total_inflow_amount.py index 2a7a718ec..4ced0b063 100644 --- a/plaid/model/total_inflow_amount.py +++ b/plaid/model/total_inflow_amount.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_inflow_amount30d.py b/plaid/model/total_inflow_amount30d.py index 4a5eb41fc..723c45da4 100644 --- a/plaid/model/total_inflow_amount30d.py +++ b/plaid/model/total_inflow_amount30d.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_inflow_amount60d.py b/plaid/model/total_inflow_amount60d.py index e3b8860df..8676f525f 100644 --- a/plaid/model/total_inflow_amount60d.py +++ b/plaid/model/total_inflow_amount60d.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_inflow_amount90d.py b/plaid/model/total_inflow_amount90d.py index 90cab3406..319599901 100644 --- a/plaid/model/total_inflow_amount90d.py +++ b/plaid/model/total_inflow_amount90d.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_monthly_income_insights.py b/plaid/model/total_monthly_income_insights.py index 43a2cef8d..c24b44c38 100644 --- a/plaid/model/total_monthly_income_insights.py +++ b/plaid/model/total_monthly_income_insights.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_outflow_amount.py b/plaid/model/total_outflow_amount.py index 6737a9bac..aaedf1944 100644 --- a/plaid/model/total_outflow_amount.py +++ b/plaid/model/total_outflow_amount.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_outflow_amount30d.py b/plaid/model/total_outflow_amount30d.py index 97e29f2aa..f4c4b95e5 100644 --- a/plaid/model/total_outflow_amount30d.py +++ b/plaid/model/total_outflow_amount30d.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_outflow_amount60d.py b/plaid/model/total_outflow_amount60d.py index 09ba75ea9..39d71e9be 100644 --- a/plaid/model/total_outflow_amount60d.py +++ b/plaid/model/total_outflow_amount60d.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_outflow_amount90d.py b/plaid/model/total_outflow_amount90d.py index 450144609..fd175fabf 100644 --- a/plaid/model/total_outflow_amount90d.py +++ b/plaid/model/total_outflow_amount90d.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_report_inflow_amount.py b/plaid/model/total_report_inflow_amount.py index 83ba934ed..6a81d91ed 100644 --- a/plaid/model/total_report_inflow_amount.py +++ b/plaid/model/total_report_inflow_amount.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_report_inflow_amount30d.py b/plaid/model/total_report_inflow_amount30d.py index 8eec0b8d9..11f116fc1 100644 --- a/plaid/model/total_report_inflow_amount30d.py +++ b/plaid/model/total_report_inflow_amount30d.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_report_inflow_amount60d.py b/plaid/model/total_report_inflow_amount60d.py index 1e7c342ef..03f070952 100644 --- a/plaid/model/total_report_inflow_amount60d.py +++ b/plaid/model/total_report_inflow_amount60d.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_report_inflow_amount90d.py b/plaid/model/total_report_inflow_amount90d.py index 50c0150ad..562f29cbf 100644 --- a/plaid/model/total_report_inflow_amount90d.py +++ b/plaid/model/total_report_inflow_amount90d.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_report_outflow_amount.py b/plaid/model/total_report_outflow_amount.py index df6474ca5..8606192dc 100644 --- a/plaid/model/total_report_outflow_amount.py +++ b/plaid/model/total_report_outflow_amount.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_report_outflow_amount30d.py b/plaid/model/total_report_outflow_amount30d.py index c7a2bbe87..a6769c357 100644 --- a/plaid/model/total_report_outflow_amount30d.py +++ b/plaid/model/total_report_outflow_amount30d.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_report_outflow_amount60d.py b/plaid/model/total_report_outflow_amount60d.py index 9cc75272c..596ee8336 100644 --- a/plaid/model/total_report_outflow_amount60d.py +++ b/plaid/model/total_report_outflow_amount60d.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_report_outflow_amount90d.py b/plaid/model/total_report_outflow_amount90d.py index 643cbfa0b..6df79e9bf 100644 --- a/plaid/model/total_report_outflow_amount90d.py +++ b/plaid/model/total_report_outflow_amount90d.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction.py b/plaid/model/transaction.py index 6116d969f..495d11998 100644 --- a/plaid/model/transaction.py +++ b/plaid/model/transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_all_of.py b/plaid/model/transaction_all_of.py index d9e6d5465..23ba5c3cf 100644 --- a/plaid/model/transaction_all_of.py +++ b/plaid/model/transaction_all_of.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_base.py b/plaid/model/transaction_base.py index cc594122e..8f5b0f20a 100644 --- a/plaid/model/transaction_base.py +++ b/plaid/model/transaction_base.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_code.py b/plaid/model/transaction_code.py index 27b223ec0..3861d3523 100644 --- a/plaid/model/transaction_code.py +++ b/plaid/model/transaction_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_counterparty.py b/plaid/model/transaction_counterparty.py index a7ed8eeda..faaed0c83 100644 --- a/plaid/model/transaction_counterparty.py +++ b/plaid/model/transaction_counterparty.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_data.py b/plaid/model/transaction_data.py index a6fa61406..f95638243 100644 --- a/plaid/model/transaction_data.py +++ b/plaid/model/transaction_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_override.py b/plaid/model/transaction_override.py index 2bd48928d..59036a834 100644 --- a/plaid/model/transaction_override.py +++ b/plaid/model/transaction_override.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_stream.py b/plaid/model/transaction_stream.py index cbfb8d006..84e8a3388 100644 --- a/plaid/model/transaction_stream.py +++ b/plaid/model/transaction_stream.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_stream_amount.py b/plaid/model/transaction_stream_amount.py index 3e31bb1cd..be722f2cf 100644 --- a/plaid/model/transaction_stream_amount.py +++ b/plaid/model/transaction_stream_amount.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_stream_status.py b/plaid/model/transaction_stream_status.py index 8082d6986..e06bdad49 100644 --- a/plaid/model/transaction_stream_status.py +++ b/plaid/model/transaction_stream_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_category_rule.py b/plaid/model/transactions_category_rule.py index 40f34353b..8de507799 100644 --- a/plaid/model/transactions_category_rule.py +++ b/plaid/model/transactions_category_rule.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_enhance_get_request.py b/plaid/model/transactions_enhance_get_request.py index c848d9651..187fa24b2 100644 --- a/plaid/model/transactions_enhance_get_request.py +++ b/plaid/model/transactions_enhance_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_enhance_get_response.py b/plaid/model/transactions_enhance_get_response.py index 0de2134de..982177c23 100644 --- a/plaid/model/transactions_enhance_get_response.py +++ b/plaid/model/transactions_enhance_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_enrich_request.py b/plaid/model/transactions_enrich_request.py index 49ed6f7ab..15495a577 100644 --- a/plaid/model/transactions_enrich_request.py +++ b/plaid/model/transactions_enrich_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_enrich_request_options.py b/plaid/model/transactions_enrich_request_options.py index b984db767..caf9176cb 100644 --- a/plaid/model/transactions_enrich_request_options.py +++ b/plaid/model/transactions_enrich_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_enrich_response.py b/plaid/model/transactions_enrich_response.py index 7215c8c88..59d17846e 100644 --- a/plaid/model/transactions_enrich_response.py +++ b/plaid/model/transactions_enrich_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_get_request.py b/plaid/model/transactions_get_request.py index 148381c3a..071d72c10 100644 --- a/plaid/model/transactions_get_request.py +++ b/plaid/model/transactions_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_get_request_options.py b/plaid/model/transactions_get_request_options.py index c8377faa8..b43f68f1d 100644 --- a/plaid/model/transactions_get_request_options.py +++ b/plaid/model/transactions_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_get_response.py b/plaid/model/transactions_get_response.py index ceb4eacaf..e1f56d873 100644 --- a/plaid/model/transactions_get_response.py +++ b/plaid/model/transactions_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_recurring_create_input.py b/plaid/model/transactions_recurring_create_input.py index be7793762..7fe46103e 100644 --- a/plaid/model/transactions_recurring_create_input.py +++ b/plaid/model/transactions_recurring_create_input.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_recurring_create_request.py b/plaid/model/transactions_recurring_create_request.py index 7b4bdac81..c32146e93 100644 --- a/plaid/model/transactions_recurring_create_request.py +++ b/plaid/model/transactions_recurring_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_recurring_create_response.py b/plaid/model/transactions_recurring_create_response.py index c8fe2911c..b710b06b2 100644 --- a/plaid/model/transactions_recurring_create_response.py +++ b/plaid/model/transactions_recurring_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_recurring_get_request.py b/plaid/model/transactions_recurring_get_request.py index 1b9d93d27..4bbd9477d 100644 --- a/plaid/model/transactions_recurring_get_request.py +++ b/plaid/model/transactions_recurring_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_recurring_get_request_options.py b/plaid/model/transactions_recurring_get_request_options.py index 3b1b0e6d9..299160133 100644 --- a/plaid/model/transactions_recurring_get_request_options.py +++ b/plaid/model/transactions_recurring_get_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_recurring_get_response.py b/plaid/model/transactions_recurring_get_response.py index ec3cc539a..ad0fb796b 100644 --- a/plaid/model/transactions_recurring_get_response.py +++ b/plaid/model/transactions_recurring_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_recurring_merge_input.py b/plaid/model/transactions_recurring_merge_input.py index b531ff8a6..271f10fd4 100644 --- a/plaid/model/transactions_recurring_merge_input.py +++ b/plaid/model/transactions_recurring_merge_input.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_recurring_merge_request.py b/plaid/model/transactions_recurring_merge_request.py index 56d644efb..8600c4416 100644 --- a/plaid/model/transactions_recurring_merge_request.py +++ b/plaid/model/transactions_recurring_merge_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_recurring_merge_response.py b/plaid/model/transactions_recurring_merge_response.py index e03399a3b..c6d542b31 100644 --- a/plaid/model/transactions_recurring_merge_response.py +++ b/plaid/model/transactions_recurring_merge_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_recurring_update_input.py b/plaid/model/transactions_recurring_update_input.py index 46df51294..c5b43bb12 100644 --- a/plaid/model/transactions_recurring_update_input.py +++ b/plaid/model/transactions_recurring_update_input.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_recurring_update_request.py b/plaid/model/transactions_recurring_update_request.py index e8f6babed..c09ddfe08 100644 --- a/plaid/model/transactions_recurring_update_request.py +++ b/plaid/model/transactions_recurring_update_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_recurring_update_response.py b/plaid/model/transactions_recurring_update_response.py index 4e4d8cece..87ee8eb55 100644 --- a/plaid/model/transactions_recurring_update_response.py +++ b/plaid/model/transactions_recurring_update_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_refresh_request.py b/plaid/model/transactions_refresh_request.py index c6eda0e5d..5adf8b699 100644 --- a/plaid/model/transactions_refresh_request.py +++ b/plaid/model/transactions_refresh_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_refresh_response.py b/plaid/model/transactions_refresh_response.py index a8a4990b8..b2ac8723f 100644 --- a/plaid/model/transactions_refresh_response.py +++ b/plaid/model/transactions_refresh_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_removed_webhook.py b/plaid/model/transactions_removed_webhook.py index ff99cd175..1aeea9d64 100644 --- a/plaid/model/transactions_removed_webhook.py +++ b/plaid/model/transactions_removed_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_rule_details.py b/plaid/model/transactions_rule_details.py index d565e3adb..0704858b2 100644 --- a/plaid/model/transactions_rule_details.py +++ b/plaid/model/transactions_rule_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_rule_field.py b/plaid/model/transactions_rule_field.py index 36703a57f..5813d8142 100644 --- a/plaid/model/transactions_rule_field.py +++ b/plaid/model/transactions_rule_field.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_rule_type.py b/plaid/model/transactions_rule_type.py index cd5bebc81..b9705de3d 100644 --- a/plaid/model/transactions_rule_type.py +++ b/plaid/model/transactions_rule_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_rules_create_request.py b/plaid/model/transactions_rules_create_request.py index 0e7f9b823..91a99db9a 100644 --- a/plaid/model/transactions_rules_create_request.py +++ b/plaid/model/transactions_rules_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_rules_create_response.py b/plaid/model/transactions_rules_create_response.py index e464a79c0..ca64a41f6 100644 --- a/plaid/model/transactions_rules_create_response.py +++ b/plaid/model/transactions_rules_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_rules_list_request.py b/plaid/model/transactions_rules_list_request.py index 7ab00ffa6..3b4789a58 100644 --- a/plaid/model/transactions_rules_list_request.py +++ b/plaid/model/transactions_rules_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_rules_list_response.py b/plaid/model/transactions_rules_list_response.py index 6a658a4dd..1c4ea36a4 100644 --- a/plaid/model/transactions_rules_list_response.py +++ b/plaid/model/transactions_rules_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_rules_remove_request.py b/plaid/model/transactions_rules_remove_request.py index 2ef57fd3c..32ef78779 100644 --- a/plaid/model/transactions_rules_remove_request.py +++ b/plaid/model/transactions_rules_remove_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_rules_remove_response.py b/plaid/model/transactions_rules_remove_response.py index 102e2b3a2..3210c5abd 100644 --- a/plaid/model/transactions_rules_remove_response.py +++ b/plaid/model/transactions_rules_remove_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_sync_request.py b/plaid/model/transactions_sync_request.py index df7fcd5e9..e26139a53 100644 --- a/plaid/model/transactions_sync_request.py +++ b/plaid/model/transactions_sync_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_sync_request_options.py b/plaid/model/transactions_sync_request_options.py index b29c3c2d9..a9e6a29c6 100644 --- a/plaid/model/transactions_sync_request_options.py +++ b/plaid/model/transactions_sync_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_sync_response.py b/plaid/model/transactions_sync_response.py index c0aded211..11e6a6450 100644 --- a/plaid/model/transactions_sync_response.py +++ b/plaid/model/transactions_sync_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_update_status.py b/plaid/model/transactions_update_status.py index 0414d3f51..22c1284d0 100644 --- a/plaid/model/transactions_update_status.py +++ b/plaid/model/transactions_update_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_user_insights_get_request.py b/plaid/model/transactions_user_insights_get_request.py index 5af266449..4f5cd589d 100644 --- a/plaid/model/transactions_user_insights_get_request.py +++ b/plaid/model/transactions_user_insights_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_user_insights_get_response.py b/plaid/model/transactions_user_insights_get_response.py index d3973757f..719578d04 100644 --- a/plaid/model/transactions_user_insights_get_response.py +++ b/plaid/model/transactions_user_insights_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer.py b/plaid/model/transfer.py index 5c04d94c2..2dc59b14b 100644 --- a/plaid/model/transfer.py +++ b/plaid/model/transfer.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_ach_network.py b/plaid/model/transfer_ach_network.py index 0ffff81f0..718457840 100644 --- a/plaid/model/transfer_ach_network.py +++ b/plaid/model/transfer_ach_network.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization.py b/plaid/model/transfer_authorization.py index 3d43fbde9..84bad19eb 100644 --- a/plaid/model/transfer_authorization.py +++ b/plaid/model/transfer_authorization.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_cancel_request.py b/plaid/model/transfer_authorization_cancel_request.py index bf134f133..253862b10 100644 --- a/plaid/model/transfer_authorization_cancel_request.py +++ b/plaid/model/transfer_authorization_cancel_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_cancel_response.py b/plaid/model/transfer_authorization_cancel_response.py index 789ce4c54..c00bb8eb7 100644 --- a/plaid/model/transfer_authorization_cancel_response.py +++ b/plaid/model/transfer_authorization_cancel_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_create_request.py b/plaid/model/transfer_authorization_create_request.py index 71518e58c..275ab4cd7 100644 --- a/plaid/model/transfer_authorization_create_request.py +++ b/plaid/model/transfer_authorization_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_create_response.py b/plaid/model/transfer_authorization_create_response.py index a6971bbde..e8941011e 100644 --- a/plaid/model/transfer_authorization_create_response.py +++ b/plaid/model/transfer_authorization_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_custom_attributes.py b/plaid/model/transfer_authorization_custom_attributes.py index 6bfb9a02c..9c1744d51 100644 --- a/plaid/model/transfer_authorization_custom_attributes.py +++ b/plaid/model/transfer_authorization_custom_attributes.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_decision.py b/plaid/model/transfer_authorization_decision.py index 7621f1fae..3eccc722b 100644 --- a/plaid/model/transfer_authorization_decision.py +++ b/plaid/model/transfer_authorization_decision.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_decision_rationale.py b/plaid/model/transfer_authorization_decision_rationale.py index 0a60996c1..bf88e09eb 100644 --- a/plaid/model/transfer_authorization_decision_rationale.py +++ b/plaid/model/transfer_authorization_decision_rationale.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_decision_rationale_code.py b/plaid/model/transfer_authorization_decision_rationale_code.py index 23ab6f4b0..a97321312 100644 --- a/plaid/model/transfer_authorization_decision_rationale_code.py +++ b/plaid/model/transfer_authorization_decision_rationale_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ @@ -60,6 +60,8 @@ class TransferAuthorizationDecisionRationaleCode(ModelSimple): 'PAYMENT_PROFILE_LOGIN_REQUIRED': "PAYMENT_PROFILE_LOGIN_REQUIRED", 'ERROR': "ERROR", 'MIGRATED_ACCOUNT_ITEM': "MIGRATED_ACCOUNT_ITEM", + 'ADMIN': "ADMIN", + 'FRAUD': "FRAUD", 'NULL': "null", }, } @@ -112,10 +114,10 @@ def __init__(self, *args, **kwargs): Note that value can be passed either in args or in kwargs, but not in both. Args: - args[0] (str): A code representing the rationale for approving or declining the proposed transfer. If the `rationale_code` is `null`, the transfer passed the authorization check. Any non-`null` value for an `approved` transfer indicates that the authorization check could not be run and that you should perform your own risk assessment on the transfer. The code will indicate why the check could not be run. Possible values for an `approved` transfer are: `MANUALLY_VERIFIED_ITEM` - Item created via a manual entry flow (i.e. Same-Day Micro-deposit, Instant Micro-deposit, or database-based verification), limited information available. `ITEM_LOGIN_REQUIRED` - Unable to collect the account information due to Item staleness. Can be resolved by using Link and setting [`transfer.authorization_id`](https://plaid.com/docs/api/link/#link-token-create-request-transfer-authorization-id) in the request to `/link/token/create`. `PAYMENT_PROFILE_LOGIN_REQUIRED` - The Payment Profile associated with the call to `/transfer/authorization/create` is in a state that requires the end user to re-authenticate. Can be resolved by using Link to refresh the Payment Profile. `MIGRATED_ACCOUNT_ITEM` - Item created via `/transfer/migrate_account` endpoint, limited information available. `ERROR` - Unable to collect the account information due to an unspecified error. The following codes indicate that the authorization decision was `declined`: `NSF` - Transaction likely to result in a return due to insufficient funds. `RISK` - Transaction is high-risk. `TRANSFER_LIMIT_REACHED` - One or several transfer limits are reached, e.g. monthly transfer limit. Check the accompanying `description` field to understand which limit has been reached.., must be one of ["NSF", "RISK", "TRANSFER_LIMIT_REACHED", "MANUALLY_VERIFIED_ITEM", "ITEM_LOGIN_REQUIRED", "PAYMENT_PROFILE_LOGIN_REQUIRED", "ERROR", "MIGRATED_ACCOUNT_ITEM", "null", ] # noqa: E501 + args[0] (str): A code representing the rationale for approving or declining the proposed transfer. If the `rationale_code` is `null`, the transfer passed the authorization check. Any non-`null` value for an `approved` transfer indicates that the authorization check could not be run and that you should perform your own risk assessment on the transfer. The code will indicate why the check could not be run. Possible values for an `approved` transfer are: `MANUALLY_VERIFIED_ITEM` - Item created via a manual entry flow (i.e. Same-Day Micro-deposit, Instant Micro-deposit, or database-based verification), limited information available. `ITEM_LOGIN_REQUIRED` - Unable to collect the account information due to Item staleness. Can be resolved by using Link and setting [`transfer.authorization_id`](https://plaid.com/docs/api/link/#link-token-create-request-transfer-authorization-id) in the request to `/link/token/create`. `PAYMENT_PROFILE_LOGIN_REQUIRED` - The Payment Profile associated with the call to `/transfer/authorization/create` is in a state that requires the end user to re-authenticate. Can be resolved by using Link to refresh the Payment Profile. `MIGRATED_ACCOUNT_ITEM` - Item created via `/transfer/migrate_account` endpoint, limited information available. `ERROR` - Unable to collect the account information due to an unspecified error. The following codes indicate that the authorization decision was `declined`: `NSF` - Transaction has an elevated probability of resulting in a return due to insufficient funds. `RISK` - Transaction is high-risk. `TRANSFER_LIMIT_REACHED` - One or several transfer limits are reached, e.g. monthly transfer limit. Check the accompanying `description` field to understand which limit has been reached. `ADMIN` - Transaction has an elevated probability of resulting in an administrative return (for example a closed, invalid, or unauthorized account). `FRAUD` - Transaction has an elevated probability of being fraudulent.., must be one of ["NSF", "RISK", "TRANSFER_LIMIT_REACHED", "MANUALLY_VERIFIED_ITEM", "ITEM_LOGIN_REQUIRED", "PAYMENT_PROFILE_LOGIN_REQUIRED", "ERROR", "MIGRATED_ACCOUNT_ITEM", "ADMIN", "FRAUD", "null", ] # noqa: E501 Keyword Args: - value (str): A code representing the rationale for approving or declining the proposed transfer. If the `rationale_code` is `null`, the transfer passed the authorization check. Any non-`null` value for an `approved` transfer indicates that the authorization check could not be run and that you should perform your own risk assessment on the transfer. The code will indicate why the check could not be run. Possible values for an `approved` transfer are: `MANUALLY_VERIFIED_ITEM` - Item created via a manual entry flow (i.e. Same-Day Micro-deposit, Instant Micro-deposit, or database-based verification), limited information available. `ITEM_LOGIN_REQUIRED` - Unable to collect the account information due to Item staleness. Can be resolved by using Link and setting [`transfer.authorization_id`](https://plaid.com/docs/api/link/#link-token-create-request-transfer-authorization-id) in the request to `/link/token/create`. `PAYMENT_PROFILE_LOGIN_REQUIRED` - The Payment Profile associated with the call to `/transfer/authorization/create` is in a state that requires the end user to re-authenticate. Can be resolved by using Link to refresh the Payment Profile. `MIGRATED_ACCOUNT_ITEM` - Item created via `/transfer/migrate_account` endpoint, limited information available. `ERROR` - Unable to collect the account information due to an unspecified error. The following codes indicate that the authorization decision was `declined`: `NSF` - Transaction likely to result in a return due to insufficient funds. `RISK` - Transaction is high-risk. `TRANSFER_LIMIT_REACHED` - One or several transfer limits are reached, e.g. monthly transfer limit. Check the accompanying `description` field to understand which limit has been reached.., must be one of ["NSF", "RISK", "TRANSFER_LIMIT_REACHED", "MANUALLY_VERIFIED_ITEM", "ITEM_LOGIN_REQUIRED", "PAYMENT_PROFILE_LOGIN_REQUIRED", "ERROR", "MIGRATED_ACCOUNT_ITEM", "null", ] # noqa: E501 + value (str): A code representing the rationale for approving or declining the proposed transfer. If the `rationale_code` is `null`, the transfer passed the authorization check. Any non-`null` value for an `approved` transfer indicates that the authorization check could not be run and that you should perform your own risk assessment on the transfer. The code will indicate why the check could not be run. Possible values for an `approved` transfer are: `MANUALLY_VERIFIED_ITEM` - Item created via a manual entry flow (i.e. Same-Day Micro-deposit, Instant Micro-deposit, or database-based verification), limited information available. `ITEM_LOGIN_REQUIRED` - Unable to collect the account information due to Item staleness. Can be resolved by using Link and setting [`transfer.authorization_id`](https://plaid.com/docs/api/link/#link-token-create-request-transfer-authorization-id) in the request to `/link/token/create`. `PAYMENT_PROFILE_LOGIN_REQUIRED` - The Payment Profile associated with the call to `/transfer/authorization/create` is in a state that requires the end user to re-authenticate. Can be resolved by using Link to refresh the Payment Profile. `MIGRATED_ACCOUNT_ITEM` - Item created via `/transfer/migrate_account` endpoint, limited information available. `ERROR` - Unable to collect the account information due to an unspecified error. The following codes indicate that the authorization decision was `declined`: `NSF` - Transaction has an elevated probability of resulting in a return due to insufficient funds. `RISK` - Transaction is high-risk. `TRANSFER_LIMIT_REACHED` - One or several transfer limits are reached, e.g. monthly transfer limit. Check the accompanying `description` field to understand which limit has been reached. `ADMIN` - Transaction has an elevated probability of resulting in an administrative return (for example a closed, invalid, or unauthorized account). `FRAUD` - Transaction has an elevated probability of being fraudulent.., must be one of ["NSF", "RISK", "TRANSFER_LIMIT_REACHED", "MANUALLY_VERIFIED_ITEM", "ITEM_LOGIN_REQUIRED", "PAYMENT_PROFILE_LOGIN_REQUIRED", "ERROR", "MIGRATED_ACCOUNT_ITEM", "ADMIN", "FRAUD", "null", ] # noqa: E501 _check_type (bool): if True, values for parameters in openapi_types will be type checked and a TypeError will be raised if the wrong type is input. @@ -206,10 +208,10 @@ def _from_openapi_data(cls, *args, **kwargs): Note that value can be passed either in args or in kwargs, but not in both. Args: - args[0] (str): A code representing the rationale for approving or declining the proposed transfer. If the `rationale_code` is `null`, the transfer passed the authorization check. Any non-`null` value for an `approved` transfer indicates that the authorization check could not be run and that you should perform your own risk assessment on the transfer. The code will indicate why the check could not be run. Possible values for an `approved` transfer are: `MANUALLY_VERIFIED_ITEM` - Item created via a manual entry flow (i.e. Same-Day Micro-deposit, Instant Micro-deposit, or database-based verification), limited information available. `ITEM_LOGIN_REQUIRED` - Unable to collect the account information due to Item staleness. Can be resolved by using Link and setting [`transfer.authorization_id`](https://plaid.com/docs/api/link/#link-token-create-request-transfer-authorization-id) in the request to `/link/token/create`. `PAYMENT_PROFILE_LOGIN_REQUIRED` - The Payment Profile associated with the call to `/transfer/authorization/create` is in a state that requires the end user to re-authenticate. Can be resolved by using Link to refresh the Payment Profile. `MIGRATED_ACCOUNT_ITEM` - Item created via `/transfer/migrate_account` endpoint, limited information available. `ERROR` - Unable to collect the account information due to an unspecified error. The following codes indicate that the authorization decision was `declined`: `NSF` - Transaction likely to result in a return due to insufficient funds. `RISK` - Transaction is high-risk. `TRANSFER_LIMIT_REACHED` - One or several transfer limits are reached, e.g. monthly transfer limit. Check the accompanying `description` field to understand which limit has been reached.., must be one of ["NSF", "RISK", "TRANSFER_LIMIT_REACHED", "MANUALLY_VERIFIED_ITEM", "ITEM_LOGIN_REQUIRED", "PAYMENT_PROFILE_LOGIN_REQUIRED", "ERROR", "MIGRATED_ACCOUNT_ITEM", "null", ] # noqa: E501 + args[0] (str): A code representing the rationale for approving or declining the proposed transfer. If the `rationale_code` is `null`, the transfer passed the authorization check. Any non-`null` value for an `approved` transfer indicates that the authorization check could not be run and that you should perform your own risk assessment on the transfer. The code will indicate why the check could not be run. Possible values for an `approved` transfer are: `MANUALLY_VERIFIED_ITEM` - Item created via a manual entry flow (i.e. Same-Day Micro-deposit, Instant Micro-deposit, or database-based verification), limited information available. `ITEM_LOGIN_REQUIRED` - Unable to collect the account information due to Item staleness. Can be resolved by using Link and setting [`transfer.authorization_id`](https://plaid.com/docs/api/link/#link-token-create-request-transfer-authorization-id) in the request to `/link/token/create`. `PAYMENT_PROFILE_LOGIN_REQUIRED` - The Payment Profile associated with the call to `/transfer/authorization/create` is in a state that requires the end user to re-authenticate. Can be resolved by using Link to refresh the Payment Profile. `MIGRATED_ACCOUNT_ITEM` - Item created via `/transfer/migrate_account` endpoint, limited information available. `ERROR` - Unable to collect the account information due to an unspecified error. The following codes indicate that the authorization decision was `declined`: `NSF` - Transaction has an elevated probability of resulting in a return due to insufficient funds. `RISK` - Transaction is high-risk. `TRANSFER_LIMIT_REACHED` - One or several transfer limits are reached, e.g. monthly transfer limit. Check the accompanying `description` field to understand which limit has been reached. `ADMIN` - Transaction has an elevated probability of resulting in an administrative return (for example a closed, invalid, or unauthorized account). `FRAUD` - Transaction has an elevated probability of being fraudulent.., must be one of ["NSF", "RISK", "TRANSFER_LIMIT_REACHED", "MANUALLY_VERIFIED_ITEM", "ITEM_LOGIN_REQUIRED", "PAYMENT_PROFILE_LOGIN_REQUIRED", "ERROR", "MIGRATED_ACCOUNT_ITEM", "ADMIN", "FRAUD", "null", ] # noqa: E501 Keyword Args: - value (str): A code representing the rationale for approving or declining the proposed transfer. If the `rationale_code` is `null`, the transfer passed the authorization check. Any non-`null` value for an `approved` transfer indicates that the authorization check could not be run and that you should perform your own risk assessment on the transfer. The code will indicate why the check could not be run. Possible values for an `approved` transfer are: `MANUALLY_VERIFIED_ITEM` - Item created via a manual entry flow (i.e. Same-Day Micro-deposit, Instant Micro-deposit, or database-based verification), limited information available. `ITEM_LOGIN_REQUIRED` - Unable to collect the account information due to Item staleness. Can be resolved by using Link and setting [`transfer.authorization_id`](https://plaid.com/docs/api/link/#link-token-create-request-transfer-authorization-id) in the request to `/link/token/create`. `PAYMENT_PROFILE_LOGIN_REQUIRED` - The Payment Profile associated with the call to `/transfer/authorization/create` is in a state that requires the end user to re-authenticate. Can be resolved by using Link to refresh the Payment Profile. `MIGRATED_ACCOUNT_ITEM` - Item created via `/transfer/migrate_account` endpoint, limited information available. `ERROR` - Unable to collect the account information due to an unspecified error. The following codes indicate that the authorization decision was `declined`: `NSF` - Transaction likely to result in a return due to insufficient funds. `RISK` - Transaction is high-risk. `TRANSFER_LIMIT_REACHED` - One or several transfer limits are reached, e.g. monthly transfer limit. Check the accompanying `description` field to understand which limit has been reached.., must be one of ["NSF", "RISK", "TRANSFER_LIMIT_REACHED", "MANUALLY_VERIFIED_ITEM", "ITEM_LOGIN_REQUIRED", "PAYMENT_PROFILE_LOGIN_REQUIRED", "ERROR", "MIGRATED_ACCOUNT_ITEM", "null", ] # noqa: E501 + value (str): A code representing the rationale for approving or declining the proposed transfer. If the `rationale_code` is `null`, the transfer passed the authorization check. Any non-`null` value for an `approved` transfer indicates that the authorization check could not be run and that you should perform your own risk assessment on the transfer. The code will indicate why the check could not be run. Possible values for an `approved` transfer are: `MANUALLY_VERIFIED_ITEM` - Item created via a manual entry flow (i.e. Same-Day Micro-deposit, Instant Micro-deposit, or database-based verification), limited information available. `ITEM_LOGIN_REQUIRED` - Unable to collect the account information due to Item staleness. Can be resolved by using Link and setting [`transfer.authorization_id`](https://plaid.com/docs/api/link/#link-token-create-request-transfer-authorization-id) in the request to `/link/token/create`. `PAYMENT_PROFILE_LOGIN_REQUIRED` - The Payment Profile associated with the call to `/transfer/authorization/create` is in a state that requires the end user to re-authenticate. Can be resolved by using Link to refresh the Payment Profile. `MIGRATED_ACCOUNT_ITEM` - Item created via `/transfer/migrate_account` endpoint, limited information available. `ERROR` - Unable to collect the account information due to an unspecified error. The following codes indicate that the authorization decision was `declined`: `NSF` - Transaction has an elevated probability of resulting in a return due to insufficient funds. `RISK` - Transaction is high-risk. `TRANSFER_LIMIT_REACHED` - One or several transfer limits are reached, e.g. monthly transfer limit. Check the accompanying `description` field to understand which limit has been reached. `ADMIN` - Transaction has an elevated probability of resulting in an administrative return (for example a closed, invalid, or unauthorized account). `FRAUD` - Transaction has an elevated probability of being fraudulent.., must be one of ["NSF", "RISK", "TRANSFER_LIMIT_REACHED", "MANUALLY_VERIFIED_ITEM", "ITEM_LOGIN_REQUIRED", "PAYMENT_PROFILE_LOGIN_REQUIRED", "ERROR", "MIGRATED_ACCOUNT_ITEM", "ADMIN", "FRAUD", "null", ] # noqa: E501 _check_type (bool): if True, values for parameters in openapi_types will be type checked and a TypeError will be raised if the wrong type is input. diff --git a/plaid/model/transfer_authorization_device.py b/plaid/model/transfer_authorization_device.py index a3ddf8253..f49e039c5 100644 --- a/plaid/model/transfer_authorization_device.py +++ b/plaid/model/transfer_authorization_device.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_guarantee_decision.py b/plaid/model/transfer_authorization_guarantee_decision.py index 0aac222d8..e6328e0b2 100644 --- a/plaid/model/transfer_authorization_guarantee_decision.py +++ b/plaid/model/transfer_authorization_guarantee_decision.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_guarantee_decision_rationale.py b/plaid/model/transfer_authorization_guarantee_decision_rationale.py index c309aa60e..ffc73d6a9 100644 --- a/plaid/model/transfer_authorization_guarantee_decision_rationale.py +++ b/plaid/model/transfer_authorization_guarantee_decision_rationale.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_guarantee_decision_rationale_code.py b/plaid/model/transfer_authorization_guarantee_decision_rationale_code.py index 27aa09375..0ffe954ab 100644 --- a/plaid/model/transfer_authorization_guarantee_decision_rationale_code.py +++ b/plaid/model/transfer_authorization_guarantee_decision_rationale_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_idempotency_key.py b/plaid/model/transfer_authorization_idempotency_key.py index 07eefe9ef..c0838503b 100644 --- a/plaid/model/transfer_authorization_idempotency_key.py +++ b/plaid/model/transfer_authorization_idempotency_key.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_payment_risk.py b/plaid/model/transfer_authorization_payment_risk.py index 9739c9079..e283a4f28 100644 --- a/plaid/model/transfer_authorization_payment_risk.py +++ b/plaid/model/transfer_authorization_payment_risk.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_proposed_transfer.py b/plaid/model/transfer_authorization_proposed_transfer.py index c4bfe0d88..b7a0f5efa 100644 --- a/plaid/model/transfer_authorization_proposed_transfer.py +++ b/plaid/model/transfer_authorization_proposed_transfer.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_risk_level.py b/plaid/model/transfer_authorization_risk_level.py index 33d86218e..be9048dd6 100644 --- a/plaid/model/transfer_authorization_risk_level.py +++ b/plaid/model/transfer_authorization_risk_level.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_user_in_request.py b/plaid/model/transfer_authorization_user_in_request.py index c76d73a2f..feecfedf1 100644 --- a/plaid/model/transfer_authorization_user_in_request.py +++ b/plaid/model/transfer_authorization_user_in_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_balance.py b/plaid/model/transfer_balance.py index 6f21e5fef..820cdda81 100644 --- a/plaid/model/transfer_balance.py +++ b/plaid/model/transfer_balance.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_balance_get_request.py b/plaid/model/transfer_balance_get_request.py index 35c107e5f..312b40c4c 100644 --- a/plaid/model/transfer_balance_get_request.py +++ b/plaid/model/transfer_balance_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_balance_get_response.py b/plaid/model/transfer_balance_get_response.py index 47e1e2122..b596abc0e 100644 --- a/plaid/model/transfer_balance_get_response.py +++ b/plaid/model/transfer_balance_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_balance_type.py b/plaid/model/transfer_balance_type.py index ea2fa0341..687888e5f 100644 --- a/plaid/model/transfer_balance_type.py +++ b/plaid/model/transfer_balance_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_cancel_request.py b/plaid/model/transfer_cancel_request.py index 2a4ed6d67..54dda124a 100644 --- a/plaid/model/transfer_cancel_request.py +++ b/plaid/model/transfer_cancel_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_cancel_response.py b/plaid/model/transfer_cancel_response.py index cb977c0f1..db47fe861 100644 --- a/plaid/model/transfer_cancel_response.py +++ b/plaid/model/transfer_cancel_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_capabilities_get_request.py b/plaid/model/transfer_capabilities_get_request.py index d459bb965..16158283d 100644 --- a/plaid/model/transfer_capabilities_get_request.py +++ b/plaid/model/transfer_capabilities_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_capabilities_get_response.py b/plaid/model/transfer_capabilities_get_response.py index 19ae77cd0..38224ef77 100644 --- a/plaid/model/transfer_capabilities_get_response.py +++ b/plaid/model/transfer_capabilities_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_capabilities_get_rf_p.py b/plaid/model/transfer_capabilities_get_rf_p.py index 836b21ae8..4d5ce9af6 100644 --- a/plaid/model/transfer_capabilities_get_rf_p.py +++ b/plaid/model/transfer_capabilities_get_rf_p.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_capabilities_get_rtp.py b/plaid/model/transfer_capabilities_get_rtp.py index 3007741f1..45c473b1c 100644 --- a/plaid/model/transfer_capabilities_get_rtp.py +++ b/plaid/model/transfer_capabilities_get_rtp.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_configuration_get_request.py b/plaid/model/transfer_configuration_get_request.py index 0b7b46251..6d91e6df8 100644 --- a/plaid/model/transfer_configuration_get_request.py +++ b/plaid/model/transfer_configuration_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_configuration_get_response.py b/plaid/model/transfer_configuration_get_response.py index 69c747fed..579f4d10c 100644 --- a/plaid/model/transfer_configuration_get_response.py +++ b/plaid/model/transfer_configuration_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_create_idempotency_key.py b/plaid/model/transfer_create_idempotency_key.py index 3a28da234..58cc652f3 100644 --- a/plaid/model/transfer_create_idempotency_key.py +++ b/plaid/model/transfer_create_idempotency_key.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_create_request.py b/plaid/model/transfer_create_request.py index ff3e496ea..123df127f 100644 --- a/plaid/model/transfer_create_request.py +++ b/plaid/model/transfer_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_create_response.py b/plaid/model/transfer_create_response.py index f30f5cdf5..28febe506 100644 --- a/plaid/model/transfer_create_response.py +++ b/plaid/model/transfer_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_credit_funds_source.py b/plaid/model/transfer_credit_funds_source.py index 7e788ec3b..5df51485d 100644 --- a/plaid/model/transfer_credit_funds_source.py +++ b/plaid/model/transfer_credit_funds_source.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_credit_usage_configuration.py b/plaid/model/transfer_credit_usage_configuration.py index 76d5565cc..a129e977f 100644 --- a/plaid/model/transfer_credit_usage_configuration.py +++ b/plaid/model/transfer_credit_usage_configuration.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_debit_usage_configuration.py b/plaid/model/transfer_debit_usage_configuration.py index 524828b5a..fe86d57f6 100644 --- a/plaid/model/transfer_debit_usage_configuration.py +++ b/plaid/model/transfer_debit_usage_configuration.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_device.py b/plaid/model/transfer_device.py index d835e3414..9d7a7d0be 100644 --- a/plaid/model/transfer_device.py +++ b/plaid/model/transfer_device.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_diligence_document_upload_request.py b/plaid/model/transfer_diligence_document_upload_request.py index 87dffb204..6b8daf05d 100644 --- a/plaid/model/transfer_diligence_document_upload_request.py +++ b/plaid/model/transfer_diligence_document_upload_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_diligence_document_upload_response.py b/plaid/model/transfer_diligence_document_upload_response.py index 001c1e98b..c08082f8f 100644 --- a/plaid/model/transfer_diligence_document_upload_response.py +++ b/plaid/model/transfer_diligence_document_upload_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_diligence_status.py b/plaid/model/transfer_diligence_status.py index 06ccdbe7e..c7602613a 100644 --- a/plaid/model/transfer_diligence_status.py +++ b/plaid/model/transfer_diligence_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_diligence_submit_request.py b/plaid/model/transfer_diligence_submit_request.py index badc70349..b27b36be1 100644 --- a/plaid/model/transfer_diligence_submit_request.py +++ b/plaid/model/transfer_diligence_submit_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_diligence_submit_response.py b/plaid/model/transfer_diligence_submit_response.py index 96c4b9f2f..3c59c2b39 100644 --- a/plaid/model/transfer_diligence_submit_response.py +++ b/plaid/model/transfer_diligence_submit_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_document_purpose.py b/plaid/model/transfer_document_purpose.py index 8e0be1d05..823c997c0 100644 --- a/plaid/model/transfer_document_purpose.py +++ b/plaid/model/transfer_document_purpose.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_event.py b/plaid/model/transfer_event.py index 3c5fe6df6..ca2d7e31e 100644 --- a/plaid/model/transfer_event.py +++ b/plaid/model/transfer_event.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_event_list_request.py b/plaid/model/transfer_event_list_request.py index 9f810278e..2920ebcf1 100644 --- a/plaid/model/transfer_event_list_request.py +++ b/plaid/model/transfer_event_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_event_list_response.py b/plaid/model/transfer_event_list_response.py index 83c09ef0c..1e2e50512 100644 --- a/plaid/model/transfer_event_list_response.py +++ b/plaid/model/transfer_event_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_event_list_transfer_type.py b/plaid/model/transfer_event_list_transfer_type.py index dc60890c4..7472126ee 100644 --- a/plaid/model/transfer_event_list_transfer_type.py +++ b/plaid/model/transfer_event_list_transfer_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_event_sync_request.py b/plaid/model/transfer_event_sync_request.py index 4c8b4d628..d45690726 100644 --- a/plaid/model/transfer_event_sync_request.py +++ b/plaid/model/transfer_event_sync_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_event_sync_response.py b/plaid/model/transfer_event_sync_response.py index f17baa644..639dd284d 100644 --- a/plaid/model/transfer_event_sync_response.py +++ b/plaid/model/transfer_event_sync_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_event_type.py b/plaid/model/transfer_event_type.py index 254da9747..166eaca62 100644 --- a/plaid/model/transfer_event_type.py +++ b/plaid/model/transfer_event_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_events_update_webhook.py b/plaid/model/transfer_events_update_webhook.py index 7575ed1fe..2cefa2ab3 100644 --- a/plaid/model/transfer_events_update_webhook.py +++ b/plaid/model/transfer_events_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_expected_sweep_settlement_schedule_item.py b/plaid/model/transfer_expected_sweep_settlement_schedule_item.py index 325d491c2..830d0a914 100644 --- a/plaid/model/transfer_expected_sweep_settlement_schedule_item.py +++ b/plaid/model/transfer_expected_sweep_settlement_schedule_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_failure.py b/plaid/model/transfer_failure.py index 02f234605..3c5de4faf 100644 --- a/plaid/model/transfer_failure.py +++ b/plaid/model/transfer_failure.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_funding_account.py b/plaid/model/transfer_funding_account.py index b1d6f6770..f8fadaa09 100644 --- a/plaid/model/transfer_funding_account.py +++ b/plaid/model/transfer_funding_account.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_funding_account_with_display_name.py b/plaid/model/transfer_funding_account_with_display_name.py index d6da04461..656ce170e 100644 --- a/plaid/model/transfer_funding_account_with_display_name.py +++ b/plaid/model/transfer_funding_account_with_display_name.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_funding_account_with_display_name_all_of.py b/plaid/model/transfer_funding_account_with_display_name_all_of.py index 7020b0a5c..9b710df71 100644 --- a/plaid/model/transfer_funding_account_with_display_name_all_of.py +++ b/plaid/model/transfer_funding_account_with_display_name_all_of.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_get_request.py b/plaid/model/transfer_get_request.py index d5afb4f92..aa2435821 100644 --- a/plaid/model/transfer_get_request.py +++ b/plaid/model/transfer_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_get_response.py b/plaid/model/transfer_get_response.py index a4976b889..2bb4c860e 100644 --- a/plaid/model/transfer_get_response.py +++ b/plaid/model/transfer_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_guarantee_details.py b/plaid/model/transfer_guarantee_details.py index 9615beada..500cb6d24 100644 --- a/plaid/model/transfer_guarantee_details.py +++ b/plaid/model/transfer_guarantee_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_guarantee_outcome.py b/plaid/model/transfer_guarantee_outcome.py index 299eeb70c..cfe459f88 100644 --- a/plaid/model/transfer_guarantee_outcome.py +++ b/plaid/model/transfer_guarantee_outcome.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_guarantee_schedule_item.py b/plaid/model/transfer_guarantee_schedule_item.py index 6531fc866..09d22fb01 100644 --- a/plaid/model/transfer_guarantee_schedule_item.py +++ b/plaid/model/transfer_guarantee_schedule_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_guarantee_schedule_item_all_of.py b/plaid/model/transfer_guarantee_schedule_item_all_of.py index f5cc17c4d..9e2ecceda 100644 --- a/plaid/model/transfer_guarantee_schedule_item_all_of.py +++ b/plaid/model/transfer_guarantee_schedule_item_all_of.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_intent_authorization_decision.py b/plaid/model/transfer_intent_authorization_decision.py index 8ee30458a..ff8d81369 100644 --- a/plaid/model/transfer_intent_authorization_decision.py +++ b/plaid/model/transfer_intent_authorization_decision.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_intent_create.py b/plaid/model/transfer_intent_create.py index 33f50e068..3f8e64abb 100644 --- a/plaid/model/transfer_intent_create.py +++ b/plaid/model/transfer_intent_create.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_intent_create_mode.py b/plaid/model/transfer_intent_create_mode.py index 7b63bb097..552e886d1 100644 --- a/plaid/model/transfer_intent_create_mode.py +++ b/plaid/model/transfer_intent_create_mode.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_intent_create_network.py b/plaid/model/transfer_intent_create_network.py index 27dec60e9..0701a222f 100644 --- a/plaid/model/transfer_intent_create_network.py +++ b/plaid/model/transfer_intent_create_network.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_intent_create_request.py b/plaid/model/transfer_intent_create_request.py index 32763d3f6..b6cc69ca8 100644 --- a/plaid/model/transfer_intent_create_request.py +++ b/plaid/model/transfer_intent_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_intent_create_response.py b/plaid/model/transfer_intent_create_response.py index 13be3f81b..721f1b9f0 100644 --- a/plaid/model/transfer_intent_create_response.py +++ b/plaid/model/transfer_intent_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_intent_get.py b/plaid/model/transfer_intent_get.py index a9457206a..99886553a 100644 --- a/plaid/model/transfer_intent_get.py +++ b/plaid/model/transfer_intent_get.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_intent_get_failure_reason.py b/plaid/model/transfer_intent_get_failure_reason.py index fe0bd145c..3cecf3ca9 100644 --- a/plaid/model/transfer_intent_get_failure_reason.py +++ b/plaid/model/transfer_intent_get_failure_reason.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_intent_get_request.py b/plaid/model/transfer_intent_get_request.py index a3e073d0a..0af0596c5 100644 --- a/plaid/model/transfer_intent_get_request.py +++ b/plaid/model/transfer_intent_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_intent_get_response.py b/plaid/model/transfer_intent_get_response.py index e3dab6651..7b5edaa44 100644 --- a/plaid/model/transfer_intent_get_response.py +++ b/plaid/model/transfer_intent_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_intent_status.py b/plaid/model/transfer_intent_status.py index 3daf8606f..5b32019d6 100644 --- a/plaid/model/transfer_intent_status.py +++ b/plaid/model/transfer_intent_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_ledger_balance.py b/plaid/model/transfer_ledger_balance.py index cb20b5cef..6df84bf30 100644 --- a/plaid/model/transfer_ledger_balance.py +++ b/plaid/model/transfer_ledger_balance.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_ledger_deposit_request.py b/plaid/model/transfer_ledger_deposit_request.py index 414b32e84..98bf009ff 100644 --- a/plaid/model/transfer_ledger_deposit_request.py +++ b/plaid/model/transfer_ledger_deposit_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_ledger_deposit_response.py b/plaid/model/transfer_ledger_deposit_response.py index e43be2deb..4b438c23c 100644 --- a/plaid/model/transfer_ledger_deposit_response.py +++ b/plaid/model/transfer_ledger_deposit_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_ledger_distribute_request.py b/plaid/model/transfer_ledger_distribute_request.py index 49554eeba..32fbfe76d 100644 --- a/plaid/model/transfer_ledger_distribute_request.py +++ b/plaid/model/transfer_ledger_distribute_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_ledger_distribute_response.py b/plaid/model/transfer_ledger_distribute_response.py index ae36b3180..b82d472ca 100644 --- a/plaid/model/transfer_ledger_distribute_response.py +++ b/plaid/model/transfer_ledger_distribute_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_ledger_event.py b/plaid/model/transfer_ledger_event.py index 9a6bafb5f..df2eb56dd 100644 --- a/plaid/model/transfer_ledger_event.py +++ b/plaid/model/transfer_ledger_event.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_ledger_event_list_request.py b/plaid/model/transfer_ledger_event_list_request.py index 8a90aff5d..4f9e8b2d5 100644 --- a/plaid/model/transfer_ledger_event_list_request.py +++ b/plaid/model/transfer_ledger_event_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_ledger_event_list_response.py b/plaid/model/transfer_ledger_event_list_response.py index ede753ee6..ec4329350 100644 --- a/plaid/model/transfer_ledger_event_list_response.py +++ b/plaid/model/transfer_ledger_event_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_ledger_get_request.py b/plaid/model/transfer_ledger_get_request.py index 08c8aa984..efb7300ef 100644 --- a/plaid/model/transfer_ledger_get_request.py +++ b/plaid/model/transfer_ledger_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_ledger_get_response.py b/plaid/model/transfer_ledger_get_response.py index ffae2ba75..0874ddbea 100644 --- a/plaid/model/transfer_ledger_get_response.py +++ b/plaid/model/transfer_ledger_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_ledger_sweep_simulate_event_type.py b/plaid/model/transfer_ledger_sweep_simulate_event_type.py index 4380bce0d..bd9073aad 100644 --- a/plaid/model/transfer_ledger_sweep_simulate_event_type.py +++ b/plaid/model/transfer_ledger_sweep_simulate_event_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_ledger_withdraw_request.py b/plaid/model/transfer_ledger_withdraw_request.py index 36af63e48..c3a107b95 100644 --- a/plaid/model/transfer_ledger_withdraw_request.py +++ b/plaid/model/transfer_ledger_withdraw_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_ledger_withdraw_response.py b/plaid/model/transfer_ledger_withdraw_response.py index 0faf453e7..3ed1df5ba 100644 --- a/plaid/model/transfer_ledger_withdraw_response.py +++ b/plaid/model/transfer_ledger_withdraw_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_list_request.py b/plaid/model/transfer_list_request.py index 42369cf7c..70db0576a 100644 --- a/plaid/model/transfer_list_request.py +++ b/plaid/model/transfer_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_list_response.py b/plaid/model/transfer_list_response.py index 538220f72..ac2aba8e4 100644 --- a/plaid/model/transfer_list_response.py +++ b/plaid/model/transfer_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_metadata.py b/plaid/model/transfer_metadata.py index ccc7e159c..1cf51d364 100644 --- a/plaid/model/transfer_metadata.py +++ b/plaid/model/transfer_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_metrics_get_authorization_usage.py b/plaid/model/transfer_metrics_get_authorization_usage.py index c12743e24..dcb70db53 100644 --- a/plaid/model/transfer_metrics_get_authorization_usage.py +++ b/plaid/model/transfer_metrics_get_authorization_usage.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_metrics_get_request.py b/plaid/model/transfer_metrics_get_request.py index 50e311039..d80074a47 100644 --- a/plaid/model/transfer_metrics_get_request.py +++ b/plaid/model/transfer_metrics_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_metrics_get_response.py b/plaid/model/transfer_metrics_get_response.py index 9de1ebc0a..91ed1c6ad 100644 --- a/plaid/model/transfer_metrics_get_response.py +++ b/plaid/model/transfer_metrics_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_metrics_get_return_rates.py b/plaid/model/transfer_metrics_get_return_rates.py index 74e351562..39a40bfd2 100644 --- a/plaid/model/transfer_metrics_get_return_rates.py +++ b/plaid/model/transfer_metrics_get_return_rates.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_metrics_get_return_rates_over_interval.py b/plaid/model/transfer_metrics_get_return_rates_over_interval.py index 380df44c1..825937ca7 100644 --- a/plaid/model/transfer_metrics_get_return_rates_over_interval.py +++ b/plaid/model/transfer_metrics_get_return_rates_over_interval.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_migrate_account_request.py b/plaid/model/transfer_migrate_account_request.py index af54b9856..843fc409b 100644 --- a/plaid/model/transfer_migrate_account_request.py +++ b/plaid/model/transfer_migrate_account_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_migrate_account_response.py b/plaid/model/transfer_migrate_account_response.py index ad632765e..e0c217af3 100644 --- a/plaid/model/transfer_migrate_account_response.py +++ b/plaid/model/transfer_migrate_account_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_network.py b/plaid/model/transfer_network.py index e8118223b..a3d0b3401 100644 --- a/plaid/model/transfer_network.py +++ b/plaid/model/transfer_network.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_originator_address.py b/plaid/model/transfer_originator_address.py index d1a75748c..24a598c53 100644 --- a/plaid/model/transfer_originator_address.py +++ b/plaid/model/transfer_originator_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_originator_create_request.py b/plaid/model/transfer_originator_create_request.py index 2033848c4..9aacdac9a 100644 --- a/plaid/model/transfer_originator_create_request.py +++ b/plaid/model/transfer_originator_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_originator_create_response.py b/plaid/model/transfer_originator_create_response.py index 6ab739ef1..c33e54d07 100644 --- a/plaid/model/transfer_originator_create_response.py +++ b/plaid/model/transfer_originator_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_originator_diligence.py b/plaid/model/transfer_originator_diligence.py index 8b08aa5be..6b34b9009 100644 --- a/plaid/model/transfer_originator_diligence.py +++ b/plaid/model/transfer_originator_diligence.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_originator_funding_account_create_request.py b/plaid/model/transfer_originator_funding_account_create_request.py index 7e7149087..fffccfb1c 100644 --- a/plaid/model/transfer_originator_funding_account_create_request.py +++ b/plaid/model/transfer_originator_funding_account_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_originator_funding_account_create_response.py b/plaid/model/transfer_originator_funding_account_create_response.py index 58ec07bc7..99117bb67 100644 --- a/plaid/model/transfer_originator_funding_account_create_response.py +++ b/plaid/model/transfer_originator_funding_account_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_originator_funding_account_update_request.py b/plaid/model/transfer_originator_funding_account_update_request.py index a9d77577e..3254460f4 100644 --- a/plaid/model/transfer_originator_funding_account_update_request.py +++ b/plaid/model/transfer_originator_funding_account_update_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_originator_funding_account_update_response.py b/plaid/model/transfer_originator_funding_account_update_response.py index b4eeb610f..9d5270122 100644 --- a/plaid/model/transfer_originator_funding_account_update_response.py +++ b/plaid/model/transfer_originator_funding_account_update_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_originator_get_request.py b/plaid/model/transfer_originator_get_request.py index c0af5fcd5..ef5733938 100644 --- a/plaid/model/transfer_originator_get_request.py +++ b/plaid/model/transfer_originator_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_originator_get_response.py b/plaid/model/transfer_originator_get_response.py index 10629e9a5..680c961e8 100644 --- a/plaid/model/transfer_originator_get_response.py +++ b/plaid/model/transfer_originator_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_originator_list_request.py b/plaid/model/transfer_originator_list_request.py index b31181834..b7a84cf91 100644 --- a/plaid/model/transfer_originator_list_request.py +++ b/plaid/model/transfer_originator_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_originator_list_response.py b/plaid/model/transfer_originator_list_response.py index e226a9765..d6df09443 100644 --- a/plaid/model/transfer_originator_list_response.py +++ b/plaid/model/transfer_originator_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_platform_onboarding_update_webhook.py b/plaid/model/transfer_platform_onboarding_update_webhook.py index af6e7fb4e..d3724d2e9 100644 --- a/plaid/model/transfer_platform_onboarding_update_webhook.py +++ b/plaid/model/transfer_platform_onboarding_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_platform_originator_create_request.py b/plaid/model/transfer_platform_originator_create_request.py index 7a9e621e5..17a1aa22e 100644 --- a/plaid/model/transfer_platform_originator_create_request.py +++ b/plaid/model/transfer_platform_originator_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_platform_originator_create_response.py b/plaid/model/transfer_platform_originator_create_response.py index 0fe0b6cf6..bb69cd63b 100644 --- a/plaid/model/transfer_platform_originator_create_response.py +++ b/plaid/model/transfer_platform_originator_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_platform_person_address.py b/plaid/model/transfer_platform_person_address.py index b9555ea09..96978c8c9 100644 --- a/plaid/model/transfer_platform_person_address.py +++ b/plaid/model/transfer_platform_person_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_platform_person_create_request.py b/plaid/model/transfer_platform_person_create_request.py index daec84ece..31583c1b6 100644 --- a/plaid/model/transfer_platform_person_create_request.py +++ b/plaid/model/transfer_platform_person_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_platform_person_create_response.py b/plaid/model/transfer_platform_person_create_response.py index 35f8a19c2..2cc8a8820 100644 --- a/plaid/model/transfer_platform_person_create_response.py +++ b/plaid/model/transfer_platform_person_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_platform_person_id_number.py b/plaid/model/transfer_platform_person_id_number.py index f0ef10d55..713b8134d 100644 --- a/plaid/model/transfer_platform_person_id_number.py +++ b/plaid/model/transfer_platform_person_id_number.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_platform_person_name.py b/plaid/model/transfer_platform_person_name.py index 816676311..b5707315e 100644 --- a/plaid/model/transfer_platform_person_name.py +++ b/plaid/model/transfer_platform_person_name.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_platform_requirement.py b/plaid/model/transfer_platform_requirement.py index 1bce4c92d..1b9425c8f 100644 --- a/plaid/model/transfer_platform_requirement.py +++ b/plaid/model/transfer_platform_requirement.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_platform_requirement_submission.py b/plaid/model/transfer_platform_requirement_submission.py index c1fa0344b..1e0c7b598 100644 --- a/plaid/model/transfer_platform_requirement_submission.py +++ b/plaid/model/transfer_platform_requirement_submission.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_platform_requirement_submit_request.py b/plaid/model/transfer_platform_requirement_submit_request.py index de8eba13d..9172cce74 100644 --- a/plaid/model/transfer_platform_requirement_submit_request.py +++ b/plaid/model/transfer_platform_requirement_submit_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_platform_requirement_submit_response.py b/plaid/model/transfer_platform_requirement_submit_response.py index cdb329f51..1a26e47ad 100644 --- a/plaid/model/transfer_platform_requirement_submit_response.py +++ b/plaid/model/transfer_platform_requirement_submit_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_platform_tos_acceptance_metadata.py b/plaid/model/transfer_platform_tos_acceptance_metadata.py index 6cfd1be73..f8cc3056a 100644 --- a/plaid/model/transfer_platform_tos_acceptance_metadata.py +++ b/plaid/model/transfer_platform_tos_acceptance_metadata.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_questionnaire_create_request.py b/plaid/model/transfer_questionnaire_create_request.py index 4776e9162..362c65044 100644 --- a/plaid/model/transfer_questionnaire_create_request.py +++ b/plaid/model/transfer_questionnaire_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_questionnaire_create_response.py b/plaid/model/transfer_questionnaire_create_response.py index 22ed17302..7064a2f9b 100644 --- a/plaid/model/transfer_questionnaire_create_response.py +++ b/plaid/model/transfer_questionnaire_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_recurring_cancel_request.py b/plaid/model/transfer_recurring_cancel_request.py index 5c21a2fc7..16bb0860e 100644 --- a/plaid/model/transfer_recurring_cancel_request.py +++ b/plaid/model/transfer_recurring_cancel_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_recurring_cancel_response.py b/plaid/model/transfer_recurring_cancel_response.py index e02abb70b..764e168db 100644 --- a/plaid/model/transfer_recurring_cancel_response.py +++ b/plaid/model/transfer_recurring_cancel_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_recurring_create_request.py b/plaid/model/transfer_recurring_create_request.py index cf4ae7ae5..1e0fd2dd3 100644 --- a/plaid/model/transfer_recurring_create_request.py +++ b/plaid/model/transfer_recurring_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_recurring_create_response.py b/plaid/model/transfer_recurring_create_response.py index 25a65486a..3e4b730da 100644 --- a/plaid/model/transfer_recurring_create_response.py +++ b/plaid/model/transfer_recurring_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_recurring_get_request.py b/plaid/model/transfer_recurring_get_request.py index 3229a100e..6e472c975 100644 --- a/plaid/model/transfer_recurring_get_request.py +++ b/plaid/model/transfer_recurring_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_recurring_get_response.py b/plaid/model/transfer_recurring_get_response.py index 33eb4a7c4..6c4a9ff33 100644 --- a/plaid/model/transfer_recurring_get_response.py +++ b/plaid/model/transfer_recurring_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_recurring_idempotency_key.py b/plaid/model/transfer_recurring_idempotency_key.py index 3705820c5..481b7a02a 100644 --- a/plaid/model/transfer_recurring_idempotency_key.py +++ b/plaid/model/transfer_recurring_idempotency_key.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_recurring_list_request.py b/plaid/model/transfer_recurring_list_request.py index 44731aa15..a122048d5 100644 --- a/plaid/model/transfer_recurring_list_request.py +++ b/plaid/model/transfer_recurring_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_recurring_list_response.py b/plaid/model/transfer_recurring_list_response.py index 0287535c9..358da1b62 100644 --- a/plaid/model/transfer_recurring_list_response.py +++ b/plaid/model/transfer_recurring_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_recurring_network.py b/plaid/model/transfer_recurring_network.py index 337ef8f50..f0873ecec 100644 --- a/plaid/model/transfer_recurring_network.py +++ b/plaid/model/transfer_recurring_network.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_recurring_schedule.py b/plaid/model/transfer_recurring_schedule.py index 895138327..57bb36ea8 100644 --- a/plaid/model/transfer_recurring_schedule.py +++ b/plaid/model/transfer_recurring_schedule.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_recurring_status.py b/plaid/model/transfer_recurring_status.py index 43f9987b8..059d8aaf6 100644 --- a/plaid/model/transfer_recurring_status.py +++ b/plaid/model/transfer_recurring_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_refund.py b/plaid/model/transfer_refund.py index b246632f6..0d63d5ab4 100644 --- a/plaid/model/transfer_refund.py +++ b/plaid/model/transfer_refund.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_refund_cancel_request.py b/plaid/model/transfer_refund_cancel_request.py index 2d629b8f2..964084cbe 100644 --- a/plaid/model/transfer_refund_cancel_request.py +++ b/plaid/model/transfer_refund_cancel_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_refund_cancel_response.py b/plaid/model/transfer_refund_cancel_response.py index 04a702412..cdcd5a280 100644 --- a/plaid/model/transfer_refund_cancel_response.py +++ b/plaid/model/transfer_refund_cancel_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_refund_create_request.py b/plaid/model/transfer_refund_create_request.py index 9e1fb6624..ef712de62 100644 --- a/plaid/model/transfer_refund_create_request.py +++ b/plaid/model/transfer_refund_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_refund_create_response.py b/plaid/model/transfer_refund_create_response.py index 5586aff4c..52ecffe61 100644 --- a/plaid/model/transfer_refund_create_response.py +++ b/plaid/model/transfer_refund_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_refund_failure.py b/plaid/model/transfer_refund_failure.py index dc22f22b7..f6c39bb05 100644 --- a/plaid/model/transfer_refund_failure.py +++ b/plaid/model/transfer_refund_failure.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_refund_get_request.py b/plaid/model/transfer_refund_get_request.py index 66ce3c162..5f2f84efd 100644 --- a/plaid/model/transfer_refund_get_request.py +++ b/plaid/model/transfer_refund_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_refund_get_response.py b/plaid/model/transfer_refund_get_response.py index d1cfad46f..c02586491 100644 --- a/plaid/model/transfer_refund_get_response.py +++ b/plaid/model/transfer_refund_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_refund_idempotency_key.py b/plaid/model/transfer_refund_idempotency_key.py index 7183dbe70..3b3f80e7b 100644 --- a/plaid/model/transfer_refund_idempotency_key.py +++ b/plaid/model/transfer_refund_idempotency_key.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_refund_status.py b/plaid/model/transfer_refund_status.py index c3f2d362e..7092b62e4 100644 --- a/plaid/model/transfer_refund_status.py +++ b/plaid/model/transfer_refund_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_repayment.py b/plaid/model/transfer_repayment.py index fc51ce61e..906f88eaa 100644 --- a/plaid/model/transfer_repayment.py +++ b/plaid/model/transfer_repayment.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_repayment_list_request.py b/plaid/model/transfer_repayment_list_request.py index 9f85c4127..389cec52a 100644 --- a/plaid/model/transfer_repayment_list_request.py +++ b/plaid/model/transfer_repayment_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_repayment_list_response.py b/plaid/model/transfer_repayment_list_response.py index 2935e9423..6bbf001f0 100644 --- a/plaid/model/transfer_repayment_list_response.py +++ b/plaid/model/transfer_repayment_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_repayment_return.py b/plaid/model/transfer_repayment_return.py index 4ea107e98..e4465dfae 100644 --- a/plaid/model/transfer_repayment_return.py +++ b/plaid/model/transfer_repayment_return.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_repayment_return_list_request.py b/plaid/model/transfer_repayment_return_list_request.py index 21d9900f3..0be98611a 100644 --- a/plaid/model/transfer_repayment_return_list_request.py +++ b/plaid/model/transfer_repayment_return_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_repayment_return_list_response.py b/plaid/model/transfer_repayment_return_list_response.py index d90cc5851..5c7f6f948 100644 --- a/plaid/model/transfer_repayment_return_list_response.py +++ b/plaid/model/transfer_repayment_return_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_return_recover_idempotency_key.py b/plaid/model/transfer_return_recover_idempotency_key.py index d30c66107..b765d2ced 100644 --- a/plaid/model/transfer_return_recover_idempotency_key.py +++ b/plaid/model/transfer_return_recover_idempotency_key.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_return_recover_request.py b/plaid/model/transfer_return_recover_request.py index c713983ff..b59a79e86 100644 --- a/plaid/model/transfer_return_recover_request.py +++ b/plaid/model/transfer_return_recover_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_return_recover_response.py b/plaid/model/transfer_return_recover_response.py index 72cb09254..1d668a1d7 100644 --- a/plaid/model/transfer_return_recover_response.py +++ b/plaid/model/transfer_return_recover_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_schedule_interval_unit.py b/plaid/model/transfer_schedule_interval_unit.py index f6449d3a9..9746b40d0 100644 --- a/plaid/model/transfer_schedule_interval_unit.py +++ b/plaid/model/transfer_schedule_interval_unit.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_status.py b/plaid/model/transfer_status.py index 1813854b4..6d1d420e3 100644 --- a/plaid/model/transfer_status.py +++ b/plaid/model/transfer_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_sweep.py b/plaid/model/transfer_sweep.py index e5026b8f3..b8be1b8e0 100644 --- a/plaid/model/transfer_sweep.py +++ b/plaid/model/transfer_sweep.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_sweep_get_request.py b/plaid/model/transfer_sweep_get_request.py index 2c70be39f..2cd4ff155 100644 --- a/plaid/model/transfer_sweep_get_request.py +++ b/plaid/model/transfer_sweep_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_sweep_get_response.py b/plaid/model/transfer_sweep_get_response.py index e9e006866..570abc7c4 100644 --- a/plaid/model/transfer_sweep_get_response.py +++ b/plaid/model/transfer_sweep_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_sweep_list_request.py b/plaid/model/transfer_sweep_list_request.py index 69014c6c4..5e670143c 100644 --- a/plaid/model/transfer_sweep_list_request.py +++ b/plaid/model/transfer_sweep_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_sweep_list_response.py b/plaid/model/transfer_sweep_list_response.py index 474a9ea56..94d2d6b76 100644 --- a/plaid/model/transfer_sweep_list_response.py +++ b/plaid/model/transfer_sweep_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_sweep_status.py b/plaid/model/transfer_sweep_status.py index c60b9a7d0..d75391f42 100644 --- a/plaid/model/transfer_sweep_status.py +++ b/plaid/model/transfer_sweep_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_test_clock.py b/plaid/model/transfer_test_clock.py index 0e395efab..0705fc4bd 100644 --- a/plaid/model/transfer_test_clock.py +++ b/plaid/model/transfer_test_clock.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_type.py b/plaid/model/transfer_type.py index b21b5607d..803084198 100644 --- a/plaid/model/transfer_type.py +++ b/plaid/model/transfer_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_user_address_in_request.py b/plaid/model/transfer_user_address_in_request.py index c4e615c20..8e5686def 100644 --- a/plaid/model/transfer_user_address_in_request.py +++ b/plaid/model/transfer_user_address_in_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_user_address_in_response.py b/plaid/model/transfer_user_address_in_response.py index b944cbc4c..77c30c998 100644 --- a/plaid/model/transfer_user_address_in_response.py +++ b/plaid/model/transfer_user_address_in_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_user_in_request.py b/plaid/model/transfer_user_in_request.py index 133ff0bfa..e32054e76 100644 --- a/plaid/model/transfer_user_in_request.py +++ b/plaid/model/transfer_user_in_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_user_in_request_deprecated.py b/plaid/model/transfer_user_in_request_deprecated.py index 82a99302c..43c972335 100644 --- a/plaid/model/transfer_user_in_request_deprecated.py +++ b/plaid/model/transfer_user_in_request_deprecated.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_user_in_response.py b/plaid/model/transfer_user_in_response.py index 881c4290f..b3871173e 100644 --- a/plaid/model/transfer_user_in_response.py +++ b/plaid/model/transfer_user_in_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_wire_details.py b/plaid/model/transfer_wire_details.py index 4f0eac137..e9d9c122a 100644 --- a/plaid/model/transfer_wire_details.py +++ b/plaid/model/transfer_wire_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/trust_index.py b/plaid/model/trust_index.py index 1ad73c84b..ed87942e0 100644 --- a/plaid/model/trust_index.py +++ b/plaid/model/trust_index.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/trust_index_subscore.py b/plaid/model/trust_index_subscore.py index 1527cc52d..37efcce0b 100644 --- a/plaid/model/trust_index_subscore.py +++ b/plaid/model/trust_index_subscore.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/trust_index_subscores.py b/plaid/model/trust_index_subscores.py index 025a5d59d..ec1531716 100644 --- a/plaid/model/trust_index_subscores.py +++ b/plaid/model/trust_index_subscores.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/trusted_device_data.py b/plaid/model/trusted_device_data.py index 443f36cd2..0a8851ac0 100644 --- a/plaid/model/trusted_device_data.py +++ b/plaid/model/trusted_device_data.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/update_entity_screening_request_search_terms.py b/plaid/model/update_entity_screening_request_search_terms.py index 118e84fa2..379932eca 100644 --- a/plaid/model/update_entity_screening_request_search_terms.py +++ b/plaid/model/update_entity_screening_request_search_terms.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/update_individual_screening_request_search_terms.py b/plaid/model/update_individual_screening_request_search_terms.py index c99493541..6d32030af 100644 --- a/plaid/model/update_individual_screening_request_search_terms.py +++ b/plaid/model/update_individual_screening_request_search_terms.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_account_identity.py b/plaid/model/user_account_identity.py index 8b99c2ed3..f2adb98d5 100644 --- a/plaid/model/user_account_identity.py +++ b/plaid/model/user_account_identity.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_account_identity_address.py b/plaid/model/user_account_identity_address.py index 09806aaf8..127ba01e6 100644 --- a/plaid/model/user_account_identity_address.py +++ b/plaid/model/user_account_identity_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_account_identity_edit_counts.py b/plaid/model/user_account_identity_edit_counts.py index f8dc8c21f..2741457a9 100644 --- a/plaid/model/user_account_identity_edit_counts.py +++ b/plaid/model/user_account_identity_edit_counts.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_account_identity_edit_history.py b/plaid/model/user_account_identity_edit_history.py index 1b732ff5b..6e2ef6b78 100644 --- a/plaid/model/user_account_identity_edit_history.py +++ b/plaid/model/user_account_identity_edit_history.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_account_identity_name.py b/plaid/model/user_account_identity_name.py index a4214d444..b18570f8b 100644 --- a/plaid/model/user_account_identity_name.py +++ b/plaid/model/user_account_identity_name.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_account_identity_official_document.py b/plaid/model/user_account_identity_official_document.py index 64894a6e5..153ec6487 100644 --- a/plaid/model/user_account_identity_official_document.py +++ b/plaid/model/user_account_identity_official_document.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_account_item.py b/plaid/model/user_account_item.py index 219e86b54..ebcb9075c 100644 --- a/plaid/model/user_account_item.py +++ b/plaid/model/user_account_item.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_account_revoked_webhook.py b/plaid/model/user_account_revoked_webhook.py index f3840710d..e09395cf2 100644 --- a/plaid/model/user_account_revoked_webhook.py +++ b/plaid/model/user_account_revoked_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_account_session_event.py b/plaid/model/user_account_session_event.py index f2a57a962..fa20448ca 100644 --- a/plaid/model/user_account_session_event.py +++ b/plaid/model/user_account_session_event.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_account_session_event_send_request.py b/plaid/model/user_account_session_event_send_request.py index 0819f9376..ff96e0352 100644 --- a/plaid/model/user_account_session_event_send_request.py +++ b/plaid/model/user_account_session_event_send_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_account_session_event_send_response.py b/plaid/model/user_account_session_event_send_response.py index 91403494a..1d20e7348 100644 --- a/plaid/model/user_account_session_event_send_response.py +++ b/plaid/model/user_account_session_event_send_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_account_session_get_request.py b/plaid/model/user_account_session_get_request.py index 162a46e64..9bf51b3e8 100644 --- a/plaid/model/user_account_session_get_request.py +++ b/plaid/model/user_account_session_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_account_session_get_response.py b/plaid/model/user_account_session_get_response.py index d2b5a93c9..236c2fff1 100644 --- a/plaid/model/user_account_session_get_response.py +++ b/plaid/model/user_account_session_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_address.py b/plaid/model/user_address.py index 76e27699b..9af704903 100644 --- a/plaid/model/user_address.py +++ b/plaid/model/user_address.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_based_products.py b/plaid/model/user_based_products.py index ff3fd7fd3..3b172b6fa 100644 --- a/plaid/model/user_based_products.py +++ b/plaid/model/user_based_products.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_create_request.py b/plaid/model/user_create_request.py index da0f6af91..fb182a18c 100644 --- a/plaid/model/user_create_request.py +++ b/plaid/model/user_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_create_response.py b/plaid/model/user_create_response.py index bcdc7ea82..f4b60fdb2 100644 --- a/plaid/model/user_create_response.py +++ b/plaid/model/user_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_custom_password.py b/plaid/model/user_custom_password.py index fc843b4f2..ad42b06e1 100644 --- a/plaid/model/user_custom_password.py +++ b/plaid/model/user_custom_password.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_data_overview.py b/plaid/model/user_data_overview.py index 0e342f1f0..52e1fddee 100644 --- a/plaid/model/user_data_overview.py +++ b/plaid/model/user_data_overview.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_financial_data_refresh_request.py b/plaid/model/user_financial_data_refresh_request.py index 3d149d064..21a32b53f 100644 --- a/plaid/model/user_financial_data_refresh_request.py +++ b/plaid/model/user_financial_data_refresh_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_financial_data_refresh_response.py b/plaid/model/user_financial_data_refresh_response.py index 5fbddd5d4..2212cadd7 100644 --- a/plaid/model/user_financial_data_refresh_response.py +++ b/plaid/model/user_financial_data_refresh_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_get_request.py b/plaid/model/user_get_request.py index a72d0a1fa..efeaea9b5 100644 --- a/plaid/model/user_get_request.py +++ b/plaid/model/user_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_get_response.py b/plaid/model/user_get_response.py index 90283aa57..0f91cdecf 100644 --- a/plaid/model/user_get_response.py +++ b/plaid/model/user_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_id_number.py b/plaid/model/user_id_number.py index 0f7ca3728..edaf940c8 100644 --- a/plaid/model/user_id_number.py +++ b/plaid/model/user_id_number.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_identity_remove_request.py b/plaid/model/user_identity_remove_request.py index 98ddfed2f..451d8da8e 100644 --- a/plaid/model/user_identity_remove_request.py +++ b/plaid/model/user_identity_remove_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_identity_remove_response.py b/plaid/model/user_identity_remove_response.py index 4374a102b..83a55bb73 100644 --- a/plaid/model/user_identity_remove_response.py +++ b/plaid/model/user_identity_remove_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_items_associate_request.py b/plaid/model/user_items_associate_request.py index ddde0509d..a3e005dbd 100644 --- a/plaid/model/user_items_associate_request.py +++ b/plaid/model/user_items_associate_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_items_associate_response.py b/plaid/model/user_items_associate_response.py index 78e35055b..57be5b41a 100644 --- a/plaid/model/user_items_associate_response.py +++ b/plaid/model/user_items_associate_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_items_get_request.py b/plaid/model/user_items_get_request.py index 623c5ee1a..9b6e3daec 100644 --- a/plaid/model/user_items_get_request.py +++ b/plaid/model/user_items_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_items_get_response.py b/plaid/model/user_items_get_response.py index 8babcf97d..f5fbf4199 100644 --- a/plaid/model/user_items_get_response.py +++ b/plaid/model/user_items_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_items_remove_request.py b/plaid/model/user_items_remove_request.py index de9521bfa..724ee6218 100644 --- a/plaid/model/user_items_remove_request.py +++ b/plaid/model/user_items_remove_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_items_remove_response.py b/plaid/model/user_items_remove_response.py index a4e58378b..b88601e42 100644 --- a/plaid/model/user_items_remove_response.py +++ b/plaid/model/user_items_remove_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_permission_revoked_webhook.py b/plaid/model/user_permission_revoked_webhook.py index d7ca33555..bb02460ae 100644 --- a/plaid/model/user_permission_revoked_webhook.py +++ b/plaid/model/user_permission_revoked_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_products_terminate_request.py b/plaid/model/user_products_terminate_request.py index 102899c74..b32dac353 100644 --- a/plaid/model/user_products_terminate_request.py +++ b/plaid/model/user_products_terminate_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_products_terminate_response.py b/plaid/model/user_products_terminate_response.py index 32d7e7329..8e842090b 100644 --- a/plaid/model/user_products_terminate_response.py +++ b/plaid/model/user_products_terminate_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_remove_request.py b/plaid/model/user_remove_request.py index a1c9af752..ff3193f59 100644 --- a/plaid/model/user_remove_request.py +++ b/plaid/model/user_remove_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_remove_response.py b/plaid/model/user_remove_response.py index bc81091a7..39bf6f70a 100644 --- a/plaid/model/user_remove_response.py +++ b/plaid/model/user_remove_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_stated_income_source_category.py b/plaid/model/user_stated_income_source_category.py index 5aa5fe6e0..a7facb58f 100644 --- a/plaid/model/user_stated_income_source_category.py +++ b/plaid/model/user_stated_income_source_category.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_stated_income_source_frequency.py b/plaid/model/user_stated_income_source_frequency.py index f07ba9070..6d3fcd995 100644 --- a/plaid/model/user_stated_income_source_frequency.py +++ b/plaid/model/user_stated_income_source_frequency.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_stated_income_source_pay_type.py b/plaid/model/user_stated_income_source_pay_type.py index 0522eded1..5b56906f6 100644 --- a/plaid/model/user_stated_income_source_pay_type.py +++ b/plaid/model/user_stated_income_source_pay_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_third_party_token_create_request.py b/plaid/model/user_third_party_token_create_request.py index 957a0a3d2..6e4ae896d 100644 --- a/plaid/model/user_third_party_token_create_request.py +++ b/plaid/model/user_third_party_token_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_third_party_token_create_response.py b/plaid/model/user_third_party_token_create_response.py index 73ccac859..c340080fc 100644 --- a/plaid/model/user_third_party_token_create_response.py +++ b/plaid/model/user_third_party_token_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_third_party_token_remove_request.py b/plaid/model/user_third_party_token_remove_request.py index f472721b4..c9461b8f6 100644 --- a/plaid/model/user_third_party_token_remove_request.py +++ b/plaid/model/user_third_party_token_remove_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_third_party_token_remove_response.py b/plaid/model/user_third_party_token_remove_response.py index fa864edff..43da7fbe1 100644 --- a/plaid/model/user_third_party_token_remove_response.py +++ b/plaid/model/user_third_party_token_remove_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_transactions_refresh_request.py b/plaid/model/user_transactions_refresh_request.py index f0fc42440..eacad3369 100644 --- a/plaid/model/user_transactions_refresh_request.py +++ b/plaid/model/user_transactions_refresh_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_transactions_refresh_response.py b/plaid/model/user_transactions_refresh_response.py index 4686f441e..ed6804f94 100644 --- a/plaid/model/user_transactions_refresh_response.py +++ b/plaid/model/user_transactions_refresh_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_update_request.py b/plaid/model/user_update_request.py index 58115f430..df9299c4e 100644 --- a/plaid/model/user_update_request.py +++ b/plaid/model/user_update_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_update_response.py b/plaid/model/user_update_response.py index 013d94ff6..c3a98b903 100644 --- a/plaid/model/user_update_response.py +++ b/plaid/model/user_update_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/validation_source.py b/plaid/model/validation_source.py index acf8a4462..a600b71a0 100644 --- a/plaid/model/validation_source.py +++ b/plaid/model/validation_source.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/validation_sources.py b/plaid/model/validation_sources.py index dd428207f..0fdbb3745 100644 --- a/plaid/model/validation_sources.py +++ b/plaid/model/validation_sources.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/verification_expired_webhook.py b/plaid/model/verification_expired_webhook.py index 74af3256b..a0806b877 100644 --- a/plaid/model/verification_expired_webhook.py +++ b/plaid/model/verification_expired_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/verification_of_asset.py b/plaid/model/verification_of_asset.py index 864cf3235..5869ddedb 100644 --- a/plaid/model/verification_of_asset.py +++ b/plaid/model/verification_of_asset.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/verification_of_asset_response.py b/plaid/model/verification_of_asset_response.py index ad2158eed..a08a53491 100644 --- a/plaid/model/verification_of_asset_response.py +++ b/plaid/model/verification_of_asset_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/verification_refresh_status.py b/plaid/model/verification_refresh_status.py index 424c497bd..b443f5ace 100644 --- a/plaid/model/verification_refresh_status.py +++ b/plaid/model/verification_refresh_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/verification_status.py b/plaid/model/verification_status.py index 0979a41be..14f899343 100644 --- a/plaid/model/verification_status.py +++ b/plaid/model/verification_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/verify_sms_details.py b/plaid/model/verify_sms_details.py index d7904517a..29fadafd9 100644 --- a/plaid/model/verify_sms_details.py +++ b/plaid/model/verify_sms_details.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/verify_sms_details_status.py b/plaid/model/verify_sms_details_status.py index 518de1b4a..2fb72b002 100644 --- a/plaid/model/verify_sms_details_status.py +++ b/plaid/model/verify_sms_details_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/w2.py b/plaid/model/w2.py index 73729fbf3..2681c1777 100644 --- a/plaid/model/w2.py +++ b/plaid/model/w2.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/w2_box12.py b/plaid/model/w2_box12.py index 66eb2bf94..4f18a4192 100644 --- a/plaid/model/w2_box12.py +++ b/plaid/model/w2_box12.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/w2_box12_override.py b/plaid/model/w2_box12_override.py index 53cfa3a86..4e4e50bd5 100644 --- a/plaid/model/w2_box12_override.py +++ b/plaid/model/w2_box12_override.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/w2_override.py b/plaid/model/w2_override.py index bd3a4e034..dca09bc98 100644 --- a/plaid/model/w2_override.py +++ b/plaid/model/w2_override.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/w2_state_and_local_wages.py b/plaid/model/w2_state_and_local_wages.py index 87e229121..0e991f106 100644 --- a/plaid/model/w2_state_and_local_wages.py +++ b/plaid/model/w2_state_and_local_wages.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/w2_state_and_local_wages_override.py b/plaid/model/w2_state_and_local_wages_override.py index 736ce622a..276f9f0b3 100644 --- a/plaid/model/w2_state_and_local_wages_override.py +++ b/plaid/model/w2_state_and_local_wages_override.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet.py b/plaid/model/wallet.py index b0ddd1d9b..31d7525df 100644 --- a/plaid/model/wallet.py +++ b/plaid/model/wallet.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_balance.py b/plaid/model/wallet_balance.py index 29ee35727..e2fdd5898 100644 --- a/plaid/model/wallet_balance.py +++ b/plaid/model/wallet_balance.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_create_request.py b/plaid/model/wallet_create_request.py index 7769c3471..2b9841f9d 100644 --- a/plaid/model/wallet_create_request.py +++ b/plaid/model/wallet_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_create_response.py b/plaid/model/wallet_create_response.py index 5cec52963..ed0981752 100644 --- a/plaid/model/wallet_create_response.py +++ b/plaid/model/wallet_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_get_request.py b/plaid/model/wallet_get_request.py index 721d3fba4..2064eab1f 100644 --- a/plaid/model/wallet_get_request.py +++ b/plaid/model/wallet_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_get_response.py b/plaid/model/wallet_get_response.py index b09ea302b..be8ad323e 100644 --- a/plaid/model/wallet_get_response.py +++ b/plaid/model/wallet_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_iso_currency_code.py b/plaid/model/wallet_iso_currency_code.py index d34c68655..12f1dd2db 100644 --- a/plaid/model/wallet_iso_currency_code.py +++ b/plaid/model/wallet_iso_currency_code.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_list_request.py b/plaid/model/wallet_list_request.py index d6c6768e4..05ed3d650 100644 --- a/plaid/model/wallet_list_request.py +++ b/plaid/model/wallet_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_list_response.py b/plaid/model/wallet_list_response.py index 285423dbe..7efed2fc9 100644 --- a/plaid/model/wallet_list_response.py +++ b/plaid/model/wallet_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_numbers.py b/plaid/model/wallet_numbers.py index d5ca68e2c..f5e9d2254 100644 --- a/plaid/model/wallet_numbers.py +++ b/plaid/model/wallet_numbers.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_payment_scheme.py b/plaid/model/wallet_payment_scheme.py index 985f04532..1a6042065 100644 --- a/plaid/model/wallet_payment_scheme.py +++ b/plaid/model/wallet_payment_scheme.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_status.py b/plaid/model/wallet_status.py index 74ec0caaf..8f7364d0a 100644 --- a/plaid/model/wallet_status.py +++ b/plaid/model/wallet_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction.py b/plaid/model/wallet_transaction.py index 16e94ce77..69ee0f131 100644 --- a/plaid/model/wallet_transaction.py +++ b/plaid/model/wallet_transaction.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_amount.py b/plaid/model/wallet_transaction_amount.py index 32c036be0..7d9f7dbce 100644 --- a/plaid/model/wallet_transaction_amount.py +++ b/plaid/model/wallet_transaction_amount.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_counterparty.py b/plaid/model/wallet_transaction_counterparty.py index 1b6a3daee..5e5cdd958 100644 --- a/plaid/model/wallet_transaction_counterparty.py +++ b/plaid/model/wallet_transaction_counterparty.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_counterparty_bacs.py b/plaid/model/wallet_transaction_counterparty_bacs.py index 9dcf42793..ef40560e5 100644 --- a/plaid/model/wallet_transaction_counterparty_bacs.py +++ b/plaid/model/wallet_transaction_counterparty_bacs.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_counterparty_international.py b/plaid/model/wallet_transaction_counterparty_international.py index c66f3b3f5..4b5cbef70 100644 --- a/plaid/model/wallet_transaction_counterparty_international.py +++ b/plaid/model/wallet_transaction_counterparty_international.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_counterparty_numbers.py b/plaid/model/wallet_transaction_counterparty_numbers.py index ea8992d9a..edfaeef91 100644 --- a/plaid/model/wallet_transaction_counterparty_numbers.py +++ b/plaid/model/wallet_transaction_counterparty_numbers.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_execute_request.py b/plaid/model/wallet_transaction_execute_request.py index 7b40aaf4f..a794dac44 100644 --- a/plaid/model/wallet_transaction_execute_request.py +++ b/plaid/model/wallet_transaction_execute_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_execute_response.py b/plaid/model/wallet_transaction_execute_response.py index 27b54567d..1c9d860be 100644 --- a/plaid/model/wallet_transaction_execute_response.py +++ b/plaid/model/wallet_transaction_execute_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_failure_reason.py b/plaid/model/wallet_transaction_failure_reason.py index b854c1577..2ffdb8490 100644 --- a/plaid/model/wallet_transaction_failure_reason.py +++ b/plaid/model/wallet_transaction_failure_reason.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_get_request.py b/plaid/model/wallet_transaction_get_request.py index de4459e06..0e4f8c437 100644 --- a/plaid/model/wallet_transaction_get_request.py +++ b/plaid/model/wallet_transaction_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_get_response.py b/plaid/model/wallet_transaction_get_response.py index 1ab66756c..b51380c96 100644 --- a/plaid/model/wallet_transaction_get_response.py +++ b/plaid/model/wallet_transaction_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_idempotency_key.py b/plaid/model/wallet_transaction_idempotency_key.py index fced446df..209231b56 100644 --- a/plaid/model/wallet_transaction_idempotency_key.py +++ b/plaid/model/wallet_transaction_idempotency_key.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_list_request.py b/plaid/model/wallet_transaction_list_request.py index 409692023..aa1199ee7 100644 --- a/plaid/model/wallet_transaction_list_request.py +++ b/plaid/model/wallet_transaction_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_list_request_options.py b/plaid/model/wallet_transaction_list_request_options.py index cfd7700de..ec50ce918 100644 --- a/plaid/model/wallet_transaction_list_request_options.py +++ b/plaid/model/wallet_transaction_list_request_options.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_list_response.py b/plaid/model/wallet_transaction_list_response.py index 626130ee8..093e7fd2c 100644 --- a/plaid/model/wallet_transaction_list_response.py +++ b/plaid/model/wallet_transaction_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_payee_verification_status.py b/plaid/model/wallet_transaction_payee_verification_status.py index 3852e2dc5..b23924814 100644 --- a/plaid/model/wallet_transaction_payee_verification_status.py +++ b/plaid/model/wallet_transaction_payee_verification_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_relation.py b/plaid/model/wallet_transaction_relation.py index 4277e9d0d..82dfa470f 100644 --- a/plaid/model/wallet_transaction_relation.py +++ b/plaid/model/wallet_transaction_relation.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_status.py b/plaid/model/wallet_transaction_status.py index 9acd9577a..d64c2249a 100644 --- a/plaid/model/wallet_transaction_status.py +++ b/plaid/model/wallet_transaction_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_status_update_webhook.py b/plaid/model/wallet_transaction_status_update_webhook.py index 03d561741..fc520ad9d 100644 --- a/plaid/model/wallet_transaction_status_update_webhook.py +++ b/plaid/model/wallet_transaction_status_update_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transactions_list_request.py b/plaid/model/wallet_transactions_list_request.py index 5cfb7fc48..371dd1c5a 100644 --- a/plaid/model/wallet_transactions_list_request.py +++ b/plaid/model/wallet_transactions_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/warning.py b/plaid/model/warning.py index bb9787b98..9c7c7fff1 100644 --- a/plaid/model/warning.py +++ b/plaid/model/warning.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_audit_trail.py b/plaid/model/watchlist_screening_audit_trail.py index 3c86e834c..ae5c01b07 100644 --- a/plaid/model/watchlist_screening_audit_trail.py +++ b/plaid/model/watchlist_screening_audit_trail.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_document.py b/plaid/model/watchlist_screening_document.py index 46ce4083d..b618660f7 100644 --- a/plaid/model/watchlist_screening_document.py +++ b/plaid/model/watchlist_screening_document.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_document_type.py b/plaid/model/watchlist_screening_document_type.py index 8c4581d65..b619b5b68 100644 --- a/plaid/model/watchlist_screening_document_type.py +++ b/plaid/model/watchlist_screening_document_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_create_request.py b/plaid/model/watchlist_screening_entity_create_request.py index 2ce4cab1c..895b8b798 100644 --- a/plaid/model/watchlist_screening_entity_create_request.py +++ b/plaid/model/watchlist_screening_entity_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_create_response.py b/plaid/model/watchlist_screening_entity_create_response.py index cedd84deb..4ba9e289b 100644 --- a/plaid/model/watchlist_screening_entity_create_response.py +++ b/plaid/model/watchlist_screening_entity_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_get_request.py b/plaid/model/watchlist_screening_entity_get_request.py index 91527c704..0d9228add 100644 --- a/plaid/model/watchlist_screening_entity_get_request.py +++ b/plaid/model/watchlist_screening_entity_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_get_response.py b/plaid/model/watchlist_screening_entity_get_response.py index d54157f42..16d7f30c5 100644 --- a/plaid/model/watchlist_screening_entity_get_response.py +++ b/plaid/model/watchlist_screening_entity_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_history_list_request.py b/plaid/model/watchlist_screening_entity_history_list_request.py index f46547d51..90b515656 100644 --- a/plaid/model/watchlist_screening_entity_history_list_request.py +++ b/plaid/model/watchlist_screening_entity_history_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_history_list_response.py b/plaid/model/watchlist_screening_entity_history_list_response.py index dd6694d56..3f5c7526d 100644 --- a/plaid/model/watchlist_screening_entity_history_list_response.py +++ b/plaid/model/watchlist_screening_entity_history_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_hit_list_request.py b/plaid/model/watchlist_screening_entity_hit_list_request.py index ad2645ad3..d6cefba6c 100644 --- a/plaid/model/watchlist_screening_entity_hit_list_request.py +++ b/plaid/model/watchlist_screening_entity_hit_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_hit_list_response.py b/plaid/model/watchlist_screening_entity_hit_list_response.py index e7fdc3a5b..7c1696ca7 100644 --- a/plaid/model/watchlist_screening_entity_hit_list_response.py +++ b/plaid/model/watchlist_screening_entity_hit_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_list_request.py b/plaid/model/watchlist_screening_entity_list_request.py index a5a3cca72..29177ec81 100644 --- a/plaid/model/watchlist_screening_entity_list_request.py +++ b/plaid/model/watchlist_screening_entity_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_list_response.py b/plaid/model/watchlist_screening_entity_list_response.py index a31dab95e..f81d6794f 100644 --- a/plaid/model/watchlist_screening_entity_list_response.py +++ b/plaid/model/watchlist_screening_entity_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_program_get_request.py b/plaid/model/watchlist_screening_entity_program_get_request.py index dbd46fe80..ffefb5528 100644 --- a/plaid/model/watchlist_screening_entity_program_get_request.py +++ b/plaid/model/watchlist_screening_entity_program_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_program_get_response.py b/plaid/model/watchlist_screening_entity_program_get_response.py index 39c40839b..dbb081d5a 100644 --- a/plaid/model/watchlist_screening_entity_program_get_response.py +++ b/plaid/model/watchlist_screening_entity_program_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_program_list_request.py b/plaid/model/watchlist_screening_entity_program_list_request.py index f12e78558..f7ad09efb 100644 --- a/plaid/model/watchlist_screening_entity_program_list_request.py +++ b/plaid/model/watchlist_screening_entity_program_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_program_list_response.py b/plaid/model/watchlist_screening_entity_program_list_response.py index 8b42b6b48..e9ab6cc91 100644 --- a/plaid/model/watchlist_screening_entity_program_list_response.py +++ b/plaid/model/watchlist_screening_entity_program_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_review_create_request.py b/plaid/model/watchlist_screening_entity_review_create_request.py index fc5ac10d7..9fbe3f9a8 100644 --- a/plaid/model/watchlist_screening_entity_review_create_request.py +++ b/plaid/model/watchlist_screening_entity_review_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_review_create_response.py b/plaid/model/watchlist_screening_entity_review_create_response.py index b3ec245d2..5dd0862aa 100644 --- a/plaid/model/watchlist_screening_entity_review_create_response.py +++ b/plaid/model/watchlist_screening_entity_review_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_review_list_request.py b/plaid/model/watchlist_screening_entity_review_list_request.py index a8f4afaca..1c3796243 100644 --- a/plaid/model/watchlist_screening_entity_review_list_request.py +++ b/plaid/model/watchlist_screening_entity_review_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_review_list_response.py b/plaid/model/watchlist_screening_entity_review_list_response.py index 4c195d323..45ec4f909 100644 --- a/plaid/model/watchlist_screening_entity_review_list_response.py +++ b/plaid/model/watchlist_screening_entity_review_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_update_request.py b/plaid/model/watchlist_screening_entity_update_request.py index 05a297c4d..0f143376e 100644 --- a/plaid/model/watchlist_screening_entity_update_request.py +++ b/plaid/model/watchlist_screening_entity_update_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_update_request_resettable_field.py b/plaid/model/watchlist_screening_entity_update_request_resettable_field.py index 3d8bc99b1..74ceabda7 100644 --- a/plaid/model/watchlist_screening_entity_update_request_resettable_field.py +++ b/plaid/model/watchlist_screening_entity_update_request_resettable_field.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_update_request_resettable_field_list.py b/plaid/model/watchlist_screening_entity_update_request_resettable_field_list.py index facc6fc05..357323df5 100644 --- a/plaid/model/watchlist_screening_entity_update_request_resettable_field_list.py +++ b/plaid/model/watchlist_screening_entity_update_request_resettable_field_list.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_entity_update_response.py b/plaid/model/watchlist_screening_entity_update_response.py index 172197c5c..70ee05fd6 100644 --- a/plaid/model/watchlist_screening_entity_update_response.py +++ b/plaid/model/watchlist_screening_entity_update_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_hit.py b/plaid/model/watchlist_screening_hit.py index 59b913ac1..08293a392 100644 --- a/plaid/model/watchlist_screening_hit.py +++ b/plaid/model/watchlist_screening_hit.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_hit_locations.py b/plaid/model/watchlist_screening_hit_locations.py index 8dc75d5b7..30fe5b79f 100644 --- a/plaid/model/watchlist_screening_hit_locations.py +++ b/plaid/model/watchlist_screening_hit_locations.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_hit_status.py b/plaid/model/watchlist_screening_hit_status.py index f00b7566f..e9ad9ba3d 100644 --- a/plaid/model/watchlist_screening_hit_status.py +++ b/plaid/model/watchlist_screening_hit_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual.py b/plaid/model/watchlist_screening_individual.py index 945ae8b11..a6662a0ca 100644 --- a/plaid/model/watchlist_screening_individual.py +++ b/plaid/model/watchlist_screening_individual.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_create_request.py b/plaid/model/watchlist_screening_individual_create_request.py index f9eed7e5f..717b95c33 100644 --- a/plaid/model/watchlist_screening_individual_create_request.py +++ b/plaid/model/watchlist_screening_individual_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_create_response.py b/plaid/model/watchlist_screening_individual_create_response.py index eade3b61c..8c8b33072 100644 --- a/plaid/model/watchlist_screening_individual_create_response.py +++ b/plaid/model/watchlist_screening_individual_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_get_request.py b/plaid/model/watchlist_screening_individual_get_request.py index 915d779f2..dc3ee57bd 100644 --- a/plaid/model/watchlist_screening_individual_get_request.py +++ b/plaid/model/watchlist_screening_individual_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_get_response.py b/plaid/model/watchlist_screening_individual_get_response.py index 8c6820889..1d038b501 100644 --- a/plaid/model/watchlist_screening_individual_get_response.py +++ b/plaid/model/watchlist_screening_individual_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_history_list_request.py b/plaid/model/watchlist_screening_individual_history_list_request.py index 9ba924a77..828586fd8 100644 --- a/plaid/model/watchlist_screening_individual_history_list_request.py +++ b/plaid/model/watchlist_screening_individual_history_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_history_list_response.py b/plaid/model/watchlist_screening_individual_history_list_response.py index 5e7986fb8..2f2f1ba70 100644 --- a/plaid/model/watchlist_screening_individual_history_list_response.py +++ b/plaid/model/watchlist_screening_individual_history_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_hit_list_request.py b/plaid/model/watchlist_screening_individual_hit_list_request.py index 864b11220..18547380f 100644 --- a/plaid/model/watchlist_screening_individual_hit_list_request.py +++ b/plaid/model/watchlist_screening_individual_hit_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_hit_list_response.py b/plaid/model/watchlist_screening_individual_hit_list_response.py index 021738390..a3e9203fe 100644 --- a/plaid/model/watchlist_screening_individual_hit_list_response.py +++ b/plaid/model/watchlist_screening_individual_hit_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_list_request.py b/plaid/model/watchlist_screening_individual_list_request.py index 90eed714d..cdac715e0 100644 --- a/plaid/model/watchlist_screening_individual_list_request.py +++ b/plaid/model/watchlist_screening_individual_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_list_response.py b/plaid/model/watchlist_screening_individual_list_response.py index 18a07d1ae..18fe4d925 100644 --- a/plaid/model/watchlist_screening_individual_list_response.py +++ b/plaid/model/watchlist_screening_individual_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_program_get_request.py b/plaid/model/watchlist_screening_individual_program_get_request.py index 2aa2051c1..5ec286d76 100644 --- a/plaid/model/watchlist_screening_individual_program_get_request.py +++ b/plaid/model/watchlist_screening_individual_program_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_program_get_response.py b/plaid/model/watchlist_screening_individual_program_get_response.py index 22383bb06..6d1b39ff7 100644 --- a/plaid/model/watchlist_screening_individual_program_get_response.py +++ b/plaid/model/watchlist_screening_individual_program_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_program_list_request.py b/plaid/model/watchlist_screening_individual_program_list_request.py index 5d672edc4..5d7106040 100644 --- a/plaid/model/watchlist_screening_individual_program_list_request.py +++ b/plaid/model/watchlist_screening_individual_program_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_program_list_response.py b/plaid/model/watchlist_screening_individual_program_list_response.py index 6d52f0e20..39d28c6f1 100644 --- a/plaid/model/watchlist_screening_individual_program_list_response.py +++ b/plaid/model/watchlist_screening_individual_program_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_review_create_request.py b/plaid/model/watchlist_screening_individual_review_create_request.py index 9ef3b1a30..278440f7c 100644 --- a/plaid/model/watchlist_screening_individual_review_create_request.py +++ b/plaid/model/watchlist_screening_individual_review_create_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_review_create_response.py b/plaid/model/watchlist_screening_individual_review_create_response.py index 6229ff88a..ee92474d2 100644 --- a/plaid/model/watchlist_screening_individual_review_create_response.py +++ b/plaid/model/watchlist_screening_individual_review_create_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_review_list_request.py b/plaid/model/watchlist_screening_individual_review_list_request.py index 4ab268a86..d1c944c15 100644 --- a/plaid/model/watchlist_screening_individual_review_list_request.py +++ b/plaid/model/watchlist_screening_individual_review_list_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_review_list_response.py b/plaid/model/watchlist_screening_individual_review_list_response.py index 4858dba5f..861bd3f07 100644 --- a/plaid/model/watchlist_screening_individual_review_list_response.py +++ b/plaid/model/watchlist_screening_individual_review_list_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_update_request.py b/plaid/model/watchlist_screening_individual_update_request.py index c0f02767d..9829c1cff 100644 --- a/plaid/model/watchlist_screening_individual_update_request.py +++ b/plaid/model/watchlist_screening_individual_update_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_update_request_resettable_field.py b/plaid/model/watchlist_screening_individual_update_request_resettable_field.py index 44097f482..d8b2b68d6 100644 --- a/plaid/model/watchlist_screening_individual_update_request_resettable_field.py +++ b/plaid/model/watchlist_screening_individual_update_request_resettable_field.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_update_request_resettable_field_list.py b/plaid/model/watchlist_screening_individual_update_request_resettable_field_list.py index a07f29ec4..5d7659e6e 100644 --- a/plaid/model/watchlist_screening_individual_update_request_resettable_field_list.py +++ b/plaid/model/watchlist_screening_individual_update_request_resettable_field_list.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_update_response.py b/plaid/model/watchlist_screening_individual_update_response.py index 33903e986..3a23331f3 100644 --- a/plaid/model/watchlist_screening_individual_update_response.py +++ b/plaid/model/watchlist_screening_individual_update_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_request_search_terms.py b/plaid/model/watchlist_screening_request_search_terms.py index 19c370dad..11099acbf 100644 --- a/plaid/model/watchlist_screening_request_search_terms.py +++ b/plaid/model/watchlist_screening_request_search_terms.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_review.py b/plaid/model/watchlist_screening_review.py index 9c32da758..7be12d3a8 100644 --- a/plaid/model/watchlist_screening_review.py +++ b/plaid/model/watchlist_screening_review.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_search_terms.py b/plaid/model/watchlist_screening_search_terms.py index 2b7493a1c..f0bbe01a9 100644 --- a/plaid/model/watchlist_screening_search_terms.py +++ b/plaid/model/watchlist_screening_search_terms.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_status.py b/plaid/model/watchlist_screening_status.py index 63f8fe7d3..7776eb0b4 100644 --- a/plaid/model/watchlist_screening_status.py +++ b/plaid/model/watchlist_screening_status.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/weak_alias_determination.py b/plaid/model/weak_alias_determination.py index 798e7ecd1..08f66a145 100644 --- a/plaid/model/weak_alias_determination.py +++ b/plaid/model/weak_alias_determination.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/webhook_environment_values.py b/plaid/model/webhook_environment_values.py index eab7f2337..c551d6c6b 100644 --- a/plaid/model/webhook_environment_values.py +++ b/plaid/model/webhook_environment_values.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/webhook_type.py b/plaid/model/webhook_type.py index b173aee9e..aab93c1d2 100644 --- a/plaid/model/webhook_type.py +++ b/plaid/model/webhook_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/webhook_update_acknowledged_webhook.py b/plaid/model/webhook_update_acknowledged_webhook.py index 9c1259956..dfa61af13 100644 --- a/plaid/model/webhook_update_acknowledged_webhook.py +++ b/plaid/model/webhook_update_acknowledged_webhook.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/webhook_verification_key_get_request.py b/plaid/model/webhook_verification_key_get_request.py index c50d37713..e8ce2eff3 100644 --- a/plaid/model/webhook_verification_key_get_request.py +++ b/plaid/model/webhook_verification_key_get_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/webhook_verification_key_get_response.py b/plaid/model/webhook_verification_key_get_response.py index 6c59ee1f3..b3fe99ee8 100644 --- a/plaid/model/webhook_verification_key_get_response.py +++ b/plaid/model/webhook_verification_key_get_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/yield_rate.py b/plaid/model/yield_rate.py index a6b0ac864..8f57d58a9 100644 --- a/plaid/model/yield_rate.py +++ b/plaid/model/yield_rate.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/yield_rate_type.py b/plaid/model/yield_rate_type.py index 23a5860bb..0320987c0 100644 --- a/plaid/model/yield_rate_type.py +++ b/plaid/model/yield_rate_type.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/ytd_gross_income_summary_field_number.py b/plaid/model/ytd_gross_income_summary_field_number.py index 1254be9bf..c8ac7f483 100644 --- a/plaid/model/ytd_gross_income_summary_field_number.py +++ b/plaid/model/ytd_gross_income_summary_field_number.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/ytd_net_income_summary_field_number.py b/plaid/model/ytd_net_income_summary_field_number.py index 97861664d..bc76d9ee6 100644 --- a/plaid/model/ytd_net_income_summary_field_number.py +++ b/plaid/model/ytd_net_income_summary_field_number.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model_utils.py b/plaid/model_utils.py index 034e270e8..0b6f7db0a 100644 --- a/plaid/model_utils.py +++ b/plaid/model_utils.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/plaid/rest.py b/plaid/rest.py index af839087f..eb4db1ad5 100644 --- a/plaid/rest.py +++ b/plaid/rest.py @@ -5,7 +5,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.706.1 + The version of the OpenAPI document: 2020-09-14_1.708.0 Generated by: https://openapi-generator.tech """ diff --git a/setup.py b/setup.py index 96b44c779..44ed8e731 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -VERSION = '41.0.0' +VERSION = '42.0.0' url = 'https://github.com/plaid/plaid-python' REQUIRES = [