diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index ed5634e61..8240e982a 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -170,6 +170,8 @@ plaid/model/beacon_report.py plaid/model/beacon_report_create_request.py plaid/model/beacon_report_create_response.py plaid/model/beacon_report_created_webhook.py +plaid/model/beacon_report_get_request.py +plaid/model/beacon_report_get_response.py plaid/model/beacon_report_list_request.py plaid/model/beacon_report_list_response.py plaid/model/beacon_report_syndication.py @@ -481,6 +483,7 @@ plaid/model/holding.py plaid/model/holdings_default_update_webhook.py plaid/model/holdings_override.py plaid/model/hosted_link_delivery_method.py +plaid/model/hosted_mmd_verification_webhook.py plaid/model/id_number_type.py plaid/model/identity_default_update_webhook.py plaid/model/identity_get_request.py @@ -683,6 +686,7 @@ plaid/model/link_session_success_metadata_account.py plaid/model/link_session_success_metadata_institution.py plaid/model/link_session_success_metadata_transfer_status.py plaid/model/link_token_account_filters.py +plaid/model/link_token_create_card_switch.py plaid/model/link_token_create_credit_filter.py plaid/model/link_token_create_depository_filter.py plaid/model/link_token_create_hosted_link.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 9190394da..65916b93f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ See full changelog for the OpenAPI Schema (OAS) [here](https://github.com/plaid/plaid-openapi/blob/master/CHANGELOG.md). +# 18.2.0 +- Updating to OAS 2020-09-14_1.474.3 + +## OpenAPI Schema Changes +### 2020-09-14_1.474.3 +- Internal changes only + +### 2020-09-14_1.474.2 +- Deprecate `credit_funds_source` in `/transfer/authorization/create` request + +### 2020-09-14_1.474.1 + +- Added `identity_match` to Products schema object + # 18.1.0 - Updating to OAS 2020-09-14_1.474.0 diff --git a/plaid/__init__.py b/plaid/__init__.py index 78783a63f..3df38f4aa 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ -__version__ = "18.1.0" +__version__ = "18.2.0" # import ApiClient from plaid.api_client import ApiClient diff --git a/plaid/api/plaid_api.py b/plaid/api/plaid_api.py index 2569dd3c8..9db123eb2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ @@ -70,6 +70,8 @@ from plaid.model.base_report_get_response import BaseReportGetResponse from plaid.model.beacon_report_create_request import BeaconReportCreateRequest from plaid.model.beacon_report_create_response import BeaconReportCreateResponse +from plaid.model.beacon_report_get_request import BeaconReportGetRequest +from plaid.model.beacon_report_get_response import BeaconReportGetResponse from plaid.model.beacon_report_list_request import BeaconReportListRequest from plaid.model.beacon_report_list_response import BeaconReportListResponse from plaid.model.beacon_report_syndication_list_request import BeaconReportSyndicationListRequest @@ -1861,6 +1863,60 @@ def __init__(self, api_client=None): }, api_client=api_client ) + self.beacon_report_get_endpoint = _Endpoint( + settings={ + 'response_type': (BeaconReportGetResponse,), + 'auth': [ + 'clientId', + 'plaidVersion', + 'secret' + ], + 'endpoint_path': '/beacon/report/get', + 'operation_id': 'beacon_report_get', + 'http_method': 'POST', + 'servers': None, + }, + params_map={ + 'all': [ + 'beacon_report_get_request', + ], + 'required': [ + 'beacon_report_get_request', + ], + 'nullable': [ + ], + 'enum': [ + ], + 'validation': [ + ] + }, + root_map={ + 'validations': { + }, + 'allowed_values': { + }, + 'openapi_types': { + 'beacon_report_get_request': + (BeaconReportGetRequest,), + }, + 'attribute_map': { + }, + 'location_map': { + 'beacon_report_get_request': 'body', + }, + 'collection_format_map': { + } + }, + headers_map={ + 'accept': [ + 'application/json' + ], + 'content_type': [ + 'application/json' + ] + }, + api_client=api_client + ) self.beacon_report_list_endpoint = _Endpoint( settings={ 'response_type': (BeaconReportListResponse,), @@ -15760,6 +15816,89 @@ def beacon_report_create( beacon_report_create_request return self.beacon_report_create_endpoint.call_with_http_info(**kwargs) + def beacon_report_get( + self, + beacon_report_get_request, + **kwargs + ): + """Get a Beacon Report # noqa: E501 + + Returns a Beacon report for a given Beacon report id. # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.beacon_report_get(beacon_report_get_request, async_req=True) + >>> result = thread.get() + + Args: + beacon_report_get_request (BeaconReportGetRequest): + + 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: + BeaconReportGetResponse + 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['beacon_report_get_request'] = \ + beacon_report_get_request + return self.beacon_report_get_endpoint.call_with_http_info(**kwargs) + def beacon_report_list( self, beacon_report_list_request, diff --git a/plaid/api_client.py b/plaid/api_client.py index ac694db1c..982fd7d3c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 v18.1.0' + self.user_agent = 'Plaid Python v18.2.0' def __enter__(self): return self diff --git a/plaid/configuration.py b/plaid/configuration.py index 080958529..6907b3d4d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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.474.0\n"\ - "SDK Package Version: 18.1.0".\ + "Version of the API: 2020-09-14_1.474.3\n"\ + "SDK Package Version: 18.2.0".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/plaid/exceptions.py b/plaid/exceptions.py index 56fe1c612..2e3f45d7e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_access.py b/plaid/model/account_access.py index d0a71f7df..cfe1dc449 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_assets.py b/plaid/model/account_assets.py index bab67850c..02401bea9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_assets_all_of.py b/plaid/model/account_assets_all_of.py index 8487249ae..6518cf134 100644 --- a/plaid/model/account_assets_all_of.py +++ b/plaid/model/account_assets_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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_balance.py b/plaid/model/account_balance.py index 638cf19fe..148373614 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_base.py b/plaid/model/account_base.py index bfdf58c3d..6af237772 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_filter.py b/plaid/model/account_filter.py index 411046808..5a54aa2db 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_filter_subtypes.py b/plaid/model/account_filter_subtypes.py index 9aeabde99..829cc8b11 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_filters_response.py b/plaid/model/account_filters_response.py index b5903c830..bc1ba762e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_identity.py b/plaid/model/account_identity.py index c3a59523d..87614a06d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_identity_all_of.py b/plaid/model/account_identity_all_of.py index 22067d68f..b98bcfe67 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ba0ab87f9..04c65720e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_identity_match_score_all_of.py b/plaid/model/account_identity_match_score_all_of.py index 02a91f90f..a59410c91 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3e556b510..51341c28c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_product_access.py b/plaid/model/account_product_access.py index d550743c0..b5228fbce 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 482d57b41..ff7af1d16 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_selection_cardinality.py b/plaid/model/account_selection_cardinality.py index 2b127426c..adaa756bf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_subtype.py b/plaid/model/account_subtype.py index b7de8efc2..67e5dd676 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_subtypes.py b/plaid/model/account_subtypes.py index 02090a98b..e4264d3ad 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/account_type.py b/plaid/model/account_type.py index 2de0bcabd..f394bdab7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e85636b73..05c15f990 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 478cd815a..c7ab27c35 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/accounts_get_request.py b/plaid/model/accounts_get_request.py index db9fd20c2..b22467db7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 22c33d951..9d3a3e820 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/accounts_get_response.py b/plaid/model/accounts_get_response.py index 64c283a57..912ad9862 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/ach_class.py b/plaid/model/ach_class.py index 3302c2ead..a547c5395 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/action_state.py b/plaid/model/action_state.py index 1b3fbba81..25aa41cc7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/activity.py b/plaid/model/activity.py index b744feb3f..22a66aed3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/activity_type.py b/plaid/model/activity_type.py index a9bc625b3..47c3398de 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address.py b/plaid/model/address.py index 2cf739440..caddc3b3e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address_data.py b/plaid/model/address_data.py index f1e774041..9c967ffd4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1b0310371..2adc2f6c6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address_data_nullable.py b/plaid/model/address_data_nullable.py index e289ec2b2..b10ae4ce3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b5c5a1a49..e1541e8b2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address_match_score.py b/plaid/model/address_match_score.py index 4bed137ce..e9d4f140a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address_nullable.py b/plaid/model/address_nullable.py index 98a1c9e81..43ee936f4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/address_purpose_label.py b/plaid/model/address_purpose_label.py index 700026f93..417711827 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/application.py b/plaid/model/application.py index b2d24f93d..41eb646ac 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/application_get_request.py b/plaid/model/application_get_request.py index 37f7db77f..1da294ac7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/application_get_response.py b/plaid/model/application_get_response.py index f537b40e2..a56c79aa2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/apr.py b/plaid/model/apr.py index 6597dc6a9..69e4378d3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset.py b/plaid/model/asset.py index d5581e837..621fe83e8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_detail.py b/plaid/model/asset_detail.py index aba1fb1f4..e5c473387 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_holder.py b/plaid/model/asset_holder.py index 9a6b3b7fd..9d31f02c7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_holder_name.py b/plaid/model/asset_holder_name.py index aa38249d6..6054d39e0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_owner.py b/plaid/model/asset_owner.py index 7e6dfc681..2defb4109 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_owners.py b/plaid/model/asset_owners.py index 0263ce3e0..5e9eabe69 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report.py b/plaid/model/asset_report.py index d44fa1247..19c870bc5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b094cafb1..8825190db 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8bb496a83..2694c4d29 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7554d0962..714ce99b9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b184b950c..a4c78e435 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7b9bd6114..4fa4b57e8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5df66ade5..d94fed75d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b1c4a3b7d..85794ef55 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ef3f5f223..f99658f34 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9c6c157be..1316759db 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 30945e095..ce5b6edbd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d12f62c23..b2cd9f143 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_freddie.py b/plaid/model/asset_report_freddie.py index 4ec060db8..a7a34c556 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 407b45de9..0d63dbe7f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5aabb28b2..72831487d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 86d1052e6..b9f57cc3a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 cad39610e..6b2aa8e24 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c81f434a9..81ee7885c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8ea35e487..07c938026 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b92e5d665..efca65db4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_investments.py b/plaid/model/asset_report_investments.py index 115518139..660ef002c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_item.py b/plaid/model/asset_report_item.py index 664eeffae..7576c2188 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 671121a7e..4efbb04ef 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4e6b515a7..4d077cd7d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e86b1c7fb..8224ffdd0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c45ac988c..6dcdefe6f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b47bc9f7b..425bed5c8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3809e9748..947add607 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 67b93df5a..760828569 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_transaction.py b/plaid/model/asset_report_transaction.py index d5014994f..001de6b03 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d522c6007..f36c77336 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_report_user.py b/plaid/model/asset_report_user.py index 8c7c8388b..506032eb5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_transaction.py b/plaid/model/asset_transaction.py index 7f0ec2351..b7251d648 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 af758efc9..11eab6b8a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_transaction_description.py b/plaid/model/asset_transaction_description.py index b031c3b8f..61208369e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_transaction_detail.py b/plaid/model/asset_transaction_detail.py index 49899a621..679777eb5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_transaction_type.py b/plaid/model/asset_transaction_type.py index b6610b167..f8f3e1910 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_transactions.py b/plaid/model/asset_transactions.py index 11a5e0135..af0b8bcb7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/asset_type.py b/plaid/model/asset_type.py index 8f0a58124..7c54429a7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/assets.py b/plaid/model/assets.py index de7bdb8c7..d202d5340 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/assets_error_webhook.py b/plaid/model/assets_error_webhook.py index 1466e1195..65f5682f9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3d6d27f6d..d6bd75b29 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_get_numbers.py b/plaid/model/auth_get_numbers.py index ba3d8027f..cbd851681 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_get_request.py b/plaid/model/auth_get_request.py index b4835753c..a367be06f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 23c2c7d60..ae45d5cfb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_get_response.py b/plaid/model/auth_get_response.py index f05a09ef5..36b5c9bb1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_metadata.py b/plaid/model/auth_metadata.py index c58f26779..15b6dc729 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/auth_supported_methods.py b/plaid/model/auth_supported_methods.py index a7248cece..b8f210fe8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/automatically_verified_webhook.py b/plaid/model/automatically_verified_webhook.py index 6afd451d9..7a1b80885 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5c579b1e4..7f5199377 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 44a157d29..b6b0e38e4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 23839c5b4..6c306fd72 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 dc47b6d5b..116b36ea4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 17e932a40..ccf143e8c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3ed302ee7..428994448 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8089feb77..38db4f4a1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer.py b/plaid/model/bank_transfer.py index 9dc28b38f..e6b84d1ca 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_balance.py b/plaid/model/bank_transfer_balance.py index aeeece17a..761d8651c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8818284ad..d7a95cac6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 af99973dc..d319f4f29 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1b17cb02d..b4d0aab61 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8c2863525..01ba0f32a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 bfb4f483a..173b4665e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f1a727be1..c4d9836cf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_direction.py b/plaid/model/bank_transfer_direction.py index 72683a185..63ea67f8c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_event.py b/plaid/model/bank_transfer_event.py index c15b3dc16..61fc4fd4b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d4e8af0ec..98241cf7e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b04918aa0..c8880a021 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e1ce3ad8b..6bc61995f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9faf301df..f29ad1378 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d600aab2e..79eeae001 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d208cb4cb..dbdd94dee 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b42375592..1975c6d5a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_failure.py b/plaid/model/bank_transfer_failure.py index 3a40e1e62..10a52abae 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 22d7ef148..53922af1f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c79f6a61b..581314626 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8bb3507f1..bdc8b0d98 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 315d32cc5..ad37e6692 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e339659e8..7d2b527f7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_metadata.py b/plaid/model/bank_transfer_metadata.py index f5819c840..2bd2cec69 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 495f12efe..6e487fe90 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 fad567f83..2c8014c3f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_network.py b/plaid/model/bank_transfer_network.py index b7ba14372..2fda79ec9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_status.py b/plaid/model/bank_transfer_status.py index fa513cd55..1188f7c82 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_sweep.py b/plaid/model/bank_transfer_sweep.py index 56ef6b394..92fe8e855 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a8cd95e9a..0bc7e735b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 887075098..9fda26902 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 bdc498756..deed4048c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 250a26654..30e32483a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_type.py b/plaid/model/bank_transfer_type.py index d3ee0a943..9575650ab 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/bank_transfer_user.py b/plaid/model/bank_transfer_user.py index 3fd93ea0a..e823835ae 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9c705ec32..ac1258e6a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1749d2c53..52b90c98d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report.py b/plaid/model/base_report.py index a5c884692..eba17bd19 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_account.py b/plaid/model/base_report_account.py index a161a9708..c7fc2f6a2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f6f38fb79..9c000fc6d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9dfe9705e..741b48b40 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 937ad199c..2a4f6ab5f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 48186be79..525e66e08 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 04b632c71..562655773 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ee947788a..18c7624fc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d8162125d..7f202854f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_item.py b/plaid/model/base_report_item.py index d4bc9c540..ba174faf4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 03712fa0d..2afc8a66b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 953564a30..7276da6e1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_transaction.py b/plaid/model/base_report_transaction.py index 4dc8f02b3..db32180f9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/base_report_warning.py b/plaid/model/base_report_warning.py index a531b283d..e84fa6cd8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0670ca74e..2f3ec1729 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 46f2a66f1..3084ff773 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ed8c1a52d..7c8a0e560 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_audit_trail.py b/plaid/model/beacon_audit_trail.py index 55186eab6..c8fead9df 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 42d516d42..46d2ffd95 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 028799824..fdaf2daca 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c91615a36..86987abf6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report.py b/plaid/model/beacon_report.py index ec399255a..27e175f9c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d27e4dfdf..d4ccf412c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b915de6b9..15d5f923a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9b659d41a..726dc6a54 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_get_request.py b/plaid/model/beacon_report_get_request.py new file mode 100644 index 000000000..8f270fb7c --- /dev/null +++ b/plaid/model/beacon_report_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.474.3 + 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 BeaconReportGetRequest(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 { + 'beacon_report_id': (str,), # noqa: E501 + 'client_id': (str,), # noqa: E501 + 'secret': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'beacon_report_id': 'beacon_report_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, beacon_report_id, *args, **kwargs): # noqa: E501 + """BeaconReportGetRequest - a model defined in OpenAPI + + Args: + beacon_report_id (str): ID of the associated Beacon Report. + + 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.beacon_report_id = beacon_report_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, beacon_report_id, *args, **kwargs): # noqa: E501 + """BeaconReportGetRequest - a model defined in OpenAPI + + Args: + beacon_report_id (str): ID of the associated Beacon Report. + + 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.beacon_report_id = beacon_report_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/beacon_report_get_response.py b/plaid/model/beacon_report_get_response.py new file mode 100644 index 000000000..7aabe33fb --- /dev/null +++ b/plaid/model/beacon_report_get_response.py @@ -0,0 +1,321 @@ +""" + 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.474.3 + 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.beacon_audit_trail import BeaconAuditTrail + from plaid.model.beacon_report_type import BeaconReportType + from plaid.model.fraud_amount import FraudAmount + globals()['BeaconAuditTrail'] = BeaconAuditTrail + globals()['BeaconReportType'] = BeaconReportType + globals()['FraudAmount'] = FraudAmount + + +class BeaconReportGetResponse(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 { + 'id': (str,), # noqa: E501 + 'beacon_user_id': (str,), # noqa: E501 + 'created_at': (datetime,), # noqa: E501 + 'type': (BeaconReportType,), # noqa: E501 + 'fraud_date': (date,), # noqa: E501 + 'fraud_amount': (FraudAmount,), # noqa: E501 + 'audit_trail': (BeaconAuditTrail,), # noqa: E501 + 'request_id': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'id': 'id', # noqa: E501 + 'beacon_user_id': 'beacon_user_id', # noqa: E501 + 'created_at': 'created_at', # noqa: E501 + 'type': 'type', # noqa: E501 + 'fraud_date': 'fraud_date', # noqa: E501 + 'fraud_amount': 'fraud_amount', # noqa: E501 + 'audit_trail': 'audit_trail', # noqa: E501 + 'request_id': 'request_id', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, id, beacon_user_id, created_at, type, fraud_date, fraud_amount, audit_trail, request_id, *args, **kwargs): # noqa: E501 + """BeaconReportGetResponse - a model defined in OpenAPI + + Args: + id (str): ID of the associated Beacon Report. + beacon_user_id (str): ID of the associated Beacon User. + created_at (datetime): An ISO8601 formatted timestamp. + type (BeaconReportType): + fraud_date (date): A date in the format YYYY-MM-DD (RFC 3339 Section 5.6). + fraud_amount (FraudAmount): + audit_trail (BeaconAuditTrail): + 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.id = id + self.beacon_user_id = beacon_user_id + self.created_at = created_at + self.type = type + self.fraud_date = fraud_date + self.fraud_amount = fraud_amount + self.audit_trail = audit_trail + 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, id, beacon_user_id, created_at, type, fraud_date, fraud_amount, audit_trail, request_id, *args, **kwargs): # noqa: E501 + """BeaconReportGetResponse - a model defined in OpenAPI + + Args: + id (str): ID of the associated Beacon Report. + beacon_user_id (str): ID of the associated Beacon User. + created_at (datetime): An ISO8601 formatted timestamp. + type (BeaconReportType): + fraud_date (date): A date in the format YYYY-MM-DD (RFC 3339 Section 5.6). + fraud_amount (FraudAmount): + audit_trail (BeaconAuditTrail): + 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.id = id + self.beacon_user_id = beacon_user_id + self.created_at = created_at + self.type = type + self.fraud_date = fraud_date + self.fraud_amount = fraud_amount + self.audit_trail = audit_trail + 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/beacon_report_list_request.py b/plaid/model/beacon_report_list_request.py index 637134f3b..0e9dd15e5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 240a556cb..32c9321ba 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_syndication.py b/plaid/model/beacon_report_syndication.py index c784105b6..3d71cddda 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 50e63be87..27b6a298c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6d43b93d7..7c62b86f8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c19488106..ea41b5087 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b7070f0da..8cd2cadac 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 19cae8373..9391783f2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_report_type.py b/plaid/model/beacon_report_type.py index 33a28f0d6..de8044b6d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 235d1974a..669b6cb14 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_address.py b/plaid/model/beacon_user_address.py index 267d03e5c..78b3a74b8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 822b14f0a..caa812fc0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6d057a984..61a570312 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_data.py b/plaid/model/beacon_user_data.py index 563d245c0..9ccb0b7f5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2724f8daf..f34c44415 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 51fac240d..60261235e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3050fd2a5..f84c934f8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_name.py b/plaid/model/beacon_user_name.py index d7cfe6066..78c99f214 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e33e5a868..53cebf86e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3a471bf42..5fc8ee62d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 74529b292..c64950f85 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/beacon_user_status.py b/plaid/model/beacon_user_status.py index 3181d8324..42ca9899d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ca4f1bc2d..90a15f011 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/categories_get_response.py b/plaid/model/categories_get_response.py index 31b1fc99d..faaaae67a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/category.py b/plaid/model/category.py index 09e4d288f..e1f857d1a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/category_insight_details.py b/plaid/model/category_insight_details.py index bdf9e5779..a4b516a68 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/category_insights.py b/plaid/model/category_insights.py index fe40fe1d5..47491dd01 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cause.py b/plaid/model/cause.py index 121f10b71..2604f937c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cause_all_of.py b/plaid/model/cause_all_of.py index 1a6dd1de3..92823c190 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c69b3f7d5..43a9781ca 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 635e214cf..ff3f411c6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9c4ce940e..ba2cd51d5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/client_provided_transaction.py b/plaid/model/client_provided_transaction.py index cb8621d14..ad01a5ae9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 be05e8d83..d6b4b4c84 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/client_user_id.py b/plaid/model/client_user_id.py index ab3a54749..a3a604422 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 20ac91d6b..a6e8d36b9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/connected_application.py b/plaid/model/connected_application.py index b0030faf7..c40dba656 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5ee0e5813..d6d9dcc4b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/consumer_report_permissible_purpose.py b/plaid/model/consumer_report_permissible_purpose.py index fb0a6ef9d..6a24594fd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d223965cf..924d418ea 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/counterparty.py b/plaid/model/counterparty.py index 4043b7a26..84687472b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/counterparty_insights.py b/plaid/model/counterparty_insights.py index 65eca4e1d..b3ecdc042 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/counterparty_type.py b/plaid/model/counterparty_type.py index bfa0f359b..f35c75a9f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/country_code.py b/plaid/model/country_code.py index 65645cae8..57280c8f4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/cra_bank_income.py b/plaid/model/cra_bank_income.py index aec7af966..ee18de168 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 03450c719..061a95d82 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e4b5efb63..92e4f6472 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7b25766f3..ba23d4345 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f813476b5..dc7299b1d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 93f7d3a64..0e237b100 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 762f2e974..07b1bb518 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e63806dec..b5411a5e9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0441d41ae..7c91ec376 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b47b80218..52db123c3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 aae07b1fc..1df5be5c9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b41698d57..3328affec 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4ff8f91d7..98b8c6ade 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2cec28dc4..2594402db 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 532dd7350..3512930cd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit1099.py b/plaid/model/credit1099.py index 312e50ebc..b4bc5b4d3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit1099_filer.py b/plaid/model/credit1099_filer.py index ca4bd9db5..1a07b1f3d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit1099_payer.py b/plaid/model/credit1099_payer.py index 6d9170a95..02da42ecf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit1099_recipient.py b/plaid/model/credit1099_recipient.py index 3c6522a16..1c2037154 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_account_subtype.py b/plaid/model/credit_account_subtype.py index 082d8fb4d..45407bbda 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_account_subtypes.py b/plaid/model/credit_account_subtypes.py index 728dc0123..59db4b000 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_ach_class.py b/plaid/model/credit_ach_class.py index 113a01994..e1151f438 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f9c2d8586..837478c11 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9a6f27f3f..1fa385341 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 fa4f7d899..a68031401 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 dcf76e12d..4886c62c1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 be14d1613..2babbd67b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 97f8922af..d08194056 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4bbcf64c6..0a97e67e2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_employer.py b/plaid/model/credit_bank_employer.py index 8c4456e29..3d0e7d6bb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_employment.py b/plaid/model/credit_bank_employment.py index e1f992806..8c78ffb33 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8d22695d8..0ba8906cb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ba265d3cb..e72949b9e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f56fa6758..10fac1282 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 fa46cd373..0d512ab06 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1a9a457b3..51d58ec30 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d06d0b23a..520b00550 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_bank_income.py b/plaid/model/credit_bank_income.py index c649771d5..2619039a1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 18fec1237..a85b52340 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0c5e71e66..3349e573f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 db0cf64e9..221351278 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 23c8d43cf..676eba20f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ed24f30b2..08168d248 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6dfcb301c..208b4153d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d951981df..c1ea757b6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 18ec60a25..570c45001 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 63998e23d..0456e5db3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 501dd4148..7dc35e814 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 08309c036..a9ee7de60 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b0fb0d1f2..627d4e36d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e2d770d49..5af51a1a2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a552ce10e..46bb01a15 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2251f25cc..929b6328e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 cdf76675e..bca6ec94c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f5a74d8da..1600dabe2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2a61697ea..9adbf609d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 27cf5b3bf..92d1149d1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 32a516e77..a44542929 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5689e83b1..7e5336bdb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 333e72d9b..e8f31e25c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e78faea79..e1f6871c2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1cded26e1..c3d6a2aeb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 84474463f..32513bf38 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 895b3b62e..8f8f29690 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 779928db4..805d801c1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 dca337bf7..1c3cf01d5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1ae79d216..ba9c96083 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 67a4866ae..01bd20ad8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 874610bdc..ebf56bfe2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0e1caf51b..771a79837 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_card_liability.py b/plaid/model/credit_card_liability.py index 006825b25..944067650 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_category.py b/plaid/model/credit_category.py index 4f3cfd83a..331d64c1a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_document_metadata.py b/plaid/model/credit_document_metadata.py index e417def2c..fa8a53a77 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_employer_verification.py b/plaid/model/credit_employer_verification.py index 1b4a7d22e..f233815d2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8470e6356..20c7a6cc2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8c37a7158..0cf1102d4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_employment_item.py b/plaid/model/credit_employment_item.py index 3f0979ee5..574a29656 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_employment_verification.py b/plaid/model/credit_employment_verification.py index b207e1efa..341e1eb03 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_filter.py b/plaid/model/credit_filter.py index 9e1a0b542..b8f373bf2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 060ed80bb..0c27ca0a0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 df5fdf0b9..727f3ba5a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d9a4afca1..7fb4be31f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 52f0fae73..b813d44ce 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 854dd06a5..e35dcd643 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 cfc9b44df..539e24c37 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 27447e178..d40556554 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 96992f516..d3ff87db9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c8b7fd6fc..789353fd2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b839ea11e..feab4856d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 725aad7b3..a9516eb66 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1834ba301..eb5793453 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 82073871b..bba378ccc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5033409f8..0c36b4c9a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 629441b2e..7e4913066 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ba534aed2..5cf9b67ef 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 03c610924..cc9a83762 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 bf115c6d6..04d9d27a7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8d44893d6..d1129791b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_pay_stub.py b/plaid/model/credit_pay_stub.py index efe6b4128..196e1c740 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6cb41d185..91ca9fda2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 10e73e969..87054beeb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a28c8fd61..6342816f2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 cd2f15c81..019416dda 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 dae267e42..4bece9235 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 083c9a2a4..e3f343bdf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0bf7c2afa..be1567ae9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a46e2bead..e18a9ae95 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 64f68df41..f01c91136 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f21c034be..405bc8ff7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c075f12a8..eda3dc084 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 91f11dae5..35c0d6ce0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0633ea7a7..e589ed09e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9854eda79..2fa473890 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3414ec3ac..9cbee34dd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a5e94d919..93303fd8e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e00747465..7047ad0e6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5529ef92e..42014e7d4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_platform_ids.py b/plaid/model/credit_platform_ids.py index 5484e9d60..5f00294f8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0d5e32d6f..38307cead 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 40a02c9e3..f18492585 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ae0e62a96..d19abb703 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_relay_pdf_get_request.py b/plaid/model/credit_relay_pdf_get_request.py index b3f13463b..96a1ee4e4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6d24e311e..9cbaa356b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f3a5ef5be..c7f3f38cc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9d1ed196f..f92fbe8be 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5f7b295e8..1c50380a4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_session.py b/plaid/model/credit_session.py index 4ff74d6c9..4e7142943 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e8db62c5a..0adbde0c5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 49965da68..f1b7bb875 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d5966694a..1144703fd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 93fddad66..0e55f54ba 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d0475cdd8..09a3fc92b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_session_error.py b/plaid/model/credit_session_error.py index d8fa90960..a71ff699b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c88725d53..b51c50d0e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 da1424e7d..c060e57c3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_session_results.py b/plaid/model/credit_session_results.py index a2b86348c..c127cb16c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 663362f36..b294d547f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 49afe9b21..88a0f0905 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/credit_w2.py b/plaid/model/credit_w2.py index abdc31bd9..172fddcfb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 29527805a..1f9c54b9d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 946a88a06..221a02db8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/dashboard_user.py b/plaid/model/dashboard_user.py index 09b35c8ad..6cb6ec7e7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ad26bb839..76af18f14 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7b8347fc3..e1c10c08b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 399c79391..cc423b72e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 675e06dfe..8c3a84d36 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/dashboard_user_status.py b/plaid/model/dashboard_user_status.py index 88cf5ab50..551f052a1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/date_range.py b/plaid/model/date_range.py index 1d6b3a928..4270bacfc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deductions.py b/plaid/model/deductions.py index 017ad4000..b455e1d84 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deductions_breakdown.py b/plaid/model/deductions_breakdown.py index 9c3400eb7..b7ec516af 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/deductions_total.py b/plaid/model/deductions_total.py index fa17fc559..4abd02180 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/default_update_webhook.py b/plaid/model/default_update_webhook.py index bc29808cc..b88dbab48 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4901d0409..b993d27b9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 475c3ec03..6273323d1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e4ca720ef..6f8e9da39 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 78e8bfc15..7d67363e3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f7f1cf40f..abc003158 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b7a946c89..2ec0eed34 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 89905938f..80ba52785 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ccdd6b260..503327c9c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 92e2c0ee1..1c93217c5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2849e5375..1e08964da 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1425b8934..7c8ad8150 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 98e4e12f4..76ddd38a0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ff1ac7cdc..a6a485858 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/depository_account_subtype.py b/plaid/model/depository_account_subtype.py index dfabed6f8..f598cad8c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/depository_account_subtypes.py b/plaid/model/depository_account_subtypes.py index 74344aa71..e5b971135 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/depository_filter.py b/plaid/model/depository_filter.py index fb28ac718..1b8b3058a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d6a9c56eb..4c99de70c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/detailed_originator.py b/plaid/model/detailed_originator.py index 0b1387011..3dba1dbdd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/detected_account.py b/plaid/model/detected_account.py index f03c03172..de84cf2d2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/distribution_breakdown.py b/plaid/model/distribution_breakdown.py index 564cbd323..d76aa36d3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/doc_type.py b/plaid/model/doc_type.py index 4a1fe7e77..06c9167cc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_analysis.py b/plaid/model/document_analysis.py index a035d480c..03f61f668 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3d092eb14..e533094df 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 393c4fff5..9ab422187 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_metadata.py b/plaid/model/document_metadata.py index 47730f938..2f6b86b7e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b3f027244..ec4e52daf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_risk_signal.py b/plaid/model/document_risk_signal.py index f47740369..93103974f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4393b397b..d02c01b66 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4049be959..d8e207e99 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_risk_summary.py b/plaid/model/document_risk_summary.py index be39f4519..225d7fcd4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/document_status.py b/plaid/model/document_status.py index 4d8276525..7b8898baa 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/documentary_verification.py b/plaid/model/documentary_verification.py index b0f5eefed..c46cff0e2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/documentary_verification_document.py b/plaid/model/documentary_verification_document.py index 713733847..d1a61af1d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/earnings.py b/plaid/model/earnings.py index f32d1786d..d25af3125 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/earnings_breakdown.py b/plaid/model/earnings_breakdown.py index 0b9722d3c..43391b6fe 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8f6fabbf4..46f496ad6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/earnings_total.py b/plaid/model/earnings_total.py index 095c9be1c..9b9511a71 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/email.py b/plaid/model/email.py index da4d82a7f..9cac86d99 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a60842dcb..4e4a7d3d4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employee.py b/plaid/model/employee.py index 415c0f707..bed312c5e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1bb20eecb..d2d2506c0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employer.py b/plaid/model/employer.py index 021b25aa5..f5314b106 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 89f3bbd0f..9d382f506 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employer_verification.py b/plaid/model/employer_verification.py index b428e55f2..cea93ed31 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employers_search_request.py b/plaid/model/employers_search_request.py index ebd9bc749..3a372ec13 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employers_search_response.py b/plaid/model/employers_search_response.py index 03891305f..e00551648 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employment_details.py b/plaid/model/employment_details.py index dbcdccb54..ec76fb4d0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employment_source_type.py b/plaid/model/employment_source_type.py index eb52e0a9f..846cd9b10 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employment_verification.py b/plaid/model/employment_verification.py index 70e2e83aa..4fbf009e6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8fb55e930..ebade4ac5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 45b9e1841..28af958ca 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/employment_verification_status.py b/plaid/model/employment_verification_status.py index dde3f772c..7b12490ae 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/enhancements.py b/plaid/model/enhancements.py index 6afaa29cf..fc0764e92 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/enrich_transaction_direction.py b/plaid/model/enrich_transaction_direction.py index 5cf9d4dd3..0c3a5c931 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/enrichments.py b/plaid/model/enrichments.py index 75386b1a9..243edc919 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_document.py b/plaid/model/entity_document.py index 83eb7bdb8..535c744a6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_document_type.py b/plaid/model/entity_document_type.py index 6f5b31219..4a801186e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4c9b53056..429565d35 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 293a4a318..49c0a83fc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7647a7985..e105747b6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f8e7af083..72e5bdc38 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 664e129e2..d9a34da81 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 eb6823cf2..b188bc442 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e55e2fb00..b76c0b64d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c3a5881ee..7c86c0369 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d2aaa9813..45ef66a35 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c263dd526..2fad4d6e1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 817311192..9dd006830 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a77144d02..5c178e7c0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_watchlist_code.py b/plaid/model/entity_watchlist_code.py index a01d208ed..d15689c52 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_watchlist_program.py b/plaid/model/entity_watchlist_program.py index 75f8cb256..d021c720b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/entity_watchlist_screening.py b/plaid/model/entity_watchlist_screening.py index ebec1a43a..6d499d8e1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 fae51381e..c7067f850 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ccf23618c..878e507a5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f96c42f1f..c28a70dd3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 70dbc7dd2..cab483237 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c7fd57985..ee8b63b2e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 fb3c8f3cb..89bbe5e2b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/expiration_date.py b/plaid/model/expiration_date.py index 748751c67..c166491e0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 cea4561f4..3bdd23635 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/external_payment_options.py b/plaid/model/external_payment_options.py index 56792ee9a..66a5e3aee 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3824dbd39..4185d9183 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 63b02ba22..80513b153 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9ec5e118a..c14b33c9f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c70831088..6ffe47914 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 839f361df..e05790c8a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 43c633865..f9981ca14 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_content_types.py b/plaid/model/fdx_content_types.py index daece737b..8a3b08ad4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_hateoas_link.py b/plaid/model/fdx_hateoas_link.py index bdf5b7998..d5a7ca756 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ed57c51a7..79e697220 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1ebc18325..0d5969b93 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification.py b/plaid/model/fdx_notification.py index 1dbbdbc45..e0714f950 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification_category.py b/plaid/model/fdx_notification_category.py index a7b6f4927..2cc38ab6a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification_payload.py b/plaid/model/fdx_notification_payload.py index 620d96701..3568aef61 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 13375b369..06460cb4e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification_priority.py b/plaid/model/fdx_notification_priority.py index a81cd9256..c4d39ca42 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification_severity.py b/plaid/model/fdx_notification_severity.py index 54ddf993f..d06ab07a4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_notification_type.py b/plaid/model/fdx_notification_type.py index 249cf91ce..2bfe47aea 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_party.py b/plaid/model/fdx_party.py index caa13dcf8..d20b22e35 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_party_registry.py b/plaid/model/fdx_party_registry.py index ba25deb9d..091bd64d0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdx_party_type.py b/plaid/model/fdx_party_type.py index 97e910174..bd81162f4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fdxfi_attribute.py b/plaid/model/fdxfi_attribute.py index 59173c648..b84a57b23 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/financial_institution_insights.py b/plaid/model/financial_institution_insights.py index 8fdddacbd..ca039794c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/form1099_type.py b/plaid/model/form1099_type.py index 5efa8e06e..5512ce297 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/fraud_amount.py b/plaid/model/fraud_amount.py index e8d523deb..d7b9cf6d4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/generic_country_code.py b/plaid/model/generic_country_code.py index 78d186224..3794d20a8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 76555ba4d..04d50c118 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3aa08eb6d..9f26aed8e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/health_incident.py b/plaid/model/health_incident.py index 283627d03..b808cb17b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/historical_balance.py b/plaid/model/historical_balance.py index b0b8be684..06d53a164 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/historical_update_webhook.py b/plaid/model/historical_update_webhook.py index 9bab83fb5..4e3926585 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/holding.py b/plaid/model/holding.py index f6205f8b7..68bb24b97 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 490514826..e51cbeb86 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/holdings_override.py b/plaid/model/holdings_override.py index 33099b283..0d3cc005c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ddaf3ec42..e2a470dfa 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/hosted_mmd_verification_webhook.py b/plaid/model/hosted_mmd_verification_webhook.py new file mode 100644 index 000000000..47d2541df --- /dev/null +++ b/plaid/model/hosted_mmd_verification_webhook.py @@ -0,0 +1,303 @@ +""" + 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.474.3 + 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.webhook_environment_values import WebhookEnvironmentValues + globals()['WebhookEnvironmentValues'] = WebhookEnvironmentValues + + +class HostedMMDVerificationWebhook(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 { + 'webhook_type': (str,), # noqa: E501 + 'webhook_code': (str,), # noqa: E501 + 'status': (str,), # noqa: E501 + 'item_id': (str,), # noqa: E501 + 'account_id': (str,), # noqa: E501 + 'environment': (WebhookEnvironmentValues,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'webhook_type': 'webhook_type', # noqa: E501 + 'webhook_code': 'webhook_code', # noqa: E501 + 'status': 'status', # noqa: E501 + 'item_id': 'item_id', # noqa: E501 + 'account_id': 'account_id', # noqa: E501 + 'environment': 'environment', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, webhook_type, webhook_code, status, item_id, account_id, *args, **kwargs): # noqa: E501 + """HostedMMDVerificationWebhook - a model defined in OpenAPI + + Args: + webhook_type (str): `AUTH` + webhook_code (str): `HOSTED_VERIFICATION` + status (str): The final status of the same-day microdeposits verification. Will always be \"MANUALLY_VERIFIED\" or \"VERIFICATION_FAILED\". + item_id (str): The `item_id` of the Item associated with this webhook, warning, or error + account_id (str): The external account ID of the affected account + + 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,) + environment (WebhookEnvironmentValues): [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.webhook_type = webhook_type + self.webhook_code = webhook_code + self.status = status + self.item_id = item_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 \ + 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, webhook_type, webhook_code, status, item_id, account_id, *args, **kwargs): # noqa: E501 + """HostedMMDVerificationWebhook - a model defined in OpenAPI + + Args: + webhook_type (str): `AUTH` + webhook_code (str): `HOSTED_VERIFICATION` + status (str): The final status of the same-day microdeposits verification. Will always be \"MANUALLY_VERIFIED\" or \"VERIFICATION_FAILED\". + item_id (str): The `item_id` of the Item associated with this webhook, warning, or error + account_id (str): The external account ID of the affected account + + 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,) + environment (WebhookEnvironmentValues): [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.webhook_type = webhook_type + self.webhook_code = webhook_code + self.status = status + self.item_id = item_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 \ + 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/id_number_type.py b/plaid/model/id_number_type.py index 136d40e99..1cbb2900c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4dc958871..b48329156 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_get_request.py b/plaid/model/identity_get_request.py index a2c76b8e5..5323d272a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3cbca0279..81934813d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_get_response.py b/plaid/model/identity_get_response.py index 814252324..ae53b3953 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_match_request.py b/plaid/model/identity_match_request.py index 3ed93237e..ec33470ea 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0acf7f801..e2c60b8ee 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_match_response.py b/plaid/model/identity_match_response.py index e5d3896ca..23807ccdf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_match_user.py b/plaid/model/identity_match_user.py index 09009967c..ffcd59dd9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_refresh_request.py b/plaid/model/identity_refresh_request.py index 555473675..0cb18be9c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_refresh_response.py b/plaid/model/identity_refresh_response.py index 3b132f675..d78f49419 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_update_types.py b/plaid/model/identity_update_types.py index 4fa3fa075..b48249e36 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification.py b/plaid/model/identity_verification.py index a85b6457b..ccee358b1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0c8e430d4..d35cdc93d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ccdd81538..5ea5f2559 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 48d29ebfd..a39f3ecb9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 790ab348e..eb068966f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 bd8b9e058..863af5ba2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3a6a8ab66..043b5e103 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 69cffb196..6bf475b79 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 39d54c102..98bc66ad4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b61974b8f..a25278810 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 273ad9f54..3f1fe93cf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 302cabae9..8bf166835 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 51b76f9dc..62e04dffe 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0b6b36c72..36c221d34 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d28e51224..8f5cb87f3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 51fb38d75..a7813f977 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 47aebff59..fa6b2680a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/identity_verification_status.py b/plaid/model/identity_verification_status.py index 3481f30df..1119f2853 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a9e4b3c74..436a6fef3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 df9fa3063..dd672bc7d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4abb18096..40aff3a6b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b2efec424..3f1945d21 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ac3498b4b..22fa8e537 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8598e9e5f..fd333d425 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7a3a4f464..e023029b3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/image_quality.py b/plaid/model/image_quality.py index 223319ef2..bb07bb985 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/incident_update.py b/plaid/model/incident_update.py index 80ea54216..5e3627201 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_breakdown.py b/plaid/model/income_breakdown.py index b6691e08d..672be1e23 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_breakdown_type.py b/plaid/model/income_breakdown_type.py index a61818077..8ca36c05d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_override.py b/plaid/model/income_override.py index 219909030..c8528e102 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/income_summary.py b/plaid/model/income_summary.py index 26624bb71..d30102746 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d348aeb56..27a504fe7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8026bd7ce..fa90c48a2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8a2b88bf5..cf8a9a09d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 52e9fb688..355fe36b4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 28b4c051a..159394d28 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a6c05f675..aa1fa0c1c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 470465c73..274e0cdfe 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 59e3ed1f8..cdd8835f9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 05ea1f3fc..510cdab1d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7094c263f..f275d3371 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 eecbcd607..88e7b2bb7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 52bd7a9cb..1837e5d27 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4b4d8492b..798218cf0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 277cd466c..139708241 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 68e0e8629..a525b6e8e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f178d9acc..c11363681 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3342ea5c3..9928f784c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 919b3888c..1ffb20a6e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 09b4eeb17..d986e4bac 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e795d8730..ce2bba7c9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3cac440a3..a0f18db9b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 dded0e48a..8b4e04f7f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 07783d9d9..816a42a7c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 37be12a2b..21d3333dd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b681763ad..905d43c8b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f19a6e630..9dc902eaa 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/individual_name.py b/plaid/model/individual_name.py index f1cdba466..c955a7df3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 15bb39a63..850886c98 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/individual_watchlist_code.py b/plaid/model/individual_watchlist_code.py index 71d85b192..48c85b00f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/individual_watchlist_program.py b/plaid/model/individual_watchlist_program.py index 92b257ef6..c24b699f1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a56143a17..40a69e0f8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/inflow_model.py b/plaid/model/inflow_model.py index f9157c894..01914c218 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/initial_update_webhook.py b/plaid/model/initial_update_webhook.py index 449099833..cd5ce9724 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institution.py b/plaid/model/institution.py index 416c92e55..a5d7982a7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institution_status.py b/plaid/model/institution_status.py index c5496a15a..e9712d6be 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7c5612777..24ccd9e52 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institution_supported_networks.py b/plaid/model/institution_supported_networks.py index dffecf77a..a135413b8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1356546f5..fb1d2fe9a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9e309ce4e..de3999c84 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a4480c306..530a49473 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_get_request.py b/plaid/model/institutions_get_request.py index 0603fe21a..deb7a3879 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a67d4cba5..e54120c75 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_get_response.py b/plaid/model/institutions_get_response.py index 8ea6535f9..54829666a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 fee81d75a..17b3111a4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1389fe913..37051508c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_search_request.py b/plaid/model/institutions_search_request.py index cb22fa203..b069652f5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e36f68252..a14955abb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/institutions_search_response.py b/plaid/model/institutions_search_response.py index e403adcf5..e1db7df90 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_account_subtype.py b/plaid/model/investment_account_subtype.py index 0c50b834f..c01f71edf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_account_subtypes.py b/plaid/model/investment_account_subtypes.py index 1a8d55b85..43561a11c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_filter.py b/plaid/model/investment_filter.py index 84c6ff509..5f12e3d96 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4342e4b97..2da2ebb1c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_transaction.py b/plaid/model/investment_transaction.py index 5de4b206a..3491a0003 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_transaction_subtype.py b/plaid/model/investment_transaction_subtype.py index d10eb6c61..3f6fe0160 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investment_transaction_type.py b/plaid/model/investment_transaction_type.py index cdc1e1aa1..5d7410aa4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9d6d83236..5d3b3325c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 84c72f768..68a44d16e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1500114b8..9d101e0af 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3e4477b5a..2f0d984ff 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_auth_owner.py b/plaid/model/investments_auth_owner.py index e310994b2..d7f635fb1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 529ef5601..ae17099b1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 52b424d69..7120fcb7f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6663db841..945037d46 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 543d4ac28..4220c183b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_refresh_request.py b/plaid/model/investments_refresh_request.py index af04dde65..f7f8b4951 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_refresh_response.py b/plaid/model/investments_refresh_response.py index c3ee4da8d..f72ea14d3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f44d8c7ec..a04081e4e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5e6e07071..05cc29813 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f982d54ba..1567ed755 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/investments_transactions_override.py b/plaid/model/investments_transactions_override.py index 7be36dd7f..ee80d443e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/iso_currency_code.py b/plaid/model/iso_currency_code.py index 5df0ebfe1..8eca7c0be 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/issuing_country.py b/plaid/model/issuing_country.py index e564dec8c..45abe790e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item.py b/plaid/model/item.py index 86516c4c7..441f008a6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 02cf9bb04..ce38d8c39 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e0ab0d07d..a7cb26286 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d3faf35c6..ca9dbfae4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0adb6531a..b151d1093 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a0e94977d..b02ac3f6a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 fd9bb3bea..6a4a69a3f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 05ea26bc7..b8b0123d0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1b9169826..c6f8145bf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 54dc8be49..6a79cdbff 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6d9f90709..a3fa40a90 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 dcd261acb..36cb0f5d9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_error_webhook.py b/plaid/model/item_error_webhook.py index 3ef10ab25..1dee493e9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_get_request.py b/plaid/model/item_get_request.py index c14a5775f..f7ba7d930 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_get_response.py b/plaid/model/item_get_response.py index f7d01cf3d..45a07027c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_import_request.py b/plaid/model/item_import_request.py index 0301be458..47bde319e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8e9f2a3a9..89adac6ec 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6b464d819..279d6cf3f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_import_response.py b/plaid/model/item_import_response.py index 6c210c3a4..3952e891e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 335593925..0c9abf0b8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0d2699060..dc32f28a7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 bcb5e5dd9..521b292dd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f56d89516..017c9aa81 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4d653086e..63c3f1ca0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 57a853e2b..66b125864 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_remove_request.py b/plaid/model/item_remove_request.py index 06f89aa98..71583e872 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_remove_response.py b/plaid/model/item_remove_response.py index c61fbe887..a5b8383bf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_status.py b/plaid/model/item_status.py index 1212bad23..396f17a8d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_status_investments.py b/plaid/model/item_status_investments.py index 083b085be..457fc7f3b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 bd4574888..e153c452d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_status_nullable.py b/plaid/model/item_status_nullable.py index bde5ed1e2..660f7dcd9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/item_status_transactions.py b/plaid/model/item_status_transactions.py index 24c2b025e..0fbac2597 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d3d6b598f..e82344d93 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5dd89b383..36fcbaf25 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/jwk_public_key.py b/plaid/model/jwk_public_key.py index b9347541f..63c7ce19c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/jwt_header.py b/plaid/model/jwt_header.py index 732d5fb6f..d5271918c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 94365cceb..7a016d17e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 691664310..f9c347077 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/kyc_check_details.py b/plaid/model/kyc_check_details.py index 49b2a687c..5e2483c3c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 34165397b..e75806d93 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7fb10edb9..81cfb1ba8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3cd421172..84cd3a740 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0cb29bc85..394a0e26a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3fe7eff9e..db9b794bd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5adc606ed..316694468 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1c6e2c4a6..1eabe1ab1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 818301deb..36ad6b53e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ff18b0e02..53ece983f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/liabilities_get_request.py b/plaid/model/liabilities_get_request.py index 32b6e78d0..5bf278765 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c01441796..f9d793164 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/liabilities_get_response.py b/plaid/model/liabilities_get_response.py index 27e003be3..5703560fa 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/liabilities_object.py b/plaid/model/liabilities_object.py index ca196d29d..818ef4d0d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/liability_override.py b/plaid/model/liability_override.py index 2e2418013..9223a0a0e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_callback_metadata.py b/plaid/model/link_callback_metadata.py index a902e2c94..1ebd8ec0d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_account.py b/plaid/model/link_delivery_account.py index 956f42d6a..9a520205b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3e29ec9a1..e5e9795d6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 951146eef..4708c392a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 43711a771..b0ea601f2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 82c14ce73..0f8252d3c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0b3543869..ec8eb3cbd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8c9a3f45c..ce486d856 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f62c5a826..83c8f1083 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_institution.py b/plaid/model/link_delivery_institution.py index 3df9a214e..b99f6bd42 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_metadata.py b/plaid/model/link_delivery_metadata.py index 4a87c3e55..1bdca1428 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_options.py b/plaid/model/link_delivery_options.py index 660dff4bd..669998ad5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_recipient.py b/plaid/model/link_delivery_recipient.py index 2879180f4..1ddb45b9c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 499803387..d8924bef6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 17bc7b764..126c6ba2a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_delivery_webhook_callback_type.py b/plaid/model/link_delivery_webhook_callback_type.py index 9cf4b0667..a9cf07d56 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f53256d28..037655a83 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 55fef6b0f..e2448f526 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_event.py b/plaid/model/link_event.py index 52b780be5..c1969c1a0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_event_metadata.py b/plaid/model/link_event_metadata.py index 050efdc60..f9abe9aaf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_event_name.py b/plaid/model/link_event_name.py index 7cce4869b..61092e348 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_events_webhook.py b/plaid/model/link_events_webhook.py index c8e8aca35..cb86b0aea 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9a83e1827..346ee28b7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c340a1f0c..8695cdcf5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_exit.py b/plaid/model/link_session_exit.py index c27bac244..83586ff9b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a80577a1d..30b4dd3dd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 14b3f4d6d..3094d8c1f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 55c4b9aeb..8331c6ed3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_success.py b/plaid/model/link_session_success.py index 49ec71d46..47c237bfe 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 336f51744..7e0112091 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c7f243656..035092bcb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_session_success_metadata_institution.py b/plaid/model/link_session_success_metadata_institution.py index 7c4e0125f..850b1bd3a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2a005a3e5..cf978287a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1c2224c7e..d50ee1997 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 new file mode 100644 index 000000000..41bdf8bdb --- /dev/null +++ b/plaid/model/link_token_create_card_switch.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.474.3 + 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 LinkTokenCreateCardSwitch(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 { + 'card_bin': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'card_bin': 'card_bin', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, card_bin, *args, **kwargs): # noqa: E501 + """LinkTokenCreateCardSwitch - a model defined in OpenAPI + + Args: + card_bin (str): The BIN (Bank Identification Number) of the card to switch. + + 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.card_bin = card_bin + 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, card_bin, *args, **kwargs): # noqa: E501 + """LinkTokenCreateCardSwitch - a model defined in OpenAPI + + Args: + card_bin (str): The BIN (Bank Identification Number) of the card to switch. + + 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.card_bin = card_bin + 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_token_create_credit_filter.py b/plaid/model/link_token_create_credit_filter.py index 9373f9c25..7b856a9f9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 91755d735..388c0fbb8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ea7e7f343..ea8d15787 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 905284fb2..bdb4d53c9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 780710b05..04eb6f0ea 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6dfe34f50..4b3d9dbc9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6c6edf0d3..73a62b63c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ @@ -33,6 +33,7 @@ def lazy_import(): from plaid.model.consumer_report_permissible_purpose import ConsumerReportPermissiblePurpose from plaid.model.country_code import CountryCode from plaid.model.link_token_account_filters import LinkTokenAccountFilters + from plaid.model.link_token_create_card_switch import LinkTokenCreateCardSwitch from plaid.model.link_token_create_hosted_link import LinkTokenCreateHostedLink from plaid.model.link_token_create_institution_data import LinkTokenCreateInstitutionData from plaid.model.link_token_create_request_auth import LinkTokenCreateRequestAuth @@ -54,6 +55,7 @@ def lazy_import(): globals()['ConsumerReportPermissiblePurpose'] = ConsumerReportPermissiblePurpose globals()['CountryCode'] = CountryCode globals()['LinkTokenAccountFilters'] = LinkTokenAccountFilters + globals()['LinkTokenCreateCardSwitch'] = LinkTokenCreateCardSwitch globals()['LinkTokenCreateHostedLink'] = LinkTokenCreateHostedLink globals()['LinkTokenCreateInstitutionData'] = LinkTokenCreateInstitutionData globals()['LinkTokenCreateRequestAuth'] = LinkTokenCreateRequestAuth @@ -156,6 +158,7 @@ def openapi_types(): 'redirect_uri': (str,), # noqa: E501 'android_package_name': (str,), # noqa: E501 'institution_data': (LinkTokenCreateInstitutionData,), # noqa: E501 + 'card_switch': (LinkTokenCreateCardSwitch,), # noqa: E501 'account_filters': (LinkTokenAccountFilters,), # noqa: E501 'eu_config': (LinkTokenEUConfig,), # noqa: E501 'institution_id': (str,), # noqa: E501 @@ -201,6 +204,7 @@ def discriminator(): 'redirect_uri': 'redirect_uri', # noqa: E501 'android_package_name': 'android_package_name', # noqa: E501 'institution_data': 'institution_data', # noqa: E501 + 'card_switch': 'card_switch', # noqa: E501 'account_filters': 'account_filters', # noqa: E501 'eu_config': 'eu_config', # noqa: E501 'institution_id': 'institution_id', # noqa: E501 @@ -283,6 +287,7 @@ def _from_openapi_data(cls, client_name, language, country_codes, user, *args, * 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 via a webview. 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.. [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 account_filters (LinkTokenAccountFilters): [optional] # noqa: E501 eu_config (LinkTokenEUConfig): [optional] # noqa: E501 institution_id (str): Used for certain Europe-only configurations, as well as certain legacy use cases in other regions.. [optional] # noqa: E501 @@ -411,6 +416,7 @@ def __init__(self, client_name, language, country_codes, user, *args, **kwargs): 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 via a webview. 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.. [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 account_filters (LinkTokenAccountFilters): [optional] # noqa: E501 eu_config (LinkTokenEUConfig): [optional] # noqa: E501 institution_id (str): Used for certain Europe-only configurations, as well as certain legacy use cases in other regions.. [optional] # noqa: E501 diff --git a/plaid/model/link_token_create_request_account_subtypes.py b/plaid/model/link_token_create_request_account_subtypes.py index 4c8afd154..b295a0dcb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c36462d2d..edbd13d17 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 cead773eb..fd39bc8e8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6b4b50979..78763de90 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1e33f945b..7dceb8944 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 fe7cd68c6..a6f5b09b6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e6f9527ea..ba06e767c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 15eb9ac08..a21f8fa21 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d564ac7b5..9795655a0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 87c8b6be8..7e4916b91 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 932aac317..a828ace4c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b118e8637..a05c41380 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 cff87cb22..30be571d9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7371884fe..82df9d57a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c7b14f7a3..5abd217d1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_create_request_user_address.py b/plaid/model/link_token_create_request_user_address.py index e423a0736..a0d4f2191 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 66294b311..fc7446bd5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a99facc00..79ae92f2a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b0d3ea823..ceeb3f5d6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 02426f039..5ef23a54b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9e8319d91..25ecc5e84 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a5d27dcb8..c6d80018d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_get_request.py b/plaid/model/link_token_get_request.py index a9a94d946..bbee9b1f4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c8a95ef6e..3ba3c6368 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_get_sessions_response.py b/plaid/model/link_token_get_sessions_response.py index f64294fdc..08d71a806 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_investments.py b/plaid/model/link_token_investments.py index a9be9a806..ba6d44e61 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a787ea72e..09c5927ce 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/link_token_transactions.py b/plaid/model/link_token_transactions.py index b9944de49..91708a655 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 233c20912..06b1cc887 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan.py b/plaid/model/loan.py index 355f65266..ca4b00bca 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_account_subtype.py b/plaid/model/loan_account_subtype.py index 863bcb7d8..5a3beddd6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_account_subtypes.py b/plaid/model/loan_account_subtypes.py index a04ad62a9..b8818128b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_filter.py b/plaid/model/loan_filter.py index be80738cd..db1f53884 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_identifier.py b/plaid/model/loan_identifier.py index 0c75a598a..1862302af 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_identifier_type.py b/plaid/model/loan_identifier_type.py index 2b55eb2b5..da6fa4dd0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loan_identifiers.py b/plaid/model/loan_identifiers.py index 9188115f2..061d3caa0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/loans.py b/plaid/model/loans.py index 406220f50..c5b1c7142 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/location.py b/plaid/model/location.py index dfbf9f752..1b9fc80e5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/match_summary.py b/plaid/model/match_summary.py index e825ba863..2a1087d21 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/match_summary_code.py b/plaid/model/match_summary_code.py index b445251f6..5ffa480b1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/merchant_insights.py b/plaid/model/merchant_insights.py index 39bacf456..18b1a13b7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/meta.py b/plaid/model/meta.py index 5c070c247..03e2561aa 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/mfa.py b/plaid/model/mfa.py index 0b5126de6..54abb68f8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/mortgage_interest_rate.py b/plaid/model/mortgage_interest_rate.py index 994f0184d..5eada7b21 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/mortgage_liability.py b/plaid/model/mortgage_liability.py index 72791e671..771b682e1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/mortgage_property_address.py b/plaid/model/mortgage_property_address.py index 143cb42a0..52c1c7a77 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1bfd4d9d2..fd5e6025e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/name_match_score.py b/plaid/model/name_match_score.py index 21d3b4624..bc568ab2d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/net_pay.py b/plaid/model/net_pay.py index a13ce67b5..ac5e633d8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9a256efd4..0df31b555 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers.py b/plaid/model/numbers.py index bcd6cb7bb..4b3782bdd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_acats.py b/plaid/model/numbers_acats.py index bdd1f0270..98a111615 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_ach.py b/plaid/model/numbers_ach.py index 065c28edb..e229e7525 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_ach_nullable.py b/plaid/model/numbers_ach_nullable.py index f7ca8c5dd..78441f2f5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_aton.py b/plaid/model/numbers_aton.py index 093fc6590..e1c8a1a04 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_bacs.py b/plaid/model/numbers_bacs.py index c2e12e072..ab3335f5d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_bacs_nullable.py b/plaid/model/numbers_bacs_nullable.py index ce40785c8..326da393a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_eft.py b/plaid/model/numbers_eft.py index 5ff314948..fda2f5d9e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_eft_nullable.py b/plaid/model/numbers_eft_nullable.py index c8665ac61..c2c272e25 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_iban.py b/plaid/model/numbers_iban.py index 2a4ca539d..3bb542fa7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_iban_nullable.py b/plaid/model/numbers_iban_nullable.py index dd1c6e214..c6ad34f46 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_international.py b/plaid/model/numbers_international.py index 07c990a15..d7c45aab0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_international_iban.py b/plaid/model/numbers_international_iban.py index 63ecbf1f8..684709146 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/numbers_international_nullable.py b/plaid/model/numbers_international_nullable.py index 11a0cc897..d2850c8a7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/omittable_transfer_type.py b/plaid/model/omittable_transfer_type.py index 0d87961ba..3da973f14 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/originator.py b/plaid/model/originator.py index 0083812cd..91a9a8349 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f883be14e..b80bba633 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/other_account_subtype.py b/plaid/model/other_account_subtype.py index 1991bf9c2..5c022d3a5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/other_account_subtypes.py b/plaid/model/other_account_subtypes.py index 0946cc5d5..a016b1d7e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/other_filter.py b/plaid/model/other_filter.py index 3c204b964..c2cd1e5d0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/override_account_type.py b/plaid/model/override_account_type.py index f0f187ec5..60c88e3fe 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/override_accounts.py b/plaid/model/override_accounts.py index e9c0c45e5..71532bfd2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/owner.py b/plaid/model/owner.py index a966abd42..9f59e2e9b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/owner_override.py b/plaid/model/owner_override.py index 87f347d1d..c6c0e2e47 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/ownership_type.py b/plaid/model/ownership_type.py index 141e2c54b..8196bc709 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/parties.py b/plaid/model/parties.py index 5d9ee0c71..ed230caaa 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 45aeb32cc..38d3bf6a7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 71016b118..b92c4248e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3bf7b39c5..19c43f8ba 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 bf9dc092b..2bbc87bc5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 eb604239f..e13a07ea4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c5ab605de..33aec71c1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ba801c6cd..8dbfc105a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5210ca488..c0ff4c021 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 fdb1d28dd..1031b6d49 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9195bf8cc..9f3514678 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/partner_end_customer.py b/plaid/model/partner_end_customer.py index ef392d313..f81bae7b2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 22f471f17..0154c8dee 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0d1029919..3270024aa 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 896e86aca..7e287c499 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f4492da06..c638282c2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 cc4949f9d..651a7756a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b2318544d..fd1fdf1c3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9be56c56d..d289a8641 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e77ac3aa6..6a1169c23 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 fb2ecbbd0..3be81b1fc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 429dccc1c..dcee4579a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ade67fd64..0e105dfd9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 332385866..c62ef7e98 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b074b03bd..7f7336b0a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ef2aad6b9..2b83b4449 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 533f05620..5436a9b69 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7f51db656..4a9ea5aae 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/party.py b/plaid/model/party.py index d26eae17c..c5d811231 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/party_individual.py b/plaid/model/party_individual.py index 5b1519368..4e3fddd1f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/party_role_type.py b/plaid/model/party_role_type.py index c255055f9..50ec2dbb8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay.py b/plaid/model/pay.py index 6db78a789..300c0d9d7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay_frequency.py b/plaid/model/pay_frequency.py index ff2756ec6..aab1720c4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay_frequency_value.py b/plaid/model/pay_frequency_value.py index c23e1b156..fe5227062 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pay_period_details.py b/plaid/model/pay_period_details.py index cfa480d86..3929b595f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 50fc8eb3e..3c90194fd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 85e6ac4ac..100a705f5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d2ba752d5..14d3f2c3d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f92c7df2d..235137df0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5d68f1699..997640552 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 23ec194ff..7afd48545 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 886b025b3..1d058872a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_amount.py b/plaid/model/payment_amount.py index c97bfc03b..dea9395bc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_amount_currency.py b/plaid/model/payment_amount_currency.py index 3fcccd315..5f3f4af21 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_amount_nullable.py b/plaid/model/payment_amount_nullable.py index f527787c7..34ccc211d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_amount_refunded.py b/plaid/model/payment_amount_refunded.py index febee5c42..d4e69e7a8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4afcdbf47..2d90f0cff 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_channel.py b/plaid/model/payment_channel.py index abc6c1528..a8bec32da 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7aaf626f7..e3cd802dc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 82d691552..77a041747 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b0ba5f6cc..891b045dd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0a11e6e61..093c91878 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6d4ff0818..da3525fc0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 797ad46fe..d09f946d0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_address.py b/plaid/model/payment_initiation_address.py index 63f46fe97..a2ca134d7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_consent.py b/plaid/model/payment_initiation_consent.py index 19b483fe5..22a4c8c86 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 853cc8d23..9bb7a0351 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 445b7fe8c..c20309fdc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2e2fb9a50..99e9ddcad 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d89aaab66..cd67a54ef 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 47a006a47..2fb115810 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f92da006d..2d84dd6d1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 369c304dc..3ee482c98 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 55644682c..14e4a7243 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d6c6e0918..54b0d3c4c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 54f98cf07..e29cb524b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 95b085c08..5091cb1f3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2fb9e325b..2405a12c2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_metadata.py b/plaid/model/payment_initiation_metadata.py index 8d01b11d0..531f8afca 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_optional_restriction_bacs.py b/plaid/model/payment_initiation_optional_restriction_bacs.py index 2b9c7d104..7ea14b1fb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_payment.py b/plaid/model/payment_initiation_payment.py index a16eacd49..97e84e3b2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3d991da07..58b4495d2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 aa597d2ea..2ba1f97fd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 57256f374..011d91a26 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a907b155a..0d5d05d73 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b8a1b66c5..93b5a94db 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2f80a6b6a..308ffd681 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 33740dce2..0f7fc9efb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 34fd73da0..e833f8178 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_payment_reverse_response.py b/plaid/model/payment_initiation_payment_reverse_response.py index 7b09284ad..ad94a1d59 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d58a7e35c..1120334a7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9129dadca..7b13fa624 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0c945b323..06936c9a0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_initiation_recipient.py b/plaid/model/payment_initiation_recipient.py index 050817315..d077a7e23 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7009d2127..ba000d815 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 39f0c7aee..07edf10e2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a68dc3d90..5645a87a4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3db039473..1f72af4db 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 14df86b6d..059965476 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 37af983d9..5fdd72e38 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9cd6ca87d..3d217d8c8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 fcbf94c6d..6ba65818d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_meta.py b/plaid/model/payment_meta.py index 2a54a8c8d..7360934ab 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 08979ee22..120bc4d0f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 20da84062..1a07a059f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a72d9963a..401a57a8b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 17ae04842..b1b8df515 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8746a0082..7f2bad8c5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 eec1cbe61..593629222 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_profile_status.py b/plaid/model/payment_profile_status.py index b4e711b3f..4e9d8d1f3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_schedule_interval.py b/plaid/model/payment_schedule_interval.py index 5191e45f7..ae1d711c6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payment_scheme.py b/plaid/model/payment_scheme.py index 28365b261..923c4aaa3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ec73391db..dc10026f5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3b2b30ab2..0e315667e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payroll_income_object.py b/plaid/model/payroll_income_object.py index 4de2d41b8..db02055f2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 587cacbe0..cd730026a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payroll_item.py b/plaid/model/payroll_item.py index f8624f9e4..430467d65 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/payroll_item_status.py b/plaid/model/payroll_item_status.py index 3781085a5..5e05ad0d5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c089ef307..4d7997329 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub.py b/plaid/model/paystub.py index af3343568..048f6a9fb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_address.py b/plaid/model/paystub_address.py index 2821f5d39..9a6a3dcf9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_deduction.py b/plaid/model/paystub_deduction.py index 9ac5a141d..42e5b5d22 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_details.py b/plaid/model/paystub_details.py index 29ec14a93..600f491b9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_employer.py b/plaid/model/paystub_employer.py index ce54510df..3cb2bb642 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override.py b/plaid/model/paystub_override.py index 256a8e48c..4459363f9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_employee.py b/plaid/model/paystub_override_employee.py index 300933238..128a9b969 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1c6b76e17..45fb43df1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_override_employer.py b/plaid/model/paystub_override_employer.py index a460d8e36..5883096f1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_pay_frequency.py b/plaid/model/paystub_pay_frequency.py index d5f9c691f..9420ba64d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/paystub_ytd_details.py b/plaid/model/paystub_ytd_details.py index 717ea8312..48a4adff5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pending_expiration_webhook.py b/plaid/model/pending_expiration_webhook.py index 26dd174eb..88b08526f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/personal_finance_category.py b/plaid/model/personal_finance_category.py index 46d688f45..ffd844910 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/phone_number.py b/plaid/model/phone_number.py index 155b982ee..597f717b7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d01caa2df..237a6aa5f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/phone_type.py b/plaid/model/phone_type.py index be9d5e4e1..d1199ef13 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/physical_document_category.py b/plaid/model/physical_document_category.py index b2360ace8..25a65ffb2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b3733dd33..8895bee1d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b13973033..fb0e4238e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/physical_document_images.py b/plaid/model/physical_document_images.py index 339b0ecc7..9d5f26e38 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/plaid_error.py b/plaid/model/plaid_error.py index 53fe81135..008de5063 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/plaid_error_type.py b/plaid/model/plaid_error_type.py index 4490a24bd..33b51a55c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/platform_ids.py b/plaid/model/platform_ids.py index 7b65f98dc..3e3a9c23c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/po_box_status.py b/plaid/model/po_box_status.py index cda981972..4725da8aa 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3eda78739..6a2dac290 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7b3b8e284..e577c5e2e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 17a9b58b2..79d4d2836 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7d3f2b008..0bec8896a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2a647a814..b5f8e9a15 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 71b7046c0..22e6529c0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 25fbb82d9..c1a474419 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_balance_get_response.py b/plaid/model/processor_balance_get_response.py index f09020316..f168c6fde 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6e5ac64f9..e5dfd0a39 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 31421af3f..34a4a1ad5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c8c9d1b6e..56c1f9562 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 09bb99be4..e429e4549 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5906c4533..36f0ed7ae 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ef39327a2..009aa6afc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 28d66f915..c02953b78 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 481a23920..a30a0a397 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 897d35158..ba9dc97bc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/processor_number.py b/plaid/model/processor_number.py index ce56d91f5..c7eca3cb1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7f1a0cece..2f040766b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5417d5006..6ac13b57c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 08365215e..86c6f1f27 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d769335cc..a5bde2f7a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 326ecf8ea..01fe1c13d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 71439360b..b93d2d1b1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 946243068..a1e16c80a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8b78ed897..3e974b454 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 eeee827d0..10bd3355d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 cd74fcf50..e3367aed3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9410d337a..c7c7a42c8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 eab71f311..b51351b73 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ca4bcc9b6..d2e3b927a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9d17cbc8b..5984d1b17 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a0d3c7a3b..fcb85c03f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9c2500a04..2578f83b7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1a8eb7f3b..4af866e38 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 75d73f8ca..260f7cf79 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c9ee36438..f2c5d0517 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 efc5fc603..599c73682 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5c286a1e9..d74aae5b1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0fc250dc3..b3907e4d5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ff67c0662..f5af062d4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 10bf1a5ae..8ee7c6a24 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 76656dc13..8dad48aae 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3f6447e9f..9fe434f40 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3ce98d629..8f2e16a79 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b14fd54a5..4df2cc33d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f9d611a7c..f27649dc6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b54b0fc48..5b81b00df 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a2b895dc2..a8d5cd21a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/product_access.py b/plaid/model/product_access.py index 0343029ff..be74fe7d0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 77aeff60e..f4b8571ad 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4ce75d99e..40bd96568 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/product_status.py b/plaid/model/product_status.py index 44f4a1779..1a3e2ba9b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/product_status_breakdown.py b/plaid/model/product_status_breakdown.py index 8e7063028..9c11e470d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/products.py b/plaid/model/products.py index aecde9dc8..eee491d1e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ @@ -56,6 +56,7 @@ class Products(ModelSimple): 'AUTH': "auth", 'BALANCE': "balance", 'IDENTITY': "identity", + 'IDENTITY_MATCH': "identity_match", 'INVESTMENTS': "investments", 'INVESTMENTS_AUTH': "investments_auth", 'LIABILITIES': "liabilities", @@ -123,10 +124,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 list of products that an institution can support. All Items must be initialized with at least one product. The Balance product is always available and does not need to be specified during initialization.., must be one of ["assets", "auth", "balance", "identity", "investments", "investments_auth", "liabilities", "payment_initiation", "identity_verification", "transactions", "credit_details", "income", "income_verification", "deposit_switch", "standing_orders", "transfer", "employment", "recurring_transactions", "signal", "statements", ] # noqa: E501 + args[0] (str): A list of products that an institution can support. All Items must be initialized with at least one product. The Balance product is always available and does not need to be specified during initialization.., must be one of ["assets", "auth", "balance", "identity", "identity_match", "investments", "investments_auth", "liabilities", "payment_initiation", "identity_verification", "transactions", "credit_details", "income", "income_verification", "deposit_switch", "standing_orders", "transfer", "employment", "recurring_transactions", "signal", "statements", ] # noqa: E501 Keyword Args: - value (str): A list of products that an institution can support. All Items must be initialized with at least one product. The Balance product is always available and does not need to be specified during initialization.., must be one of ["assets", "auth", "balance", "identity", "investments", "investments_auth", "liabilities", "payment_initiation", "identity_verification", "transactions", "credit_details", "income", "income_verification", "deposit_switch", "standing_orders", "transfer", "employment", "recurring_transactions", "signal", "statements", ] # noqa: E501 + value (str): A list of products that an institution can support. All Items must be initialized with at least one product. The Balance product is always available and does not need to be specified during initialization.., must be one of ["assets", "auth", "balance", "identity", "identity_match", "investments", "investments_auth", "liabilities", "payment_initiation", "identity_verification", "transactions", "credit_details", "income", "income_verification", "deposit_switch", "standing_orders", "transfer", "employment", "recurring_transactions", "signal", "statements", ] # 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. @@ -217,10 +218,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 list of products that an institution can support. All Items must be initialized with at least one product. The Balance product is always available and does not need to be specified during initialization.., must be one of ["assets", "auth", "balance", "identity", "investments", "investments_auth", "liabilities", "payment_initiation", "identity_verification", "transactions", "credit_details", "income", "income_verification", "deposit_switch", "standing_orders", "transfer", "employment", "recurring_transactions", "signal", "statements", ] # noqa: E501 + args[0] (str): A list of products that an institution can support. All Items must be initialized with at least one product. The Balance product is always available and does not need to be specified during initialization.., must be one of ["assets", "auth", "balance", "identity", "identity_match", "investments", "investments_auth", "liabilities", "payment_initiation", "identity_verification", "transactions", "credit_details", "income", "income_verification", "deposit_switch", "standing_orders", "transfer", "employment", "recurring_transactions", "signal", "statements", ] # noqa: E501 Keyword Args: - value (str): A list of products that an institution can support. All Items must be initialized with at least one product. The Balance product is always available and does not need to be specified during initialization.., must be one of ["assets", "auth", "balance", "identity", "investments", "investments_auth", "liabilities", "payment_initiation", "identity_verification", "transactions", "credit_details", "income", "income_verification", "deposit_switch", "standing_orders", "transfer", "employment", "recurring_transactions", "signal", "statements", ] # noqa: E501 + value (str): A list of products that an institution can support. All Items must be initialized with at least one product. The Balance product is always available and does not need to be specified during initialization.., must be one of ["assets", "auth", "balance", "identity", "identity_match", "investments", "investments_auth", "liabilities", "payment_initiation", "identity_verification", "transactions", "credit_details", "income", "income_verification", "deposit_switch", "standing_orders", "transfer", "employment", "recurring_transactions", "signal", "statements", ] # 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/program_name_sensitivity.py b/plaid/model/program_name_sensitivity.py index cec81e0e1..b31ea82a0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6b0e2d32c..8be4f2d7c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/proxy_type.py b/plaid/model/proxy_type.py index 7d8e65887..4dfe40a9c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/pslf_status.py b/plaid/model/pslf_status.py index d09b96e5e..edd03e5ee 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recaptcha_required_error.py b/plaid/model/recaptcha_required_error.py index ff0c2be1a..d02c9ab95 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recipient_bacs.py b/plaid/model/recipient_bacs.py index 95f6ed55c..fca8a12e5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recipient_bacs_nullable.py b/plaid/model/recipient_bacs_nullable.py index c5968feb0..a183823bd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurrence.py b/plaid/model/recurrence.py index ed0cffa36..8c632063c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_cancelled_webhook.py b/plaid/model/recurring_cancelled_webhook.py index ff59af509..e72b2dbbf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_frequency.py b/plaid/model/recurring_frequency.py index b6199d5f7..67d9db6c9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_insights_stream.py b/plaid/model/recurring_insights_stream.py index dc848bf75..c499aa111 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b4514374e..5780a4777 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_transaction_frequency.py b/plaid/model/recurring_transaction_frequency.py index 17bdd4e85..e3770c2f0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_transactions.py b/plaid/model/recurring_transactions.py index f3ee6ba8e..679e6388d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 349e719ee..61f18d2c5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_transfer.py b/plaid/model/recurring_transfer.py index d84d63104..07d4bb3c3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/recurring_transfer_nullable.py b/plaid/model/recurring_transfer_nullable.py index aab6e1b86..0643a4554 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d76795565..940475158 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/removed_transaction.py b/plaid/model/removed_transaction.py index 1be2bf676..6e62b17cf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/report_type.py b/plaid/model/report_type.py index 2d9e6b3d2..68b97d025 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/reporting_information.py b/plaid/model/reporting_information.py index ed80b232a..077f3968d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/review_comment.py b/plaid/model/review_comment.py index 1602d6302..3c4eacaba 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_behavior.py b/plaid/model/risk_check_behavior.py index 37fd6dafa..ebca5b837 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 355c8f5ec..f581ffae5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 37d2369d2..1f941fab5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 23d551f97..f9f1f943c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_details.py b/plaid/model/risk_check_details.py index 895786ad6..ca9d79ded 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_device.py b/plaid/model/risk_check_device.py index 4954ed0d8..fc084a7d6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_email.py b/plaid/model/risk_check_email.py index fd2e95234..24c7351ed 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 58603eef4..37c52e896 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b3e488d7d..32853c724 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4a927a073..f86426255 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 746ecfb83..7b8812b7d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2be4159be..42fd45fbc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 54551bbe4..0514e2a06 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 19d9d0c81..6cd012533 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/risk_check_phone.py b/plaid/model/risk_check_phone.py index 1dd611b98..ff9ecaf44 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e17aaadb1..1beacfb40 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7237c41ce..981c66984 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f94a07619..fbb689993 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9a442e2ec..e2a9a501d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/role.py b/plaid/model/role.py index 907f83396..061689943 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/role_detail.py b/plaid/model/role_detail.py index 30837ef9e..9b33257a0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/roles.py b/plaid/model/roles.py index e8e37b915..239cfae5b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 181934b35..acab1e9be 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c58b1261e..d19dd85e3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f35675322..0d6271a64 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a786a876f..69d75129c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 fb6b83e43..d4f3371d6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8d3ad8476..c5d7e9d97 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 734f01e14..708d3bb00 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 26a2101d7..8b24abe5f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a0904b7da..2eb8cc030 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8b61519cc..ad4c1e1ef 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1dd46a714..ddca35bbb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 95bc62dbb..d5fa02f82 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sandbox_item_fire_webhook_response.py b/plaid/model/sandbox_item_fire_webhook_response.py index b2a650315..912174545 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ffa50f789..051a175bb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7a5d3eb6c..5a7e10e11 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 01ba3de11..474478234 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2a02c4c5e..a3ac03750 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6b832e4df..11814eace 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 37b60c2ab..1bf57d110 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 77b1f9dc3..0d9cf2469 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 34bd246b3..52f5c8b71 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 35d2d3433..0c7ff5707 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b562e0bef..42aff4ec5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 02cd0ebd0..77bc8334e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 31f1da989..d04b814e2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 aac315aa5..5625c5770 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ba5689b89..20c801631 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7ece6592d..6636d4a19 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 80246690e..7a5817b1f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f03c14ed5..7d880a504 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 405cab130..06f94bedc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c859ba183..609fa7843 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 bf8013155..f51dd0b01 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 85776db9f..c1dad3e3e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 601bc77d1..f5e284fa3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f0dbb28c8..8a1c3e0ef 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8400feb24..8b2870d29 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d252a6312..9e61d2cc6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 38b493cc6..fbbc3ba92 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3562c89ed..995de68f5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a77dea736..36cd6ccc1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0ba438ee8..423586eab 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7a66603af..27041dd97 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f9479f9e0..e2925ce86 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d24d424ae..47e582ff3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e9d99cc2d..05ae29ee8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 24fcc2435..41b173692 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 bbd05b97c..519007b1f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 51f74f538..4b0527817 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 538211d9e..496397569 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4706c2b18..cc8c16e08 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e29ad87c0..f39c94451 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8c2abd246..1aeaed14e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 396deb689..8aaefda71 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/scopes.py b/plaid/model/scopes.py index 64e052f38..cc63f0c7e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/scopes_context.py b/plaid/model/scopes_context.py index 2dd5c22b2..938681421 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/scopes_nullable.py b/plaid/model/scopes_nullable.py index 6322c5a41..ff5000e2e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/screening_hit_analysis.py b/plaid/model/screening_hit_analysis.py index 720560fd0..4ce49e83e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/screening_hit_data.py b/plaid/model/screening_hit_data.py index ba56a1111..4e4e8fab4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e4e64039b..e54a94e93 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 601e5c0e5..e5a40f3de 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3cdff0238..338b4b29e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9246374f2..24d939d21 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/security.py b/plaid/model/security.py index 0a6a4168f..343247568 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/security_override.py b/plaid/model/security_override.py index 60d584a36..1f377172c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_analysis.py b/plaid/model/selfie_analysis.py index e71ebf7b2..03435d617 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 77f3b3639..3b25cc0e2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_capture.py b/plaid/model/selfie_capture.py index e11f96424..a88db2208 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_check.py b/plaid/model/selfie_check.py index bdaa3c6ea..5a8c8c4e7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_check_selfie.py b/plaid/model/selfie_check_selfie.py index 3d840c739..d0272c241 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_check_status.py b/plaid/model/selfie_check_status.py index bb207b30b..b2e3fd0ec 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/selfie_status.py b/plaid/model/selfie_status.py index 7ccf8e8ed..ad8eafb72 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sender_bacs_nullable.py b/plaid/model/sender_bacs_nullable.py index 68ffc84ea..23a7323d7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/service.py b/plaid/model/service.py index c7ebeb770..c280e846c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/service_product_fulfillment.py b/plaid/model/service_product_fulfillment.py index 9b34e18e3..e9f7c5a34 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a108446af..5f1a7c6aa 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a3d56d1c6..d3429dc8c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/servicer_address_data.py b/plaid/model/servicer_address_data.py index 57b828ca4..3a6a74a0a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/services.py b/plaid/model/services.py index 608f6b9d7..295ec14ae 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_address_data.py b/plaid/model/signal_address_data.py index 0d69597d2..ab151b478 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_decision_outcome.py b/plaid/model/signal_decision_outcome.py index e70818610..6828e764b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 47b4b608a..84c8b3914 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 53084d526..0c8fb5ec0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_device.py b/plaid/model/signal_device.py index 35ff1a70e..29f8f5e46 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6695f086f..e2c6a29bd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_evaluate_request.py b/plaid/model/signal_evaluate_request.py index 3e32f0ae3..472fefa11 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_evaluate_response.py b/plaid/model/signal_evaluate_response.py index 5d791cefb..158ba06c4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_payment_method.py b/plaid/model/signal_payment_method.py index 4e8748c43..789678677 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_person_name.py b/plaid/model/signal_person_name.py index 345d78f65..806277242 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_prepare_request.py b/plaid/model/signal_prepare_request.py index 33c922b24..afbb8f0e2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_prepare_response.py b/plaid/model/signal_prepare_response.py index b4780686c..e8c593af1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 eed6c8403..1bd5c7d43 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 88041e5f7..c041766dc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_score.py b/plaid/model/signal_score.py index f8c1257e7..c4866cd71 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_scores.py b/plaid/model/signal_scores.py index d147ecfd1..413f62b58 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_user.py b/plaid/model/signal_user.py index 2fbbb1862..5307f3509 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/signal_warning.py b/plaid/model/signal_warning.py index 86c39c383..f46eb9a6e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/simulated_transfer_sweep.py b/plaid/model/simulated_transfer_sweep.py index 48c381385..a4a7b53a7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d62a0ecd9..1ddf855c9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/source.py b/plaid/model/source.py index 2dcb4542d..3d8de0b8e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/source_uid.py b/plaid/model/source_uid.py index 953012f3c..b948070a6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/standalone_account_type.py b/plaid/model/standalone_account_type.py index 6ed6b863d..591863d6b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a32b05ba7..eb9cae92f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 144f81122..5dfc2ffe7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_account.py b/plaid/model/statements_account.py index 7dea81895..7221a08da 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_download_request.py b/plaid/model/statements_download_request.py index 80553c642..6727acba1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_list_request.py b/plaid/model/statements_list_request.py index 9755072ed..96e2a707a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_list_response.py b/plaid/model/statements_list_response.py index de430b1af..d361e9f0d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_refresh_request.py b/plaid/model/statements_refresh_request.py index 66a309815..40e036244 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_refresh_response.py b/plaid/model/statements_refresh_response.py index 7979b3601..aa8629f49 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statements_statement.py b/plaid/model/statements_statement.py index 8d033f3a2..0dfe33ba1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/status.py b/plaid/model/status.py index 18729cb2d..914aba1ac 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/statuses.py b/plaid/model/statuses.py index 66b6048c3..20e679fd7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/strategy.py b/plaid/model/strategy.py index 7e5691aa0..6271c5b76 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/student_loan.py b/plaid/model/student_loan.py index 8684e906b..eeb7e0304 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4120644c5..f178a6d63 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/student_loan_status.py b/plaid/model/student_loan_status.py index 016d36722..fb2657e06 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/student_repayment_plan.py b/plaid/model/student_repayment_plan.py index 02c4a53c7..ad949b434 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sweep_description.py b/plaid/model/sweep_description.py index d82e48dcf..a68c1edba 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sweep_status.py b/plaid/model/sweep_status.py index 4927bcc1f..b6e770d4d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/sweep_trigger.py b/plaid/model/sweep_trigger.py index 2d989799e..b4d53fd0d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9b215f003..b1ccf06b5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/taxform.py b/plaid/model/taxform.py index 421ab952f..2a2b18ce3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/taxpayer_id.py b/plaid/model/taxpayer_id.py index 65d660332..901fee755 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/taxpayer_identifier.py b/plaid/model/taxpayer_identifier.py index 304e167e2..2d63cb9b3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/taxpayer_identifier_type.py b/plaid/model/taxpayer_identifier_type.py index 71e6d4d9b..92ce80b27 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/taxpayer_identifiers.py b/plaid/model/taxpayer_identifiers.py index ffeef1f9a..beb4c5c6c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total.py b/plaid/model/total.py index dfb5bbeb1..c9461c153 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/total_canonical_description.py b/plaid/model/total_canonical_description.py index c6186f717..87d701678 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction.py b/plaid/model/transaction.py index a90060af0..6a8bda273 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_all_of.py b/plaid/model/transaction_all_of.py index 4ce847a82..c180c431f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_base.py b/plaid/model/transaction_base.py index d4b16a95e..949bb4e33 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_code.py b/plaid/model/transaction_code.py index 35d8b0efe..02cea4b93 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_counterparty.py b/plaid/model/transaction_counterparty.py index 5c4e2d3c9..91288aef1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_data.py b/plaid/model/transaction_data.py index b9719be62..f658470f4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_override.py b/plaid/model/transaction_override.py index 194c11dc3..2a383ca92 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_stream.py b/plaid/model/transaction_stream.py index ec15a03e5..af2602a03 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_stream_amount.py b/plaid/model/transaction_stream_amount.py index 12ca5420f..f4d00410e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transaction_stream_status.py b/plaid/model/transaction_stream_status.py index 3605d43e1..6da63081e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_category_rule.py b/plaid/model/transactions_category_rule.py index ba658951f..09fa040f9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2825eb570..7fefa36ea 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a6373f055..ca6907b93 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_enrich_request.py b/plaid/model/transactions_enrich_request.py index c0a96fe31..336bb11e5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5cfd84c7a..d6040d9bd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_enrich_response.py b/plaid/model/transactions_enrich_response.py index 31e722d0f..516d91fb9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_get_request.py b/plaid/model/transactions_get_request.py index f1b59dab9..5f96ffe40 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a98e2db0b..8fe252f38 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ @@ -166,7 +166,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 include_personal_finance_category_beta (bool): Personal finance categories are now returned by default.. [optional] if omitted the server will use the default value of False # noqa: E501 include_personal_finance_category (bool): Personal finance categories are now returned by default.. [optional] if omitted the server will use the default value of False # noqa: E501 include_logo_and_counterparty_beta (bool): Counterparties and extra merchant fields are now returned by default.. [optional] if omitted the server will use the default value of False # noqa: E501 - days_requested (int): If Transactions has not already been added to the Item, this option controls the maximum number of days of transaction history Plaid will request from the financial institution. If Transactions has already been added to the Item, this field will have no effect.. [optional] if omitted the server will use the default value of 90 # noqa: E501 + days_requested (int): This option only applies to calls for Items that were not initialized with Transactions during Link and are now adding the Transactions product to the Item for the first time. In these cases, this option controls the maximum number of days of transaction history that Plaid will request from the financial institution. For developer accounts created after December 3, 2023, if no value is specified, this will default to 90 days. For developer accounts created on December 3, 2023 or earlier, if no value is specified, this will default to 730 days until June 24, 2024, at which point it will default to 90 days. If Transactions has already been added to the Item prior to this call, this field will have no effect.. [optional] if omitted the server will use the default value of 90 # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -259,7 +259,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 include_personal_finance_category_beta (bool): Personal finance categories are now returned by default.. [optional] if omitted the server will use the default value of False # noqa: E501 include_personal_finance_category (bool): Personal finance categories are now returned by default.. [optional] if omitted the server will use the default value of False # noqa: E501 include_logo_and_counterparty_beta (bool): Counterparties and extra merchant fields are now returned by default.. [optional] if omitted the server will use the default value of False # noqa: E501 - days_requested (int): If Transactions has not already been added to the Item, this option controls the maximum number of days of transaction history Plaid will request from the financial institution. If Transactions has already been added to the Item, this field will have no effect.. [optional] if omitted the server will use the default value of 90 # noqa: E501 + days_requested (int): This option only applies to calls for Items that were not initialized with Transactions during Link and are now adding the Transactions product to the Item for the first time. In these cases, this option controls the maximum number of days of transaction history that Plaid will request from the financial institution. For developer accounts created after December 3, 2023, if no value is specified, this will default to 90 days. For developer accounts created on December 3, 2023 or earlier, if no value is specified, this will default to 730 days until June 24, 2024, at which point it will default to 90 days. If Transactions has already been added to the Item prior to this call, this field will have no effect.. [optional] if omitted the server will use the default value of 90 # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/plaid/model/transactions_get_response.py b/plaid/model/transactions_get_response.py index ab9ca4397..d4a00a875 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 34ea10550..bb5db143d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 083db754c..d6bb6a9b1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a513a793b..d313a90eb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 fdfdafd06..238b632c5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3d73e47fa..a1aff0a40 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2ebea0c1f..808963dca 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 091ea59de..250805ec3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 71afeef8f..5c38376c8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a3267dc86..6f8b8177d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a47b185cd..495f03e53 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6f3a8860c..1cd1c8d0c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9ca1f10c6..d314b3bad 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_refresh_request.py b/plaid/model/transactions_refresh_request.py index fdcf5ca4a..64ca7a6b4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_refresh_response.py b/plaid/model/transactions_refresh_response.py index cb10bfbba..5f1d2e788 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_removed_webhook.py b/plaid/model/transactions_removed_webhook.py index ca4007430..00de1fa87 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_rule_details.py b/plaid/model/transactions_rule_details.py index a30af6ba3..a1a13b05e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_rule_field.py b/plaid/model/transactions_rule_field.py index a05b487cc..f17c3dc47 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_rule_type.py b/plaid/model/transactions_rule_type.py index 7ea0c6d01..f84e5d9fb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e32e5ff58..fe5a02aee 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9f317b7b6..19c0c29e4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ca655cff5..52da95f7e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a13236545..01fd0294b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 09dca42a0..1c51faedf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9dc1d0bac..34fdf9694 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transactions_sync_request.py b/plaid/model/transactions_sync_request.py index 91d2255e8..e3be39e18 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5b00b8773..ded9f37cc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ @@ -147,7 +147,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 include_original_description (bool, none_type): Include the raw unparsed transaction description from the financial institution. This field is disabled by default. If you need this information in addition to the parsed data provided, contact your Plaid Account Manager or submit a [Support request](https://dashboard.plaid.com/support/new/product-and-development/product-troubleshooting/product-functionality).. [optional] if omitted the server will use the default value of False # noqa: E501 include_personal_finance_category (bool): Personal finance categories are now returned by default.. [optional] if omitted the server will use the default value of False # noqa: E501 include_logo_and_counterparty_beta (bool): Counterparties and extra merchant fields are now returned by default.. [optional] if omitted the server will use the default value of False # noqa: E501 - days_requested (int): If Transactions has not already been added to the Item, this option controls the maximum number of days of transaction history Plaid will request from the financial institution. If Transactions has already been added to the Item, this field will have no effect.. [optional] if omitted the server will use the default value of 90 # noqa: E501 + days_requested (int): This option only applies to calls for Items that were not initialized with Transactions during Link and are now adding the Transactions product to the Item for the first time. In these cases, this option controls the maximum number of days of transaction history that Plaid will request from the financial institution. For developer accounts created after December 3, 2023, if no value is specified, this will default to 90 days. For developer accounts created on December 3, 2023 or earlier, if no value is specified, this will default to 730 days until June 24, 2024, at which point it will default to 90 days. If Transactions has already been added to the Item prior to this call, this field will have no effect.. [optional] if omitted the server will use the default value of 90 # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -236,7 +236,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 include_original_description (bool, none_type): Include the raw unparsed transaction description from the financial institution. This field is disabled by default. If you need this information in addition to the parsed data provided, contact your Plaid Account Manager or submit a [Support request](https://dashboard.plaid.com/support/new/product-and-development/product-troubleshooting/product-functionality).. [optional] if omitted the server will use the default value of False # noqa: E501 include_personal_finance_category (bool): Personal finance categories are now returned by default.. [optional] if omitted the server will use the default value of False # noqa: E501 include_logo_and_counterparty_beta (bool): Counterparties and extra merchant fields are now returned by default.. [optional] if omitted the server will use the default value of False # noqa: E501 - days_requested (int): If Transactions has not already been added to the Item, this option controls the maximum number of days of transaction history Plaid will request from the financial institution. If Transactions has already been added to the Item, this field will have no effect.. [optional] if omitted the server will use the default value of 90 # noqa: E501 + days_requested (int): This option only applies to calls for Items that were not initialized with Transactions during Link and are now adding the Transactions product to the Item for the first time. In these cases, this option controls the maximum number of days of transaction history that Plaid will request from the financial institution. For developer accounts created after December 3, 2023, if no value is specified, this will default to 90 days. For developer accounts created on December 3, 2023 or earlier, if no value is specified, this will default to 730 days until June 24, 2024, at which point it will default to 90 days. If Transactions has already been added to the Item prior to this call, this field will have no effect.. [optional] if omitted the server will use the default value of 90 # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/plaid/model/transactions_sync_response.py b/plaid/model/transactions_sync_response.py index cfd42a928..79c1956a0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d8013d899..18f433e53 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6630369e4..4323db938 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer.py b/plaid/model/transfer.py index 5c5bc0487..7cb69140b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ @@ -33,7 +33,6 @@ def lazy_import(): from plaid.model.ach_class import ACHClass from plaid.model.transfer_authorization_guarantee_decision import TransferAuthorizationGuaranteeDecision from plaid.model.transfer_authorization_guarantee_decision_rationale import TransferAuthorizationGuaranteeDecisionRationale - from plaid.model.transfer_credit_funds_source import TransferCreditFundsSource from plaid.model.transfer_expected_sweep_settlement_schedule_item import TransferExpectedSweepSettlementScheduleItem from plaid.model.transfer_failure import TransferFailure from plaid.model.transfer_metadata import TransferMetadata @@ -46,7 +45,6 @@ def lazy_import(): globals()['ACHClass'] = ACHClass globals()['TransferAuthorizationGuaranteeDecision'] = TransferAuthorizationGuaranteeDecision globals()['TransferAuthorizationGuaranteeDecisionRationale'] = TransferAuthorizationGuaranteeDecisionRationale - globals()['TransferCreditFundsSource'] = TransferCreditFundsSource globals()['TransferExpectedSweepSettlementScheduleItem'] = TransferExpectedSweepSettlementScheduleItem globals()['TransferFailure'] = TransferFailure globals()['TransferMetadata'] = TransferMetadata @@ -134,7 +132,7 @@ def openapi_types(): 'originator_client_id': (str, none_type,), # noqa: E501 'refunds': ([TransferRefund],), # noqa: E501 'recurring_transfer_id': (str, none_type,), # noqa: E501 - 'credit_funds_source': (TransferCreditFundsSource,), # noqa: E501 + 'credit_funds_source': (bool, date, datetime, dict, float, int, list, str, none_type,), # noqa: E501 'ach_class': (ACHClass,), # noqa: E501 'account_id': (str,), # noqa: E501 'sweep_status': (TransferSweepStatus,), # noqa: E501 @@ -215,7 +213,7 @@ def _from_openapi_data(cls, id, authorization_id, funding_account_id, type, user originator_client_id (str, none_type): The Plaid client ID that is the originator of this transfer. Only present if created on behalf of another client as a [Platform customer](https://plaid.com/docs/transfer/application/#originators-vs-platforms). refunds ([TransferRefund]): A list of refunds associated with this transfer. recurring_transfer_id (str, none_type): The id of the recurring transfer if this transfer belongs to a recurring transfer. - credit_funds_source (TransferCreditFundsSource): + credit_funds_source (bool, date, datetime, dict, float, int, list, str, none_type): Keyword Args: _check_type (bool): if True, values for parameters in openapi_types @@ -356,7 +354,7 @@ def __init__(self, id, authorization_id, funding_account_id, type, user, amount, originator_client_id (str, none_type): The Plaid client ID that is the originator of this transfer. Only present if created on behalf of another client as a [Platform customer](https://plaid.com/docs/transfer/application/#originators-vs-platforms). refunds ([TransferRefund]): A list of refunds associated with this transfer. recurring_transfer_id (str, none_type): The id of the recurring transfer if this transfer belongs to a recurring transfer. - credit_funds_source (TransferCreditFundsSource): + credit_funds_source (bool, date, datetime, dict, float, int, list, str, none_type): Keyword Args: _check_type (bool): if True, values for parameters in openapi_types diff --git a/plaid/model/transfer_ach_network.py b/plaid/model/transfer_ach_network.py index e967cf553..08311ff05 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization.py b/plaid/model/transfer_authorization.py index 9bd53e880..5e3b71e63 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_create_request.py b/plaid/model/transfer_authorization_create_request.py index 292580353..f60f84c53 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ @@ -34,14 +34,12 @@ def lazy_import(): from plaid.model.transfer_authorization_device import TransferAuthorizationDevice from plaid.model.transfer_authorization_idempotency_key import TransferAuthorizationIdempotencyKey from plaid.model.transfer_authorization_user_in_request import TransferAuthorizationUserInRequest - from plaid.model.transfer_credit_funds_source import TransferCreditFundsSource from plaid.model.transfer_network import TransferNetwork from plaid.model.transfer_type import TransferType globals()['ACHClass'] = ACHClass globals()['TransferAuthorizationDevice'] = TransferAuthorizationDevice globals()['TransferAuthorizationIdempotencyKey'] = TransferAuthorizationIdempotencyKey globals()['TransferAuthorizationUserInRequest'] = TransferAuthorizationUserInRequest - globals()['TransferCreditFundsSource'] = TransferCreditFundsSource globals()['TransferNetwork'] = TransferNetwork globals()['TransferType'] = TransferType @@ -118,7 +116,7 @@ def openapi_types(): 'with_guarantee': (bool, none_type,), # noqa: E501 'beacon_session_id': (str, none_type,), # noqa: E501 'originator_client_id': (str, none_type,), # noqa: E501 - 'credit_funds_source': (TransferCreditFundsSource,), # noqa: E501 + 'credit_funds_source': (bool, date, datetime, dict, float, int, list, str, none_type,), # noqa: E501 'test_clock_id': (str, none_type,), # noqa: E501 } @@ -213,7 +211,7 @@ def _from_openapi_data(cls, access_token, account_id, type, network, amount, use with_guarantee (bool, none_type): If set to `false`, Plaid will not offer a `guarantee_decision` for this request (Guarantee customers only).. [optional] if omitted the server will use the default value of True # noqa: E501 beacon_session_id (str, none_type): The unique identifier returned by Plaid's [beacon](https://plaid.com/docs/transfer/guarantee/#using-a-beacon) when it is run on your webpage.. [optional] # noqa: E501 originator_client_id (str, none_type): The Plaid client ID that is the originator of this transfer. Only needed if creating transfers on behalf of another client as a [Platform customer](https://plaid.com/docs/transfer/application/#originators-vs-platforms).. [optional] # noqa: E501 - credit_funds_source (TransferCreditFundsSource): [optional] # noqa: E501 + credit_funds_source (bool, date, datetime, dict, float, int, list, str, none_type): [optional] # noqa: E501 test_clock_id (str, none_type): Plaid’s unique identifier for a test clock. This field may only be used when using `sandbox` environment. If provided, the `authorization` is created at the `virtual_time` on the provided test clock.. [optional] # noqa: E501 """ @@ -327,7 +325,7 @@ def __init__(self, access_token, account_id, type, network, amount, user, *args, with_guarantee (bool, none_type): If set to `false`, Plaid will not offer a `guarantee_decision` for this request (Guarantee customers only).. [optional] if omitted the server will use the default value of True # noqa: E501 beacon_session_id (str, none_type): The unique identifier returned by Plaid's [beacon](https://plaid.com/docs/transfer/guarantee/#using-a-beacon) when it is run on your webpage.. [optional] # noqa: E501 originator_client_id (str, none_type): The Plaid client ID that is the originator of this transfer. Only needed if creating transfers on behalf of another client as a [Platform customer](https://plaid.com/docs/transfer/application/#originators-vs-platforms).. [optional] # noqa: E501 - credit_funds_source (TransferCreditFundsSource): [optional] # noqa: E501 + credit_funds_source (bool, date, datetime, dict, float, int, list, str, none_type): [optional] # noqa: E501 test_clock_id (str, none_type): Plaid’s unique identifier for a test clock. This field may only be used when using `sandbox` environment. If provided, the `authorization` is created at the `virtual_time` on the provided test clock.. [optional] # noqa: E501 """ diff --git a/plaid/model/transfer_authorization_create_response.py b/plaid/model/transfer_authorization_create_response.py index 0152475ed..ea72b7c86 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_decision.py b/plaid/model/transfer_authorization_decision.py index 04d88df61..a4ffbabfe 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2cda7d745..be35f4b1f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b25025939..a43ac297e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_authorization_device.py b/plaid/model/transfer_authorization_device.py index 5804d3029..038a056c7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4ca8bad2f..35edf2538 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c5d4bda3e..d356f0b08 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 27dd7f2d4..745be2c93 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 092354a06..3183f18a6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a1ad034fd..2980a3a01 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e443e08e9..d0b4e9c2c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ @@ -31,11 +31,9 @@ def lazy_import(): from plaid.model.ach_class import ACHClass - from plaid.model.transfer_credit_funds_source import TransferCreditFundsSource from plaid.model.transfer_type import TransferType from plaid.model.transfer_user_in_response import TransferUserInResponse globals()['ACHClass'] = ACHClass - globals()['TransferCreditFundsSource'] = TransferCreditFundsSource globals()['TransferType'] = TransferType globals()['TransferUserInResponse'] = TransferUserInResponse @@ -101,7 +99,7 @@ def openapi_types(): 'origination_account_id': (str,), # noqa: E501 'iso_currency_code': (str,), # noqa: E501 'originator_client_id': (str, none_type,), # noqa: E501 - 'credit_funds_source': (TransferCreditFundsSource,), # noqa: E501 + 'credit_funds_source': (bool, date, datetime, dict, float, int, list, str, none_type,), # noqa: E501 'ach_class': (ACHClass,), # noqa: E501 'account_id': (str,), # noqa: E501 } @@ -144,7 +142,7 @@ def _from_openapi_data(cls, funding_account_id, type, user, amount, network, ori origination_account_id (str): Plaid's unique identifier for the origination account that was used for this transfer. iso_currency_code (str): The currency of the transfer amount. The default value is \"USD\". originator_client_id (str, none_type): The Plaid client ID that is the originator of this transfer. Only present if created on behalf of another client as a [Platform customer](https://plaid.com/docs/transfer/application/#originators-vs-platforms). - credit_funds_source (TransferCreditFundsSource): + credit_funds_source (bool, date, datetime, dict, float, int, list, str, none_type): Keyword Args: _check_type (bool): if True, values for parameters in openapi_types @@ -251,7 +249,7 @@ def __init__(self, funding_account_id, type, user, amount, network, origination_ origination_account_id (str): Plaid's unique identifier for the origination account that was used for this transfer. iso_currency_code (str): The currency of the transfer amount. The default value is \"USD\". originator_client_id (str, none_type): The Plaid client ID that is the originator of this transfer. Only present if created on behalf of another client as a [Platform customer](https://plaid.com/docs/transfer/application/#originators-vs-platforms). - credit_funds_source (TransferCreditFundsSource): + credit_funds_source (bool, date, datetime, dict, float, int, list, str, none_type): Keyword Args: _check_type (bool): if True, values for parameters in openapi_types diff --git a/plaid/model/transfer_authorization_risk_level.py b/plaid/model/transfer_authorization_risk_level.py index 5faa9f2e4..9ba3ce2c1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f9c82b8e0..7a27a9944 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_balance.py b/plaid/model/transfer_balance.py index 5e9ca90f8..72dd8297b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9e891b6ef..6306cc375 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 82234a2f0..8b8c8fe8f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_balance_type.py b/plaid/model/transfer_balance_type.py index c04ae1ca2..202b27327 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_cancel_request.py b/plaid/model/transfer_cancel_request.py index d3deb0703..c31cde357 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_cancel_response.py b/plaid/model/transfer_cancel_response.py index 556855329..3273cdfc6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c70918532..210369395 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0d6350e9b..0f668a930 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f47ef52f2..6c2da058c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5253a43e8..9f3eaeb2e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f3e08c2fa..5e1380001 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7c20edc84..b05c8031d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_create_request.py b/plaid/model/transfer_create_request.py index ea061e2fc..49f8bd408 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_create_response.py b/plaid/model/transfer_create_response.py index 4e4d4e44f..a3db4f36d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ef982b70c..4643aa6b2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ @@ -108,10 +108,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): Specifies the source of funds for the transfer. Only valid for `credit` transfers, and defaults to `sweep` if not specified. This field is not specified for `debit` transfers. `sweep` - Sweep funds from your funding account `prefunded_rtp_credits` - Use your prefunded RTP credit balance with Plaid `prefunded_ach_credits` - Use your prefunded ACH credit balance with Plaid., must be one of ["sweep", "prefunded_rtp_credits", "prefunded_ach_credits", "null", ] # noqa: E501 + args[0] (str): This field is now deprecated. You may ignore it for transfers created on and after 12/01/2023. Specifies the source of funds for the transfer. Only valid for `credit` transfers, and defaults to `sweep` if not specified. This field is not specified for `debit` transfers. `sweep` - Sweep funds from your funding account `prefunded_rtp_credits` - Use your prefunded RTP credit balance with Plaid `prefunded_ach_credits` - Use your prefunded ACH credit balance with Plaid., must be one of ["sweep", "prefunded_rtp_credits", "prefunded_ach_credits", "null", ] # noqa: E501 Keyword Args: - value (str): Specifies the source of funds for the transfer. Only valid for `credit` transfers, and defaults to `sweep` if not specified. This field is not specified for `debit` transfers. `sweep` - Sweep funds from your funding account `prefunded_rtp_credits` - Use your prefunded RTP credit balance with Plaid `prefunded_ach_credits` - Use your prefunded ACH credit balance with Plaid., must be one of ["sweep", "prefunded_rtp_credits", "prefunded_ach_credits", "null", ] # noqa: E501 + value (str): This field is now deprecated. You may ignore it for transfers created on and after 12/01/2023. Specifies the source of funds for the transfer. Only valid for `credit` transfers, and defaults to `sweep` if not specified. This field is not specified for `debit` transfers. `sweep` - Sweep funds from your funding account `prefunded_rtp_credits` - Use your prefunded RTP credit balance with Plaid `prefunded_ach_credits` - Use your prefunded ACH credit balance with Plaid., must be one of ["sweep", "prefunded_rtp_credits", "prefunded_ach_credits", "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. @@ -202,10 +202,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): Specifies the source of funds for the transfer. Only valid for `credit` transfers, and defaults to `sweep` if not specified. This field is not specified for `debit` transfers. `sweep` - Sweep funds from your funding account `prefunded_rtp_credits` - Use your prefunded RTP credit balance with Plaid `prefunded_ach_credits` - Use your prefunded ACH credit balance with Plaid., must be one of ["sweep", "prefunded_rtp_credits", "prefunded_ach_credits", "null", ] # noqa: E501 + args[0] (str): This field is now deprecated. You may ignore it for transfers created on and after 12/01/2023. Specifies the source of funds for the transfer. Only valid for `credit` transfers, and defaults to `sweep` if not specified. This field is not specified for `debit` transfers. `sweep` - Sweep funds from your funding account `prefunded_rtp_credits` - Use your prefunded RTP credit balance with Plaid `prefunded_ach_credits` - Use your prefunded ACH credit balance with Plaid., must be one of ["sweep", "prefunded_rtp_credits", "prefunded_ach_credits", "null", ] # noqa: E501 Keyword Args: - value (str): Specifies the source of funds for the transfer. Only valid for `credit` transfers, and defaults to `sweep` if not specified. This field is not specified for `debit` transfers. `sweep` - Sweep funds from your funding account `prefunded_rtp_credits` - Use your prefunded RTP credit balance with Plaid `prefunded_ach_credits` - Use your prefunded ACH credit balance with Plaid., must be one of ["sweep", "prefunded_rtp_credits", "prefunded_ach_credits", "null", ] # noqa: E501 + value (str): This field is now deprecated. You may ignore it for transfers created on and after 12/01/2023. Specifies the source of funds for the transfer. Only valid for `credit` transfers, and defaults to `sweep` if not specified. This field is not specified for `debit` transfers. `sweep` - Sweep funds from your funding account `prefunded_rtp_credits` - Use your prefunded RTP credit balance with Plaid `prefunded_ach_credits` - Use your prefunded ACH credit balance with Plaid., must be one of ["sweep", "prefunded_rtp_credits", "prefunded_ach_credits", "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_credit_usage_configuration.py b/plaid/model/transfer_credit_usage_configuration.py index 4e8f54284..9dd347517 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2ad148919..7d235473e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_device.py b/plaid/model/transfer_device.py index be9591f0b..c01454fe0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 13d80906f..4327f804f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 18b358226..abef9dd0f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_diligence_status.py b/plaid/model/transfer_diligence_status.py index 99fcf0ebc..6e6c97d1a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e610c8f08..3b08903f2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 fe7efd0b7..78dc5eb6d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_document_purpose.py b/plaid/model/transfer_document_purpose.py index 941992b91..b7c278830 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_event.py b/plaid/model/transfer_event.py index bccdabca9..f5a18d1e7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ba37027a4..b12e885e3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 bf4041a6e..9ec3cebb0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9ecca1418..b2ffd1dfe 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5e5d33295..94f82d54f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0c6335008..c29477e1d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_event_type.py b/plaid/model/transfer_event_type.py index 8ac53cffd..66eefb0e1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 31d85ebfe..40c24f141 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b49216701..6997273ed 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_failure.py b/plaid/model/transfer_failure.py index cd0dc6001..30a95339c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_funding_account.py b/plaid/model/transfer_funding_account.py index b5e821bcf..ab15e79f5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_get_request.py b/plaid/model/transfer_get_request.py index 671d64eb9..63fa7c8bf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_get_response.py b/plaid/model/transfer_get_response.py index 8062e7c4f..53c4974cf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9b67ee23c..8aaa4d32e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_intent_create.py b/plaid/model/transfer_intent_create.py index 511a7c064..6167c7be8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 cb08e1437..1a6ae8d6f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7760530d6..24c921eb4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 eee937c4b..acff1fbf1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5e07695ad..4df1e1b69 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_intent_get.py b/plaid/model/transfer_intent_get.py index ec50de46d..24deb6c7e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a379401be..a3ae0360c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 16688cee9..13530c1df 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c9845d450..af9e899d5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_intent_status.py b/plaid/model/transfer_intent_status.py index d143400d8..8cd61b968 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_ledger_balance.py b/plaid/model/transfer_ledger_balance.py index 9b7a65bd1..1c8c0eddd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7c1574efa..1e075257b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c5150e7fc..02c9dd7d2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c6dea4d89..277378528 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 fd15dc041..36423701f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 29e0ef9a7..653f85827 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 752419960..f118bdee7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 87c50a375..5bcad3ad9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 fbc6ad706..cfb789487 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6eb8a6223..d4d6d4913 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_list_request.py b/plaid/model/transfer_list_request.py index e3ce7cac5..2a91701a5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_list_response.py b/plaid/model/transfer_list_response.py index fd50bdb30..92502fa20 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_metadata.py b/plaid/model/transfer_metadata.py index a64808e37..d05baf77d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b8c67b915..f342000d1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 eb8bf2e7f..89b6e60a3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7e7c2827d..d9cf58488 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2c299681e..af9a8b471 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_network.py b/plaid/model/transfer_network.py index 69ffa0614..ed9b3a78d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_originator_address.py b/plaid/model/transfer_originator_address.py index a5ad5a18d..ba0186c73 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5ab7995a0..78ae24239 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ef9bec2dc..306bbb067 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_originator_diligence.py b/plaid/model/transfer_originator_diligence.py index 73a6b002d..0784d93dc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 88ac71506..1060eeb50 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2e6c5ac77..f04e7c0d7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8624754e9..076fc51d2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2ef45105b..533b6abd3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ac5eb87bc..9a6383ba8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a3fa68cb1..c38605e59 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 344f2e6ec..7e5b5a5f4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4b81e508e..3dbc8ea43 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5eb912c19..3245205e9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 639c29150..7c8bb0c9e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 dc0eee13f..d30617973 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2a9837dd2..69a6f0792 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d553e43af..00b8a824c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 58029dd89..976febf4f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 bca6008fc..56ab78330 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 49f2e33ca..3710fdaa3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 088db17cf..ee360ee2e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_recurring_schedule.py b/plaid/model/transfer_recurring_schedule.py index d39a54d9b..b864a2e6d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_recurring_status.py b/plaid/model/transfer_recurring_status.py index 0efbef8f6..0f9050e14 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_refund.py b/plaid/model/transfer_refund.py index 034968d14..778eb79ab 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 be563ae99..808c97ea5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a6c370a34..4bb0f286d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 164e1e589..183cca106 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0131184f3..bd9ad7c1e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_refund_failure.py b/plaid/model/transfer_refund_failure.py index 5f4112b8b..a3e3a4202 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d81646d0d..6437a5c49 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 84a19d9ba..711a78056 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 aff933c5e..a0dce07e9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_refund_status.py b/plaid/model/transfer_refund_status.py index 203cc8d06..fd4d716f7 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_repayment.py b/plaid/model/transfer_repayment.py index ab754fa58..6140a2dde 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b8d311359..2cb0bf907 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 deacb1b2a..5daf6a10d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_repayment_return.py b/plaid/model/transfer_repayment_return.py index cfc33359c..945d58f59 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 df1139cb1..3ae3d1014 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 922708049..8d87345cf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e4030cce9..36c918101 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_status.py b/plaid/model/transfer_status.py index 3623b73aa..c86261f65 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_sweep.py b/plaid/model/transfer_sweep.py index c94fc8d09..5a8b1e294 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a3f6c4de4..3e26e3f70 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 668084c3e..8a914df61 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 85b81a639..05dc61d0f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6bc95f4ff..9c3e5d5aa 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_sweep_status.py b/plaid/model/transfer_sweep_status.py index 94de52230..d6ba11c8c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_test_clock.py b/plaid/model/transfer_test_clock.py index 82efa82dd..325166972 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/transfer_type.py b/plaid/model/transfer_type.py index eda6d4c50..2051e0b82 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 37b66800d..b04b466c9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6f3ecc8e3..7543e171d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 615cc0a5c..9b1a62f4a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d1835696c..a2c2e7989 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2b5a76c83..10ba3ba25 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0cc97af94..325094b41 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3cbb66cd2..abbeddda6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_address.py b/plaid/model/user_address.py index 1aabb7f29..6c8fc5208 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_create_request.py b/plaid/model/user_create_request.py index 3c28f8d91..f77df0b38 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_create_response.py b/plaid/model/user_create_response.py index 59e7cfe44..d81d04312 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_custom_password.py b/plaid/model/user_custom_password.py index 5abc70edc..02fbc3102 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_data_overview.py b/plaid/model/user_data_overview.py index cd528fdf5..9839fb140 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_id_number.py b/plaid/model/user_id_number.py index 0926a330b..c3ceda78f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c034ddccb..ca375854f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e282aca8d..54cbfb72f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0f0f08b2b..1a58b300e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 94a718c38..0958f510e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_update_request.py b/plaid/model/user_update_request.py index 3e0fe33a6..44fafa1c5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/user_update_response.py b/plaid/model/user_update_response.py index 59914cbaa..c858196d6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/validation_source.py b/plaid/model/validation_source.py index bb2afa698..bbf5fdddd 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/validation_sources.py b/plaid/model/validation_sources.py index 85e81c340..667cad3aa 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/verification_expired_webhook.py b/plaid/model/verification_expired_webhook.py index 3f9911cbf..c2cdf3b62 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/verification_of_asset.py b/plaid/model/verification_of_asset.py index ce6ebd79f..cf8430a00 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2ec3b31bc..2c79e11b2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/verification_refresh_status.py b/plaid/model/verification_refresh_status.py index 7852f5c98..088541e9c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/verification_status.py b/plaid/model/verification_status.py index 0690f148d..2d026a72f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/w2.py b/plaid/model/w2.py index aa980507a..5598a9c78 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/w2_box12.py b/plaid/model/w2_box12.py index 2f2eff844..242d4597b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9b2d0f527..04f3edadf 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet.py b/plaid/model/wallet.py index 2188e910b..3c5129d7a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_balance.py b/plaid/model/wallet_balance.py index 4fd623417..9fa69b0b8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_create_request.py b/plaid/model/wallet_create_request.py index c801aeb12..8daca6414 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_create_response.py b/plaid/model/wallet_create_response.py index 81febbcdf..0bb8ef60e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_get_request.py b/plaid/model/wallet_get_request.py index 8420549c4..bd49d1d47 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_get_response.py b/plaid/model/wallet_get_response.py index 949442642..e6c6de2a6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9872939cf..562760279 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_list_request.py b/plaid/model/wallet_list_request.py index 6babd2a90..619a9a07d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_list_response.py b/plaid/model/wallet_list_response.py index 25529e5f4..cd76bf153 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_numbers.py b/plaid/model/wallet_numbers.py index a5fab2e66..f26d49f8a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_payment_scheme.py b/plaid/model/wallet_payment_scheme.py index dd832a9eb..3ed270e7c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_status.py b/plaid/model/wallet_status.py index ecc2610f8..b528a29d1 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction.py b/plaid/model/wallet_transaction.py index c707841f3..6546cd820 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_amount.py b/plaid/model/wallet_transaction_amount.py index 6c6a0c962..61f50bbe2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_counterparty.py b/plaid/model/wallet_transaction_counterparty.py index e4714301b..a53bdd5a3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f12b64933..609d4dfb9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6e63ade49..ecb0daf75 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 1201cdf1b..e18b13df0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ba05a5072..297c5bbad 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 aba37248b..d4f61c0f4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9b7e9ce9c..a4d449aac 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6592bb777..a98f96f46 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 0af69e725..1df13cae5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6b9b226b7..82df1a93e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 18fe7da2b..622f5d6ec 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 c9ba38be6..aa014d27c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3821835ea..48ecf172e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/wallet_transaction_status.py b/plaid/model/wallet_transaction_status.py index 2233d7830..2b31c3cf2 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 a5be20551..99243394c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 da69254d5..4d5df799a 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/warning.py b/plaid/model/warning.py index 072331832..18ce10ef3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 b86caa6be..00afbe9c5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_document.py b/plaid/model/watchlist_screening_document.py index 2368c9be6..2194ea1c6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 566a737b7..7dfb3377d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e7881a815..b4070e590 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3d106757f..ca6c02d13 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 71171671a..290391fa9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 697d3abb4..19502c553 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 619fad3f5..08305bc51 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6ac7cb28d..7e05639a4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 aac455d6f..9e1bc7cce 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 550724bd6..0fb7cca36 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9a07bba97..ad6923ec6 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5ce9a8769..f57f214f4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d4211701a..149a9c97e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 72c0430c4..284065462 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 929053e9b..024e9f5a4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7ebedb04c..926875d72 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 55b1181ac..34b462335 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 046804dc0..dc3631bdb 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 95684bd20..1c8204b88 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 930430f9a..fb6ed709c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 f1bb39993..9e260f7d0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9cfd441fc..ba698d6a0 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 afb7a81f9..bf8819d92 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 07e3cdbbf..731eaf434 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8915d354b..13720248e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 731025b77..95840ab83 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_hit.py b/plaid/model/watchlist_screening_hit.py index 9bfcf9c86..433162375 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 cbb3a5c69..ccfd41a5c 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 8f73b43db..b147d7138 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_individual.py b/plaid/model/watchlist_screening_individual.py index 3f6934a14..c3a895e8f 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 7fd4e62b0..8112d45ba 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 adaf0f773..118439aef 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 42c95316b..2da4736ea 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 60a7e1109..f2d0d2196 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 6d5111a92..1874e1465 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 159706b8c..5afdc10ea 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 11b4757ac..06f047f60 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 988ca8742..f3cd2205e 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3653b5b4e..0cbdc25cc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2b75d0f4c..3f63d2e31 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 784eee1c8..ce5aee528 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 92b0e6f1f..0932cb5d8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 3718386d5..f0fdd81ca 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 93f1ee486..be042b504 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d384b056e..81a49eefa 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 46f553cec..8e603e4e3 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5d30d817e..8c29b4947 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9b16b5b02..bcb867e71 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 9848b6590..1f6ae04a4 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e260ac71e..993206f49 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2be314c77..3d2c8dde9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 43f1e68cb..9afb73d0b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 bb191554e..f33d342a8 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 d1f13288e..36ab55837 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_review.py b/plaid/model/watchlist_screening_review.py index 585789f72..185c36510 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 019392ab0..5df8e10e9 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/watchlist_screening_status.py b/plaid/model/watchlist_screening_status.py index 83b163a4e..25fe1bb45 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/weak_alias_determination.py b/plaid/model/weak_alias_determination.py index c9f62cc8c..0ac1f7f24 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/webhook_environment_values.py b/plaid/model/webhook_environment_values.py index 0249bcc92..c21ad396b 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model/webhook_type.py b/plaid/model/webhook_type.py index c3a0eb13d..f6cf8ef9d 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 e3b713dd6..cabba5ed5 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 4bd88231a..f357e9857 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 ea171054f..16c57ed68 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 5b7061233..a473e9607 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 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 2790e3c65..1ece15247 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/model_utils.py b/plaid/model_utils.py index 5912d1676..869a75040 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/plaid/models/__init__.py b/plaid/models/__init__.py index 030269a8d..6b53b0a23 100644 --- a/plaid/models/__init__.py +++ b/plaid/models/__init__.py @@ -173,6 +173,8 @@ from plaid.model.beacon_report_create_request import BeaconReportCreateRequest from plaid.model.beacon_report_create_response import BeaconReportCreateResponse from plaid.model.beacon_report_created_webhook import BeaconReportCreatedWebhook +from plaid.model.beacon_report_get_request import BeaconReportGetRequest +from plaid.model.beacon_report_get_response import BeaconReportGetResponse from plaid.model.beacon_report_list_request import BeaconReportListRequest from plaid.model.beacon_report_list_response import BeaconReportListResponse from plaid.model.beacon_report_syndication import BeaconReportSyndication @@ -484,6 +486,7 @@ from plaid.model.holdings_default_update_webhook import HoldingsDefaultUpdateWebhook from plaid.model.holdings_override import HoldingsOverride from plaid.model.hosted_link_delivery_method import HostedLinkDeliveryMethod +from plaid.model.hosted_mmd_verification_webhook import HostedMMDVerificationWebhook from plaid.model.id_number_type import IDNumberType from plaid.model.iso_currency_code import ISOCurrencyCode from plaid.model.identity_default_update_webhook import IdentityDefaultUpdateWebhook @@ -686,6 +689,7 @@ from plaid.model.link_session_success_metadata_institution import LinkSessionSuccessMetadataInstitution from plaid.model.link_session_success_metadata_transfer_status import LinkSessionSuccessMetadataTransferStatus from plaid.model.link_token_account_filters import LinkTokenAccountFilters +from plaid.model.link_token_create_card_switch import LinkTokenCreateCardSwitch from plaid.model.link_token_create_credit_filter import LinkTokenCreateCreditFilter from plaid.model.link_token_create_depository_filter import LinkTokenCreateDepositoryFilter from plaid.model.link_token_create_hosted_link import LinkTokenCreateHostedLink diff --git a/plaid/rest.py b/plaid/rest.py index ce13fa319..d8e06adbc 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.474.0 + The version of the OpenAPI document: 2020-09-14_1.474.3 Generated by: https://openapi-generator.tech """ diff --git a/setup.py b/setup.py index 38f556028..d3e4522f0 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -VERSION = '18.1.0' +VERSION = '18.2.0' url = 'https://github.com/plaid/plaid-python' REQUIRES = [