diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index 4e7006e31..26db23f2f 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -242,6 +242,7 @@ plaid/model/client_user_id.py plaid/model/client_user_id_nullable.py plaid/model/connected_application.py plaid/model/consent_payment_idempotency_key.py +plaid/model/consumer_report_pdf_get_request.py plaid/model/consumer_report_permissible_purpose.py plaid/model/consumer_report_user_identity.py plaid/model/counterparty.py @@ -741,10 +742,16 @@ plaid/model/link_o_auth_correlation_id_exchange_response.py plaid/model/link_profile_eligibility_check_request.py plaid/model/link_profile_eligibility_check_response.py plaid/model/link_profile_eligibility_check_user.py +plaid/model/link_session_bank_employment_result.py +plaid/model/link_session_bank_income_result.py +plaid/model/link_session_cra_item_add_result.py plaid/model/link_session_exit.py plaid/model/link_session_exit_metadata.py plaid/model/link_session_exit_metadata_institution.py plaid/model/link_session_finished_webhook.py +plaid/model/link_session_item_add_result.py +plaid/model/link_session_payroll_income_result.py +plaid/model/link_session_results.py plaid/model/link_session_success.py plaid/model/link_session_success_metadata.py plaid/model/link_session_success_metadata_account.py @@ -1280,6 +1287,8 @@ plaid/model/transactions_user_insights_get_response.py plaid/model/transfer.py plaid/model/transfer_ach_network.py plaid/model/transfer_authorization.py +plaid/model/transfer_authorization_cancel_request.py +plaid/model/transfer_authorization_cancel_response.py plaid/model/transfer_authorization_create_request.py plaid/model/transfer_authorization_create_response.py plaid/model/transfer_authorization_decision.py diff --git a/CHANGELOG.md b/CHANGELOG.md index de4956a23..8913aa28a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,50 @@ See full changelog for the OpenAPI Schema (OAS) [here](https://github.com/plaid/plaid-openapi/blob/master/CHANGELOG.md). +# 21.1.0 +- Updating to OAS 2020-09-14_1.514.1 + +## OpenAPI Schema Changes +### 2020-09-14_1.514.1 +- Update `risk_profile_key`and `RiskProfile` description + +### 2020-09-14_1.514.0 +- Added `transfer/authorization/cancel` endpoint + +### 2020-09-14_1.513.0 +- Added `consumer_report/pdf/get` endpoint + +### 2020-09-14_1.512.0 +- Added support for address and date of birth in `/payment_initiation/payment/reverse` request. + +### 2020-09-14_1.511.0 +- Added `user_token` to `link/token/get` response metadata +- Internal changes + +### 2020-09-14_1.510.2 +- Added `include_insights` to `/credit/relay/get` request +- +### 2020-09-14_1.510.1 +- Add `database_insights_pending` as a potential enum value to `LinkDeliveryVerificationStatus` and `LinkSessionSuccessMetadataAccount.VerificationStatus`. +- Remove `database_insights_pass`, `database_insights_pass_with_caution` and `database_insights_fail` as potential values from `LinkDeliveryVerificationStatus` and `LinkSessionSuccessMetadataAccount.VerificationStatus` + +### 2020-09-14_1.510.0 +- Internal changes only + +### 2020-09-14_1.509.4 +- Internal changes only + +### 2020-09-14_1.509.3 +- Update description of transfer authorization decision code `MANUALLY_VERIFIED_ITEM` + +### 2020-09-14_1.509.2 +- Fixes to `RemovedTransaction` object definition: set `additionalProperties` explicitly to true and list `account_id` and `transaction_id` as `required`. + +### 2020-09-14_1.509.1 +- add `SMS_MICRODEPOSITS_VERIFICATION` to the `webhook_code` field of `/sandbox/item/fire_webhook` + +### 2020-09-14_1.509.0 +- Add `supports_payment_consents` to institution's `payment_initiation_metadata`. + # 21.0.0 - Updating to OAS 2020-09-14_1.508.0 diff --git a/plaid/__init__.py b/plaid/__init__.py index 37cce5bdf..1dd7e28f8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ -__version__ = "21.0.0" +__version__ = "21.1.0" # import ApiClient from plaid.api_client import ApiClient diff --git a/plaid/api/plaid_api.py b/plaid/api/plaid_api.py index 9de04d6f7..8cb3da052 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -94,6 +94,7 @@ from plaid.model.beacon_user_update_request import BeaconUserUpdateRequest from plaid.model.beacon_user_update_response import BeaconUserUpdateResponse from plaid.model.categories_get_response import CategoriesGetResponse +from plaid.model.consumer_report_pdf_get_request import ConsumerReportPDFGetRequest from plaid.model.cra_bank_income_create_request import CraBankIncomeCreateRequest from plaid.model.cra_bank_income_create_response import CraBankIncomeCreateResponse from plaid.model.cra_bank_income_get_request import CraBankIncomeGetRequest @@ -398,6 +399,8 @@ from plaid.model.transactions_sync_response import TransactionsSyncResponse from plaid.model.transactions_user_insights_get_request import TransactionsUserInsightsGetRequest from plaid.model.transactions_user_insights_get_response import TransactionsUserInsightsGetResponse +from plaid.model.transfer_authorization_cancel_request import TransferAuthorizationCancelRequest +from plaid.model.transfer_authorization_cancel_response import TransferAuthorizationCancelResponse from plaid.model.transfer_authorization_create_request import TransferAuthorizationCreateRequest from plaid.model.transfer_authorization_create_response import TransferAuthorizationCreateResponse from plaid.model.transfer_balance_get_request import TransferBalanceGetRequest @@ -2589,6 +2592,60 @@ def __init__(self, api_client=None): }, api_client=api_client ) + self.consumer_report_pdf_get_endpoint = _Endpoint( + settings={ + 'response_type': (file_type,), + 'auth': [ + 'clientId', + 'plaidVersion', + 'secret' + ], + 'endpoint_path': '/consumer_report/pdf/get', + 'operation_id': 'consumer_report_pdf_get', + 'http_method': 'POST', + 'servers': None, + }, + params_map={ + 'all': [ + 'consumer_report_pdf_get_request', + ], + 'required': [ + 'consumer_report_pdf_get_request', + ], + 'nullable': [ + ], + 'enum': [ + ], + 'validation': [ + ] + }, + root_map={ + 'validations': { + }, + 'allowed_values': { + }, + 'openapi_types': { + 'consumer_report_pdf_get_request': + (ConsumerReportPDFGetRequest,), + }, + 'attribute_map': { + }, + 'location_map': { + 'consumer_report_pdf_get_request': 'body', + }, + 'collection_format_map': { + } + }, + headers_map={ + 'accept': [ + 'application/pdf' + ], + 'content_type': [ + 'application/json' + ] + }, + api_client=api_client + ) self.cra_bank_income_create_endpoint = _Endpoint( settings={ 'response_type': (CraBankIncomeCreateResponse,), @@ -11013,6 +11070,60 @@ def __init__(self, api_client=None): }, api_client=api_client ) + self.transfer_authorization_cancel_endpoint = _Endpoint( + settings={ + 'response_type': (TransferAuthorizationCancelResponse,), + 'auth': [ + 'clientId', + 'plaidVersion', + 'secret' + ], + 'endpoint_path': '/transfer/authorization/cancel', + 'operation_id': 'transfer_authorization_cancel', + 'http_method': 'POST', + 'servers': None, + }, + params_map={ + 'all': [ + 'transfer_authorization_cancel_request', + ], + 'required': [ + 'transfer_authorization_cancel_request', + ], + 'nullable': [ + ], + 'enum': [ + ], + 'validation': [ + ] + }, + root_map={ + 'validations': { + }, + 'allowed_values': { + }, + 'openapi_types': { + 'transfer_authorization_cancel_request': + (TransferAuthorizationCancelRequest,), + }, + 'attribute_map': { + }, + 'location_map': { + 'transfer_authorization_cancel_request': 'body', + }, + 'collection_format_map': { + } + }, + headers_map={ + 'accept': [ + 'application/json' + ], + 'content_type': [ + 'application/json' + ] + }, + api_client=api_client + ) self.transfer_authorization_create_endpoint = _Endpoint( settings={ 'response_type': (TransferAuthorizationCreateResponse,), @@ -17679,6 +17790,89 @@ def categories_get( body return self.categories_get_endpoint.call_with_http_info(**kwargs) + def consumer_report_pdf_get( + self, + consumer_report_pdf_get_request, + **kwargs + ): + """Retrieve a PDF Reports # noqa: E501 + + Retrieves all existing CRB Bank Income and Base reports for the consumer in PDF format. Response is PDF binary data. The `request_id` is returned in the `Plaid-Request-ID` header. # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.consumer_report_pdf_get(consumer_report_pdf_get_request, async_req=True) + >>> result = thread.get() + + Args: + consumer_report_pdf_get_request (ConsumerReportPDFGetRequest): + + Keyword Args: + _return_http_data_only (bool): response data without head status + code and headers. Default is True. + _preload_content (bool): if False, the urllib3.HTTPResponse object + will be returned without reading/decoding response data. + Default is True. + _request_timeout (int/float/tuple): timeout setting for this request. If + one number provided, it will be total request timeout. It can also + be a pair (tuple) of (connection, read) timeouts. + Default is None. + _check_input_type (bool): specifies if type checking + should be done one the data sent to the server. + Default is True. + _check_return_type (bool): specifies if type checking + should be done one the data received from the server. + Default is True. + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _content_type (str/None): force body content-type. + Default is None and content-type will be predicted by allowed + content-types and body. + _host_index (int/None): specifies the index of the server + that we want to use. + Default is read from the configuration. + _request_auths (list): set to override the auth_settings for an a single + request; this effectively ignores the authentication + in the spec for a single request. + Default is None + async_req (bool): execute request asynchronously + + Returns: + file_type + If the method is called asynchronously, returns the request + thread. + """ + kwargs['async_req'] = kwargs.get( + 'async_req', False + ) + kwargs['_return_http_data_only'] = kwargs.get( + '_return_http_data_only', True + ) + kwargs['_preload_content'] = kwargs.get( + '_preload_content', True + ) + kwargs['_request_timeout'] = kwargs.get( + '_request_timeout', None + ) + kwargs['_check_input_type'] = kwargs.get( + '_check_input_type', True + ) + kwargs['_check_return_type'] = kwargs.get( + '_check_return_type', True + ) + kwargs['_spec_property_naming'] = kwargs.get( + '_spec_property_naming', False + ) + kwargs['_content_type'] = kwargs.get( + '_content_type') + kwargs['_host_index'] = kwargs.get('_host_index') + kwargs['_request_auths'] = kwargs.get('_request_auths', None) + kwargs['consumer_report_pdf_get_request'] = \ + consumer_report_pdf_get_request + return self.consumer_report_pdf_get_endpoint.call_with_http_info(**kwargs) + def cra_bank_income_create( self, cra_bank_income_create_request, @@ -19344,7 +19538,7 @@ def credit_relay_create( credit_relay_create_request, **kwargs ): - """Create a relay token to share an Asset Report with a partner client (beta) # noqa: E501 + """Create a relay token to share an Asset Report with a partner client # noqa: E501 Plaid can share an Asset Report directly with a participating third party on your behalf. The shared Asset Report is the exact same Asset Report originally created in `/asset_report/create`. To grant a third party access to an Asset Report, use the `/credit/relay/create` endpoint to create a `relay_token` and then pass that token to your third party. Each third party has its own `secondary_client_id`; for example, `ce5bd328dcd34123456`. You'll need to create a separate `relay_token` for each third party that needs access to the report on your behalf. # noqa: E501 This method makes a synchronous HTTP request by default. To make an @@ -19427,7 +19621,7 @@ def credit_relay_get( credit_relay_get_request, **kwargs ): - """Retrieve the reports associated with a relay token that was shared with you (beta) # noqa: E501 + """Retrieve the reports associated with a relay token that was shared with you # noqa: E501 `/credit/relay/get` allows third parties to receive a report that was shared with them, using a `relay_token` that was created by the report owner. # noqa: E501 This method makes a synchronous HTTP request by default. To make an @@ -19593,7 +19787,7 @@ def credit_relay_refresh( credit_relay_refresh_request, **kwargs ): - """Refresh a report of a relay token (beta) # noqa: E501 + """Refresh a report of a relay token # noqa: E501 The `/credit/relay/refresh` endpoint allows third parties to refresh a report that was relayed to them, using a `relay_token` that was created by the report owner. A new report will be created with the original report parameters, but with the most recent data available based on the `days_requested` value of the original report. # noqa: E501 This method makes a synchronous HTTP request by default. To make an @@ -19676,7 +19870,7 @@ def credit_relay_remove( credit_relay_remove_request, **kwargs ): - """Remove relay token (beta) # noqa: E501 + """Remove relay token # noqa: E501 The `/credit/relay/remove` endpoint allows you to invalidate a `relay_token`. The third party holding the token will no longer be able to access or refresh the reports which the `relay_token` gives access to. The original report, associated Items, and other relay tokens that provide access to the same report are not affected and will remain accessible after removing the given `relay_token`. # noqa: E501 This method makes a synchronous HTTP request by default. To make an @@ -24907,7 +25101,7 @@ def payment_initiation_payment_reverse( ): """Reverse an existing payment # noqa: E501 - Reverse a settled payment from a Plaid virtual account. The original payment must be in a settled state to be refunded. To refund partially, specify the amount as part of the request. If the amount is not specified, the refund amount will be equal to all of the remaining payment amount that has not been refunded yet. The refund will go back to the source account that initiated the payment. The original payment must have been initiated to a Plaid virtual account so that this account can be used to initiate the refund. # noqa: E501 + Reverse a settled payment from a Plaid virtual account. The original payment must be in a settled state to be refunded. To refund partially, specify the amount as part of the request. If the amount is not specified, the refund amount will be equal to all of the remaining payment amount that has not been refunded yet. The refund will go back to the source account that initiated the payment. The original payment must have been initiated to a Plaid virtual account so that this account can be used to initiate the refund. Providing counterparty information such as date of birth and address increases the likelihood of refund being successful without human intervention. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True @@ -27646,7 +27840,7 @@ def sandbox_item_fire_webhook( ): """Fire a test webhook # noqa: E501 - The `/sandbox/item/fire_webhook` endpoint is used to test that code correctly handles webhooks. This endpoint can trigger the following webhooks: `DEFAULT_UPDATE`: Transactions update webhook to be fired for a given Sandbox Item. If the Item does not support Transactions, a `SANDBOX_PRODUCT_NOT_ENABLED` error will result. `NEW_ACCOUNTS_AVAILABLE`: Webhook to be fired for a given Sandbox Item created with Account Select v2. `AUTH_DATA_UPDATE`: Webhook to be fired for a given Sandbox Item created with Auth as an enabled product. `LOGIN_REPAIRED`: Fired when an Item recovers from the `ITEM_LOGIN_REQUIRED` without the user going through update mode in your app. `RECURRING_TRANSACTIONS_UPDATE`: Recurring Transactions webhook to be fired for a given Sandbox Item. If the Item does not support Recurring Transactions, a `SANDBOX_PRODUCT_NOT_ENABLED` error will result. `SYNC_UPDATES_AVAILABLE`: Transactions webhook to be fired for a given Sandbox Item. If the Item does not support Transactions, a `SANDBOX_PRODUCT_NOT_ENABLED` error will result. `PRODUCT_READY`: Assets webhook to be fired when a given asset report has been successfully generated. If the Item does not support Assets, a `SANDBOX_PRODUCT_NOT_ENABLED` error will result. `ERROR`: Assets webhook to be fired when asset report generation has failed. If the Item does not support Assets, a `SANDBOX_PRODUCT_NOT_ENABLED` error will result. Note that this endpoint is provided for developer ease-of-use and is not required for testing webhooks; webhooks will also fire in Sandbox under the same conditions that they would in Production or Development (except for webhooks of type `TRANSFER`). # noqa: E501 + The `/sandbox/item/fire_webhook` endpoint is used to test that code correctly handles webhooks. This endpoint can trigger the following webhooks: `DEFAULT_UPDATE`: Transactions update webhook to be fired for a given Sandbox Item. If the Item does not support Transactions, a `SANDBOX_PRODUCT_NOT_ENABLED` error will result. `NEW_ACCOUNTS_AVAILABLE`: Webhook to be fired for a given Sandbox Item created with Account Select v2. `AUTH_DATA_UPDATE`: Webhook to be fired for a given Sandbox Item created with Auth as an enabled product. `SMS_MICRODEPOSITS_VERIFICATION`: Fired when a given same day micro-deposit item is verified via SMS verification. `LOGIN_REPAIRED`: Fired when an Item recovers from the `ITEM_LOGIN_REQUIRED` without the user going through update mode in your app. `RECURRING_TRANSACTIONS_UPDATE`: Recurring Transactions webhook to be fired for a given Sandbox Item. If the Item does not support Recurring Transactions, a `SANDBOX_PRODUCT_NOT_ENABLED` error will result. `SYNC_UPDATES_AVAILABLE`: Transactions webhook to be fired for a given Sandbox Item. If the Item does not support Transactions, a `SANDBOX_PRODUCT_NOT_ENABLED` error will result. `PRODUCT_READY`: Assets webhook to be fired when a given asset report has been successfully generated. If the Item does not support Assets, a `SANDBOX_PRODUCT_NOT_ENABLED` error will result. `ERROR`: Assets webhook to be fired when asset report generation has failed. If the Item does not support Assets, a `SANDBOX_PRODUCT_NOT_ENABLED` error will result. Note that this endpoint is provided for developer ease-of-use and is not required for testing webhooks; webhooks will also fire in Sandbox under the same conditions that they would in Production or Development (except for webhooks of type `TRANSFER`). # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True @@ -30136,7 +30330,7 @@ def transactions_refresh( ): """Refresh transaction data # noqa: E501 - `/transactions/refresh` is an optional endpoint that initiates an on-demand extraction to fetch the newest transactions for an Item. The on-demand extraction takes place in addition to the periodic extractions that automatically occur one or more times per day for any Transactions-enabled Item. The Item must already have Transactions added as a product in order to call `/transactions/refresh`. If changes to transactions are discovered after calling `/transactions/refresh`, Plaid will fire a webhook: for `/transactions/sync` users, [`SYNC_UPDATES_AVAILABLE`](https://plaid.com/docs/api/products/transactions/#sync_updates_available) will be fired if there are any transactions updated, added, or removed. For users of both `/transactions/sync` and `/transactions/get`, [`TRANSACTIONS_REMOVED`](https://plaid.com/docs/api/products/transactions/#transactions_removed) will be fired if any removed transactions are detected, and [`DEFAULT_UPDATE`](https://plaid.com/docs/api/products/transactions/#default_update) will be fired if any new transactions are detected. New transactions can be fetched by calling `/transactions/get` or `/transactions/sync`. Note that the `/transactions/refresh` endpoint is not supported for Capital One (`ins_128026`) and will result in a `PRODUCTS_NOT_SUPPORTED` error if called on an Item from that institution. As this endpoint triggers a synchronous request for fresh data, latency may be higher than for other Plaid endpoints (typically less than 10 seconds, but occasionally up to 30 seconds or more); if you encounter errors, you may find it necessary to adjust your timeout period when making requests. `/transactions/refresh` is offered as an optional add-on to Transactions and has a separate [fee model](/docs/account/billing/#per-request-flat-fee). To request access to this endpoint, submit a [product access request](https://dashboard.plaid.com/team/products) or contact your Plaid account manager. # noqa: E501 + `/transactions/refresh` is an optional endpoint that initiates an on-demand extraction to fetch the newest transactions for an Item. The on-demand extraction takes place in addition to the periodic extractions that automatically occur one or more times per day for any Transactions-enabled Item. The Item must already have Transactions added as a product in order to call `/transactions/refresh`. If changes to transactions are discovered after calling `/transactions/refresh`, Plaid will fire a webhook: for `/transactions/sync` users, [`SYNC_UPDATES_AVAILABLE`](https://plaid.com/docs/api/products/transactions/#sync_updates_available) will be fired if there are any transactions updated, added, or removed. For users of both `/transactions/sync` and `/transactions/get`, [`TRANSACTIONS_REMOVED`](https://plaid.com/docs/api/products/transactions/#transactions_removed) will be fired if any removed transactions are detected, and [`DEFAULT_UPDATE`](https://plaid.com/docs/api/products/transactions/#default_update) will be fired if any new transactions are detected. New transactions can be fetched by calling `/transactions/get` or `/transactions/sync`. Note that the `/transactions/refresh` endpoint is not supported for Capital One (`ins_128026`) and will result in a `PRODUCTS_NOT_SUPPORTED` error if called on an Item from that institution. As this endpoint triggers a synchronous request for fresh data, latency may be higher than for other Plaid endpoints (typically less than 10 seconds, but occasionally up to 30 seconds or more); if you encounter errors, you may find it necessary to adjust your timeout period when making requests. `/transactions/refresh` is offered as an optional add-on to Transactions and has a separate [fee model](/docs/account/billing/#per-request-flat-fee). To request access to this endpoint, submit a [product access request](https://dashboard.plaid.com/team/products) or contact your Plaid account manager. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True @@ -30627,6 +30821,89 @@ def transactions_user_insights_get( transactions_user_insights_get_request return self.transactions_user_insights_get_endpoint.call_with_http_info(**kwargs) + def transfer_authorization_cancel( + self, + transfer_authorization_cancel_request, + **kwargs + ): + """Cancel a transfer authorization # noqa: E501 + + Use the `/transfer/authorization/cancel` endpoint to cancel a transfer authorization. A transfer authorization is eligible for cancellation if it has not yet been used to create a transfer. # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.transfer_authorization_cancel(transfer_authorization_cancel_request, async_req=True) + >>> result = thread.get() + + Args: + transfer_authorization_cancel_request (TransferAuthorizationCancelRequest): + + Keyword Args: + _return_http_data_only (bool): response data without head status + code and headers. Default is True. + _preload_content (bool): if False, the urllib3.HTTPResponse object + will be returned without reading/decoding response data. + Default is True. + _request_timeout (int/float/tuple): timeout setting for this request. If + one number provided, it will be total request timeout. It can also + be a pair (tuple) of (connection, read) timeouts. + Default is None. + _check_input_type (bool): specifies if type checking + should be done one the data sent to the server. + Default is True. + _check_return_type (bool): specifies if type checking + should be done one the data received from the server. + Default is True. + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _content_type (str/None): force body content-type. + Default is None and content-type will be predicted by allowed + content-types and body. + _host_index (int/None): specifies the index of the server + that we want to use. + Default is read from the configuration. + _request_auths (list): set to override the auth_settings for an a single + request; this effectively ignores the authentication + in the spec for a single request. + Default is None + async_req (bool): execute request asynchronously + + Returns: + TransferAuthorizationCancelResponse + If the method is called asynchronously, returns the request + thread. + """ + kwargs['async_req'] = kwargs.get( + 'async_req', False + ) + kwargs['_return_http_data_only'] = kwargs.get( + '_return_http_data_only', True + ) + kwargs['_preload_content'] = kwargs.get( + '_preload_content', True + ) + kwargs['_request_timeout'] = kwargs.get( + '_request_timeout', None + ) + kwargs['_check_input_type'] = kwargs.get( + '_check_input_type', True + ) + kwargs['_check_return_type'] = kwargs.get( + '_check_return_type', True + ) + kwargs['_spec_property_naming'] = kwargs.get( + '_spec_property_naming', False + ) + kwargs['_content_type'] = kwargs.get( + '_content_type') + kwargs['_host_index'] = kwargs.get('_host_index') + kwargs['_request_auths'] = kwargs.get('_request_auths', None) + kwargs['transfer_authorization_cancel_request'] = \ + transfer_authorization_cancel_request + return self.transfer_authorization_cancel_endpoint.call_with_http_info(**kwargs) + def transfer_authorization_create( self, transfer_authorization_create_request, diff --git a/plaid/api_client.py b/plaid/api_client.py index 881a83274..4cf7b7cb7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 v21.0.0' + self.user_agent = 'Plaid Python v21.1.0' def __enter__(self): return self diff --git a/plaid/configuration.py b/plaid/configuration.py index e31a95f7f..89a074f95 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -432,8 +432,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.508.0\n"\ - "SDK Package Version: 21.0.0".\ + "Version of the API: 2020-09-14_1.514.1\n"\ + "SDK Package Version: 21.1.0".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/plaid/exceptions.py b/plaid/exceptions.py index 56d6e4024..0a6b8711e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_access.py b/plaid/model/account_access.py index c0b9788fc..9e38f10b2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_assets.py b/plaid/model/account_assets.py index 937403fa3..572a35bce 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_balance.py b/plaid/model/account_balance.py index ccd685daa..a53af8509 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_base.py b/plaid/model/account_base.py index 2f7e111d4..f6b2197d3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -185,7 +185,7 @@ def _from_openapi_data(cls, account_id, balances, mask, name, official_name, typ Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. Note: Database Match is currently a beta feature, please contact your account manager for more information. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501 + verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501 verification_insights (AccountVerificationInsights): [optional] # noqa: E501 persistent_account_id (str): A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This is currently only supported for Chase Items. Because Chase accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify a Chase account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field may be populated for any account; in Production and Development, it will only be populated for Chase accounts.. [optional] # noqa: E501 """ @@ -289,7 +289,7 @@ def __init__(self, account_id, balances, mask, name, official_name, type, subtyp Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. Note: Database Match is currently a beta feature, please contact your account manager for more information. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501 + verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501 verification_insights (AccountVerificationInsights): [optional] # noqa: E501 persistent_account_id (str): A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This is currently only supported for Chase Items. Because Chase accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify a Chase account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field may be populated for any account; in Production and Development, it will only be populated for Chase accounts.. [optional] # noqa: E501 """ diff --git a/plaid/model/account_filter.py b/plaid/model/account_filter.py index 7f81b3d53..aa16b068b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_filter_subtypes.py b/plaid/model/account_filter_subtypes.py index ea5cf5013..422b4d497 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_filters_response.py b/plaid/model/account_filters_response.py index 4186ce8e0..3b36bdbe8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_identity.py b/plaid/model/account_identity.py index bd4dbdd92..dcfbf626f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -194,7 +194,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. Note: Database Match is currently a beta feature, please contact your account manager for more information. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501 + verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501 verification_insights (AccountVerificationInsights): [optional] # noqa: E501 persistent_account_id (str): A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This is currently only supported for Chase Items. Because Chase accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify a Chase account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field may be populated for any account; in Production and Development, it will only be populated for Chase accounts.. [optional] # noqa: E501 documents ([IdentityDocument]): Array of documents that identity data is dervied from. This array will be empty if none of the account identity is from a document.. [optional] # noqa: E501 @@ -309,7 +309,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. Note: Database Match is currently a beta feature, please contact your account manager for more information. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501 + verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501 verification_insights (AccountVerificationInsights): [optional] # noqa: E501 persistent_account_id (str): A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This is currently only supported for Chase Items. Because Chase accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify a Chase account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field may be populated for any account; in Production and Development, it will only be populated for Chase accounts.. [optional] # noqa: E501 documents ([IdentityDocument]): Array of documents that identity data is dervied from. This array will be empty if none of the account identity is from a document.. [optional] # noqa: E501 diff --git a/plaid/model/account_identity_all_of.py b/plaid/model/account_identity_all_of.py index 6e57aa873..24b86fb73 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a3adbbb22..06860ab05 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -194,7 +194,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. Note: Database Match is currently a beta feature, please contact your account manager for more information. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501 + verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501 verification_insights (AccountVerificationInsights): [optional] # noqa: E501 persistent_account_id (str): A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This is currently only supported for Chase Items. Because Chase accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify a Chase account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field may be populated for any account; in Production and Development, it will only be populated for Chase accounts.. [optional] # noqa: E501 documents ([IdentityDocumentUpload], none_type): An array of document with which the Identity data is derived from.. [optional] # noqa: E501 @@ -309,7 +309,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. Note: Database Match is currently a beta feature, please contact your account manager for more information. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501 + verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501 verification_insights (AccountVerificationInsights): [optional] # noqa: E501 persistent_account_id (str): A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This is currently only supported for Chase Items. Because Chase accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify a Chase account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field may be populated for any account; in Production and Development, it will only be populated for Chase accounts.. [optional] # noqa: E501 documents ([IdentityDocumentUpload], none_type): An array of document with which the Identity data is derived from.. [optional] # noqa: E501 diff --git a/plaid/model/account_identity_document_upload_all_of.py b/plaid/model/account_identity_document_upload_all_of.py index 1c266ea79..38b6b485f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b16336cb5..b7f3f82a9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -201,7 +201,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. Note: Database Match is currently a beta feature, please contact your account manager for more information. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501 + verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501 verification_insights (AccountVerificationInsights): [optional] # noqa: E501 persistent_account_id (str): A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This is currently only supported for Chase Items. Because Chase accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify a Chase account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field may be populated for any account; in Production and Development, it will only be populated for Chase accounts.. [optional] # noqa: E501 legal_name (NameMatchScore): [optional] # noqa: E501 @@ -318,7 +318,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. Note: Database Match is currently a beta feature, please contact your account manager for more information. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501 + verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501 verification_insights (AccountVerificationInsights): [optional] # noqa: E501 persistent_account_id (str): A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This is currently only supported for Chase Items. Because Chase accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify a Chase account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field may be populated for any account; in Production and Development, it will only be populated for Chase accounts.. [optional] # noqa: E501 legal_name (NameMatchScore): [optional] # noqa: E501 diff --git a/plaid/model/account_identity_match_score_all_of.py b/plaid/model/account_identity_match_score_all_of.py index 4c2c9a179..99da2c589 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 627f77c68..2e572204b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_product_access.py b/plaid/model/account_product_access.py index 54f9a90ac..de2fba4fa 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3cda1d3f0..18f10f9c6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_selection_cardinality.py b/plaid/model/account_selection_cardinality.py index 02894a80b..19bf433ce 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_subtype.py b/plaid/model/account_subtype.py index 434d52a22..ee38e21a1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_subtypes.py b/plaid/model/account_subtypes.py index 989348ad0..4a48a9e6c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_type.py b/plaid/model/account_type.py index 13ce6c533..1cf6c4c31 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_verification_insights.py b/plaid/model/account_verification_insights.py index 13690c7eb..19b27dfec 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 77fdb7f1b..2abc135d4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9978f9ee7..229f12697 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7e1367d2a..e60055ce0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c397085fd..3c471f613 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3b4b95a02..32d0148dd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -137,7 +137,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 through its discriminator because we passed in _visited_composed_classes = (Animal,) account_ids ([str]): A list of `account_ids` to retrieve for the Item. The default value is `null`. Note: An error will be returned if a provided `account_id` is not associated with the Item.. [optional] # noqa: E501 - min_last_updated_datetime (datetime): Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the oldest acceptable balance when making a request to `/accounts/balance/get`. This field is only necessary when the institution is `ins_128026` (Capital One), *and* the account type is a non-depository account (such as a credit card) in which case a value must be provided or an `INVALID_REQUEST` error with the code of `INVALID_FIELD` will be returned. For all other institutions, as well as for depository accounts at Capital One (including all checking and savings accounts) this field is ignored. If this field is not ignored, and no acceptable balance is available, an `INVALID_RESULT` error with the code `LAST_UPDATED_DATETIME_OUT_OF_RANGE` will be returned.. [optional] # noqa: E501 + min_last_updated_datetime (datetime): Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the oldest acceptable balance when making a request to `/accounts/balance/get`. This field is only necessary when the institution is `ins_128026` (Capital One), *and* one or more account types being requested is a non-depository account (such as a credit card) as Capital One does not provide real-time balance for non-depository accounts. In this case, a value must be provided or an `INVALID_REQUEST` error with the code of `INVALID_FIELD` will be returned. For all other institutions, as well as for depository accounts at Capital One (including all checking and savings accounts) this field is ignored and real-time balance information will be fetched. If this field is not ignored, and no acceptable balance is available, an `INVALID_RESULT` error with the code `LAST_UPDATED_DATETIME_OUT_OF_RANGE` will be returned.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -224,7 +224,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 through its discriminator because we passed in _visited_composed_classes = (Animal,) account_ids ([str]): A list of `account_ids` to retrieve for the Item. The default value is `null`. Note: An error will be returned if a provided `account_id` is not associated with the Item.. [optional] # noqa: E501 - min_last_updated_datetime (datetime): Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the oldest acceptable balance when making a request to `/accounts/balance/get`. This field is only necessary when the institution is `ins_128026` (Capital One), *and* the account type is a non-depository account (such as a credit card) in which case a value must be provided or an `INVALID_REQUEST` error with the code of `INVALID_FIELD` will be returned. For all other institutions, as well as for depository accounts at Capital One (including all checking and savings accounts) this field is ignored. If this field is not ignored, and no acceptable balance is available, an `INVALID_RESULT` error with the code `LAST_UPDATED_DATETIME_OUT_OF_RANGE` will be returned.. [optional] # noqa: E501 + min_last_updated_datetime (datetime): Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the oldest acceptable balance when making a request to `/accounts/balance/get`. This field is only necessary when the institution is `ins_128026` (Capital One), *and* one or more account types being requested is a non-depository account (such as a credit card) as Capital One does not provide real-time balance for non-depository accounts. In this case, a value must be provided or an `INVALID_REQUEST` error with the code of `INVALID_FIELD` will be returned. For all other institutions, as well as for depository accounts at Capital One (including all checking and savings accounts) this field is ignored and real-time balance information will be fetched. If this field is not ignored, and no acceptable balance is available, an `INVALID_RESULT` error with the code `LAST_UPDATED_DATETIME_OUT_OF_RANGE` will be returned.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/plaid/model/accounts_balance_get_request_payment_details.py b/plaid/model/accounts_balance_get_request_payment_details.py index d286d8e76..62b1042b5 100644 --- a/plaid/model/accounts_balance_get_request_payment_details.py +++ b/plaid/model/accounts_balance_get_request_payment_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/accounts_balance_get_response_payment_risk_assessment.py b/plaid/model/accounts_balance_get_response_payment_risk_assessment.py index ecf0ac3b7..b5021db24 100644 --- a/plaid/model/accounts_balance_get_response_payment_risk_assessment.py +++ b/plaid/model/accounts_balance_get_response_payment_risk_assessment.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/accounts_get_request.py b/plaid/model/accounts_get_request.py index a137fe4dc..a591ca556 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 39146ba89..13d4cf26e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/accounts_get_response.py b/plaid/model/accounts_get_response.py index ad21918c4..1676d3afb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/ach_class.py b/plaid/model/ach_class.py index 7bb7d259f..db8ef52c4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/action_state.py b/plaid/model/action_state.py index f97260753..c86904e1a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/activity.py b/plaid/model/activity.py index a5348d30c..6f77b62d6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/activity_type.py b/plaid/model/activity_type.py index 387f0f2e4..e30147f79 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address.py b/plaid/model/address.py index 2ac420c81..c1b7fdba1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address_data.py b/plaid/model/address_data.py index 56f11b640..179bf43de 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a98f2e05a..490384ae2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address_data_nullable.py b/plaid/model/address_data_nullable.py index 9f5ca590e..e9ac2bdf0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3cad8c7e5..fd0532739 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address_match_score.py b/plaid/model/address_match_score.py index 1df863d18..18ce26aa9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address_nullable.py b/plaid/model/address_nullable.py index d9bbe24b9..76fb2045c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address_purpose_label.py b/plaid/model/address_purpose_label.py index 1b75777e8..e2856935b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/application.py b/plaid/model/application.py index 0962b8a3c..2d8aa06b5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/application_get_request.py b/plaid/model/application_get_request.py index c8c7c8398..6b4df0a17 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/application_get_response.py b/plaid/model/application_get_response.py index 14e6c243f..db8e92344 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/apr.py b/plaid/model/apr.py index 832b0881e..d19738b77 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset.py b/plaid/model/asset.py index 122b71618..186dc5984 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_detail.py b/plaid/model/asset_detail.py index 0f3f9ce42..7d2b527dd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_holder.py b/plaid/model/asset_holder.py index 31286c88b..181efbf72 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_holder_name.py b/plaid/model/asset_holder_name.py index 1df7f0017..9d8a968a2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_owner.py b/plaid/model/asset_owner.py index fa3e1b5a7..b04424119 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_owners.py b/plaid/model/asset_owners.py index a9a4634d7..cbffb7215 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report.py b/plaid/model/asset_report.py index 16135da48..e8090a0a7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 fcc217397..65b2f02c3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5cb1a80bb..a4f919c5b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7f03c8a55..56838dc20 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b4cc4072b..4819a8472 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5e57ad779..fe042f0a9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ddc749ca6..87ab7b7f8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 150cd1205..96d7d8f67 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 df3cfaf18..98a12dccd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f0b31a77b..867e78f9e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e6537b054..82b6c397d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 89c5d6083..a029237b1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4a9d7ae6b..591fa54d4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_freddie.py b/plaid/model/asset_report_freddie.py index 2532b3c8a..c95fe22c2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 597ef5031..2888874b0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cd2423773..829b40cf3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2a6627e6a..5131cacbb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9ceaa4f08..6f8db271a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 513b18a2c..ac3701368 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 86fd40e7c..48d7549a7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1a68d1939..462560a71 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_investments.py b/plaid/model/asset_report_investments.py index 9b5012a79..6e373a79a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_item.py b/plaid/model/asset_report_item.py index 12ee487b1..1beb21d5c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 204b6f5ae..fe9f10bf6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4f3a0d5c8..035be3799 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 92ccb4676..37dc6499b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e06c8c145..9a0a4df85 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 db4937334..985381b95 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f137c814d..039bc373b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 11ee22680..81cd10a26 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_transaction.py b/plaid/model/asset_report_transaction.py index ea1badc53..db5293285 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3a40cb24b..d2f3b72b0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_user.py b/plaid/model/asset_report_user.py index 13c977e0f..2cb694054 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_transaction.py b/plaid/model/asset_transaction.py index 36034e82c..1db57975b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0396921b5..b798fc560 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_transaction_description.py b/plaid/model/asset_transaction_description.py index 018d01bd6..e52c03f1a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_transaction_detail.py b/plaid/model/asset_transaction_detail.py index fdcdceb97..beb20fe75 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_transaction_type.py b/plaid/model/asset_transaction_type.py index e192c31d2..dc4b602dc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_transactions.py b/plaid/model/asset_transactions.py index 359f4f960..bef61f953 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_type.py b/plaid/model/asset_type.py index 2e6749eac..fdd8e831f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/assets.py b/plaid/model/assets.py index ef32dab54..be6ea9f78 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/assets_error_webhook.py b/plaid/model/assets_error_webhook.py index 03d1e98f7..ac731fc32 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1d0f3c240..94557d0e9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_get_numbers.py b/plaid/model/auth_get_numbers.py index 48f98d97b..cf3ea5815 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_get_request.py b/plaid/model/auth_get_request.py index 5655c0d22..9ac66a5d4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e0fbb2c5c..6daf885b7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_get_response.py b/plaid/model/auth_get_response.py index 6064a8481..5f97a93cd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_metadata.py b/plaid/model/auth_metadata.py index 79b828270..e4832c467 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_supported_methods.py b/plaid/model/auth_supported_methods.py index 41efa0164..17f1e45de 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/automatically_verified_webhook.py b/plaid/model/automatically_verified_webhook.py index 39ae76654..7bd5125e2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/balance_plus_attributes.py b/plaid/model/balance_plus_attributes.py index f381a3d39..d16cba418 100644 --- a/plaid/model/balance_plus_attributes.py +++ b/plaid/model/balance_plus_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 12b24419c..360a54f4b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9f1387ad0..93393f56b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7ee6c38b9..c84847139 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2bbffbedb..401b2a2a0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d40b36183..10c2efdf4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a6560594b..20b089eba 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1e90585a1..32f240601 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer.py b/plaid/model/bank_transfer.py index 824ac85f5..361f82ab9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_balance.py b/plaid/model/bank_transfer_balance.py index 3db091e9c..6cec4e3fe 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 96b267ceb..5c891c1f9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e64f7ee79..e62a14e70 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6b7c94b63..411424db4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6d123dbc9..ac9b52c26 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 47ff215d8..1ab40420f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 dd59b6b34..18c6a1126 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_direction.py b/plaid/model/bank_transfer_direction.py index de6e49e57..3463fefc9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_event.py b/plaid/model/bank_transfer_event.py index b507d870a..8cb865419 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a9e57699f..25f6afea7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5d6b76712..5c9291377 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5306044f4..0d00d9a95 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f8ca77e7c..4a1b188b1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ea0d19409..ee9a9c9ef 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8a898b25e..18a837140 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f6ed67da2..721b1462f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_failure.py b/plaid/model/bank_transfer_failure.py index c868ffc16..da775b80b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 482a3c82f..dacf51b85 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 12f727e7b..1e64d80bf 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 93c6f9ac0..635872969 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e7b396da3..0644577b7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 59fa5dc49..5a0e0eecb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_metadata.py b/plaid/model/bank_transfer_metadata.py index 1f80f1a5c..112cb4c94 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 155e62536..f229b49e3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 607327d9a..f60fa9886 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_network.py b/plaid/model/bank_transfer_network.py index 2fd65587b..3fc043c9e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_status.py b/plaid/model/bank_transfer_status.py index 6236c48a8..b9141035f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_sweep.py b/plaid/model/bank_transfer_sweep.py index c427f73ab..0941370d9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 087f2b633..6431b5c41 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5bb468b39..a2763c478 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 30b6fef45..e614f8f51 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c124f8825..15c804670 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_type.py b/plaid/model/bank_transfer_type.py index 5f58c4615..dd5c711aa 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_user.py b/plaid/model/bank_transfer_user.py index 331bc8c63..7bac7c36e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5ee3368f3..2b0da1d5a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 dbf2b7c3e..0314423cd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report.py b/plaid/model/base_report.py index 6b9fe5ae5..985c9b7cd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_account.py b/plaid/model/base_report_account.py index 4f9541b92..ac335ca31 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 844c436e4..555cc64b8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_account_balances_all_of.py b/plaid/model/base_report_account_balances_all_of.py index 0c69bf827..6733ab709 100644 --- a/plaid/model/base_report_account_balances_all_of.py +++ b/plaid/model/base_report_account_balances_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d179a13ed..a4f07848d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7babeed8b..586524a44 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 17870e1c3..cac794370 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_create_request.py b/plaid/model/base_report_create_request.py index 9b6a11bbf..b0e2792ec 100644 --- a/plaid/model/base_report_create_request.py +++ b/plaid/model/base_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_create_response.py b/plaid/model/base_report_create_response.py index cbce1f91d..541936253 100644 --- a/plaid/model/base_report_create_response.py +++ b/plaid/model/base_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_get_request.py b/plaid/model/base_report_get_request.py index 684d2bfe8..189a6c7ba 100644 --- a/plaid/model/base_report_get_request.py +++ b/plaid/model/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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_get_response.py b/plaid/model/base_report_get_response.py index 96dba0e42..93aed652a 100644 --- a/plaid/model/base_report_get_response.py +++ b/plaid/model/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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_item.py b/plaid/model/base_report_item.py index d413a0930..ab5a6ed57 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5d11f380c..6f3250cb1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f847ec939..603d4b346 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_transaction.py b/plaid/model/base_report_transaction.py index dc61d1344..84376622f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ab77903b5..b985207e2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_warning.py b/plaid/model/base_report_warning.py index e391cc8b4..dc926810a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a763672a2..a30500b66 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2c1ebe062..fc0c3fef5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_reports_product_ready_webhook.py b/plaid/model/base_reports_product_ready_webhook.py index 80e0ee192..f7fd7a10a 100644 --- a/plaid/model/base_reports_product_ready_webhook.py +++ b/plaid/model/base_reports_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 545fe84be..cf5bb44e4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0b9a6ae1f..be74d636a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 885b472e6..f4b62874b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 06b8a7544..de8ef5710 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 dd935f15f..33ed248c2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2a7e30155..5458c9772 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_audit_trail.py b/plaid/model/beacon_audit_trail.py index cad4fc882..862517ebc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7698224ef..1511eff7e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 fb048f6d1..f6ee9247c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 10b400b91..d7a4deb16 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 28e4982e5..5d2db8e1a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d31804dcb..c0021fca0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9223c18bc..903bba0d1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report.py b/plaid/model/beacon_report.py index 3d70c2978..567282fbf 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0161fcafd..7c1d7ec62 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0c5ecbf91..088a59475 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 af92b56b8..96e6e8a6f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1d98b9b18..26beb25dd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1bc8d3e03..1ebea277d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bf0a584b3..756ecde03 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f449b2624..fa6f78e8f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_syndication.py b/plaid/model/beacon_report_syndication.py index 9d4e284a5..320ce377e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9ef1480c1..6aca43efa 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0e85aefc9..ee2807a95 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8e86fde87..473c99379 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 dcec86204..67776f734 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cb7e4b679..13cc608e8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0262b5715..eb5598282 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3ad1bcf0d..f00456732 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_type.py b/plaid/model/beacon_report_type.py index b6b17d6ff..48690bedc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 dd44e4262..5fe2a37db 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user.py b/plaid/model/beacon_user.py index 44d4731b1..817ff1209 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_address.py b/plaid/model/beacon_user_address.py index bfe491508..e3ea7453a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 547177ebe..00f13c7a2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 02352db7f..4eacae90b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_data.py b/plaid/model/beacon_user_data.py index 5a594783e..b00703dc1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1895487eb..ab7beb433 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2bd444d46..0edbeaf12 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 530b88786..f04f37285 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5e8705865..c01ec8011 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 66c7bbc02..9f4439345 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_name.py b/plaid/model/beacon_user_name.py index 8adc5fa6b..439748c1f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 adafc7d48..214057ca3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6499ccee3..b0f2d1cca 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6a0db5c19..4fa47480e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a444b7412..605cf2dd8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b37b2ac46..c677876d2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_revision.py b/plaid/model/beacon_user_revision.py index 7d3650f02..ccb0e601e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_status.py b/plaid/model/beacon_user_status.py index e6fec6b2f..c4db578ab 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5ff2fa593..573b35e94 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0cb31bad4..23d59c013 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ff64a3a5e..afc780996 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0f77b1a26..0b77f9141 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/categories_get_response.py b/plaid/model/categories_get_response.py index f34e17e13..9b59fd05c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/category.py b/plaid/model/category.py index 9d27cdaaf..f897cfcd6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/category_insight_details.py b/plaid/model/category_insight_details.py index 889618a81..e8e23a241 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/category_insights.py b/plaid/model/category_insights.py index 6904752fd..bceb06bef 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cause.py b/plaid/model/cause.py index 1340cb03d..d787e85a7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cause_all_of.py b/plaid/model/cause_all_of.py index d8487da99..8602283b0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5cdb5f750..d6cdcc019 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a76253182..0afa3de88 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 600ecb662..5d83ed1bd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/client_provided_transaction.py b/plaid/model/client_provided_transaction.py index 69c279b10..0b310917c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0312573e1..3309639b3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/client_user_id.py b/plaid/model/client_user_id.py index 0761c6bb9..610eaa5e9 100644 --- a/plaid/model/client_user_id.py +++ b/plaid/model/client_user_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/client_user_id_nullable.py b/plaid/model/client_user_id_nullable.py index a854fdd61..0503b8f99 100644 --- a/plaid/model/client_user_id_nullable.py +++ b/plaid/model/client_user_id_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/connected_application.py b/plaid/model/connected_application.py index e30339e46..37e6a9318 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1fd0175ad..a81c1a892 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 new file mode 100644 index 000000000..a97c61c4e --- /dev/null +++ b/plaid/model/consumer_report_pdf_get_request.py @@ -0,0 +1,277 @@ +""" + The Plaid API + + The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 + + The version of the OpenAPI document: 2020-09-14_1.514.1 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from plaid.model_utils import ( # noqa: F401 + ApiTypeError, + ModelComposed, + ModelNormal, + ModelSimple, + cached_property, + change_keys_js_to_python, + convert_js_args_to_python_args, + date, + datetime, + file_type, + none_type, + validate_get_composed_info, + OpenApiModel +) +from plaid.exceptions import ApiAttributeError + + + +class ConsumerReportPDFGetRequest(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + return { + 'user_token': (str,), # noqa: E501 + 'client_id': (str,), # noqa: E501 + 'secret': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'user_token': 'user_token', # noqa: E501 + 'client_id': 'client_id', # noqa: E501 + 'secret': 'secret', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, user_token, *args, **kwargs): # noqa: E501 + """ConsumerReportPDFGetRequest - a model defined in OpenAPI + + Args: + user_token (str): The user token associated with the User data is being requested for. + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _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 + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + self = super(OpenApiModel, cls).__new__(cls) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.user_token = user_token + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, user_token, *args, **kwargs): # noqa: E501 + """ConsumerReportPDFGetRequest - a model defined in OpenAPI + + Args: + user_token (str): The user token associated with the User data is being requested for. + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _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 + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.user_token = user_token + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + if var_name in self.read_only_vars: + raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate " + f"class with read only attributes.") diff --git a/plaid/model/consumer_report_permissible_purpose.py b/plaid/model/consumer_report_permissible_purpose.py index 78a87b411..06517f03a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4a33c9872..cf73865b1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/counterparty.py b/plaid/model/counterparty.py index 3fee5f91c..1a9d28210 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/counterparty_insights.py b/plaid/model/counterparty_insights.py index 5ace6957b..c944d23eb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/counterparty_type.py b/plaid/model/counterparty_type.py index c2e9ed89e..488ab8ab2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/country_code.py b/plaid/model/country_code.py index fdfef2cba..fa10c323a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income.py b/plaid/model/cra_bank_income.py index 607555673..2ca4a6131 100644 --- a/plaid/model/cra_bank_income.py +++ b/plaid/model/cra_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7ce0690ce..2cf59c651 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a4ce0936f..a40f910e8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4c8a72130..259c76129 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e952c02fd..ce63457f6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4469344da..f0ad61358 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_create_request.py b/plaid/model/cra_bank_income_create_request.py index fa51599ca..5e2a209e2 100644 --- a/plaid/model/cra_bank_income_create_request.py +++ b/plaid/model/cra_bank_income_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_create_response.py b/plaid/model/cra_bank_income_create_response.py index 443b9c33b..437034fda 100644 --- a/plaid/model/cra_bank_income_create_response.py +++ b/plaid/model/cra_bank_income_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 744584251..d22d56526 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0a07d1198..20f705eb0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_get_request.py b/plaid/model/cra_bank_income_get_request.py index bbce14c76..18788abe0 100644 --- a/plaid/model/cra_bank_income_get_request.py +++ b/plaid/model/cra_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income_get_response.py b/plaid/model/cra_bank_income_get_response.py index 931cbaaf9..d366f283a 100644 --- a/plaid/model/cra_bank_income_get_response.py +++ b/plaid/model/cra_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 eaf4492cf..15f7cbde8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ebfd04109..29fd4e996 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5f5f8ff32..763cc8a43 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0a6ae05ec..d3dd9cc8c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c53333cd8..df3c603d8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 59ea49676..8ca8cea33 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 918fe4059..e4554c0e9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_partner_insights.py b/plaid/model/cra_partner_insights.py index fe3255080..c383d21fb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2956f281b..e7a93906a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e246b988f..eb97e8d20 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f2d468cab..112b07f41 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 eddc63494..9f57f9cf2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 11c62f2d9..fed90c6df 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 fa1210e6e..386e1c9b5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 885364ab9..f2ee249d3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_prediction_interval.py b/plaid/model/cra_prediction_interval.py index b3fc90041..76bbd1b60 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit1099.py b/plaid/model/credit1099.py index 17fcd99f2..b992025ff 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit1099_filer.py b/plaid/model/credit1099_filer.py index 4aa872bbc..71aa81bd9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit1099_payer.py b/plaid/model/credit1099_payer.py index fc4befb79..cedfb268d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit1099_recipient.py b/plaid/model/credit1099_recipient.py index 891a6a1e3..d1d947263 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_account_subtype.py b/plaid/model/credit_account_subtype.py index c39172e54..cae532d9b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_account_subtypes.py b/plaid/model/credit_account_subtypes.py index 75bbe64d5..72d269151 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_ach_class.py b/plaid/model/credit_ach_class.py index 957ef3c07..057ca6a53 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cde339121..8b53c3d2e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e77cb9f09..61f727d71 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a43244203..38d6f4ff4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 697d6b813..99e6586f8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 305d9b798..3ff5402e8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a63b5bdf1..c86337ba9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8c9c001d8..8ec8b96e6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_employer.py b/plaid/model/credit_bank_employer.py index 8a487441e..cdaa63e60 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_employment.py b/plaid/model/credit_bank_employment.py index b3468e30d..fbdced9a7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1d4351f49..84f952d53 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 09edf0bb5..1a7ff7382 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cb12518e8..fe663d06a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 aa93a3113..f0b01feda 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4fa545dd4..d58902940 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b7056b12e..ec5ecc9a5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income.py b/plaid/model/credit_bank_income.py index e91c8fc2c..876af48a3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 76b3c47ce..3d27429b5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e31a6d1dd..85c5574ca 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 da86252d4..b1c97c8e4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d12316e15..70091b873 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8042e79c1..f8fa2e2aa 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5a3a7a50e..fc8b1ad08 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 583988203..cf2c3a8a5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3d473250a..7a96167c7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8e0a28741..8506013f2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 46ddc3697..14120f31c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cce2ebc97..1478945c4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1640d4890..a29dae9b6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d5ef41ed5..9c1eb6573 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f47c34d8a..b8c0b0afc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9e7ecf9d9..2d1b8fdf8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1c8d86355..fbf0739fe 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6a96be43d..acc6d8b06 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 228cd2ae5..9802cdf66 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 85c20261f..0c8a244f2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 96660efc3..d88adc39f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7cc376869..77ba61a95 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7835c5559..d9ac3dc02 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1454dc618..9db51d023 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4d75a23b6..37ce0bea3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7552c5d19..f637472b4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2eb674f9f..c5426e9a5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7b5113d9a..e5d56e6fb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c6d3d2621..14ab6daa5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e9dd5e397..8243281a2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 dc588c452..eebe7bcba 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ea40cc7d6..58f75b98a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ 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 4cb91302a..038a5f137 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9bf335fba..a1d49a8d4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_card_liability.py b/plaid/model/credit_card_liability.py index bcbf86d25..481aafcb3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_category.py b/plaid/model/credit_category.py index bbe578b1e..0e00eba23 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_document_metadata.py b/plaid/model/credit_document_metadata.py index f13376ee9..02d20f018 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_employer_verification.py b/plaid/model/credit_employer_verification.py index 1b2d95611..944623438 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bf954f2c4..a81ea9533 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 45567d374..7631d2297 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_employment_item.py b/plaid/model/credit_employment_item.py index 8a5742921..50de41b6b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_employment_verification.py b/plaid/model/credit_employment_verification.py index ec11ec135..c0316e2c6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_filter.py b/plaid/model/credit_filter.py index 67eb93e0c..7fd035f25 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 fdca4bffe..073f1add6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 13c4ed186..9f5c2f679 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 952441d00..9a9b8180c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8ca7a4d16..2b29397c9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7cadd7f02..0c602ac38 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 60a0c5675..4bc0621cf 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d59ef83b5..82bf4c927 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8d6893651..05f20fd55 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 08253a889..61c40e028 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c2b7a8b1c..191b8cf08 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0065a2c31..49397e5a0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9fc0a2346..d672b041b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4a4dd5c74..7abd8a2c2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e1fc53758..1e891a476 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2ffd2006d..c4e6f8751 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d92b5197a..78bebc87e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5fa972181..651f812cd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 14e43886d..b274612b2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7d03d7f10..1451fb12a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_pay_stub.py b/plaid/model/credit_pay_stub.py index 16c858a7e..41bd5bff9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7e0b7e4f4..005285764 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b4b76ee61..c57b6bbbe 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 051236689..1be03760e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 042171b4e..f97155a58 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3600e7047..5a0f0a6ab 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 195765b4d..54ae4a194 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 fcd0fe96d..97b9b004f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 eab4750ed..6fd64ce77 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ab7f26d3e..90c06d050 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1e4e56a60..b2233ab6e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 26518361d..ef2a30c47 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 17a1a00c9..1e3fa5e44 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2af858664..886e8efc7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ee2ccb1d2..d326cf342 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b1ffec7a8..c19327425 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 743c26029..8bc689150 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bc9250ef3..8492486d3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ef86c7f12..b6f3d3489 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 35b6d7039..2903db874 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_platform_ids.py b/plaid/model/credit_platform_ids.py index 1b098e1f3..8e3b99ded 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 fcecb940f..a7f500546 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 997c2de18..604868c17 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c9b10bcd3..ceaccbd69 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -91,6 +91,7 @@ def openapi_types(): 'report_type': (ReportType,), # noqa: E501 'client_id': (str,), # noqa: E501 'secret': (str,), # noqa: E501 + 'include_insights': (bool,), # noqa: E501 } @cached_property @@ -103,6 +104,7 @@ def discriminator(): 'report_type': 'report_type', # noqa: E501 'client_id': 'client_id', # noqa: E501 'secret': 'secret', # noqa: E501 + 'include_insights': 'include_insights', # noqa: E501 } read_only_vars = { @@ -152,6 +154,7 @@ def _from_openapi_data(cls, relay_token, report_type, *args, **kwargs): # noqa: _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 + include_insights (bool): `true` if you would like to retrieve the Asset Report with Insights, `false` otherwise. This field defaults to `false` if omitted.. [optional] if omitted the server will use the default value of False # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -245,6 +248,7 @@ def __init__(self, relay_token, report_type, *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 + include_insights (bool): `true` if you would like to retrieve the Asset Report with Insights, `false` otherwise. This field defaults to `false` if omitted.. [optional] if omitted the server will use the default value of False # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/plaid/model/credit_relay_pdf_get_request.py b/plaid/model/credit_relay_pdf_get_request.py index aaffe1cb6..9044585e4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b993bc92b..25ca0f5c3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d139f1a52..36799eb27 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9db6f46f5..6d41c7674 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 02abf03d2..d1d31bbee 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_session.py b/plaid/model/credit_session.py index 6cbaa9e47..7ed021f5f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 affd002ad..808ec2e23 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ab970b063..be40f06f0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 427c7f55f..df12a9759 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a80ca0ba4..1455e77d6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3cde9b9b8..611ca292c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_session_error.py b/plaid/model/credit_session_error.py index f66155a23..16aa0fb61 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7c9244ac7..28c4fd030 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5d1afbc2b..1c5668cf2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_session_results.py b/plaid/model/credit_session_results.py index 5b0cb8361..908f6c2d8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 80eaa8e5a..a44fda46f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_sessions_get_response.py b/plaid/model/credit_sessions_get_response.py index 6d1cae25c..fdc6987ff 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_w2.py b/plaid/model/credit_w2.py index f531dc7d6..a2803c5e4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 250eda632..8699b4987 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c067c4ddf..91aec3569 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/dashboard_user.py b/plaid/model/dashboard_user.py index 14e1c7e90..59323bbd4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 90fb3d975..6f439ad3f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 16017987d..26698525c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0dcfb7735..9c59ee279 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 709c36152..a35ad8b61 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/dashboard_user_status.py b/plaid/model/dashboard_user_status.py index 2bb7c4bed..ff12cde98 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/date_range.py b/plaid/model/date_range.py index 2f904e79a..30cfdf849 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deductions.py b/plaid/model/deductions.py index 0769f0dbd..21aaa9d13 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deductions_breakdown.py b/plaid/model/deductions_breakdown.py index cb6a6749e..ab7b4e937 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deductions_total.py b/plaid/model/deductions_total.py index da41a6ba9..c2e7a066d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/default_update_webhook.py b/plaid/model/default_update_webhook.py index 7e6a0e8ed..84b917d67 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deposit_switch_address_data.py b/plaid/model/deposit_switch_address_data.py index 2973413de..3b67f6ebb 100644 --- a/plaid/model/deposit_switch_address_data.py +++ b/plaid/model/deposit_switch_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deposit_switch_alt_create_request.py b/plaid/model/deposit_switch_alt_create_request.py index b233a3d0d..4e06cd146 100644 --- a/plaid/model/deposit_switch_alt_create_request.py +++ b/plaid/model/deposit_switch_alt_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deposit_switch_alt_create_response.py b/plaid/model/deposit_switch_alt_create_response.py index 8fd95ce61..d739d4c8d 100644 --- a/plaid/model/deposit_switch_alt_create_response.py +++ b/plaid/model/deposit_switch_alt_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deposit_switch_create_request.py b/plaid/model/deposit_switch_create_request.py index 7d90d5a4e..b59efa17b 100644 --- a/plaid/model/deposit_switch_create_request.py +++ b/plaid/model/deposit_switch_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deposit_switch_create_request_options.py b/plaid/model/deposit_switch_create_request_options.py index 198516354..ae7b8a80a 100644 --- a/plaid/model/deposit_switch_create_request_options.py +++ b/plaid/model/deposit_switch_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deposit_switch_create_response.py b/plaid/model/deposit_switch_create_response.py index 1fa714fd9..dd37691a9 100644 --- a/plaid/model/deposit_switch_create_response.py +++ b/plaid/model/deposit_switch_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deposit_switch_get_request.py b/plaid/model/deposit_switch_get_request.py index 0fbf3d9b3..0e95940d9 100644 --- a/plaid/model/deposit_switch_get_request.py +++ b/plaid/model/deposit_switch_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deposit_switch_get_response.py b/plaid/model/deposit_switch_get_response.py index 16c6d44fb..5b8bb649f 100644 --- a/plaid/model/deposit_switch_get_response.py +++ b/plaid/model/deposit_switch_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deposit_switch_state_update_webhook.py b/plaid/model/deposit_switch_state_update_webhook.py index 6a35c757c..cc1f0a2f6 100644 --- a/plaid/model/deposit_switch_state_update_webhook.py +++ b/plaid/model/deposit_switch_state_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deposit_switch_target_account.py b/plaid/model/deposit_switch_target_account.py index 0553e750a..15f25cfe2 100644 --- a/plaid/model/deposit_switch_target_account.py +++ b/plaid/model/deposit_switch_target_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deposit_switch_target_user.py b/plaid/model/deposit_switch_target_user.py index afda0ac74..ff574ba87 100644 --- a/plaid/model/deposit_switch_target_user.py +++ b/plaid/model/deposit_switch_target_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deposit_switch_token_create_request.py b/plaid/model/deposit_switch_token_create_request.py index d070eb65b..b2165ed52 100644 --- a/plaid/model/deposit_switch_token_create_request.py +++ b/plaid/model/deposit_switch_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deposit_switch_token_create_response.py b/plaid/model/deposit_switch_token_create_response.py index ba421e5eb..c5e4671df 100644 --- a/plaid/model/deposit_switch_token_create_response.py +++ b/plaid/model/deposit_switch_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/depository_account_subtype.py b/plaid/model/depository_account_subtype.py index 3e096f3ca..d13dd8e34 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/depository_account_subtypes.py b/plaid/model/depository_account_subtypes.py index c492913b3..52876a0da 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/depository_filter.py b/plaid/model/depository_filter.py index 7726733f7..953b08032 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deprecated_client_user_id.py b/plaid/model/deprecated_client_user_id.py index 84ddb32d9..003b470f2 100644 --- a/plaid/model/deprecated_client_user_id.py +++ b/plaid/model/deprecated_client_user_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/detailed_originator.py b/plaid/model/detailed_originator.py index 58c064a2a..efb46f19b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/detected_account.py b/plaid/model/detected_account.py index 9a0fdac17..a2683e019 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/distribution_breakdown.py b/plaid/model/distribution_breakdown.py index 4b0b23130..0b41348f6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/doc_type.py b/plaid/model/doc_type.py index e59728c89..866ba6ccc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_analysis.py b/plaid/model/document_analysis.py index 8369d98bb..557ce87d5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4e1c455ac..23ceb0290 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bda016706..aaa8b9af8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_metadata.py b/plaid/model/document_metadata.py index 5d265fd4d..5df41425b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1e6c1676f..f49e17804 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_risk_signal.py b/plaid/model/document_risk_signal.py index cc98c0d0a..2d3970545 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f58e3c678..11c7ea989 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f57c4fc4f..722387976 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_risk_summary.py b/plaid/model/document_risk_summary.py index a51db5a7d..91a048bf5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_status.py b/plaid/model/document_status.py index af9cbc71d..85898ed23 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/documentary_verification.py b/plaid/model/documentary_verification.py index 9f00eb58a..894c7a151 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/documentary_verification_document.py b/plaid/model/documentary_verification_document.py index f3384ec7e..8ac2c3d3f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/earnings.py b/plaid/model/earnings.py index a3ea5c7db..2bb547c83 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/earnings_breakdown.py b/plaid/model/earnings_breakdown.py index 073a2ec62..49a583114 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 60603a45e..4590c39ab 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/earnings_total.py b/plaid/model/earnings_total.py index e34c90bd9..30de6fbc2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/email.py b/plaid/model/email.py index 5ba1a6c68..307d5f50d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c9f430676..fe93716a1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employee.py b/plaid/model/employee.py index 15ec2cffb..bff77dc9b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8b6e6a73f..295f1a587 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employer.py b/plaid/model/employer.py index e8a02f482..9e54d3658 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 392d2307d..1cab0e0d3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employer_verification.py b/plaid/model/employer_verification.py index 46fe5ff8f..fd0f08806 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employers_search_request.py b/plaid/model/employers_search_request.py index bae32e302..63d70f511 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employers_search_response.py b/plaid/model/employers_search_response.py index 9e90808ea..e4d003bfe 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employment_details.py b/plaid/model/employment_details.py index f2194f60e..6eae8598a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employment_source_type.py b/plaid/model/employment_source_type.py index e9c151a2e..58b2d1b01 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employment_verification.py b/plaid/model/employment_verification.py index 49b555880..bde2d9c58 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5f3323c7b..9c0fdc1a1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5076d2a01..476667f3b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employment_verification_status.py b/plaid/model/employment_verification_status.py index 32351c9da..cb35c56b6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/enhancements.py b/plaid/model/enhancements.py index 9f8fccd0d..abc90e531 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/enrich_transaction_direction.py b/plaid/model/enrich_transaction_direction.py index ca9546552..9a36d06f8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/enrichments.py b/plaid/model/enrichments.py index dd8619348..9ff1322e9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_document.py b/plaid/model/entity_document.py index c3cd11a76..c7c30a2e4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_document_type.py b/plaid/model/entity_document_type.py index 6ba6d4091..fef90d6aa 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3d81357ea..19049a591 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7e2e8fa26..2fa7e1d06 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8b0165319..c953e3155 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2724e0527..752872758 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 91df97f1f..92edb88b4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b7915afba..90b24470e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 29b83b9ad..6cb0120d4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3320935fa..b1e3916a8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9fcb153c9..f37e21c93 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5d48ea36f..d35059c0f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 58d179dda..ccf4e0087 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e764d780b..9966239db 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_watchlist_code.py b/plaid/model/entity_watchlist_code.py index 82f22f62b..057729b76 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_watchlist_program.py b/plaid/model/entity_watchlist_program.py index 3b79a138e..580c18fb6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_watchlist_screening.py b/plaid/model/entity_watchlist_screening.py index 4d3777534..6a6058b86 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bea61742e..83f872bd9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_watchlist_screening_name.py b/plaid/model/entity_watchlist_screening_name.py index 3b7c77a0d..1dd5aced0 100644 --- a/plaid/model/entity_watchlist_screening_name.py +++ b/plaid/model/entity_watchlist_screening_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_watchlist_screening_program_name.py b/plaid/model/entity_watchlist_screening_program_name.py index f5746ae8e..9d47429e2 100644 --- a/plaid/model/entity_watchlist_screening_program_name.py +++ b/plaid/model/entity_watchlist_screening_program_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a6ade6192..031f50c93 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 670573cec..56ea27742 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5bf0fcd1e..ccad495bd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/expiration_date.py b/plaid/model/expiration_date.py index 2eae0e325..32b05f6c6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 276d3a449..760a10ae0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/external_payment_options.py b/plaid/model/external_payment_options.py index 27a98bc15..1f2d0b601 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d5d2ec172..4906b2eb2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c6a18feae..6b44e1050 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e3cb6182b..8ff8f62d9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9e716740e..e716bc258 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9b678038c..ec97b053c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 076fc1806..89db29445 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_content_types.py b/plaid/model/fdx_content_types.py index bf5c46727..caa942c5a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_hateoas_link.py b/plaid/model/fdx_hateoas_link.py index 99a9edef1..53c22195d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 06b8d8f6c..c5a476ac7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e4a4b69b3..77249122a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification.py b/plaid/model/fdx_notification.py index 3c78e41c5..f0477cec8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification_category.py b/plaid/model/fdx_notification_category.py index dfb8f46e5..f4501f429 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification_payload.py b/plaid/model/fdx_notification_payload.py index 9c9fe1370..3d454a719 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ce0c1584b..5942ac7c6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification_priority.py b/plaid/model/fdx_notification_priority.py index 2c62265b3..2f86ecd28 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification_severity.py b/plaid/model/fdx_notification_severity.py index 24bb9c401..69a35fe3b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification_type.py b/plaid/model/fdx_notification_type.py index 2c1aa93cd..6d686d856 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_party.py b/plaid/model/fdx_party.py index b98a4ad9c..ed90e77e4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_party_registry.py b/plaid/model/fdx_party_registry.py index 2f41c82b7..f2d94188d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_party_type.py b/plaid/model/fdx_party_type.py index b80c4a704..becf48618 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdxfi_attribute.py b/plaid/model/fdxfi_attribute.py index 34e0937ab..70bc9ad36 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/financial_institution_insights.py b/plaid/model/financial_institution_insights.py index 786cfb993..661ad3b56 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/form1099_type.py b/plaid/model/form1099_type.py index 88120f0d9..3d86e7bda 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fraud_amount.py b/plaid/model/fraud_amount.py index 35a370f08..7ba15e71d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/generic_country_code.py b/plaid/model/generic_country_code.py index d954681bc..b429dbd87 100644 --- a/plaid/model/generic_country_code.py +++ b/plaid/model/generic_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/generic_country_code_nullable.py b/plaid/model/generic_country_code_nullable.py index 3f82c8f9c..bfd088d0d 100644 --- a/plaid/model/generic_country_code_nullable.py +++ b/plaid/model/generic_country_code_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c3d5032b9..48962d8f9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/health_incident.py b/plaid/model/health_incident.py index 698a676ba..f137db74e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/historical_balance.py b/plaid/model/historical_balance.py index b72ef61da..eb79eb6ea 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/historical_update_webhook.py b/plaid/model/historical_update_webhook.py index c3af66a17..878f91375 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/holding.py b/plaid/model/holding.py index 775aa3667..b7384e56f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e2f4fd247..6037c4c77 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/holdings_override.py b/plaid/model/holdings_override.py index 63c215be7..61bf3cd36 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7aa780b1d..c14645aad 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a8ae7176d..6109c23c4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/id_number_type.py b/plaid/model/id_number_type.py index fb3da8612..edba768dc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 128d93dbf..eb0b0eae6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_document.py b/plaid/model/identity_document.py index 08be63ec0..117aeaab5 100644 --- a/plaid/model/identity_document.py +++ b/plaid/model/identity_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_document_metadata.py b/plaid/model/identity_document_metadata.py index efdd5ddaf..0fb9e34ae 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_document_upload.py b/plaid/model/identity_document_upload.py index d08addb14..bb91aef8e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bc62d4187..83335fa7a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3ab682b90..6938309e4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6e58c5397..0a8360814 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f4a124b8d..ac1bb2dc9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e99c18e12..267a7e592 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bf7890fa8..5ce32288d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2ee7aeea8..fea8023d6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_get_request.py b/plaid/model/identity_get_request.py index ccb869aa9..f1a362520 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 555bbc516..a142a04c9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_get_response.py b/plaid/model/identity_get_response.py index ba20bbd5d..fa5fc9976 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_match_request.py b/plaid/model/identity_match_request.py index 4fad36f10..da1ccf99c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2b2001c99..640692ab8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_match_response.py b/plaid/model/identity_match_response.py index de0d6b47f..2b25d298f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_match_user.py b/plaid/model/identity_match_user.py index e254cbb9b..c89b58406 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_refresh_request.py b/plaid/model/identity_refresh_request.py index 7d411ca60..527da13fa 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_refresh_response.py b/plaid/model/identity_refresh_response.py index 6304ab325..2f0904435 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_update_types.py b/plaid/model/identity_update_types.py index 3eb536462..9a149888e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification.py b/plaid/model/identity_verification.py index 450031f1a..a60aa0c01 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d9ca7b687..c2281e4e1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 459180d1a..228823015 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 579ef9a42..32cd4eaf1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 059211fae..59dac9d3e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f11974fe1..3f1ef0c5d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c57a4bc3d..9b53a714d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bde6ddf13..70402d9ff 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ff8bdbe72..1cdf2fcad 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 91b039a3d..1c9a1a4ac 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_document_country_code.py b/plaid/model/identity_verification_document_country_code.py index 4fc34bcc9..c0604e94f 100644 --- a/plaid/model/identity_verification_document_country_code.py +++ b/plaid/model/identity_verification_document_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a4884bad1..5f37fa0e6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 21e06e6be..ecc38ad0e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 61f159bfd..21683d0eb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bb51d857d..c66473a2a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 440b6111d..53255a30e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cd9541d7e..0bd255a56 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7e08ab5af..c035991c0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 12e6fb339..a51bc4d1f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 74510dbfb..e8cd5b4b5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a093eb5c9..e4f5654d2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a8b5a5492..fdecf5754 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_status.py b/plaid/model/identity_verification_status.py index 8db3bac79..3d689e887 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0deddfb00..54e63588a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 95bd6ef2f..904404558 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5198f0de9..68bd41b41 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bf598ecdb..e1b54f950 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 297b031e1..91788e379 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b49ef8656..97e04417e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f61d1e51e..e950149ae 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/image_quality.py b/plaid/model/image_quality.py index 7c5839335..1803f893c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/incident_update.py b/plaid/model/incident_update.py index 7cd25c3c6..182d8a801 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_breakdown.py b/plaid/model/income_breakdown.py index 59b050b75..e5e67128d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_breakdown_type.py b/plaid/model/income_breakdown_type.py index ec5cb3dbc..6cccbac1e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_override.py b/plaid/model/income_override.py index a80237150..83a552408 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_summary.py b/plaid/model/income_summary.py index ec1fde6f7..31f675129 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 eca24729b..bae208246 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 260cd9098..0b13528f5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b4b196e8e..87b4f2b82 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 73c465994..125dc3a2f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 20911cd57..90d249088 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 68d1cb6ec..7d0587867 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 71cfc2966..0a1389fb3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ba3955411..dc91d8760 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 499cf26d8..79b521dec 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 66d1b02fa..e786e653a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6a66f74f5..b829fd1b3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e01b3d54a..5e9ed9d08 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b85e42255..922fa2aaf 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 664f33f85..545bd9789 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f2d302749..70c54c343 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 60cf45bf5..f87a21d1c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ecb9f18a3..cd7ef8f89 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 644e824ff..00232b5b9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 44f856205..2d1f66468 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d707dc921..255dd5082 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 109cad404..fe7e0a75f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 10eaa59c1..fd56903cf 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 943bc2b5e..83a3ac322 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e8caee4d9..09d9ad344 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e077eca1c..1dfe12bd5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ca65d1b88..dc5e10821 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/individual_name.py b/plaid/model/individual_name.py index 44a978efd..2ad84a333 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b3ed1c65d..634833950 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/individual_watchlist_code.py b/plaid/model/individual_watchlist_code.py index b7ec1e96c..ba21d4cae 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/individual_watchlist_program.py b/plaid/model/individual_watchlist_program.py index 7d68f23cd..7f9a0ea23 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/individual_watchlist_screening_program_name.py b/plaid/model/individual_watchlist_screening_program_name.py index 70db9664b..4de8ab1af 100644 --- a/plaid/model/individual_watchlist_screening_program_name.py +++ b/plaid/model/individual_watchlist_screening_program_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/inflow_model.py b/plaid/model/inflow_model.py index f46017ff7..367241a47 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/initial_update_webhook.py b/plaid/model/initial_update_webhook.py index 77273f081..7b862674a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institution.py b/plaid/model/institution.py index 4a7e54243..c3b0b2fa9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -146,7 +146,7 @@ def _from_openapi_data(cls, institution_id, name, products, country_codes, routi name (str): The official name of the institution. products ([Products]): A list of the Plaid products supported by the institution. Note that only institutions that support Instant Auth will return `auth` in the product array; institutions that do not list `auth` may still support other Auth methods such as Instant Match or Automated Micro-deposit Verification. To identify institutions that support those methods, use the `auth_metadata` object. For more details, see [Full Auth coverage](https://plaid.com/docs/auth/coverage/). The `income_verification` product here indicates support for Bank Income. country_codes ([CountryCode]): A list of the country codes supported by the institution. - routing_numbers ([str]): A partial list of routing numbers associated with the institution. This list is provided for the purpose of looking up institutions by routing number. It is not comprehensive and should never be used as a complete list of routing numbers for an institution. + routing_numbers ([str]): A list of routing numbers known to be associated with the institution. This list is provided for the purpose of looking up institutions by routing number. It is generally comprehensive but is not guaranteed to be a complete list of routing numbers for an institution. oauth (bool): Indicates that the institution has an OAuth login flow. This will be `true` if OAuth is supported for any Items associated with the institution, even if the institution also supports non-OAuth connections. Keyword Args: @@ -252,7 +252,7 @@ def __init__(self, institution_id, name, products, country_codes, routing_number name (str): The official name of the institution. products ([Products]): A list of the Plaid products supported by the institution. Note that only institutions that support Instant Auth will return `auth` in the product array; institutions that do not list `auth` may still support other Auth methods such as Instant Match or Automated Micro-deposit Verification. To identify institutions that support those methods, use the `auth_metadata` object. For more details, see [Full Auth coverage](https://plaid.com/docs/auth/coverage/). The `income_verification` product here indicates support for Bank Income. country_codes ([CountryCode]): A list of the country codes supported by the institution. - routing_numbers ([str]): A partial list of routing numbers associated with the institution. This list is provided for the purpose of looking up institutions by routing number. It is not comprehensive and should never be used as a complete list of routing numbers for an institution. + routing_numbers ([str]): A list of routing numbers known to be associated with the institution. This list is provided for the purpose of looking up institutions by routing number. It is generally comprehensive but is not guaranteed to be a complete list of routing numbers for an institution. oauth (bool): Indicates that the institution has an OAuth login flow. This will be `true` if OAuth is supported for any Items associated with the institution, even if the institution also supports non-OAuth connections. Keyword Args: diff --git a/plaid/model/institution_status.py b/plaid/model/institution_status.py index 07fcb6eda..7f8aa292c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b50af4c84..c0d5e35ec 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institution_supported_networks.py b/plaid/model/institution_supported_networks.py index e38a94e93..6b41c010a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ec28bf974..82359fd01 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e7c38663d..baf6c8d53 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f906905ac..017da5162 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_get_request.py b/plaid/model/institutions_get_request.py index a1131c5d4..394931191 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 50e683645..c741256d8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -154,7 +154,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 through its discriminator because we passed in _visited_composed_classes = (Animal,) products ([Products], none_type): Filter the Institutions based on which products they support. . [optional] # noqa: E501 - routing_numbers ([str], none_type): Specify an array of routing numbers to filter institutions. The response will only return institutions that match all of the routing numbers in the array. Routing number records used for this matching are not comprehensive; failure to match a given routing number to an institution does not mean that the institution is unsupported by Plaid.. [optional] # noqa: E501 + routing_numbers ([str], none_type): Specify an array of routing numbers to filter institutions. The response will only return institutions that match all of the routing numbers in the array. Routing number records used for this matching are generally comprehensive; however, failure to match a given routing number to an institution does not necessarily mean that the institution is unsupported by Plaid.. [optional] # noqa: E501 oauth (bool, none_type): Limit results to institutions with or without OAuth login flows. Note that institutions will have `oauth` set to `true` if some Items associated with that institution are required to use OAuth flows; institutions in a state of migration to OAuth will have the `oauth` attribute set to `true`.. [optional] # noqa: E501 include_optional_metadata (bool): When `true`, return the institution's homepage URL, logo and primary brand color. Note that Plaid does not own any of the logos shared by the API, and that by accessing or using these logos, you agree that you are doing so at your own risk and will, if necessary, obtain all required permissions from the appropriate rights holders and adhere to any applicable usage guidelines. Plaid disclaims all express or implied warranties with respect to the logos.. [optional] # noqa: E501 include_auth_metadata (bool): When `true`, returns metadata related to the Auth product indicating which auth methods are supported.. [optional] if omitted the server will use the default value of False # noqa: E501 @@ -245,7 +245,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 through its discriminator because we passed in _visited_composed_classes = (Animal,) products ([Products], none_type): Filter the Institutions based on which products they support. . [optional] # noqa: E501 - routing_numbers ([str], none_type): Specify an array of routing numbers to filter institutions. The response will only return institutions that match all of the routing numbers in the array. Routing number records used for this matching are not comprehensive; failure to match a given routing number to an institution does not mean that the institution is unsupported by Plaid.. [optional] # noqa: E501 + routing_numbers ([str], none_type): Specify an array of routing numbers to filter institutions. The response will only return institutions that match all of the routing numbers in the array. Routing number records used for this matching are generally comprehensive; however, failure to match a given routing number to an institution does not necessarily mean that the institution is unsupported by Plaid.. [optional] # noqa: E501 oauth (bool, none_type): Limit results to institutions with or without OAuth login flows. Note that institutions will have `oauth` set to `true` if some Items associated with that institution are required to use OAuth flows; institutions in a state of migration to OAuth will have the `oauth` attribute set to `true`.. [optional] # noqa: E501 include_optional_metadata (bool): When `true`, return the institution's homepage URL, logo and primary brand color. Note that Plaid does not own any of the logos shared by the API, and that by accessing or using these logos, you agree that you are doing so at your own risk and will, if necessary, obtain all required permissions from the appropriate rights holders and adhere to any applicable usage guidelines. Plaid disclaims all express or implied warranties with respect to the logos.. [optional] # noqa: E501 include_auth_metadata (bool): When `true`, returns metadata related to the Auth product indicating which auth methods are supported.. [optional] if omitted the server will use the default value of False # noqa: E501 diff --git a/plaid/model/institutions_get_response.py b/plaid/model/institutions_get_response.py index d9561b226..9716093e7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 664d4e46f..ee4dc1d67 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d1073e88e..ab8d25f92 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_search_request.py b/plaid/model/institutions_search_request.py index dc92d8b04..5979fcb35 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f907b4f8b..65ebe72fe 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_search_response.py b/plaid/model/institutions_search_response.py index 4fb5fc524..d115f311e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_account_subtype.py b/plaid/model/investment_account_subtype.py index d27a4b0d3..99ac81db5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_account_subtypes.py b/plaid/model/investment_account_subtypes.py index 95a8892e8..d952bfa31 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_filter.py b/plaid/model/investment_filter.py index 7f4bc8b7d..b24e08b0a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 06c16affd..b4c8b28bf 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_transaction.py b/plaid/model/investment_transaction.py index 0430008f5..6e4589ce1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_transaction_subtype.py b/plaid/model/investment_transaction_subtype.py index c97ad4335..1f7ec3c9a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_transaction_type.py b/plaid/model/investment_transaction_type.py index eb91abce3..6e16046b9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 45735d13f..448abd147 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ef4a20b9b..942de4fe9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0b3f9c85a..5b5edffc3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9acc66311..6a9cecfa5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_auth_owner.py b/plaid/model/investments_auth_owner.py index d8c543999..1e9849220 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 81cd12730..62df7d011 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d8a5c002a..50c78e741 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c5991f601..bdbf90483 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a66ba72dc..143fdcb3c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_refresh_request.py b/plaid/model/investments_refresh_request.py index 605e66be0..dcd557fad 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_refresh_response.py b/plaid/model/investments_refresh_response.py index c126cb8f7..147149b5c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 43a01a260..70f6b8fb9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3e774f926..fef50d186 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7f6a1f6b9..38bce1ddd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_transactions_override.py b/plaid/model/investments_transactions_override.py index 1aaa4fdf9..8909b8922 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/iso_currency_code.py b/plaid/model/iso_currency_code.py index 26a931d0b..fea3467e7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/issuing_country.py b/plaid/model/issuing_country.py index 2c4dc43f4..3f0810933 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item.py b/plaid/model/item.py index b7ed48b0c..e26dcb763 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 395b22ea5..5f9514c78 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9ee062b7c..4c5ac28e4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ae38994c6..b9c4a4b14 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d3c8c3ff2..faca4399e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2cbd6fd16..d5c5f1bbc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d29fdcff0..08af3b182 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c215b31f7..ca97be1d5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 19084e65f..2e4a4d759 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e32367965..ccd0eb988 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8960adc2e..bdade964b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 44b86f91f..15a4d838d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_error_webhook.py b/plaid/model/item_error_webhook.py index 0994bc176..19b510e9d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_get_request.py b/plaid/model/item_get_request.py index 9d74fc5f9..b4695c6df 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_get_response.py b/plaid/model/item_get_response.py index b30e4d5c2..adde7785f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_import_request.py b/plaid/model/item_import_request.py index 431c18674..b8ec27292 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 860c603ff..49698f69a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 dd9ae8773..8948f144b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_import_response.py b/plaid/model/item_import_response.py index 8146c9fa1..dc0fcb73d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b46f58f13..a6b6f0f9d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9623ad4fd..e5958746e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4c2edf6e7..e4b46f0ff 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 84eeb6668..633c6512e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ac7cc24c9..276889686 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ba639b3af..8dee9da5d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_remove_request.py b/plaid/model/item_remove_request.py index 6d0c0b83c..8f50b559a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_remove_response.py b/plaid/model/item_remove_response.py index 32d267ac3..37c18d88f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_status.py b/plaid/model/item_status.py index 66b2d914c..234859d4b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_status_investments.py b/plaid/model/item_status_investments.py index 11ea8ff23..7c9c957bf 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b7ad510ca..01a6d069e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_status_nullable.py b/plaid/model/item_status_nullable.py index 1c32965d5..779e46b4f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_status_transactions.py b/plaid/model/item_status_transactions.py index e29452117..086b39d88 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d53960ac2..4dcfa3394 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 abeb64653..c6eddb5bd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/jwk_public_key.py b/plaid/model/jwk_public_key.py index 20c3d3769..c0a063248 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/jwt_header.py b/plaid/model/jwt_header.py index 201421fff..a8149823c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3cb9cfdeb..e226cb689 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b9659462e..69928035a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/kyc_check_details.py b/plaid/model/kyc_check_details.py index e94813ef9..2705b47d5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e6eff1bd3..de9dbbc14 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 05999ef1f..bf3008162 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3e6eec80d..da530b82f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cfc627123..5329208c8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 835667900..502bf9f76 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d4d4e2260..3e9a7a5f3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 243b85475..cdaeedf93 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d3d2f0dc9..6af120046 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 48a61c68c..fba2d4c0a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/liabilities_get_request.py b/plaid/model/liabilities_get_request.py index 6febe36e4..bceb2004c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e631b97e0..c58940721 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/liabilities_get_response.py b/plaid/model/liabilities_get_response.py index 1154c8293..7d51ac337 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/liabilities_object.py b/plaid/model/liabilities_object.py index 004224385..b2bc2f0a9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/liability_override.py b/plaid/model/liability_override.py index 923dc80a3..b0a2109b3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_callback_metadata.py b/plaid/model/link_callback_metadata.py index 75620256c..8ed91e011 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_account.py b/plaid/model/link_delivery_account.py index b716544e1..40036e13a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3d44d65d3..5bf77130a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ec11a0102..716b57697 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 274c2c96f..22f1d92ef 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a354e2d43..10b63043d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7dcfb0827..22c374afd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c2ca4a7c6..4a7a94322 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b628f0332..bdd186156 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_institution.py b/plaid/model/link_delivery_institution.py index 5ef913a80..67993d219 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_metadata.py b/plaid/model/link_delivery_metadata.py index 308c5fae0..00227b7fa 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_options.py b/plaid/model/link_delivery_options.py index 409cee40d..7b460d895 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_recipient.py b/plaid/model/link_delivery_recipient.py index efd77850a..fe1f4a0f4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bdedbe564..588ae7adc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 49be751fb..727d19a2e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -59,9 +59,7 @@ class LinkDeliveryVerificationStatus(ModelSimple): 'VERIFICATION_EXPIRED': "verification_expired", 'VERIFICATION_FAILED': "verification_failed", 'DATABASE_MATCHED': "database_matched", - 'DATABASE_INSIGHTS_PASS': "database_insights_pass", - 'DATABASE_INSIGHTS_PASS_WITH_CAUTION': "database_insights_pass_with_caution", - 'DATABASE_INSIGHTS_FAIL': "database_insights_fail", + 'DATABASE_INSIGHTS_PENDING': "database_insights_pending", }, } @@ -113,10 +111,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): Indicates an Item's micro-deposit-based verification status.., must be one of ["automatically_verified", "pending_automatic_verification", "pending_manual_verification", "manually_verified", "verification_expired", "verification_failed", "database_matched", "database_insights_pass", "database_insights_pass_with_caution", "database_insights_fail", ] # noqa: E501 + args[0] (str): Indicates an Item's micro-deposit-based verification or database verification status.., must be one of ["automatically_verified", "pending_automatic_verification", "pending_manual_verification", "manually_verified", "verification_expired", "verification_failed", "database_matched", "database_insights_pending", ] # noqa: E501 Keyword Args: - value (str): Indicates an Item's micro-deposit-based verification status.., must be one of ["automatically_verified", "pending_automatic_verification", "pending_manual_verification", "manually_verified", "verification_expired", "verification_failed", "database_matched", "database_insights_pass", "database_insights_pass_with_caution", "database_insights_fail", ] # noqa: E501 + value (str): Indicates an Item's micro-deposit-based verification or database verification status.., must be one of ["automatically_verified", "pending_automatic_verification", "pending_manual_verification", "manually_verified", "verification_expired", "verification_failed", "database_matched", "database_insights_pending", ] # 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. @@ -207,10 +205,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): Indicates an Item's micro-deposit-based verification status.., must be one of ["automatically_verified", "pending_automatic_verification", "pending_manual_verification", "manually_verified", "verification_expired", "verification_failed", "database_matched", "database_insights_pass", "database_insights_pass_with_caution", "database_insights_fail", ] # noqa: E501 + args[0] (str): Indicates an Item's micro-deposit-based verification or database verification status.., must be one of ["automatically_verified", "pending_automatic_verification", "pending_manual_verification", "manually_verified", "verification_expired", "verification_failed", "database_matched", "database_insights_pending", ] # noqa: E501 Keyword Args: - value (str): Indicates an Item's micro-deposit-based verification status.., must be one of ["automatically_verified", "pending_automatic_verification", "pending_manual_verification", "manually_verified", "verification_expired", "verification_failed", "database_matched", "database_insights_pass", "database_insights_pass_with_caution", "database_insights_fail", ] # noqa: E501 + value (str): Indicates an Item's micro-deposit-based verification or database verification status.., must be one of ["automatically_verified", "pending_automatic_verification", "pending_manual_verification", "manually_verified", "verification_expired", "verification_failed", "database_matched", "database_insights_pending", ] # 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/link_delivery_webhook_callback_type.py b/plaid/model/link_delivery_webhook_callback_type.py index 4d92c0a80..be805f463 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1df9fb307..145b1835c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 59f0f122d..3d4ebffc6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_event.py b/plaid/model/link_event.py index 93ebf9c9b..12d4cea97 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_event_metadata.py b/plaid/model/link_event_metadata.py index 81db5bf18..fea74648e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_event_name.py b/plaid/model/link_event_name.py index e6703b1a6..27ea2d02c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_events_webhook.py b/plaid/model/link_events_webhook.py index d00bd8885..7547a466d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 29edd9e59..d04899c24 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1b245ff3c..ddab18a86 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_profile_eligibility_check_request.py b/plaid/model/link_profile_eligibility_check_request.py index 3cf2ae41f..26b014aa1 100644 --- a/plaid/model/link_profile_eligibility_check_request.py +++ b/plaid/model/link_profile_eligibility_check_request.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_profile_eligibility_check_response.py b/plaid/model/link_profile_eligibility_check_response.py index b9f9d2791..6796bc242 100644 --- a/plaid/model/link_profile_eligibility_check_response.py +++ b/plaid/model/link_profile_eligibility_check_response.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_profile_eligibility_check_user.py b/plaid/model/link_profile_eligibility_check_user.py index 68c793b4f..6c1f50cab 100644 --- a/plaid/model/link_profile_eligibility_check_user.py +++ b/plaid/model/link_profile_eligibility_check_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 new file mode 100644 index 000000000..29e5bf777 --- /dev/null +++ b/plaid/model/link_session_bank_employment_result.py @@ -0,0 +1,289 @@ +""" + The Plaid API + + The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 + + The version of the OpenAPI document: 2020-09-14_1.514.1 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from plaid.model_utils import ( # noqa: F401 + ApiTypeError, + ModelComposed, + ModelNormal, + ModelSimple, + cached_property, + change_keys_js_to_python, + convert_js_args_to_python_args, + date, + datetime, + file_type, + none_type, + validate_get_composed_info, + OpenApiModel +) +from plaid.exceptions import ApiAttributeError + + +def lazy_import(): + from plaid.model.credit_session_bank_employment_status import CreditSessionBankEmploymentStatus + from plaid.model.link_session_success_metadata_institution import LinkSessionSuccessMetadataInstitution + globals()['CreditSessionBankEmploymentStatus'] = CreditSessionBankEmploymentStatus + globals()['LinkSessionSuccessMetadataInstitution'] = LinkSessionSuccessMetadataInstitution + + +class LinkSessionBankEmploymentResult(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + lazy_import() + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + lazy_import() + return { + 'status': (CreditSessionBankEmploymentStatus,), # noqa: E501 + 'item_id': (str,), # noqa: E501 + 'institution': (LinkSessionSuccessMetadataInstitution,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'status': 'status', # noqa: E501 + 'item_id': 'item_id', # noqa: E501 + 'institution': 'institution', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, status, item_id, institution, *args, **kwargs): # noqa: E501 + """LinkSessionBankEmploymentResult - a model defined in OpenAPI + + Args: + status (CreditSessionBankEmploymentStatus): + item_id (str): The Plaid Item ID. The `item_id` is always unique; linking the same account at the same institution twice will result in two Items with different `item_id` values. Like all Plaid identifiers, the `item_id` is case-sensitive. + institution (LinkSessionSuccessMetadataInstitution): + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _visited_composed_classes = (Animal,) + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + self = super(OpenApiModel, cls).__new__(cls) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status = status + self.item_id = item_id + self.institution = institution + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, status, item_id, institution, *args, **kwargs): # noqa: E501 + """LinkSessionBankEmploymentResult - a model defined in OpenAPI + + Args: + status (CreditSessionBankEmploymentStatus): + item_id (str): The Plaid Item ID. The `item_id` is always unique; linking the same account at the same institution twice will result in two Items with different `item_id` values. Like all Plaid identifiers, the `item_id` is case-sensitive. + institution (LinkSessionSuccessMetadataInstitution): + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _visited_composed_classes = (Animal,) + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status = status + self.item_id = item_id + self.institution = institution + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + if var_name in self.read_only_vars: + raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate " + f"class with read only attributes.") diff --git a/plaid/model/link_session_bank_income_result.py b/plaid/model/link_session_bank_income_result.py new file mode 100644 index 000000000..1ce91a5ce --- /dev/null +++ b/plaid/model/link_session_bank_income_result.py @@ -0,0 +1,289 @@ +""" + The Plaid API + + The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 + + The version of the OpenAPI document: 2020-09-14_1.514.1 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from plaid.model_utils import ( # noqa: F401 + ApiTypeError, + ModelComposed, + ModelNormal, + ModelSimple, + cached_property, + change_keys_js_to_python, + convert_js_args_to_python_args, + date, + datetime, + file_type, + none_type, + validate_get_composed_info, + OpenApiModel +) +from plaid.exceptions import ApiAttributeError + + +def lazy_import(): + from plaid.model.credit_session_bank_income_status import CreditSessionBankIncomeStatus + from plaid.model.link_session_success_metadata_institution import LinkSessionSuccessMetadataInstitution + globals()['CreditSessionBankIncomeStatus'] = CreditSessionBankIncomeStatus + globals()['LinkSessionSuccessMetadataInstitution'] = LinkSessionSuccessMetadataInstitution + + +class LinkSessionBankIncomeResult(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + lazy_import() + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + lazy_import() + return { + 'status': (CreditSessionBankIncomeStatus,), # noqa: E501 + 'item_id': (str,), # noqa: E501 + 'institution': (LinkSessionSuccessMetadataInstitution,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'status': 'status', # noqa: E501 + 'item_id': 'item_id', # noqa: E501 + 'institution': 'institution', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, status, item_id, institution, *args, **kwargs): # noqa: E501 + """LinkSessionBankIncomeResult - a model defined in OpenAPI + + Args: + status (CreditSessionBankIncomeStatus): + item_id (str): The Plaid Item ID. The `item_id` is always unique; linking the same account at the same institution twice will result in two Items with different `item_id` values. Like all Plaid identifiers, the `item_id` is case-sensitive. + institution (LinkSessionSuccessMetadataInstitution): + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _visited_composed_classes = (Animal,) + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + self = super(OpenApiModel, cls).__new__(cls) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status = status + self.item_id = item_id + self.institution = institution + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, status, item_id, institution, *args, **kwargs): # noqa: E501 + """LinkSessionBankIncomeResult - a model defined in OpenAPI + + Args: + status (CreditSessionBankIncomeStatus): + item_id (str): The Plaid Item ID. The `item_id` is always unique; linking the same account at the same institution twice will result in two Items with different `item_id` values. Like all Plaid identifiers, the `item_id` is case-sensitive. + institution (LinkSessionSuccessMetadataInstitution): + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _visited_composed_classes = (Animal,) + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status = status + self.item_id = item_id + self.institution = institution + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + if var_name in self.read_only_vars: + raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate " + f"class with read only attributes.") diff --git a/plaid/model/link_session_cra_item_add_result.py b/plaid/model/link_session_cra_item_add_result.py new file mode 100644 index 000000000..7b1b70d67 --- /dev/null +++ b/plaid/model/link_session_cra_item_add_result.py @@ -0,0 +1,281 @@ +""" + The Plaid API + + The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 + + The version of the OpenAPI document: 2020-09-14_1.514.1 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from plaid.model_utils import ( # noqa: F401 + ApiTypeError, + ModelComposed, + ModelNormal, + ModelSimple, + cached_property, + change_keys_js_to_python, + convert_js_args_to_python_args, + date, + datetime, + file_type, + none_type, + validate_get_composed_info, + OpenApiModel +) +from plaid.exceptions import ApiAttributeError + + +def lazy_import(): + from plaid.model.link_session_success_metadata_institution import LinkSessionSuccessMetadataInstitution + globals()['LinkSessionSuccessMetadataInstitution'] = LinkSessionSuccessMetadataInstitution + + +class LinkSessionCRAItemAddResult(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + lazy_import() + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + lazy_import() + return { + 'item_id': (str,), # noqa: E501 + 'institution': (LinkSessionSuccessMetadataInstitution,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'item_id': 'item_id', # noqa: E501 + 'institution': 'institution', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, item_id, institution, *args, **kwargs): # noqa: E501 + """LinkSessionCRAItemAddResult - a model defined in OpenAPI + + Args: + item_id (str): The Plaid Item ID. The `item_id` is always unique; linking the same account at the same institution twice will result in two Items with different `item_id` values. Like all Plaid identifiers, the `item_id` is case-sensitive. + institution (LinkSessionSuccessMetadataInstitution): + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _visited_composed_classes = (Animal,) + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + self = super(OpenApiModel, cls).__new__(cls) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.item_id = item_id + self.institution = institution + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, item_id, institution, *args, **kwargs): # noqa: E501 + """LinkSessionCRAItemAddResult - a model defined in OpenAPI + + Args: + item_id (str): The Plaid Item ID. The `item_id` is always unique; linking the same account at the same institution twice will result in two Items with different `item_id` values. Like all Plaid identifiers, the `item_id` is case-sensitive. + institution (LinkSessionSuccessMetadataInstitution): + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _visited_composed_classes = (Animal,) + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.item_id = item_id + self.institution = institution + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + if var_name in self.read_only_vars: + raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate " + f"class with read only attributes.") diff --git a/plaid/model/link_session_exit.py b/plaid/model/link_session_exit.py index 517dcd977..8919068ca 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1fd3497c5..477ac05ae 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e2e8f289d..55788cd52 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 042834c88..421ee9861 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 new file mode 100644 index 000000000..a7bcf3dfa --- /dev/null +++ b/plaid/model/link_session_item_add_result.py @@ -0,0 +1,287 @@ +""" + The Plaid API + + The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 + + The version of the OpenAPI document: 2020-09-14_1.514.1 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from plaid.model_utils import ( # noqa: F401 + ApiTypeError, + ModelComposed, + ModelNormal, + ModelSimple, + cached_property, + change_keys_js_to_python, + convert_js_args_to_python_args, + date, + datetime, + file_type, + none_type, + validate_get_composed_info, + OpenApiModel +) +from plaid.exceptions import ApiAttributeError + + +def lazy_import(): + from plaid.model.link_session_success_metadata_institution import LinkSessionSuccessMetadataInstitution + globals()['LinkSessionSuccessMetadataInstitution'] = LinkSessionSuccessMetadataInstitution + + +class LinkSessionItemAddResult(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + lazy_import() + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + lazy_import() + return { + 'public_token': (str,), # noqa: E501 + 'item_id': (str,), # noqa: E501 + 'institution': (LinkSessionSuccessMetadataInstitution,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'public_token': 'public_token', # noqa: E501 + 'item_id': 'item_id', # noqa: E501 + 'institution': 'institution', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, public_token, item_id, institution, *args, **kwargs): # noqa: E501 + """LinkSessionItemAddResult - a model defined in OpenAPI + + Args: + public_token (str): Returned once a user has successfully linked their Item. + item_id (str): The Plaid Item ID. The `item_id` is always unique; linking the same account at the same institution twice will result in two Items with different `item_id` values. Like all Plaid identifiers, the `item_id` is case-sensitive. + institution (LinkSessionSuccessMetadataInstitution): + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _visited_composed_classes = (Animal,) + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + self = super(OpenApiModel, cls).__new__(cls) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.public_token = public_token + self.item_id = item_id + self.institution = institution + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, public_token, item_id, institution, *args, **kwargs): # noqa: E501 + """LinkSessionItemAddResult - a model defined in OpenAPI + + Args: + public_token (str): Returned once a user has successfully linked their Item. + item_id (str): The Plaid Item ID. The `item_id` is always unique; linking the same account at the same institution twice will result in two Items with different `item_id` values. Like all Plaid identifiers, the `item_id` is case-sensitive. + institution (LinkSessionSuccessMetadataInstitution): + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _visited_composed_classes = (Animal,) + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.public_token = public_token + self.item_id = item_id + self.institution = institution + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + if var_name in self.read_only_vars: + raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate " + f"class with read only attributes.") diff --git a/plaid/model/link_session_payroll_income_result.py b/plaid/model/link_session_payroll_income_result.py new file mode 100644 index 000000000..74dd78de4 --- /dev/null +++ b/plaid/model/link_session_payroll_income_result.py @@ -0,0 +1,287 @@ +""" + The Plaid API + + The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 + + The version of the OpenAPI document: 2020-09-14_1.514.1 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from plaid.model_utils import ( # noqa: F401 + ApiTypeError, + ModelComposed, + ModelNormal, + ModelSimple, + cached_property, + change_keys_js_to_python, + convert_js_args_to_python_args, + date, + datetime, + file_type, + none_type, + validate_get_composed_info, + OpenApiModel +) +from plaid.exceptions import ApiAttributeError + + +def lazy_import(): + from plaid.model.link_session_success_metadata_institution import LinkSessionSuccessMetadataInstitution + globals()['LinkSessionSuccessMetadataInstitution'] = LinkSessionSuccessMetadataInstitution + + +class LinkSessionPayrollIncomeResult(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + lazy_import() + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + lazy_import() + return { + 'num_paystubs_retrieved': (int,), # noqa: E501 + 'num_w2s_retrieved': (int,), # noqa: E501 + 'institution': (LinkSessionSuccessMetadataInstitution,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'num_paystubs_retrieved': 'num_paystubs_retrieved', # noqa: E501 + 'num_w2s_retrieved': 'num_w2s_retrieved', # noqa: E501 + 'institution': 'institution', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, num_paystubs_retrieved, num_w2s_retrieved, institution, *args, **kwargs): # noqa: E501 + """LinkSessionPayrollIncomeResult - a model defined in OpenAPI + + Args: + num_paystubs_retrieved (int): The number of paystubs retrieved from a payroll provider. + num_w2s_retrieved (int): The number of W-2s retrieved from a payroll provider. + institution (LinkSessionSuccessMetadataInstitution): + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _visited_composed_classes = (Animal,) + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + self = super(OpenApiModel, cls).__new__(cls) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.num_paystubs_retrieved = num_paystubs_retrieved + self.num_w2s_retrieved = num_w2s_retrieved + self.institution = institution + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, num_paystubs_retrieved, num_w2s_retrieved, institution, *args, **kwargs): # noqa: E501 + """LinkSessionPayrollIncomeResult - a model defined in OpenAPI + + Args: + num_paystubs_retrieved (int): The number of paystubs retrieved from a payroll provider. + num_w2s_retrieved (int): The number of W-2s retrieved from a payroll provider. + institution (LinkSessionSuccessMetadataInstitution): + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _visited_composed_classes = (Animal,) + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.num_paystubs_retrieved = num_paystubs_retrieved + self.num_w2s_retrieved = num_w2s_retrieved + self.institution = institution + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + if var_name in self.read_only_vars: + raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate " + f"class with read only attributes.") diff --git a/plaid/model/link_session_results.py b/plaid/model/link_session_results.py new file mode 100644 index 000000000..9afde9578 --- /dev/null +++ b/plaid/model/link_session_results.py @@ -0,0 +1,315 @@ +""" + The Plaid API + + The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 + + The version of the OpenAPI document: 2020-09-14_1.514.1 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from plaid.model_utils import ( # noqa: F401 + ApiTypeError, + ModelComposed, + ModelNormal, + ModelSimple, + cached_property, + change_keys_js_to_python, + convert_js_args_to_python_args, + date, + datetime, + file_type, + none_type, + validate_get_composed_info, + OpenApiModel +) +from plaid.exceptions import ApiAttributeError + + +def lazy_import(): + from plaid.model.credit_session_document_income_result import CreditSessionDocumentIncomeResult + from plaid.model.link_session_bank_employment_result import LinkSessionBankEmploymentResult + from plaid.model.link_session_bank_income_result import LinkSessionBankIncomeResult + from plaid.model.link_session_cra_item_add_result import LinkSessionCRAItemAddResult + from plaid.model.link_session_item_add_result import LinkSessionItemAddResult + from plaid.model.link_session_payroll_income_result import LinkSessionPayrollIncomeResult + globals()['CreditSessionDocumentIncomeResult'] = CreditSessionDocumentIncomeResult + globals()['LinkSessionBankEmploymentResult'] = LinkSessionBankEmploymentResult + globals()['LinkSessionBankIncomeResult'] = LinkSessionBankIncomeResult + globals()['LinkSessionCRAItemAddResult'] = LinkSessionCRAItemAddResult + globals()['LinkSessionItemAddResult'] = LinkSessionItemAddResult + globals()['LinkSessionPayrollIncomeResult'] = LinkSessionPayrollIncomeResult + + +class LinkSessionResults(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + lazy_import() + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = True + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + lazy_import() + return { + 'item_add_results': ([LinkSessionItemAddResult],), # noqa: E501 + 'cra_item_add_results': ([LinkSessionCRAItemAddResult],), # noqa: E501 + 'bank_income_results': ([LinkSessionBankIncomeResult],), # noqa: E501 + 'bank_employment_results': ([LinkSessionBankEmploymentResult],), # noqa: E501 + 'payroll_income_results': ([LinkSessionPayrollIncomeResult],), # noqa: E501 + 'document_income_results': (CreditSessionDocumentIncomeResult,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'item_add_results': 'item_add_results', # noqa: E501 + 'cra_item_add_results': 'cra_item_add_results', # noqa: E501 + 'bank_income_results': 'bank_income_results', # noqa: E501 + 'bank_employment_results': 'bank_employment_results', # noqa: E501 + 'payroll_income_results': 'payroll_income_results', # noqa: E501 + 'document_income_results': 'document_income_results', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, item_add_results, cra_item_add_results, bank_income_results, bank_employment_results, payroll_income_results, document_income_results, *args, **kwargs): # noqa: E501 + """LinkSessionResults - a model defined in OpenAPI + + Args: + item_add_results ([LinkSessionItemAddResult]): The set of Item adds for the Link session. + cra_item_add_results ([LinkSessionCRAItemAddResult]): The set of CRA Item adds for the Link session. + bank_income_results ([LinkSessionBankIncomeResult]): The set of bank income verifications for the Link session. + bank_employment_results ([LinkSessionBankEmploymentResult]): The set of bank employment verifications for the Link session. + payroll_income_results ([LinkSessionPayrollIncomeResult]): The set of payroll income verifications for the Link session. + document_income_results (CreditSessionDocumentIncomeResult): + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _visited_composed_classes = (Animal,) + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + self = super(OpenApiModel, cls).__new__(cls) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.item_add_results = item_add_results + self.cra_item_add_results = cra_item_add_results + self.bank_income_results = bank_income_results + self.bank_employment_results = bank_employment_results + self.payroll_income_results = payroll_income_results + self.document_income_results = document_income_results + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, item_add_results, cra_item_add_results, bank_income_results, bank_employment_results, payroll_income_results, document_income_results, *args, **kwargs): # noqa: E501 + """LinkSessionResults - a model defined in OpenAPI + + Args: + item_add_results ([LinkSessionItemAddResult]): The set of Item adds for the Link session. + cra_item_add_results ([LinkSessionCRAItemAddResult]): The set of CRA Item adds for the Link session. + bank_income_results ([LinkSessionBankIncomeResult]): The set of bank income verifications for the Link session. + bank_employment_results ([LinkSessionBankEmploymentResult]): The set of bank employment verifications for the Link session. + payroll_income_results ([LinkSessionPayrollIncomeResult]): The set of payroll income verifications for the Link session. + document_income_results (CreditSessionDocumentIncomeResult): + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _visited_composed_classes = (Animal,) + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.item_add_results = item_add_results + self.cra_item_add_results = cra_item_add_results + self.bank_income_results = bank_income_results + self.bank_employment_results = bank_employment_results + self.payroll_income_results = payroll_income_results + self.document_income_results = document_income_results + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + if var_name in self.read_only_vars: + raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate " + f"class with read only attributes.") diff --git a/plaid/model/link_session_success.py b/plaid/model/link_session_success.py index c2cebc63e..67b1c1e0b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f641d076b..36bd2d55b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7fff22a19..db4b293c3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -151,7 +151,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 mask (str, none_type): The last 2-4 alphanumeric characters of an account's official account number. Note that the mask may be non-unique between an Item's accounts. It may also not match the mask that the bank displays to the user.. [optional] # noqa: E501 type (str): The account type. See the [Account schema](/docs/api/accounts#account-type-schema) for a full list of possible values. [optional] # noqa: E501 subtype (str): The account subtype. See the [Account schema](/docs/api/accounts#account-type-schema) for a full list of possible values. [optional] # noqa: E501 - verification_status (str, none_type): Indicates an Item's micro-deposit-based verification status. Possible values are: `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the code. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. `database_insights_pass`: The Item's account and routing number pair has been verified against a known account using Plaid's data sources and has strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's account and routing number pair was unable to be verified against a known account using Plaid's data sources. However, the routing number has strong signal for being valid, and the account number format is consistent with other known account numbers used with the given routing number. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's account and routing number pair has been checked using Plaid's data sources and has signal for being invalid and/or has no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `null`: micro-deposit-based verification is not being used for the Item. . [optional] # noqa: E501 + verification_status (str, none_type): Indicates an Item's micro-deposit-based verification or database verification status. Possible values are: `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the code. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. `database_insights_pending`: The Database Insights result is pending and will be available upon Auth request. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `null`: Neither micro-deposit-based verification nor database verification are being used for the Item. . [optional] # noqa: E501 class_type (str, none_type): If micro-deposit verification is being used, indicates whether the account being verified is a `business` or `personal` account.. [optional] # noqa: E501 """ @@ -243,7 +243,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 mask (str, none_type): The last 2-4 alphanumeric characters of an account's official account number. Note that the mask may be non-unique between an Item's accounts. It may also not match the mask that the bank displays to the user.. [optional] # noqa: E501 type (str): The account type. See the [Account schema](/docs/api/accounts#account-type-schema) for a full list of possible values. [optional] # noqa: E501 subtype (str): The account subtype. See the [Account schema](/docs/api/accounts#account-type-schema) for a full list of possible values. [optional] # noqa: E501 - verification_status (str, none_type): Indicates an Item's micro-deposit-based verification status. Possible values are: `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the code. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. `database_insights_pass`: The Item's account and routing number pair has been verified against a known account using Plaid's data sources and has strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's account and routing number pair was unable to be verified against a known account using Plaid's data sources. However, the routing number has strong signal for being valid, and the account number format is consistent with other known account numbers used with the given routing number. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's account and routing number pair has been checked using Plaid's data sources and has signal for being invalid and/or has no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `null`: micro-deposit-based verification is not being used for the Item. . [optional] # noqa: E501 + verification_status (str, none_type): Indicates an Item's micro-deposit-based verification or database verification status. Possible values are: `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the code. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. `database_insights_pending`: The Database Insights result is pending and will be available upon Auth request. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `null`: Neither micro-deposit-based verification nor database verification are being used for the Item. . [optional] # noqa: E501 class_type (str, none_type): If micro-deposit verification is being used, indicates whether the account being verified is a `business` or `personal` account.. [optional] # noqa: E501 """ diff --git a/plaid/model/link_session_success_metadata_institution.py b/plaid/model/link_session_success_metadata_institution.py index b78e106e7..e91c894fc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8ef217e18..e864563d5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f06af7689..180625eef 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b7f7c3b10..ec5bb6a91 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 79e50764f..cb6280b43 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0a935715a..ebae87aff 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 77c979bc9..89ca753d9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 fbf3ec1f9..61d0e8804 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e3744f14c..84615f01d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d211e67c5..000226c87 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1420cd24f..82956a2d7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a270f9eda..b2f65ae01 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -185,6 +185,8 @@ def openapi_types(): 'transactions': (LinkTokenTransactions,), # noqa: E501 'cra_enabled': (bool,), # noqa: E501 'identity': (LinkTokenCreateIdentity,), # noqa: E501 + 'financekit_supported': (bool,), # noqa: E501 + 'enable_multi_item_link': (bool,), # noqa: E501 } @cached_property @@ -233,6 +235,8 @@ def discriminator(): 'transactions': 'transactions', # noqa: E501 'cra_enabled': 'cra_enabled', # noqa: E501 'identity': 'identity', # noqa: E501 + 'financekit_supported': 'financekit_supported', # noqa: E501 + 'enable_multi_item_link': 'enable_multi_item_link', # noqa: E501 } read_only_vars = { @@ -292,7 +296,7 @@ def _from_openapi_data(cls, client_name, language, country_codes, user, *args, * access_token (str, none_type): The `access_token` associated with the Item to update or reference, used when updating, modifying, or accessing an existing `access_token`. Used when launching Link in update mode, when completing the Same-day (manual) Micro-deposit flow, or (optionally) when initializing Link for a returning user as part of the Transfer UI flow.. [optional] # noqa: E501 access_tokens ([str]): A list of access tokens associated with the items to update in Link update mode for the Assets product. Using this instead of the `access_token` field allows the updating of multiple items at once. This feature is in closed beta, please contact your account manager for more info.. [optional] # noqa: E501 link_customization_name (str): The name of the Link customization from the Plaid Dashboard to be applied to Link. If not specified, the `default` customization will be used. When using a Link customization, the language in the customization must match the language selected via the `language` parameter, and the countries in the customization should match the country codes selected via `country_codes`.. [optional] # noqa: E501 - redirect_uri (str): A URI indicating the destination where a user should be forwarded after completing the Link flow; used to support OAuth authentication flows when launching Link in the browser or another app. The `redirect_uri` should not contain any query parameters. When used in Production or Development, must be an https URI. To specify any subdomain, use `*` as a wildcard character, e.g. `https://*.example.com/oauth.html`. Note that any redirect URI must also be added to the Allowed redirect URIs list in the [developer dashboard](https://dashboard.plaid.com/team/api). If initializing on Android, `android_package_name` must be specified instead and `redirect_uri` should be left blank. If using Hosted Link, the `redirect_uri` must be set to `https://hosted.plaid.com/oauth/redirect`.. [optional] # noqa: E501 + redirect_uri (str): A URI indicating the destination where a user should be forwarded after completing the Link flow; used to support OAuth authentication flows when launching Link in the browser or another app. The `redirect_uri` should not contain any query parameters. When used in Production or Development, must be an https URI. To specify any subdomain, use `*` as a wildcard character, e.g. `https://*.example.com/oauth.html`. Note that any redirect URI must also be added to the Allowed redirect URIs list in the [developer dashboard](https://dashboard.plaid.com/team/api). If initializing on Android, `android_package_name` must be specified instead and `redirect_uri` should be left blank. If using Hosted Link, the `redirect_uri` must be set to `https://secure.plaid.com/oauth/redirect`.. [optional] # noqa: E501 android_package_name (str): The name of your app's Android package. Required if using the `link_token` to initialize Link on Android. Any package name specified here must also be added to the Allowed Android package names setting on the [developer dashboard](https://dashboard.plaid.com/team/api). When creating a `link_token` for initializing Link on other platforms, `android_package_name` must be left blank and `redirect_uri` should be used instead.. [optional] # noqa: E501 institution_data (LinkTokenCreateInstitutionData): [optional] # noqa: E501 card_switch (LinkTokenCreateCardSwitch): [optional] # noqa: E501 @@ -318,6 +322,8 @@ def _from_openapi_data(cls, client_name, language, country_codes, user, *args, * transactions (LinkTokenTransactions): [optional] # noqa: E501 cra_enabled (bool): If `true`, request a CRA connection. Defaults to `false`.. [optional] # noqa: E501 identity (LinkTokenCreateIdentity): [optional] # noqa: E501 + financekit_supported (bool): If `true`, indicates that client supports linking FinanceKit / AppleCard items. Defaults to `false`.. [optional] # noqa: E501 + enable_multi_item_link (bool): If `true`, enable linking multiple items in the same Link session. Defaults to `false`.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -423,7 +429,7 @@ def __init__(self, client_name, language, country_codes, user, *args, **kwargs): access_token (str, none_type): The `access_token` associated with the Item to update or reference, used when updating, modifying, or accessing an existing `access_token`. Used when launching Link in update mode, when completing the Same-day (manual) Micro-deposit flow, or (optionally) when initializing Link for a returning user as part of the Transfer UI flow.. [optional] # noqa: E501 access_tokens ([str]): A list of access tokens associated with the items to update in Link update mode for the Assets product. Using this instead of the `access_token` field allows the updating of multiple items at once. This feature is in closed beta, please contact your account manager for more info.. [optional] # noqa: E501 link_customization_name (str): The name of the Link customization from the Plaid Dashboard to be applied to Link. If not specified, the `default` customization will be used. When using a Link customization, the language in the customization must match the language selected via the `language` parameter, and the countries in the customization should match the country codes selected via `country_codes`.. [optional] # noqa: E501 - redirect_uri (str): A URI indicating the destination where a user should be forwarded after completing the Link flow; used to support OAuth authentication flows when launching Link in the browser or another app. The `redirect_uri` should not contain any query parameters. When used in Production or Development, must be an https URI. To specify any subdomain, use `*` as a wildcard character, e.g. `https://*.example.com/oauth.html`. Note that any redirect URI must also be added to the Allowed redirect URIs list in the [developer dashboard](https://dashboard.plaid.com/team/api). If initializing on Android, `android_package_name` must be specified instead and `redirect_uri` should be left blank. If using Hosted Link, the `redirect_uri` must be set to `https://hosted.plaid.com/oauth/redirect`.. [optional] # noqa: E501 + redirect_uri (str): A URI indicating the destination where a user should be forwarded after completing the Link flow; used to support OAuth authentication flows when launching Link in the browser or another app. The `redirect_uri` should not contain any query parameters. When used in Production or Development, must be an https URI. To specify any subdomain, use `*` as a wildcard character, e.g. `https://*.example.com/oauth.html`. Note that any redirect URI must also be added to the Allowed redirect URIs list in the [developer dashboard](https://dashboard.plaid.com/team/api). If initializing on Android, `android_package_name` must be specified instead and `redirect_uri` should be left blank. If using Hosted Link, the `redirect_uri` must be set to `https://secure.plaid.com/oauth/redirect`.. [optional] # noqa: E501 android_package_name (str): The name of your app's Android package. Required if using the `link_token` to initialize Link on Android. Any package name specified here must also be added to the Allowed Android package names setting on the [developer dashboard](https://dashboard.plaid.com/team/api). When creating a `link_token` for initializing Link on other platforms, `android_package_name` must be left blank and `redirect_uri` should be used instead.. [optional] # noqa: E501 institution_data (LinkTokenCreateInstitutionData): [optional] # noqa: E501 card_switch (LinkTokenCreateCardSwitch): [optional] # noqa: E501 @@ -449,6 +455,8 @@ def __init__(self, client_name, language, country_codes, user, *args, **kwargs): transactions (LinkTokenTransactions): [optional] # noqa: E501 cra_enabled (bool): If `true`, request a CRA connection. Defaults to `false`.. [optional] # noqa: E501 identity (LinkTokenCreateIdentity): [optional] # noqa: E501 + financekit_supported (bool): If `true`, indicates that client supports linking FinanceKit / AppleCard items. Defaults to `false`.. [optional] # noqa: E501 + enable_multi_item_link (bool): If `true`, enable linking multiple items in the same Link session. Defaults to `false`.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/plaid/model/link_token_create_request_account_subtypes.py b/plaid/model/link_token_create_request_account_subtypes.py index 98a1ab994..6b59523a8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 34388b8f9..aae75b783 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 43fd6b981..fe3b6ee27 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f1199fb20..09de50ddb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1e3172888..ec674e3e1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4b6d80dcc..7ebf7a35d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4a73da791..5d68b9261 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 94e9b8964..4bbffd5d1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f51019df0..55a8834cf 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6f92b146c..db76229b9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4a6b43c2a..1a4e60682 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7a04533ce..3835604d2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 de0c5f89d..aeab1e21f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6270cee05..9238d4c18 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1b758d37c..83f86d04c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a62e91791..e3a756d29 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -172,9 +172,9 @@ def _from_openapi_data(cls, client_user_id, *args, **kwargs): # noqa: E501 _visited_composed_classes = (Animal,) legal_name (str): The user's full legal name, used for [micro-deposit based verification flows](https://plaid.com/docs/auth/coverage/). For a small number of customers on legacy flows, providing this field is required to enable micro-deposit-based flows. For all other customers, this field is optional. Providing the user's name in this field when using micro-deposit-based verification will streamline the end user experience, as the user will not be prompted to enter their name during the Link flow; Plaid will use the provided legal name instead.. [optional] # noqa: E501 name (LinkTokenCreateRequestUserName): [optional] # noqa: E501 - phone_number (str): The user's phone number in [E.164](https://en.wikipedia.org/wiki/E.164) format. This field is optional, but required to enable the [returning user experience](https://plaid.com/docs/link/returning-user). Can also be used to prefill Link fields when used with Identity Verification.. [optional] # noqa: E501 + phone_number (str): The user's phone number in [E.164](https://en.wikipedia.org/wiki/E.164) format. If supplied, will be used when applicable to prefill phone number fields in Link for the [returning user flow](https://www.plaid.com/docs/link/returning/user) and the [Identity Verification flow](https://www.plaid.com/docs/identity-verification).. [optional] # noqa: E501 phone_number_verified_time (datetime, none_type): The date and time the phone number was verified in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDThh:mm:ssZ`). This was previously an optional field used in the [returning user experience](https://plaid.com/docs/link/returning-user). This field is no longer required to enable the returning user experience. Only pass a verification time for a phone number that you have verified. If you have performed verification but don’t have the time, you may supply a signal value of the start of the UNIX epoch. Example: `2020-01-01T00:00:00Z` . [optional] # noqa: E501 - email_address (str): The user's email address. This field is optional, but required to enable the [pre-authenticated returning user flow](https://plaid.com/docs/link/returning-user/#pre-authenticated-rux). Can also be used to prefill Link fields when used with Identity Verification.. [optional] # noqa: E501 + email_address (str): The user's email address. Can be used to prefill Link fields when used with [Identity Verification](https://www.plaid.com/docs/identity-verification).. [optional] # noqa: E501 email_address_verified_time (datetime, none_type): The date and time the email address was verified in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDThh:mm:ssZ`). This was previously an optional field used in the [returning user experience](https://plaid.com/docs/link/returning-user). This field is no longer required to enable the returning user experience. Only pass a verification time for an email address that you have verified. If you have performed verification but don’t have the time, you may supply a signal value of the start of the UNIX epoch. Example: `2020-01-01T00:00:00Z`. [optional] # noqa: E501 ssn (str): Deprecated and not currently used, use the `id_number` field instead.. [optional] # noqa: E501 date_of_birth (date, none_type): To be provided in the format \"yyyy-mm-dd\". Can be used to prefill Link fields when used with Identity Verification.. [optional] # noqa: E501 @@ -271,9 +271,9 @@ def __init__(self, client_user_id, *args, **kwargs): # noqa: E501 _visited_composed_classes = (Animal,) legal_name (str): The user's full legal name, used for [micro-deposit based verification flows](https://plaid.com/docs/auth/coverage/). For a small number of customers on legacy flows, providing this field is required to enable micro-deposit-based flows. For all other customers, this field is optional. Providing the user's name in this field when using micro-deposit-based verification will streamline the end user experience, as the user will not be prompted to enter their name during the Link flow; Plaid will use the provided legal name instead.. [optional] # noqa: E501 name (LinkTokenCreateRequestUserName): [optional] # noqa: E501 - phone_number (str): The user's phone number in [E.164](https://en.wikipedia.org/wiki/E.164) format. This field is optional, but required to enable the [returning user experience](https://plaid.com/docs/link/returning-user). Can also be used to prefill Link fields when used with Identity Verification.. [optional] # noqa: E501 + phone_number (str): The user's phone number in [E.164](https://en.wikipedia.org/wiki/E.164) format. If supplied, will be used when applicable to prefill phone number fields in Link for the [returning user flow](https://www.plaid.com/docs/link/returning/user) and the [Identity Verification flow](https://www.plaid.com/docs/identity-verification).. [optional] # noqa: E501 phone_number_verified_time (datetime, none_type): The date and time the phone number was verified in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDThh:mm:ssZ`). This was previously an optional field used in the [returning user experience](https://plaid.com/docs/link/returning-user). This field is no longer required to enable the returning user experience. Only pass a verification time for a phone number that you have verified. If you have performed verification but don’t have the time, you may supply a signal value of the start of the UNIX epoch. Example: `2020-01-01T00:00:00Z` . [optional] # noqa: E501 - email_address (str): The user's email address. This field is optional, but required to enable the [pre-authenticated returning user flow](https://plaid.com/docs/link/returning-user/#pre-authenticated-rux). Can also be used to prefill Link fields when used with Identity Verification.. [optional] # noqa: E501 + email_address (str): The user's email address. Can be used to prefill Link fields when used with [Identity Verification](https://www.plaid.com/docs/identity-verification).. [optional] # noqa: E501 email_address_verified_time (datetime, none_type): The date and time the email address was verified in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDThh:mm:ssZ`). This was previously an optional field used in the [returning user experience](https://plaid.com/docs/link/returning-user). This field is no longer required to enable the returning user experience. Only pass a verification time for an email address that you have verified. If you have performed verification but don’t have the time, you may supply a signal value of the start of the UNIX epoch. Example: `2020-01-01T00:00:00Z`. [optional] # noqa: E501 ssn (str): Deprecated and not currently used, use the `id_number` field instead.. [optional] # noqa: E501 date_of_birth (date, none_type): To be provided in the format \"yyyy-mm-dd\". Can be used to prefill Link fields when used with Identity Verification.. [optional] # noqa: E501 diff --git a/plaid/model/link_token_create_request_user_address.py b/plaid/model/link_token_create_request_user_address.py index 8b269fc93..06b6b6536 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2ed994929..f0fff923d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bf732088e..07b2c7810 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 26591d4da..2ad34d2d3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b887d9fc6..98b66f4c5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bfef7b6d2..453e79f1e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 38161fbac..b5e55f09a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -101,6 +101,7 @@ def openapi_types(): 'client_name': (str, none_type,), # noqa: E501 'institution_data': (LinkTokenCreateInstitutionData,), # noqa: E501 'account_filters': (AccountFiltersResponse,), # noqa: E501 + 'user_token': (str,), # noqa: E501 } @cached_property @@ -117,6 +118,7 @@ def discriminator(): 'client_name': 'client_name', # noqa: E501 'institution_data': 'institution_data', # noqa: E501 'account_filters': 'account_filters', # noqa: E501 + 'user_token': 'user_token', # noqa: E501 } read_only_vars = { @@ -170,6 +172,7 @@ def _from_openapi_data(cls, initial_products, webhook, country_codes, language, _visited_composed_classes = (Animal,) institution_data (LinkTokenCreateInstitutionData): [optional] # noqa: E501 account_filters (AccountFiltersResponse): [optional] # noqa: E501 + user_token (str): The user token associated with the User data is being requested for.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -271,6 +274,7 @@ def __init__(self, initial_products, webhook, country_codes, language, redirect_ _visited_composed_classes = (Animal,) institution_data (LinkTokenCreateInstitutionData): [optional] # noqa: E501 account_filters (AccountFiltersResponse): [optional] # noqa: E501 + user_token (str): The user token associated with the User data is being requested for.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/plaid/model/link_token_get_request.py b/plaid/model/link_token_get_request.py index 17716bf09..952834eba 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7232f8c9c..ebb4dd541 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -159,7 +159,7 @@ def _from_openapi_data(cls, link_token, created_at, expiration, metadata, reques Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - link_sessions ([LinkTokenGetSessionsResponse]): Information about Link sessions created using this `link_token`. This field will only be present if your client is enabled for Hosted Link. Session data will be provided for up to six hours after the session has ended.. [optional] # noqa: E501 + link_sessions ([LinkTokenGetSessionsResponse]): Information about Link sessions created using this `link_token`. This field will only be present if your client is enabled for Backend Handoff. Session data will be provided for up to six hours after the session has ended.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -257,7 +257,7 @@ def __init__(self, link_token, created_at, expiration, metadata, request_id, *ar Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - link_sessions ([LinkTokenGetSessionsResponse]): Information about Link sessions created using this `link_token`. This field will only be present if your client is enabled for Hosted Link. Session data will be provided for up to six hours after the session has ended.. [optional] # noqa: E501 + link_sessions ([LinkTokenGetSessionsResponse]): Information about Link sessions created using this `link_token`. This field will only be present if your client is enabled for Backend Handoff. Session data will be provided for up to six hours after the session has ended.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/plaid/model/link_token_get_sessions_response.py b/plaid/model/link_token_get_sessions_response.py index 268620482..7cf01947c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -32,9 +32,11 @@ def lazy_import(): from plaid.model.link_event import LinkEvent from plaid.model.link_session_exit import LinkSessionExit + from plaid.model.link_session_results import LinkSessionResults from plaid.model.link_session_success import LinkSessionSuccess globals()['LinkEvent'] = LinkEvent globals()['LinkSessionExit'] = LinkSessionExit + globals()['LinkSessionResults'] = LinkSessionResults globals()['LinkSessionSuccess'] = LinkSessionSuccess @@ -96,7 +98,9 @@ def openapi_types(): 'finished_at': (datetime, none_type,), # noqa: E501 'on_success': (LinkSessionSuccess,), # noqa: E501 'on_exit': (LinkSessionExit,), # noqa: E501 + 'exit': (LinkSessionExit,), # noqa: E501 'events': ([LinkEvent],), # noqa: E501 + 'results': (LinkSessionResults,), # noqa: E501 } @cached_property @@ -110,7 +114,9 @@ def discriminator(): 'finished_at': 'finished_at', # noqa: E501 'on_success': 'on_success', # noqa: E501 'on_exit': 'on_exit', # noqa: E501 + 'exit': 'exit', # noqa: E501 'events': 'events', # noqa: E501 + 'results': 'results', # noqa: E501 } read_only_vars = { @@ -161,7 +167,9 @@ def _from_openapi_data(cls, link_session_id, *args, **kwargs): # noqa: E501 finished_at (datetime, none_type): The timestamp at which the link session was finished, if available, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format.. [optional] # noqa: E501 on_success (LinkSessionSuccess): [optional] # noqa: E501 on_exit (LinkSessionExit): [optional] # noqa: E501 + exit (LinkSessionExit): [optional] # noqa: E501 events ([LinkEvent]): List of customer-related Link events. [optional] # noqa: E501 + results (LinkSessionResults): [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -255,7 +263,9 @@ def __init__(self, link_session_id, *args, **kwargs): # noqa: E501 finished_at (datetime, none_type): The timestamp at which the link session was finished, if available, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format.. [optional] # noqa: E501 on_success (LinkSessionSuccess): [optional] # noqa: E501 on_exit (LinkSessionExit): [optional] # noqa: E501 + exit (LinkSessionExit): [optional] # noqa: E501 events ([LinkEvent]): List of customer-related Link events. [optional] # noqa: E501 + results (LinkSessionResults): [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/plaid/model/link_token_investments.py b/plaid/model/link_token_investments.py index 633d5e8ff..34b1f6066 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 de773ac91..c45fb8bbc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_transactions.py b/plaid/model/link_token_transactions.py index 2c7abb5c5..9cbe0ea66 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 74c945d8c..16cb39726 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan.py b/plaid/model/loan.py index 5be735063..7ce9cb9d4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_account_subtype.py b/plaid/model/loan_account_subtype.py index 542780552..d46545300 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_account_subtypes.py b/plaid/model/loan_account_subtypes.py index 50f1c581f..50d8a4813 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_filter.py b/plaid/model/loan_filter.py index 30a336b02..2bede1b73 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_identifier.py b/plaid/model/loan_identifier.py index 81d994ef1..ce117a6a2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_identifier_type.py b/plaid/model/loan_identifier_type.py index 3d45abec5..206b98dd4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_identifiers.py b/plaid/model/loan_identifiers.py index 9b3c9fee7..7d31d89df 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loans.py b/plaid/model/loans.py index bf9611022..8199f1690 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/location.py b/plaid/model/location.py index 4dbbe19b0..ba93f5143 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/match_summary.py b/plaid/model/match_summary.py index 268aae1e9..b2414e316 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/match_summary_code.py b/plaid/model/match_summary_code.py index 0bed920bb..40d9405e2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/merchant_insights.py b/plaid/model/merchant_insights.py index 675146037..c518805bd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/meta.py b/plaid/model/meta.py index 4051183e4..1dc8bc91e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/mfa.py b/plaid/model/mfa.py index ae1b63fd8..5442f2049 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/mortgage_interest_rate.py b/plaid/model/mortgage_interest_rate.py index ff0b8e2e7..7ead897e4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/mortgage_liability.py b/plaid/model/mortgage_liability.py index c2876178e..265826bf8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/mortgage_property_address.py b/plaid/model/mortgage_property_address.py index 3de78ee46..deafb4ab7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bb417cf7a..ae9861352 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/name_match_score.py b/plaid/model/name_match_score.py index e8df1d9b3..70d243755 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/net_pay.py b/plaid/model/net_pay.py index 06f30ee2c..664a94be6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 085ba5f1b..71387b400 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers.py b/plaid/model/numbers.py index e6ced26de..80be34a0c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_acats.py b/plaid/model/numbers_acats.py index f8c66e631..9f9137621 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_ach.py b/plaid/model/numbers_ach.py index e34d16df7..85dfa867a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_ach_nullable.py b/plaid/model/numbers_ach_nullable.py index fa8b91848..67203ca3a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_aton.py b/plaid/model/numbers_aton.py index 466095e6b..18eeef098 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_bacs.py b/plaid/model/numbers_bacs.py index a5696ec11..89e606b6f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_bacs_nullable.py b/plaid/model/numbers_bacs_nullable.py index aea89c19c..006e50749 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_eft.py b/plaid/model/numbers_eft.py index b6431db62..34c7fc612 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_eft_nullable.py b/plaid/model/numbers_eft_nullable.py index 43df7a835..5726ccf82 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_iban.py b/plaid/model/numbers_iban.py index 5cb0db675..36a142835 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_iban_nullable.py b/plaid/model/numbers_iban_nullable.py index 1d43206e7..8b0aced0d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_international.py b/plaid/model/numbers_international.py index 71a8c4284..156d91d32 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_international_iban.py b/plaid/model/numbers_international_iban.py index 57c616b69..e67c13cb7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_international_nullable.py b/plaid/model/numbers_international_nullable.py index 63f7b2034..d1b9994bb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/omittable_transfer_type.py b/plaid/model/omittable_transfer_type.py index 2c7395342..ec111b844 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/option_contract.py b/plaid/model/option_contract.py index c48e681b6..713b8a772 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/originator.py b/plaid/model/originator.py index 5b29bfb17..6f1ae1830 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 371617f26..d58ddd47b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/other_account_subtype.py b/plaid/model/other_account_subtype.py index 6d7b4b693..45045a328 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/other_account_subtypes.py b/plaid/model/other_account_subtypes.py index 18d225227..469462c9a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/other_filter.py b/plaid/model/other_filter.py index 2691f37ef..0c4cfe3db 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/override_account_type.py b/plaid/model/override_account_type.py index 523e7ebb7..46ea895d2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/override_accounts.py b/plaid/model/override_accounts.py index 448eecb0c..17935522f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/owner.py b/plaid/model/owner.py index c20540545..c2853a86b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/owner_override.py b/plaid/model/owner_override.py index 12f7d01e0..eaba08d3e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/ownership_type.py b/plaid/model/ownership_type.py index 1628fc319..17e103810 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/parties.py b/plaid/model/parties.py index 92a8209ec..dc43782b5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 34f4f204a..e04dcec72 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6dc5303b3..9b3b9f938 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 332e1a29a..f8a315297 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c4b00d3f7..2679e086b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 be96d9c1e..86057a8e3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b50351024..df6fed2ce 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 da551f2a5..7965b98f6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5b399dfb9..781779487 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2724fa5d4..46768a289 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6231cf836..0c3d424b7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer.py b/plaid/model/partner_end_customer.py index 463ee1b7d..d662f1f98 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 53fcaa723..69e0f5e4b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4418c23a8..199d192bf 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 baa09306f..cc5f27b85 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 13f5da0ee..d75e842df 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 fbd48bb04..aef107635 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 89194de95..a7bd16509 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a8f06aff2..3a4e085ef 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1d3abd8c6..b60c53522 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b075d811d..992def874 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e51b4c4fa..3bd8b8377 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f01e0e827..2fbd3f308 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0a1b46c6a..b01ace181 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2a855773e..4e803e6f8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2a4b0e234..9528f69b7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8e54758b8..eb520675f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3856599f6..8a120b750 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/party.py b/plaid/model/party.py index 2e664404b..4d1d96f2c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/party_individual.py b/plaid/model/party_individual.py index f1f518a81..d000ce799 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/party_role_type.py b/plaid/model/party_role_type.py index b6fb3ec2d..6499ea35b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay.py b/plaid/model/pay.py index 7c0595338..220db93fe 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay_frequency.py b/plaid/model/pay_frequency.py index 2ce435bab..aeb592dad 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay_frequency_value.py b/plaid/model/pay_frequency_value.py index d2d211568..e0b197768 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay_period_details.py b/plaid/model/pay_period_details.py index 533620e51..e99bdf267 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f973774f1..d7bfbc655 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8e6363382..555f2e3e4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cc2017399..f698167f2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 54a17e032..76c1f993f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 15cc97e59..4ec6e69e7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b103718b2..bbb3647e6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 88590629b..ed5a81590 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 451a0a144..dcd70ce43 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_amount.py b/plaid/model/payment_amount.py index 6f9251721..d077ebf0d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_amount_currency.py b/plaid/model/payment_amount_currency.py index 13f5e9086..7c2bc16d2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_amount_nullable.py b/plaid/model/payment_amount_nullable.py index 129c8a1a7..540922631 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_amount_refunded.py b/plaid/model/payment_amount_refunded.py index 6c5a3b6e4..4bdb47b7c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e236d344a..ab6a91540 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_channel.py b/plaid/model/payment_channel.py index 4d505779f..920e04545 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 61dcf9f6b..47438b936 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e1877668a..855e08473 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0cf6cbedd..94b508996 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ad2120097..a2ee4f45c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 13431aab6..c3fd6837a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 065f1fda1..8dd925957 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_address.py b/plaid/model/payment_initiation_address.py index 113b37a3b..2988ed642 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent.py b/plaid/model/payment_initiation_consent.py index 3c637ab55..36af57e72 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0a6f6f1d4..67142ab9d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b87c996e3..cf47fa2d0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a9627ba43..a33d7297f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e64627af0..7636a0938 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8ecf60923..bcc123f52 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 39f7cb1e7..97203c679 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b9d23b2a8..db7fcacb3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c6f83f870..d3d853880 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a9faa9588..f03c90400 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 be2121a3f..d94beb85f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2a5ac2e54..511029e77 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 98ef41ad0..c195133ab 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_metadata.py b/plaid/model/payment_initiation_metadata.py index f6bb35445..4e52da695 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -94,6 +94,7 @@ def openapi_types(): 'maximum_payment_amount': (PaymentInitiationMaximumPaymentAmount,), # noqa: E501 'supports_refund_details': (bool,), # noqa: E501 'standing_order_metadata': (PaymentInitiationStandingOrderMetadata,), # noqa: E501 + 'supports_payment_consents': (bool,), # noqa: E501 } @cached_property @@ -107,6 +108,7 @@ def discriminator(): 'maximum_payment_amount': 'maximum_payment_amount', # noqa: E501 'supports_refund_details': 'supports_refund_details', # noqa: E501 'standing_order_metadata': 'standing_order_metadata', # noqa: E501 + 'supports_payment_consents': 'supports_payment_consents', # noqa: E501 } read_only_vars = { @@ -116,7 +118,7 @@ def discriminator(): @classmethod @convert_js_args_to_python_args - def _from_openapi_data(cls, supports_international_payments, supports_sepa_instant, maximum_payment_amount, supports_refund_details, standing_order_metadata, *args, **kwargs): # noqa: E501 + def _from_openapi_data(cls, supports_international_payments, supports_sepa_instant, maximum_payment_amount, supports_refund_details, standing_order_metadata, supports_payment_consents, *args, **kwargs): # noqa: E501 """PaymentInitiationMetadata - a model defined in OpenAPI Args: @@ -125,6 +127,7 @@ def _from_openapi_data(cls, supports_international_payments, supports_sepa_insta maximum_payment_amount (PaymentInitiationMaximumPaymentAmount): supports_refund_details (bool): Indicates whether the institution supports returning refund details when initiating a payment. standing_order_metadata (PaymentInitiationStandingOrderMetadata): + supports_payment_consents (bool): Indicates whether the institution supports payment consents. Keyword Args: _check_type (bool): if True, values for parameters in openapi_types @@ -193,6 +196,7 @@ def _from_openapi_data(cls, supports_international_payments, supports_sepa_insta self.maximum_payment_amount = maximum_payment_amount self.supports_refund_details = supports_refund_details self.standing_order_metadata = standing_order_metadata + self.supports_payment_consents = supports_payment_consents for var_name, var_value in kwargs.items(): if var_name not in self.attribute_map and \ self._configuration is not None and \ @@ -213,7 +217,7 @@ def _from_openapi_data(cls, supports_international_payments, supports_sepa_insta ]) @convert_js_args_to_python_args - def __init__(self, supports_international_payments, supports_sepa_instant, maximum_payment_amount, supports_refund_details, standing_order_metadata, *args, **kwargs): # noqa: E501 + def __init__(self, supports_international_payments, supports_sepa_instant, maximum_payment_amount, supports_refund_details, standing_order_metadata, supports_payment_consents, *args, **kwargs): # noqa: E501 """PaymentInitiationMetadata - a model defined in OpenAPI Args: @@ -222,6 +226,7 @@ def __init__(self, supports_international_payments, supports_sepa_instant, maxim maximum_payment_amount (PaymentInitiationMaximumPaymentAmount): supports_refund_details (bool): Indicates whether the institution supports returning refund details when initiating a payment. standing_order_metadata (PaymentInitiationStandingOrderMetadata): + supports_payment_consents (bool): Indicates whether the institution supports payment consents. Keyword Args: _check_type (bool): if True, values for parameters in openapi_types @@ -288,6 +293,7 @@ def __init__(self, supports_international_payments, supports_sepa_instant, maxim self.maximum_payment_amount = maximum_payment_amount self.supports_refund_details = supports_refund_details self.standing_order_metadata = standing_order_metadata + self.supports_payment_consents = supports_payment_consents for var_name, var_value in kwargs.items(): if var_name not in self.attribute_map and \ self._configuration is not None and \ diff --git a/plaid/model/payment_initiation_optional_restriction_bacs.py b/plaid/model/payment_initiation_optional_restriction_bacs.py index 14aae8129..860108dee 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_payment.py b/plaid/model/payment_initiation_payment.py index 99bc24247..86c9cd651 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 74c2460e3..7d178aeb1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c396daa65..2ff9b318a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5d993c7b4..bf58104da 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 38553d194..367413063 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 185188dcd..a43cf4146 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cbe4059e8..dc45dc6ec 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1b218f65b..c7b766b2f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 795d6c38c..232a4323e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -31,8 +31,10 @@ def lazy_import(): from plaid.model.payment_amount_to_refund import PaymentAmountToRefund + from plaid.model.payment_initiation_address import PaymentInitiationAddress from plaid.model.wallet_transaction_idempotency_key import WalletTransactionIdempotencyKey globals()['PaymentAmountToRefund'] = PaymentAmountToRefund + globals()['PaymentInitiationAddress'] = PaymentInitiationAddress globals()['WalletTransactionIdempotencyKey'] = WalletTransactionIdempotencyKey @@ -99,6 +101,8 @@ def openapi_types(): 'client_id': (str,), # noqa: E501 'secret': (str,), # noqa: E501 'amount': (PaymentAmountToRefund,), # noqa: E501 + 'counterparty_date_of_birth': (date, none_type,), # noqa: E501 + 'counterparty_address': (PaymentInitiationAddress,), # noqa: E501 } @cached_property @@ -113,6 +117,8 @@ def discriminator(): 'client_id': 'client_id', # noqa: E501 'secret': 'secret', # noqa: E501 'amount': 'amount', # noqa: E501 + 'counterparty_date_of_birth': 'counterparty_date_of_birth', # noqa: E501 + 'counterparty_address': 'counterparty_address', # noqa: E501 } read_only_vars = { @@ -164,6 +170,8 @@ def _from_openapi_data(cls, payment_id, idempotency_key, reference, *args, **kwa 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 amount (PaymentAmountToRefund): [optional] # noqa: E501 + counterparty_date_of_birth (date, none_type): The counterparty's birthdate, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) (YYYY-MM-DD) format.. [optional] # noqa: E501 + counterparty_address (PaymentInitiationAddress): [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -260,6 +268,8 @@ def __init__(self, payment_id, idempotency_key, reference, *args, **kwargs): # 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 amount (PaymentAmountToRefund): [optional] # noqa: E501 + counterparty_date_of_birth (date, none_type): The counterparty's birthdate, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) (YYYY-MM-DD) format.. [optional] # noqa: E501 + counterparty_address (PaymentInitiationAddress): [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/plaid/model/payment_initiation_payment_reverse_response.py b/plaid/model/payment_initiation_payment_reverse_response.py index 64e06deac..ff5d882bf 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 588018f0f..18cd39f5f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0737754e1..d1fd328a8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9a66dbc18..b924142ee 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_recipient.py b/plaid/model/payment_initiation_recipient.py index 3dff22c86..c623cbb55 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c772ab4cd..02017410f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4cdaf024b..29b54f0b3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7cc922348..ff9d5e1e8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f27408826..1bbe04a1b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a928b1963..8859f5888 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 755846f77..9c3a1a6a0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 39fd92128..995bd7662 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 643722136..d652253d4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_meta.py b/plaid/model/payment_meta.py index 41cbd768a..3e63fa2fe 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 250fcd470..56f3b82e5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c0476ddf1..3b5a236e8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c91ef97e1..d920a9287 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cb90b5862..d898017e2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 98652c696..ff950a76e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1b9d40233..4c029f250 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_profile_status.py b/plaid/model/payment_profile_status.py index d60238b65..6f3958a18 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_schedule_interval.py b/plaid/model/payment_schedule_interval.py index b3efd540c..6fd911e81 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_scheme.py b/plaid/model/payment_scheme.py index ae7934e54..0f14f72f5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2f28a9bd0..808d34e4a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 45824f13a..6bf219642 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payroll_income_object.py b/plaid/model/payroll_income_object.py index eeadba2cf..9c47a4477 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 692a206ba..06c05abae 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payroll_item.py b/plaid/model/payroll_item.py index d1c6c0757..041020356 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payroll_item_status.py b/plaid/model/payroll_item_status.py index 1cf79b75d..2f5477ff4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a8830f8df..f0ff61a00 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub.py b/plaid/model/paystub.py index 82ca7427e..cae1dfe7e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_address.py b/plaid/model/paystub_address.py index a0c0f12c4..a31f6dac8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_deduction.py b/plaid/model/paystub_deduction.py index c280aa03f..b11852dc9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_details.py b/plaid/model/paystub_details.py index dfcf7c935..9332f95ed 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_employer.py b/plaid/model/paystub_employer.py index 989b844e3..a7e929f9f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override.py b/plaid/model/paystub_override.py index 3782be72c..27ebb0381 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_deductions.py b/plaid/model/paystub_override_deductions.py index 5e671342a..cb96827e5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3bc12b89e..3d5398ebb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 398c75429..7a5067408 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bccf37ee6..9ec0f652c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_earnings.py b/plaid/model/paystub_override_earnings.py index f6e00ef0b..463ac8ce4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3c40d31f7..8600d3b6d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2bbca7eff..23dbb9a91 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_employee.py b/plaid/model/paystub_override_employee.py index 64d65c5a1..e2e9ec1a0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2ed07eb69..9d70de1ad 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_employer.py b/plaid/model/paystub_override_employer.py index 96894ed36..4430fbd8d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9c1628168..8d732f350 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2276b0e35..71dba5ad7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d19d5db29..52d633f39 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8a681f354..c14e56c21 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_pay_frequency.py b/plaid/model/paystub_pay_frequency.py index c675e1ba9..6ac7eaa18 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_ytd_details.py b/plaid/model/paystub_ytd_details.py index b5060b9e3..bdb072fa7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pending_expiration_webhook.py b/plaid/model/pending_expiration_webhook.py index fcb755de4..73219ed4a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/personal_finance_category.py b/plaid/model/personal_finance_category.py index 4b483de34..19c18d506 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/phone_number.py b/plaid/model/phone_number.py index ccab200e3..5f09b51f9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3c46cd76a..d2e9a56b3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/phone_type.py b/plaid/model/phone_type.py index 5c94392b6..796865707 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/physical_document_category.py b/plaid/model/physical_document_category.py index ef325e7c6..40eee8362 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 becee2c53..32861bdda 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 88c407eef..97164c266 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/physical_document_images.py b/plaid/model/physical_document_images.py index 9b1554137..a427de635 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/plaid_error.py b/plaid/model/plaid_error.py index 404ada9bd..6c0c724a2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/plaid_error_type.py b/plaid/model/plaid_error_type.py index c29dec30f..1c833fcff 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/platform_ids.py b/plaid/model/platform_ids.py index 6e8b16e46..ae40bd0a3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/po_box_status.py b/plaid/model/po_box_status.py index 371eea93c..33886a16b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/prism_cash_score.py b/plaid/model/prism_cash_score.py index 0dd4f23e2..f2cd2da01 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0c0370817..b09822feb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/prism_first_detect.py b/plaid/model/prism_first_detect.py index e0b4fa8b9..02d632643 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/prism_insights.py b/plaid/model/prism_insights.py index c88a884bc..399ddb038 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/prism_product.py b/plaid/model/prism_product.py index 72cdc468c..24e6c2aa3 100644 --- a/plaid/model/prism_product.py +++ b/plaid/model/prism_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 899615a2b..e22f6ef60 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bbc8554d6..da61db8a3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3535aa1bf..d2fc140af 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e604ce53b..dc2faed1a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 918040103..b61a4efb6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b12346c71..c7296363a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f204030cf..0503a31c8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -134,7 +134,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - min_last_updated_datetime (datetime): Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the oldest acceptable balance when making a request to `/accounts/balance/get`. This field is only necessary when the institution is `ins_128026` (Capital One), *and* the account type is a non-depository account (such as a credit card) in which case a value must be provided or an `INVALID_REQUEST` error with the code of `INVALID_FIELD` will be returned. For all other institutions, as well as for depository accounts at Capital One (including all checking and savings accounts) this field is ignored. If this field is not ignored, and no acceptable balance is available, an `INVALID_RESULT` error with the code `LAST_UPDATED_DATETIME_OUT_OF_RANGE` will be returned.. [optional] # noqa: E501 + min_last_updated_datetime (datetime): Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the oldest acceptable balance when making a request to `/accounts/balance/get`. This field is only necessary when the institution is `ins_128026` (Capital One), *and* one or more account types being requested is a non-depository account (such as a credit card) as Capital One does not provide real-time balance for non-depository accounts. In this case, a value must be provided or an `INVALID_REQUEST` error with the code of `INVALID_FIELD` will be returned. For all other institutions, as well as for depository accounts at Capital One (including all checking and savings accounts) this field is ignored and real-time balance information will be fetched. If this field is not ignored, and no acceptable balance is available, an `INVALID_RESULT` error with the code `LAST_UPDATED_DATETIME_OUT_OF_RANGE` will be returned.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -220,7 +220,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - min_last_updated_datetime (datetime): Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the oldest acceptable balance when making a request to `/accounts/balance/get`. This field is only necessary when the institution is `ins_128026` (Capital One), *and* the account type is a non-depository account (such as a credit card) in which case a value must be provided or an `INVALID_REQUEST` error with the code of `INVALID_FIELD` will be returned. For all other institutions, as well as for depository accounts at Capital One (including all checking and savings accounts) this field is ignored. If this field is not ignored, and no acceptable balance is available, an `INVALID_RESULT` error with the code `LAST_UPDATED_DATETIME_OUT_OF_RANGE` will be returned.. [optional] # noqa: E501 + min_last_updated_datetime (datetime): Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the oldest acceptable balance when making a request to `/accounts/balance/get`. This field is only necessary when the institution is `ins_128026` (Capital One), *and* one or more account types being requested is a non-depository account (such as a credit card) as Capital One does not provide real-time balance for non-depository accounts. In this case, a value must be provided or an `INVALID_REQUEST` error with the code of `INVALID_FIELD` will be returned. For all other institutions, as well as for depository accounts at Capital One (including all checking and savings accounts) this field is ignored and real-time balance information will be fetched. If this field is not ignored, and no acceptable balance is available, an `INVALID_RESULT` error with the code `LAST_UPDATED_DATETIME_OUT_OF_RANGE` will be returned.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/plaid/model/processor_balance_get_response.py b/plaid/model/processor_balance_get_response.py index 6b94bbc99..a5ef18963 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0f07ce82f..696c5dd87 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 fc9f2d741..814db5017 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 286a76991..ed194905c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cbd14d518..429dc0682 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d4c2cdafb..e674e1b28 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 49550777f..798fe3cee 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1bb6e5c89..ffc97b772 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1e07ed908..19a2d2492 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3f80a50a6..0027486cf 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ae05bc8f9..906cdf466 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9335c6cac..382bfdf48 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_number.py b/plaid/model/processor_number.py index 3650f7ab5..39a10d9a9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f2c179db6..784633cdb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 65b2505e5..95f3154fa 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c07a841e7..4e8a810e4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b0f1974e3..a2473b8eb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 904f1bac7..767a61fc4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 dbfcf027b..34494743c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ad51215d2..d05792fee 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b6f9ec732..0fc7ed3c8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1d23fcdc8..99b0d6aaa 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f4581b0cc..41c37c27d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d0c12fb6e..2823ee400 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 830cd5165..020724e07 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cc1947849..2571981a2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_token_create_response.py b/plaid/model/processor_token_create_response.py index a43cfa565..8dd02546e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 34890401b..8bb0a024b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1e913569c..8a870cc12 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 75de4b6c8..9d61e18c6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e8b78b455..efb817d38 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 58faeb47c..bc6027d5b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2395dd9c2..438fbb750 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 723798d0b..f1997fe42 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bf5546dcf..4edbcb650 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cea58e815..8c012278b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a4bd9ff10..90d1587c6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2659b54cc..a8685ed54 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e739bac1e..831e36879 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7f0730180..daca02ee3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d5a92dc03..24ebbed10 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d502d88fd..58228fc5f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f5feece13..0cc9a026a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a84197322..a10fb7778 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/product_access.py b/plaid/model/product_access.py index ef246c271..6b26a0dc1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 eadd7a14e..b34eb53a9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c4e50d7e3..c1b597cfa 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/product_status.py b/plaid/model/product_status.py index 2905fd511..b009c3c33 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/product_status_breakdown.py b/plaid/model/product_status_breakdown.py index ff3ddf8df..16e904159 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/products.py b/plaid/model/products.py index 5578cb4b3..417637660 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/profile_get_request.py b/plaid/model/profile_get_request.py index 26f85586c..00c492c2d 100644 --- a/plaid/model/profile_get_request.py +++ b/plaid/model/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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/profile_get_response.py b/plaid/model/profile_get_response.py index fee91c00c..1ae2a8aee 100644 --- a/plaid/model/profile_get_response.py +++ b/plaid/model/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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/profile_identity.py b/plaid/model/profile_identity.py index 8c6392a2f..15f018199 100644 --- a/plaid/model/profile_identity.py +++ b/plaid/model/profile_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/profile_identity_address.py b/plaid/model/profile_identity_address.py index f15d31145..277b3b4b1 100644 --- a/plaid/model/profile_identity_address.py +++ b/plaid/model/profile_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/profile_identity_name.py b/plaid/model/profile_identity_name.py index 3b91d06e4..dcd94329c 100644 --- a/plaid/model/profile_identity_name.py +++ b/plaid/model/profile_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/profile_item.py b/plaid/model/profile_item.py index 544069965..88ebd82bd 100644 --- a/plaid/model/profile_item.py +++ b/plaid/model/profile_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/program_name_sensitivity.py b/plaid/model/program_name_sensitivity.py index 8e9c6c3b5..bde43559d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 85a07c620..09d664b01 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/proxy_type.py b/plaid/model/proxy_type.py index 0eb29fc71..964731617 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pslf_status.py b/plaid/model/pslf_status.py index fb78bc341..22cdb5442 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recaptcha_required_error.py b/plaid/model/recaptcha_required_error.py index e33537a19..31ddeaff2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recipient_bacs.py b/plaid/model/recipient_bacs.py index d41ff6a6e..756423805 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recipient_bacs_nullable.py b/plaid/model/recipient_bacs_nullable.py index c7e665d95..3214a8545 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurrence.py b/plaid/model/recurrence.py index c6b54d216..fd27995fd 100644 --- a/plaid/model/recurrence.py +++ b/plaid/model/recurrence.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_cancelled_webhook.py b/plaid/model/recurring_cancelled_webhook.py index 1d365d418..ca8063a6f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_frequency.py b/plaid/model/recurring_frequency.py index 5974351bc..e8f3743f8 100644 --- a/plaid/model/recurring_frequency.py +++ b/plaid/model/recurring_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_insights_stream.py b/plaid/model/recurring_insights_stream.py index c936dfd47..bee911ffe 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a92aca411..638e451da 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_transaction_frequency.py b/plaid/model/recurring_transaction_frequency.py index af1b681f4..19d98d698 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_transactions.py b/plaid/model/recurring_transactions.py index 082048a0f..b431bf9d3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3807cd073..22e1270e1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_transfer.py b/plaid/model/recurring_transfer.py index d758c2e72..e54ff49e0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_transfer_nullable.py b/plaid/model/recurring_transfer_nullable.py index 1eaf1918d..725521784 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0c655ff60..e57b58b06 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/removed_transaction.py b/plaid/model/removed_transaction.py index 1d7257144..01182131a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -102,9 +102,13 @@ def discriminator(): @classmethod @convert_js_args_to_python_args - def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 + def _from_openapi_data(cls, transaction_id, account_id, *args, **kwargs): # noqa: E501 """RemovedTransaction - a model defined in OpenAPI + Args: + transaction_id (str): The ID of the removed transaction. + account_id (str): The ID of the account of the removed transaction. + Keyword Args: _check_type (bool): if True, values for parameters in openapi_types will be type checked and a TypeError will be @@ -136,8 +140,6 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - transaction_id (str): The ID of the removed transaction.. [optional] # noqa: E501 - account_id (str): The ID of the account of the removed transaction.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -169,6 +171,8 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 self._configuration = _configuration self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + self.transaction_id = transaction_id + self.account_id = account_id for var_name, var_value in kwargs.items(): if var_name not in self.attribute_map and \ self._configuration is not None and \ @@ -189,9 +193,13 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 ]) @convert_js_args_to_python_args - def __init__(self, *args, **kwargs): # noqa: E501 + def __init__(self, transaction_id, account_id, *args, **kwargs): # noqa: E501 """RemovedTransaction - a model defined in OpenAPI + Args: + transaction_id (str): The ID of the removed transaction. + account_id (str): The ID of the account of the removed transaction. + Keyword Args: _check_type (bool): if True, values for parameters in openapi_types will be type checked and a TypeError will be @@ -223,8 +231,6 @@ def __init__(self, *args, **kwargs): # noqa: E501 Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - transaction_id (str): The ID of the removed transaction.. [optional] # noqa: E501 - account_id (str): The ID of the account of the removed transaction.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -254,6 +260,8 @@ def __init__(self, *args, **kwargs): # noqa: E501 self._configuration = _configuration self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + self.transaction_id = transaction_id + self.account_id = account_id for var_name, var_value in kwargs.items(): if var_name not in self.attribute_map and \ self._configuration is not None and \ diff --git a/plaid/model/report_type.py b/plaid/model/report_type.py index eac125b1f..d39f9501d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/reporting_information.py b/plaid/model/reporting_information.py index 731bbf8a2..7b9f918dd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/review_comment.py b/plaid/model/review_comment.py index 7ba478c8a..6f8291add 100644 --- a/plaid/model/review_comment.py +++ b/plaid/model/review_comment.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_behavior.py b/plaid/model/risk_check_behavior.py index 00bfa61db..7fd85ad58 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3f46ff4ed..b97aac405 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 dac3c49b6..dcb5ad46d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f962b4bc1..329d18009 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_details.py b/plaid/model/risk_check_details.py index c22a4e181..c7d4db7ba 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_device.py b/plaid/model/risk_check_device.py index 4ec43313d..f9b51d18f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_email.py b/plaid/model/risk_check_email.py index a0cda6640..ba16e7f95 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3ed863a0d..0e59669c9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8aac30dc2..4b500bf06 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1d6a4e618..aab0839dd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 477666d13..49c572f8b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 88d3daff3..0961759c1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 de9516b67..06c47fb3c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d074594cb..471e22753 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_phone.py b/plaid/model/risk_check_phone.py index 7f6f8e7d2..7c8f32dd8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1c302eb6e..71fb1bc19 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2eb036399..ce9fc4475 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_profile.py b/plaid/model/risk_profile.py index b6089aab9..3b425c579 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -136,8 +136,8 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - key (str): The name of the risk profile used for this transaction.. [optional] # noqa: E501 - outcome (str): The name of the evaluated outcome for this transaction.. [optional] # noqa: E501 + key (str): The key of the risk profile used for this transaction.. [optional] # noqa: E501 + outcome (str): The key of the evaluated outcome for this transaction.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -223,8 +223,8 @@ def __init__(self, *args, **kwargs): # noqa: E501 Animal class but this time we won't travel through its discriminator because we passed in _visited_composed_classes = (Animal,) - key (str): The name of the risk profile used for this transaction.. [optional] # noqa: E501 - outcome (str): The name of the evaluated outcome for this transaction.. [optional] # noqa: E501 + key (str): The key of the risk profile used for this transaction.. [optional] # noqa: E501 + outcome (str): The key of the evaluated outcome for this transaction.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/plaid/model/risk_reason.py b/plaid/model/risk_reason.py index c163e7c91..c6c2adc67 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 edb842e09..d4f1aa260 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ea24c4c12..d5feca02f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/role.py b/plaid/model/role.py index 34c541005..71624e9a0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/role_detail.py b/plaid/model/role_detail.py index b65ce27e0..7000b76fd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/roles.py b/plaid/model/roles.py index 60d14bc24..c4427659b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7ba2d550c..55cca702a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7530b4c27..79f1d4398 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 546e738f5..9df2dcbff 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 005e61e2b..a6be62368 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cf2795b07..620d8557f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 35240bda3..1be248c97 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 df1422899..1aed1a80b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 247e533af..b979a5d6f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 34e5efd64..cee4531ce 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1cbdfd649..7aa0c9800 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 08a9e586f..f1b6573fa 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ecceca2b1..afa3edb85 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -63,6 +63,7 @@ class SandboxItemFireWebhookRequest(ModelNormal): 'DEFAULT_UPDATE': "DEFAULT_UPDATE", 'NEW_ACCOUNTS_AVAILABLE': "NEW_ACCOUNTS_AVAILABLE", 'AUTH_DATA_UPDATE': "AUTH_DATA_UPDATE", + 'SMS_MICRODEPOSITS_VERIFICATION': "SMS_MICRODEPOSITS_VERIFICATION", 'AUTHORIZATION_GRANTED': "AUTHORIZATION_GRANTED", 'RECURRING_TRANSACTIONS_UPDATE': "RECURRING_TRANSACTIONS_UPDATE", 'SYNC_UPDATES_AVAILABLE': "SYNC_UPDATES_AVAILABLE", diff --git a/plaid/model/sandbox_item_fire_webhook_response.py b/plaid/model/sandbox_item_fire_webhook_response.py index f39bac650..8476db4a4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 177a226d3..dfcd6c90c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 02c21cf26..06c949570 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 88c3008a6..be90e0533 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1b880d091..78c1a7065 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 fd33b27c4..8ee6f129b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d03e3da33..58deddfe5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 546c338e9..dd558faa0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 34d7ad3c4..e3523e24d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2348bad19..07726d45b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 79e05dea9..3380e36d3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d9aac294c..85b31ce1d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 db3316925..061d9247d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 38b52c80c..82cbab082 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 be185da90..8dcaa9edb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a962b4d5a..1138f187c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c21fed4e5..f1c7e83c2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 eab49e58a..a5a57e1af 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1bebc69d4..ff098986f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 56aac1b96..94985746a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a40a3bd58..460a86fed 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b9bccc50c..b794e9b86 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cb0e3d2e2..350301083 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6d1b1cc4c..41e499fb7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 67549ee5e..32da6d893 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b03dc531c..1dadb47db 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e5ddce0d7..680cbe10a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b27dcbc2e..c830ec850 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a0a42ee88..03df79ef1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2565e0415..7e461e61c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c94f75978..5d0f3d966 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ec1aca445..c42525590 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f156cc5d1..ff579dec1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0468789b6..2d4b8c7db 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0947233f2..d4fdd14d5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 57d75a375..ec73edafd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7a8aedb28..daa87f4e3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f972ba4fc..9b02841cc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c414c7f77..e53dd832f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ab29ae8fb..01f3be742 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 938ea5278..50e57b9b3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d9b6e8701..d9d65567c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 27d183f00..5dec83c57 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/scopes.py b/plaid/model/scopes.py index 521d3c69a..8956e0f88 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/scopes_context.py b/plaid/model/scopes_context.py index f100de720..172bcf8a0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/scopes_nullable.py b/plaid/model/scopes_nullable.py index 46b96c66f..bc28a019d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/screening_hit_analysis.py b/plaid/model/screening_hit_analysis.py index 366013190..ef92a1e0e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/screening_hit_data.py b/plaid/model/screening_hit_data.py index 74185c646..522a2f6e7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ef5b889db..5627b987f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 530d66311..c80df9402 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 705401610..984d6fa21 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d1daff988..c3b809425 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/security.py b/plaid/model/security.py index 67d73de7c..4fb8208fa 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/security_override.py b/plaid/model/security_override.py index 6b3ff5cc4..228e29587 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_analysis.py b/plaid/model/selfie_analysis.py index 6ceb57d63..4e6c4dc1f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4962e8056..b6399ca6c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_capture.py b/plaid/model/selfie_capture.py index 57fc09439..24ec0015e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_check.py b/plaid/model/selfie_check.py index cc420de6a..156b3111a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_check_selfie.py b/plaid/model/selfie_check_selfie.py index 229ce0c04..85c03bf6c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_check_status.py b/plaid/model/selfie_check_status.py index 4b1d0f755..3f1ed629e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_status.py b/plaid/model/selfie_status.py index 9bd2339f7..f5f5e1add 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sender_bacs_nullable.py b/plaid/model/sender_bacs_nullable.py index 99746e7c0..0b670f8b6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/service.py b/plaid/model/service.py index 98cb831de..fb21668f3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/service_product_fulfillment.py b/plaid/model/service_product_fulfillment.py index 1f174150e..6497f3568 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ae4b3f3df..c690730ad 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8691f1313..64be65f17 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/servicer_address_data.py b/plaid/model/servicer_address_data.py index 847641a60..3fc7c7666 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/services.py b/plaid/model/services.py index 783bc5b57..a752275a7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_address_data.py b/plaid/model/signal_address_data.py index 5c193bf45..3f4a3d78e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_decision_outcome.py b/plaid/model/signal_decision_outcome.py index f46d1fb59..9ee6533ed 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bca948b43..ad760c59d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b4ca5ba5b..c5b7c5427 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_device.py b/plaid/model/signal_device.py index 72f5ae497..0063ff734 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cc4c99e26..d984cc5c9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_evaluate_request.py b/plaid/model/signal_evaluate_request.py index 6f77675cc..c50ddf2b0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -69,7 +69,7 @@ class SignalEvaluateRequest(ModelNormal): 'min_length': 1, }, ('risk_profile_key',): { - 'max_length': 32, + 'max_length': 64, 'min_length': 1, }, } @@ -188,7 +188,7 @@ def _from_openapi_data(cls, access_token, account_id, client_transaction_id, amo default_payment_method (str, none_type): The default ACH or non-ACH payment method to complete the transaction. `SAME_DAY_ACH`: Same Day ACH by NACHA. The debit transaction is processed and settled on the same day `NEXT_DAY_ACH`: Next Day ACH settlement for debit transactions, offered by some payment processors `STANDARD_ACH`: standard ACH by NACHA `REAL_TIME_PAYMENTS`: real-time payments such as RTP and FedNow `DEBIT_CARD`: if the default payment is over debit card networks `MULTIPLE_PAYMENT_METHODS`: if there is no default debit rail or there are multiple payment methods Possible values: `SAME_DAY_ACH`, `NEXT_DAY_ACH`, `STANDARD_ACH`, `REAL_TIME_PAYMENTS`, `DEBIT_CARD`, `MULTIPLE_PAYMENT_METHODS`. [optional] # noqa: E501 user (SignalUser): [optional] # noqa: E501 device (SignalDevice): [optional] # noqa: E501 - risk_profile_key (str, none_type): The name of the risk profile to use for this transaction. A risk profile can be configured using via the Plaid Dashboard. If not provided, no risk profile will be used. This feature is currently in closed beta; to request access, contact your account manager.. [optional] # noqa: E501 + risk_profile_key (str, none_type): The key of the risk profile to use for this transaction. A risk profile can be configured using via the Plaid Dashboard. If not provided, no risk profile will be used. This feature is currently in closed beta; to request access, contact your account manager.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -292,7 +292,7 @@ def __init__(self, access_token, account_id, client_transaction_id, amount, *arg default_payment_method (str, none_type): The default ACH or non-ACH payment method to complete the transaction. `SAME_DAY_ACH`: Same Day ACH by NACHA. The debit transaction is processed and settled on the same day `NEXT_DAY_ACH`: Next Day ACH settlement for debit transactions, offered by some payment processors `STANDARD_ACH`: standard ACH by NACHA `REAL_TIME_PAYMENTS`: real-time payments such as RTP and FedNow `DEBIT_CARD`: if the default payment is over debit card networks `MULTIPLE_PAYMENT_METHODS`: if there is no default debit rail or there are multiple payment methods Possible values: `SAME_DAY_ACH`, `NEXT_DAY_ACH`, `STANDARD_ACH`, `REAL_TIME_PAYMENTS`, `DEBIT_CARD`, `MULTIPLE_PAYMENT_METHODS`. [optional] # noqa: E501 user (SignalUser): [optional] # noqa: E501 device (SignalDevice): [optional] # noqa: E501 - risk_profile_key (str, none_type): The name of the risk profile to use for this transaction. A risk profile can be configured using via the Plaid Dashboard. If not provided, no risk profile will be used. This feature is currently in closed beta; to request access, contact your account manager.. [optional] # noqa: E501 + risk_profile_key (str, none_type): The key of the risk profile to use for this transaction. A risk profile can be configured using via the Plaid Dashboard. If not provided, no risk profile will be used. This feature is currently in closed beta; to request access, contact your account manager.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/plaid/model/signal_evaluate_response.py b/plaid/model/signal_evaluate_response.py index 323a6576d..a0c413231 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_payment_method.py b/plaid/model/signal_payment_method.py index 73465a3d5..fed3cd840 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_person_name.py b/plaid/model/signal_person_name.py index 42ff2c788..48c45cfcc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_prepare_request.py b/plaid/model/signal_prepare_request.py index 6b1a95e9e..a449ab8bf 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_prepare_response.py b/plaid/model/signal_prepare_response.py index 15a2ae979..311157477 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6d9c7950b..b45a5b856 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 def73af0f..2dbc1d246 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_score.py b/plaid/model/signal_score.py index 3547b3241..a468601e3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_scores.py b/plaid/model/signal_scores.py index 95825a28d..843cf845b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_user.py b/plaid/model/signal_user.py index 2395de353..ecfe82bd4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_warning.py b/plaid/model/signal_warning.py index d72d0a61c..cc572eba0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/simulated_transfer_sweep.py b/plaid/model/simulated_transfer_sweep.py index ac48c4163..ccfd5d8e8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5064d8ba9..fb4aea935 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/source.py b/plaid/model/source.py index f3413fe60..b59fa045d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/source_uid.py b/plaid/model/source_uid.py index 14a5e090b..63e55a410 100644 --- a/plaid/model/source_uid.py +++ b/plaid/model/source_uid.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/standalone_account_type.py b/plaid/model/standalone_account_type.py index 8d2a727a6..7e1fb364c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0475823db..3328cd4f3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9c87495d2..0eddda0bf 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_account.py b/plaid/model/statements_account.py index 2959e1535..984aaff79 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_download_request.py b/plaid/model/statements_download_request.py index ff211f18a..3a98438bc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_list_request.py b/plaid/model/statements_list_request.py index a2670952f..884062fad 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_list_response.py b/plaid/model/statements_list_response.py index 9f32c7709..565254556 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 480b24c27..76a250c58 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 005c3d21a..a6f762e55 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_refresh_request.py b/plaid/model/statements_refresh_request.py index 8cd5f6d00..19b1d51df 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_refresh_response.py b/plaid/model/statements_refresh_response.py index f05cd6e83..b084a69bd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_statement.py b/plaid/model/statements_statement.py index 4d71d6256..18a686ca1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/status.py b/plaid/model/status.py index 0c379d422..0c610d86b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statuses.py b/plaid/model/statuses.py index 48764b9b8..11ad09445 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/strategy.py b/plaid/model/strategy.py index 0a9a622e4..e37c04dfa 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/student_loan.py b/plaid/model/student_loan.py index fb252c4f3..711ea4964 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6a77ff4bf..73dc7d7d3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/student_loan_status.py b/plaid/model/student_loan_status.py index e3f0be872..eee8198e4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/student_repayment_plan.py b/plaid/model/student_repayment_plan.py index 387204c24..88a2a6114 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sweep_description.py b/plaid/model/sweep_description.py index 5946a0941..0176c6c8c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sweep_status.py b/plaid/model/sweep_status.py index 58bfe9c02..01c9920b5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sweep_trigger.py b/plaid/model/sweep_trigger.py index 6347b2152..9d54a210a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 af7d7f050..2d7c227d5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/taxform.py b/plaid/model/taxform.py index 270f7ce8c..6fd8ce7b0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/taxpayer_id.py b/plaid/model/taxpayer_id.py index 6c937ac75..4762e956d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/taxpayer_identifier.py b/plaid/model/taxpayer_identifier.py index d4464da7e..b53251953 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/taxpayer_identifier_type.py b/plaid/model/taxpayer_identifier_type.py index ebb8a3e90..7662bc7f3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/taxpayer_identifiers.py b/plaid/model/taxpayer_identifiers.py index 70ebc1de5..80bfb1091 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total.py b/plaid/model/total.py index e605cf7e3..be7241c5f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_canonical_description.py b/plaid/model/total_canonical_description.py index e1fbc3af1..4ac299c17 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction.py b/plaid/model/transaction.py index d8d74253b..45b630a22 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_all_of.py b/plaid/model/transaction_all_of.py index f2c5c201a..e3a6258be 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_base.py b/plaid/model/transaction_base.py index 0311fa784..c1e05c949 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_code.py b/plaid/model/transaction_code.py index 69e82dbcc..3c90292cd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_counterparty.py b/plaid/model/transaction_counterparty.py index 11e276106..559dd0f89 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_data.py b/plaid/model/transaction_data.py index 54397c939..4c2a08b76 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_override.py b/plaid/model/transaction_override.py index 944b0d302..0eaef7c28 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_stream.py b/plaid/model/transaction_stream.py index 1cb390714..7dfa07b2a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_stream_amount.py b/plaid/model/transaction_stream_amount.py index 604926661..721a51df9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_stream_status.py b/plaid/model/transaction_stream_status.py index d7f5a0e75..c355fde4e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_category_rule.py b/plaid/model/transactions_category_rule.py index 63289da5d..d40df1d75 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 12c270820..fafd92698 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 54a74274a..9e72e8084 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_enrich_request.py b/plaid/model/transactions_enrich_request.py index 5659d7eed..aa74543a3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f3d4d2379..422a57286 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_enrich_response.py b/plaid/model/transactions_enrich_response.py index eb17c0666..02587d293 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_get_request.py b/plaid/model/transactions_get_request.py index f8d803a83..3d8c9ee11 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f06aa11fa..a9a0e73f9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_get_response.py b/plaid/model/transactions_get_response.py index 35f544111..5375b6b7e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a537d1d52..31a18fbea 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7de2b5171..8ece13b40 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0712e0461..e106a3c66 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c68bf3062..7094c429b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 99bc51b18..4998c5e6e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 317d57ddf..a27a9e4f8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5ca36ef2e..70f568dca 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 25330db07..424f5cac8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3008d0b0d..5152c241d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2bbd6dbd8..bba8610a2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a45752fa7..c256f60b8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 86785e209..d99d69b92 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_refresh_request.py b/plaid/model/transactions_refresh_request.py index 3f8758a5a..530ac5fc3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_refresh_response.py b/plaid/model/transactions_refresh_response.py index 4cd643dbb..77c844252 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_removed_webhook.py b/plaid/model/transactions_removed_webhook.py index 8d86b971f..a28b754ed 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_rule_details.py b/plaid/model/transactions_rule_details.py index 594404856..06e25b852 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_rule_field.py b/plaid/model/transactions_rule_field.py index afc8d81d5..d27c8b384 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_rule_type.py b/plaid/model/transactions_rule_type.py index 4f9f081fa..f0a7e1574 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c3e73de88..350d9fc46 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0131afb97..2d1ac520b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b7165acfa..6483d37fc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 37910d48d..2e9cd602f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a842a48a6..f0c1f1e74 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1b2b35421..9e58447bc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_sync_request.py b/plaid/model/transactions_sync_request.py index 5c38ea18d..1a394a5a3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f14e43316..f82067bdc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_sync_response.py b/plaid/model/transactions_sync_response.py index 26111d825..01a6e7cfe 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_update_status.py b/plaid/model/transactions_update_status.py index 658fe1f92..7ba552b9f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d6544764d..3ccb4b11e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d1e1d34c3..b9365973b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer.py b/plaid/model/transfer.py index 0da5d0fe7..cd8a170ba 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_ach_network.py b/plaid/model/transfer_ach_network.py index aca3d0c7a..2fd51c00d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization.py b/plaid/model/transfer_authorization.py index 5f7654d42..545d39aa8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_cancel_request.py b/plaid/model/transfer_authorization_cancel_request.py new file mode 100644 index 000000000..bd1fadf72 --- /dev/null +++ b/plaid/model/transfer_authorization_cancel_request.py @@ -0,0 +1,277 @@ +""" + The Plaid API + + The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 + + The version of the OpenAPI document: 2020-09-14_1.514.1 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from plaid.model_utils import ( # noqa: F401 + ApiTypeError, + ModelComposed, + ModelNormal, + ModelSimple, + cached_property, + change_keys_js_to_python, + convert_js_args_to_python_args, + date, + datetime, + file_type, + none_type, + validate_get_composed_info, + OpenApiModel +) +from plaid.exceptions import ApiAttributeError + + + +class TransferAuthorizationCancelRequest(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + return { + 'authorization_id': (str,), # noqa: E501 + 'client_id': (str,), # noqa: E501 + 'secret': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'authorization_id': 'authorization_id', # noqa: E501 + 'client_id': 'client_id', # noqa: E501 + 'secret': 'secret', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, authorization_id, *args, **kwargs): # noqa: E501 + """TransferAuthorizationCancelRequest - a model defined in OpenAPI + + Args: + authorization_id (str): Plaid’s unique identifier for a transfer authorization. + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _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 + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + self = super(OpenApiModel, cls).__new__(cls) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.authorization_id = authorization_id + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, authorization_id, *args, **kwargs): # noqa: E501 + """TransferAuthorizationCancelRequest - a model defined in OpenAPI + + Args: + authorization_id (str): Plaid’s unique identifier for a transfer authorization. + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _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 + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.authorization_id = authorization_id + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + if var_name in self.read_only_vars: + raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate " + f"class with read only attributes.") diff --git a/plaid/model/transfer_authorization_cancel_response.py b/plaid/model/transfer_authorization_cancel_response.py new file mode 100644 index 000000000..c4064d09b --- /dev/null +++ b/plaid/model/transfer_authorization_cancel_response.py @@ -0,0 +1,269 @@ +""" + The Plaid API + + The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 + + The version of the OpenAPI document: 2020-09-14_1.514.1 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from plaid.model_utils import ( # noqa: F401 + ApiTypeError, + ModelComposed, + ModelNormal, + ModelSimple, + cached_property, + change_keys_js_to_python, + convert_js_args_to_python_args, + date, + datetime, + file_type, + none_type, + validate_get_composed_info, + OpenApiModel +) +from plaid.exceptions import ApiAttributeError + + + +class TransferAuthorizationCancelResponse(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + return { + 'request_id': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'request_id': 'request_id', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, request_id, *args, **kwargs): # noqa: E501 + """TransferAuthorizationCancelResponse - a model defined in OpenAPI + + Args: + request_id (str): A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _visited_composed_classes = (Animal,) + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + self = super(OpenApiModel, cls).__new__(cls) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.request_id = request_id + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, request_id, *args, **kwargs): # noqa: E501 + """TransferAuthorizationCancelResponse - a model defined in OpenAPI + + Args: + request_id (str): A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. + + Keyword Args: + _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. + Defaults to True + _path_to_item (tuple/list): This is a list of keys or values to + drill down to the model in received_data + when deserializing a response + _spec_property_naming (bool): True if the variable names in the input data + are serialized names, as specified in the OpenAPI document. + False if the variable names in the input data + are pythonic names, e.g. snake case (default) + _configuration (Configuration): the instance to use when + deserializing a file_type parameter. + If passed, type conversion is attempted + If omitted no type conversion is done. + _visited_composed_classes (tuple): This stores a tuple of + classes that we have traveled through so that + if we see that class again we will not use its + discriminator again. + When traveling through a discriminator, the + composed schema that is + is traveled through is added to this set. + For example if Animal has a discriminator + petType and we pass in "Dog", and the class Dog + allOf includes Animal, we move through Animal + once using the discriminator, and pick Dog. + Then in Dog, we will make an instance of the + Animal class but this time we won't travel + through its discriminator because we passed in + _visited_composed_classes = (Animal,) + """ + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _path_to_item = kwargs.pop('_path_to_item', ()) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + if args: + for arg in args: + if isinstance(arg, dict): + kwargs.update(arg) + else: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.request_id = request_id + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + if var_name in self.read_only_vars: + raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate " + f"class with read only attributes.") diff --git a/plaid/model/transfer_authorization_create_request.py b/plaid/model/transfer_authorization_create_request.py index 570a66933..257ba483c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ca963f4eb..96efb08b7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_decision.py b/plaid/model/transfer_authorization_decision.py index a3f2f4e99..ad6d61102 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 614756b4e..5c07a6178 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9049be09e..5ba3e001b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ @@ -112,10 +112,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 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 same-day micro deposits, limited information available. `ITEM_LOGIN_REQUIRED` – Unable to collect the account information due to Item staleness. Can be resolved by using Link in [update mode](https://www.plaid.com/docs/link/update-mode). `MIGRATED_ACCOUNT_ITEM` - Item created via `/transfer/account_migration` 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.., 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 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, Database Insights, or Database Match), limited information available. `ITEM_LOGIN_REQUIRED` – Unable to collect the account information due to Item staleness. Can be resolved by using Link in [update mode](https://www.plaid.com/docs/link/update-mode). `MIGRATED_ACCOUNT_ITEM` - Item created via `/transfer/account_migration` 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.., 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 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 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 same-day micro deposits, limited information available. `ITEM_LOGIN_REQUIRED` – Unable to collect the account information due to Item staleness. Can be resolved by using Link in [update mode](https://www.plaid.com/docs/link/update-mode). `MIGRATED_ACCOUNT_ITEM` - Item created via `/transfer/account_migration` 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.., 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 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, Database Insights, or Database Match), limited information available. `ITEM_LOGIN_REQUIRED` – Unable to collect the account information due to Item staleness. Can be resolved by using Link in [update mode](https://www.plaid.com/docs/link/update-mode). `MIGRATED_ACCOUNT_ITEM` - Item created via `/transfer/account_migration` 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.., 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 _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 +206,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 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 same-day micro deposits, limited information available. `ITEM_LOGIN_REQUIRED` – Unable to collect the account information due to Item staleness. Can be resolved by using Link in [update mode](https://www.plaid.com/docs/link/update-mode). `MIGRATED_ACCOUNT_ITEM` - Item created via `/transfer/account_migration` 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.., 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 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, Database Insights, or Database Match), limited information available. `ITEM_LOGIN_REQUIRED` – Unable to collect the account information due to Item staleness. Can be resolved by using Link in [update mode](https://www.plaid.com/docs/link/update-mode). `MIGRATED_ACCOUNT_ITEM` - Item created via `/transfer/account_migration` 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.., 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 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 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 same-day micro deposits, limited information available. `ITEM_LOGIN_REQUIRED` – Unable to collect the account information due to Item staleness. Can be resolved by using Link in [update mode](https://www.plaid.com/docs/link/update-mode). `MIGRATED_ACCOUNT_ITEM` - Item created via `/transfer/account_migration` 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.., 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 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, Database Insights, or Database Match), limited information available. `ITEM_LOGIN_REQUIRED` – Unable to collect the account information due to Item staleness. Can be resolved by using Link in [update mode](https://www.plaid.com/docs/link/update-mode). `MIGRATED_ACCOUNT_ITEM` - Item created via `/transfer/account_migration` 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.., 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 _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 a777b91e1..b54dc8ee9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 95662f5ec..7be0d44b2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 710688281..8759be103 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 448faf763..7757a3c65 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d1dc9ecc1..07fe94b0d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bbc9e2222..4c6811339 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ee5b93786..bb5da4e00 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2540e86f6..8e1a66101 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5aaf1cadc..43b516d10 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_balance.py b/plaid/model/transfer_balance.py index acc91908b..d24a2c316 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 73f6990f5..0afb6d358 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6b1a63e30..a87fb270d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_balance_type.py b/plaid/model/transfer_balance_type.py index e88829c4b..92870431d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_cancel_request.py b/plaid/model/transfer_cancel_request.py index d941c160f..ec391b252 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_cancel_response.py b/plaid/model/transfer_cancel_response.py index 581756080..42a821196 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 81173c1ba..a2631a3e2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c651a5c30..60531ae7d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 65629fa61..54d9a8a38 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 474d82d50..929f2d7ea 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cf49aab2c..d2c3bffcc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 515e3bb83..bf201e5c2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_create_request.py b/plaid/model/transfer_create_request.py index 3be32e825..956ee6808 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_create_response.py b/plaid/model/transfer_create_response.py index 04e7586d8..56cfb33f5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 02f129bcd..db34db407 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0cfffa718..c90ad9bce 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e3d0628f2..ef7592c34 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_device.py b/plaid/model/transfer_device.py index 006a1e6fc..1ae813ad0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7cdad5cd2..20b61a1cb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 dc056e44d..1b67a0501 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_diligence_status.py b/plaid/model/transfer_diligence_status.py index 7d97d2e39..bb4242192 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e5f1aa737..b61d0dc3f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 38aee08c7..3608fe9ba 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_document_purpose.py b/plaid/model/transfer_document_purpose.py index e0f33b4ff..92e525454 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_event.py b/plaid/model/transfer_event.py index 6c81af855..fda86a23d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 76188a65c..2a86083d5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5621376f9..88fffa023 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 37d57774d..802a67d7d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 58731270c..87787da43 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 155e13f18..2fdfbbe29 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_event_type.py b/plaid/model/transfer_event_type.py index eef0851e8..7ce4bc7ce 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f18a7abae..7af9e2c73 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 fcbaca6f9..0bcb65c40 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_failure.py b/plaid/model/transfer_failure.py index 011f9e3f6..275e482b6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_funding_account.py b/plaid/model/transfer_funding_account.py index b66b720cd..70ed9c549 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_get_request.py b/plaid/model/transfer_get_request.py index 0a18d74b9..cac6dbf85 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_get_response.py b/plaid/model/transfer_get_response.py index b7deb4f5f..bdf6ad860 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3eaea79d6..637e3ef36 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_intent_create.py b/plaid/model/transfer_intent_create.py index 79849978b..d933b9130 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 fb0e0b5d1..b9ce0d82e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 984357ec6..fd1b64e1b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 172e221ca..aeff7a9fb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 29070d017..e691ba419 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_intent_get.py b/plaid/model/transfer_intent_get.py index 9e5139a23..e9a9418bb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 62b4c5fa2..a8a013f55 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 acb69dc66..e83008432 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 64096ea63..d30ee5199 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_intent_status.py b/plaid/model/transfer_intent_status.py index be821438b..ab0512750 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_ledger_balance.py b/plaid/model/transfer_ledger_balance.py index 014c51285..9dc2578a4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2949f3d42..a88b9f8f1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 fbff0c3f7..e60216238 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 25c913911..983f2c017 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 365ed4eb7..d29d4b1aa 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 017e28cee..faade12d7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b29c00188..c618b7299 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 147394e97..366974056 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 56c7c83a8..0116e233a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5071bc5b5..73321b047 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_list_request.py b/plaid/model/transfer_list_request.py index 89eaa1540..32555bbd1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_list_response.py b/plaid/model/transfer_list_response.py index 4693c2f38..eefbde01f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_metadata.py b/plaid/model/transfer_metadata.py index f8cc94df3..7e8f6cbeb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 40e75439e..c21984836 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b409b3e5d..abb2e5f54 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 345e78505..f8346a256 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c16b03933..a37da9aac 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_network.py b/plaid/model/transfer_network.py index bf7a70cf2..cd70a0410 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_originator_address.py b/plaid/model/transfer_originator_address.py index 2fac2227e..85dd521ba 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2e5370645..4dc8c3136 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 00b7c8be8..46a26bcae 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_originator_diligence.py b/plaid/model/transfer_originator_diligence.py index 9c14c9181..d747188f6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f40deed70..54d512e8f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7292d5f55..deafeef76 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 796a17b23..c53446d8e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 70221734f..213de0b94 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ce0202b28..fecdd778f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d21413296..cda2a4dd1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2b3bcb2db..525ca8471 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4c913cbf2..49a38de10 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1ad459226..5796c16c5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 043233561..aeb985da7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 77e7e3a70..62365d79e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 79cfe8af3..470307450 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 893592e73..acaf1de2a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 fac1639c2..c2d2dbe8d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 831e9c4be..50e4aa210 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b091420aa..7d91b2138 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 89ca16e50..0fea6d47d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_recurring_network.py b/plaid/model/transfer_recurring_network.py index 8e102caf6..78bd03c62 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_recurring_schedule.py b/plaid/model/transfer_recurring_schedule.py index 504045183..b08bf6b00 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_recurring_status.py b/plaid/model/transfer_recurring_status.py index ff8036a9a..b98cbfe0b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_refund.py b/plaid/model/transfer_refund.py index c7d9c1fc9..6829a5492 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 992a7c5a3..5d4625d83 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8b581329e..7e107f808 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 362609391..9ba193644 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 98e37c3bd..4ed0b299a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_refund_failure.py b/plaid/model/transfer_refund_failure.py index 7c96a6020..ad20da988 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c88b5dab1..678407656 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0a5799b92..08895f594 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6ad20842a..6710561c3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_refund_status.py b/plaid/model/transfer_refund_status.py index db3c7c2c8..18a87854d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_repayment.py b/plaid/model/transfer_repayment.py index d47bd6c4e..e13112044 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b9dd110f7..7fdd623a4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0be05a4c9..7d7b02032 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_repayment_return.py b/plaid/model/transfer_repayment_return.py index 9fe9a34b8..bcde2bc36 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 014b912b8..2c2d05918 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 91ab4a9ee..a3b2e9154 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 e97b0b6c5..9a4d7c0ed 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_status.py b/plaid/model/transfer_status.py index 8137087a0..4fc7384fe 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_sweep.py b/plaid/model/transfer_sweep.py index b89729320..7a6dbe5b2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8b7719b9f..37b8180a2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2aa72bc5f..980872fe9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 fde1b9d59..57f9ec5e4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ea6f7f1ce..28c5a2ab2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_sweep_status.py b/plaid/model/transfer_sweep_status.py index 8e0b7288e..d51a09e50 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_test_clock.py b/plaid/model/transfer_test_clock.py index afd912d9b..65f0890c7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_type.py b/plaid/model/transfer_type.py index 3376d1eb2..9d51229d0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 984df2d9b..080ee7c05 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a4982f023..05c3314ae 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c6aa55f13..176916185 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d4f69a6bc..4f0203ff9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 29e9cb092..af5a52754 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_wire_details.py b/plaid/model/transfer_wire_details.py index ddc0eca08..5cf49f10e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3e20a56f4..569525d7a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ba3c21f9a..e0a86992c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c0311abd3..4064a0d22 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_address.py b/plaid/model/user_address.py index 6eb2443c5..a355b0941 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_create_request.py b/plaid/model/user_create_request.py index 9a7b9e857..41d279725 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_create_response.py b/plaid/model/user_create_response.py index a2d9da508..662f8c744 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_custom_password.py b/plaid/model/user_custom_password.py index dd248f67b..c7479501c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_data_overview.py b/plaid/model/user_data_overview.py index ae438e397..a7c675fb0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_id_number.py b/plaid/model/user_id_number.py index 3d4672b9d..1653f820b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 46a0fb384..676ee6eae 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d60d15655..59c7c0c59 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b1ea95d74..2db94cfc8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bea08d569..3ef3d706e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_update_request.py b/plaid/model/user_update_request.py index 55addbb97..7a73b3c4c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_update_response.py b/plaid/model/user_update_response.py index b652df2c1..4c02e7ec8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/validation_source.py b/plaid/model/validation_source.py index 6120fd22b..da64e643d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/validation_sources.py b/plaid/model/validation_sources.py index c68d7f248..5a3a05a7f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/verification_expired_webhook.py b/plaid/model/verification_expired_webhook.py index 5e9baa6b0..d2ae024bd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/verification_of_asset.py b/plaid/model/verification_of_asset.py index 55d5a2720..d51dbc4e9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 da090cb4a..00572bd5e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/verification_refresh_status.py b/plaid/model/verification_refresh_status.py index 055dc113b..752d78e14 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/verification_status.py b/plaid/model/verification_status.py index bb0cfa1e1..8b3c661f6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/w2.py b/plaid/model/w2.py index ee3da8f62..6cc9cca5d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/w2_box12.py b/plaid/model/w2_box12.py index 7b263b63e..33e5468b6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/w2_box12_override.py b/plaid/model/w2_box12_override.py index 41970ec92..76b805f37 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/w2_override.py b/plaid/model/w2_override.py index b3a29e76f..83cbdc62d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 de3bad6ac..209d408bf 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 ba9814c16..c80fcf617 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet.py b/plaid/model/wallet.py index b1d5476c9..d4ea426e1 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_balance.py b/plaid/model/wallet_balance.py index f35d95514..616110e65 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_create_request.py b/plaid/model/wallet_create_request.py index 08be48faa..95b73c9bc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_create_response.py b/plaid/model/wallet_create_response.py index ace9726e5..270239ca6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_get_request.py b/plaid/model/wallet_get_request.py index a531cf474..4ccf9bad3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_get_response.py b/plaid/model/wallet_get_response.py index 964248cef..07f76a1dc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b283c7788..ac987871e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_list_request.py b/plaid/model/wallet_list_request.py index 4946e89b6..571691a8b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_list_response.py b/plaid/model/wallet_list_response.py index ea26141a5..b21e1b57d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_numbers.py b/plaid/model/wallet_numbers.py index a4b003ee5..3eb68c2e4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_payment_scheme.py b/plaid/model/wallet_payment_scheme.py index 028f6a16a..5ca43ae48 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_status.py b/plaid/model/wallet_status.py index 99bfd8f41..ef90e6e4a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction.py b/plaid/model/wallet_transaction.py index 2e0dbd7a0..b440151a4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_amount.py b/plaid/model/wallet_transaction_amount.py index 520c35599..5e47fd395 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_counterparty.py b/plaid/model/wallet_transaction_counterparty.py index 86aa041f5..713206dea 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5f6350d12..c7e186960 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2a3838f06..f4bac200c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7981684b4..2075f867d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bb7397677..6737cdb8e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 870c6a4bd..0c4a84732 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 781c47e0e..80f3a5930 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7a815e2b9..60b3780de 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7cbd26a07..b2b74047d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b40866f2f..80c6e3507 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 84667e638..d8764d6eb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5aee08267..f40808726 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 84233ca03..62c37a92f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_status.py b/plaid/model/wallet_transaction_status.py index fbb51ab66..a4cd05671 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9052721a5..49394dd6b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b5503a9e5..d3739ea59 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/warning.py b/plaid/model/warning.py index 8c074870c..f8d0895fe 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 61c48a411..6fe4bf816 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_document.py b/plaid/model/watchlist_screening_document.py index d5172fba7..4833cf78a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6290fab53..53f9a43d5 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_document_value.py b/plaid/model/watchlist_screening_document_value.py index 77d808672..5b6454e6e 100644 --- a/plaid/model/watchlist_screening_document_value.py +++ b/plaid/model/watchlist_screening_document_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_document_value_nullable.py b/plaid/model/watchlist_screening_document_value_nullable.py index 7473dd3e1..4d389ea8f 100644 --- a/plaid/model/watchlist_screening_document_value_nullable.py +++ b/plaid/model/watchlist_screening_document_value_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0e38a10a7..7cd8fdc85 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 77fe3d6a1..8dcd5863a 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 90d40d904..1732680fe 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b2994b195..87febec1e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 bf913d620..c5c83be41 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 14cbd5b9c..8db43b0d0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 6af3a33c3..50a5fbef8 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 c3645a8e4..b27b029f7 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cc43b81b7..c9d5b6ebb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 033e18be5..71a099bb4 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 60b85dfe1..93549444c 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b1898c87d..404869e94 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 355b1c90c..a89c126ee 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 3de04503f..42c8ed546 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9ecc5c092..23dd1bb2f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 abcb547bd..e7a290b99 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 0326d5548..6259de12e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4ae84909f..7ebb41293 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8c5dd7a01..1e67b55b2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 94e9a538f..ced72af07 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 31a5aa6f4..90edb0a52 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d92df8325..993111ff9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_hit.py b/plaid/model/watchlist_screening_hit.py index fc43565e0..0c807879e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cdcd7c77b..4a1cc6d76 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d0557bfdb..2f9cbbcfb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual.py b/plaid/model/watchlist_screening_individual.py index 0d5448a1d..f1854e6ca 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 905452683..bc67ebeb2 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a98628da9..d78611de3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2958c9e0c..baff46827 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9972b238b..3c3783b06 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 8040e38f8..85bbb7fdd 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 458f3e98f..608558b81 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 157bc7536..46219d787 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b6485a876..99c36895b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 d86a9c8b5..4c29ba0e9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 fc4149341..3ba8fa077 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual_name.py b/plaid/model/watchlist_screening_individual_name.py index 44ec71e78..2826cf459 100644 --- a/plaid/model/watchlist_screening_individual_name.py +++ b/plaid/model/watchlist_screening_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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4446fcda0..03d1a5808 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 62d9e942b..218c816a9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 600eeacd3..8150b19a9 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a81f6df9e..b8d7f743d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 7bfb1510e..aee0473b6 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 a09c5a0d1..c76a660a3 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 07f4a18a6..00d0953da 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 96542b384..3772de3f0 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 9afe7dc10..9ab2fcb94 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 f7741fd6f..76c38125f 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b33b4cc38..1b352e65b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 b8e6c3465..245089a4b 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 2b4a88bad..b56160f5d 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_review.py b/plaid/model/watchlist_screening_review.py index 6c59f177e..481c71135 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 4454ac494..ae0a0ba82 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_status.py b/plaid/model/watchlist_screening_status.py index fbe961e29..d72db8a83 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/weak_alias_determination.py b/plaid/model/weak_alias_determination.py index 7d91fe99d..aea1a5a65 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/webhook_environment_values.py b/plaid/model/webhook_environment_values.py index d721c7b02..1278c7263 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/webhook_type.py b/plaid/model/webhook_type.py index 57a19cdf4..e52f07a5e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5a80a1d95..9c23fd0bb 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 1044aeee4..0ccb75dfc 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 cf41a05ae..a1c82da6e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 5d0fed11f..26d288259 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 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 89519f30d..af483062e 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model_utils.py b/plaid/model_utils.py index 8b927c7eb..264f45a88 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.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/plaid/models/__init__.py b/plaid/models/__init__.py index 6b134d079..332b1ed01 100644 --- a/plaid/models/__init__.py +++ b/plaid/models/__init__.py @@ -245,6 +245,7 @@ from plaid.model.client_user_id_nullable import ClientUserIDNullable from plaid.model.connected_application import ConnectedApplication from plaid.model.consent_payment_idempotency_key import ConsentPaymentIdempotencyKey +from plaid.model.consumer_report_pdf_get_request import ConsumerReportPDFGetRequest from plaid.model.consumer_report_permissible_purpose import ConsumerReportPermissiblePurpose from plaid.model.consumer_report_user_identity import ConsumerReportUserIdentity from plaid.model.counterparty import Counterparty @@ -744,10 +745,16 @@ from plaid.model.link_profile_eligibility_check_request import LinkProfileEligibilityCheckRequest from plaid.model.link_profile_eligibility_check_response import LinkProfileEligibilityCheckResponse from plaid.model.link_profile_eligibility_check_user import LinkProfileEligibilityCheckUser +from plaid.model.link_session_bank_employment_result import LinkSessionBankEmploymentResult +from plaid.model.link_session_bank_income_result import LinkSessionBankIncomeResult +from plaid.model.link_session_cra_item_add_result import LinkSessionCRAItemAddResult from plaid.model.link_session_exit import LinkSessionExit from plaid.model.link_session_exit_metadata import LinkSessionExitMetadata from plaid.model.link_session_exit_metadata_institution import LinkSessionExitMetadataInstitution from plaid.model.link_session_finished_webhook import LinkSessionFinishedWebhook +from plaid.model.link_session_item_add_result import LinkSessionItemAddResult +from plaid.model.link_session_payroll_income_result import LinkSessionPayrollIncomeResult +from plaid.model.link_session_results import LinkSessionResults from plaid.model.link_session_success import LinkSessionSuccess from plaid.model.link_session_success_metadata import LinkSessionSuccessMetadata from plaid.model.link_session_success_metadata_account import LinkSessionSuccessMetadataAccount @@ -1283,6 +1290,8 @@ from plaid.model.transfer import Transfer from plaid.model.transfer_ach_network import TransferACHNetwork from plaid.model.transfer_authorization import TransferAuthorization +from plaid.model.transfer_authorization_cancel_request import TransferAuthorizationCancelRequest +from plaid.model.transfer_authorization_cancel_response import TransferAuthorizationCancelResponse from plaid.model.transfer_authorization_create_request import TransferAuthorizationCreateRequest from plaid.model.transfer_authorization_create_response import TransferAuthorizationCreateResponse from plaid.model.transfer_authorization_decision import TransferAuthorizationDecision diff --git a/plaid/rest.py b/plaid/rest.py index 0ecbdc08a..3c698ca58 100644 --- a/plaid/rest.py +++ b/plaid/rest.py @@ -3,7 +3,7 @@ The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501 - The version of the OpenAPI document: 2020-09-14_1.508.0 + The version of the OpenAPI document: 2020-09-14_1.514.1 Generated by: https://openapi-generator.tech """ diff --git a/setup.py b/setup.py index ba9ee19e8..8523f034f 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -VERSION = '21.0.0' +VERSION = '21.1.0' url = 'https://github.com/plaid/plaid-python' REQUIRES = [