diff --git a/Avalara/SDK/api/EInvoicing/V1/data_input_fields_api.py b/Avalara/SDK/api/EInvoicing/V1/data_input_fields_api.py index 123d563..bfd83b4 100644 --- a/Avalara/SDK/api/EInvoicing/V1/data_input_fields_api.py +++ b/Avalara/SDK/api/EInvoicing/V1/data_input_fields_api.py @@ -40,8 +40,7 @@ none_type, validate_and_convert_types ) -from decimal import Decimal -from pydantic import Field, StrictStr +from pydantic import Field, StrictInt, StrictStr from typing import Optional from typing_extensions import Annotated from Avalara.SDK.models.EInvoicing.V1.data_input_fields_response import DataInputFieldsResponse @@ -106,9 +105,9 @@ def __set_configuration(self, api_client): 'filter': (str,), 'top': - (decimal.Decimal,), + (int,), 'skip': - (decimal.Decimal,), + (int,), 'count': (bool,), 'count_only': @@ -168,8 +167,8 @@ def get_data_input_fields( Keyword Args: x_avalara_client (str): You can freely use any text you wish for this value. This feature can help you diagnose and solve problems with your software. The header can be treated like a fingerprint.. [optional] filter (str): Filter by field name and value. This filter only supports eq and contains. Refer to [https://developer.avalara.com/avatax/filtering-in-rest/](https://developer.avalara.com/avatax/filtering-in-rest/) for more information on filtering.. [optional] - top (decimal.Decimal): If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 1,000 records.. [optional] - skip (decimal.Decimal): If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets.. [optional] + top (int): The number of items to include in the result.. [optional] + skip (int): The number of items to skip in the result.. [optional] count (bool): When set to true, the count of the collection is also returned in the response body. [optional] count_only (bool): When set to true, only the count of the collection is returned. [optional] _return_http_data_only (bool): response data without head status diff --git a/Avalara/SDK/api/EInvoicing/V1/documents_api.py b/Avalara/SDK/api/EInvoicing/V1/documents_api.py index 5498abc..4848a27 100644 --- a/Avalara/SDK/api/EInvoicing/V1/documents_api.py +++ b/Avalara/SDK/api/EInvoicing/V1/documents_api.py @@ -41,8 +41,7 @@ validate_and_convert_types ) from datetime import datetime -from decimal import Decimal -from pydantic import Field, StrictBytes, StrictStr +from pydantic import Field, StrictBytes, StrictInt, StrictStr from typing import Any, Dict, Optional, Union from typing_extensions import Annotated from Avalara.SDK.models.EInvoicing.V1.document_fetch import DocumentFetch @@ -264,9 +263,9 @@ def __set_configuration(self, api_client): 'filter': (str,), 'top': - (decimal.Decimal,), + (int,), 'skip': - (str,), + (int,), }, 'attribute_map': { 'avalara_version': 'avalara-version', @@ -617,8 +616,8 @@ def get_document_list( count (str): When set to true, the count of the collection is also returned in the response body. [optional] count_only (str): When set to true, only the count of the collection is returned. [optional] filter (str): Filter by field name and value. This filter only supports eq . Refer to [https://developer.avalara.com/avatax/filtering-in-rest/](https://developer.avalara.com/avatax/filtering-in-rest/) for more information on filtering. Filtering will be done over the provided startDate and endDate. If no startDate or endDate is provided, defaults will be assumed.. [optional] - top (decimal.Decimal): If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 200 records.. [optional] - skip (str): If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets.. [optional] + top (int): The number of items to include in the result.. [optional] + skip (int): The number of items to skip in the result.. [optional] _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 diff --git a/Avalara/SDK/api/EInvoicing/V1/mandates_api.py b/Avalara/SDK/api/EInvoicing/V1/mandates_api.py index f88455b..98461d0 100644 --- a/Avalara/SDK/api/EInvoicing/V1/mandates_api.py +++ b/Avalara/SDK/api/EInvoicing/V1/mandates_api.py @@ -40,8 +40,7 @@ none_type, validate_and_convert_types ) -from decimal import Decimal -from pydantic import Field, StrictStr +from pydantic import Field, StrictInt, StrictStr from typing import List, Optional from typing_extensions import Annotated from Avalara.SDK.models.EInvoicing.V1.mandate_data_input_field import MandateDataInputField @@ -184,9 +183,9 @@ def __set_configuration(self, api_client): 'filter': (str,), 'top': - (decimal.Decimal,), + (int,), 'skip': - (decimal.Decimal,), + (int,), 'count': (bool,), 'count_only': @@ -323,8 +322,8 @@ def get_mandates( Keyword Args: x_avalara_client (str): You can freely use any text you wish for this value. This feature can help you diagnose and solve problems with your software. The header can be treated like a fingerprint.. [optional] filter (str): Filter by field name and value. This filter only supports eq and contains. Refer to [https://developer.avalara.com/avatax/filtering-in-rest/](https://developer.avalara.com/avatax/filtering-in-rest/) for more information on filtering.. [optional] - top (decimal.Decimal): If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 1,000 records.. [optional] - skip (decimal.Decimal): If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets.. [optional] + top (int): The number of items to include in the result.. [optional] + skip (int): The number of items to skip in the result.. [optional] count (bool): When set to true, the count of the collection is also returned in the response body.. [optional] count_only (bool): When set to true, only the count of the collection is returned. [optional] _return_http_data_only (bool): response data without head status diff --git a/Avalara/SDK/api/EInvoicing/V1/trading_partners_api.py b/Avalara/SDK/api/EInvoicing/V1/trading_partners_api.py index b5dd531..7001ad0 100644 --- a/Avalara/SDK/api/EInvoicing/V1/trading_partners_api.py +++ b/Avalara/SDK/api/EInvoicing/V1/trading_partners_api.py @@ -40,7 +40,7 @@ none_type, validate_and_convert_types ) -from pydantic import Field, StrictBool, StrictBytes, StrictStr +from pydantic import Field, StrictBool, StrictBytes, StrictInt, StrictStr from typing import Optional, Union from typing_extensions import Annotated from Avalara.SDK.models.EInvoicing.V1.batch_search import BatchSearch @@ -553,9 +553,9 @@ def __set_configuration(self, api_client): 'count': (bool,), 'top': - (str,), + (int,), 'skip': - (str,), + (int,), 'order_by': (str,), 'x_correlation_id': @@ -646,9 +646,9 @@ def __set_configuration(self, api_client): 'filter': (str,), 'top': - (str,), + (int,), 'skip': - (str,), + (int,), 'order_by': (str,), 'x_correlation_id': @@ -1228,8 +1228,8 @@ def list_batch_searches( x_avalara_client (str): You can freely use any text you wish for this value. This feature can help you diagnose and solve problems with your software. The header can be treated like a \"Fingerprint\".. [optional] filter (str): Filters the results by field name. Only the eq operator and the name field is supported. For more information, refer to [AvaTax filtering guide](https://developer.avalara.com/avatax/filtering-in-rest/).. [optional] count (bool): When set to true, returns the total count of matching records included as @recordSetCount in the response body.. [optional] - top (str): If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 200 records.. [optional] - skip (str): If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets.. [optional] + top (int): The number of items to include in the result.. [optional] + skip (int): The number of items to skip in the result.. [optional] order_by (str): The $orderBy query parameter specifies the field and sorting direction for ordering the result set. The value is a string that combines a field name and a sorting direction (asc for ascending or desc for descending), separated by a space.. [optional] x_correlation_id (str): The caller can use this as an identifier to use as a correlation id to trace the call.. [optional] _return_http_data_only (bool): response data without head status @@ -1304,8 +1304,8 @@ def search_participants( x_avalara_client (str): You can freely use any text you wish for this value. This feature can help you diagnose and solve problems with your software. The header can be treated like a \"Fingerprint\".. [optional] count (bool): When set to true, returns the total count of matching records included as @recordSetCount in the response body.. [optional] filter (str): Filters the results using the eq operator. Supported fields: network, country, documentType, idType. For more information, refer to [AvaTax filtering guide](https://developer.avalara.com/avatax/filtering-in-rest/).. [optional] - top (str): If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 200 records.. [optional] - skip (str): If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets.. [optional] + top (int): The number of items to include in the result.. [optional] + skip (int): The number of items to skip in the result.. [optional] order_by (str): The $orderBy query parameter specifies the field and sorting direction for ordering the result set. The value is a string that combines a field name and a sorting direction (asc for ascending or desc for descending), separated by a space.. [optional] x_correlation_id (str): The caller can use this as an identifier to use as a correlation id to trace the call.. [optional] _return_http_data_only (bool): response data without head status diff --git a/docs/A1099/V2/CompaniesW9Api.md b/docs/A1099/V2/CompaniesW9Api.md index 37c5fc6..807dcb8 100644 --- a/docs/A1099/V2/CompaniesW9Api.md +++ b/docs/A1099/V2/CompaniesW9Api.md @@ -45,7 +45,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = companies_w9_api.CompaniesW9Api(api_client) avalara_version = '2.0.0' # str | API version - x_correlation_id = 'fe0b2c61-3b02-476a-ab45-cffe1b04e41a' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = '144f810d-5777-472b-b372-c1028d9a13ae' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) company_create_update_request_model = Avalara.SDK.CompanyCreateUpdateRequestModel() # CompanyCreateUpdateRequestModel | The company to create (optional) # example passing only required values which don't have defaults set @@ -132,7 +132,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: api_instance = companies_w9_api.CompaniesW9Api(api_client) id = 'id_example' # str | The company to delete avalara_version = '2.0.0' # str | API version - x_correlation_id = '250cdf61-a491-4fce-9544-33316d95a0a2' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = 'db071c51-528f-4929-a031-523aa34002d1' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) # example passing only required values which don't have defaults set try: @@ -224,7 +224,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: order_by = 'order_by_example' # str | A comma separated list of sort statements in the format (fieldname) [ASC|DESC], for example id ASC. (optional) count = True # bool | If true, return the global count of elements in the collection. (optional) count_only = True # bool | If true, return ONLY the global count of elements in the collection. It only applies when count=true. (optional) - x_correlation_id = '9bc362f8-548a-4a98-b44b-37da159b8126' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = '7ad30f3a-b27d-440e-98da-516663741d89' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) # example passing only required values which don't have defaults set try: @@ -318,7 +318,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: api_instance = companies_w9_api.CompaniesW9Api(api_client) id = 'id_example' # str | Id of the company avalara_version = '2.0.0' # str | API version - x_correlation_id = '1c9d767c-523c-42c5-bbcb-5158761b48a0' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = '77521b27-805c-40b1-a6c8-3d6339acba99' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) # example passing only required values which don't have defaults set try: @@ -408,7 +408,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: api_instance = companies_w9_api.CompaniesW9Api(api_client) id = 'id_example' # str | The ID of the company to update avalara_version = '2.0.0' # str | API version - x_correlation_id = '03774e95-4208-4f91-a5c8-e218fcb3c0a4' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = '9b982dee-5208-416e-8acf-84070e235acc' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) company_create_update_request_model = Avalara.SDK.CompanyCreateUpdateRequestModel() # CompanyCreateUpdateRequestModel | The updated company data (optional) # example passing only required values which don't have defaults set diff --git a/docs/A1099/V2/Forms1099Api.md b/docs/A1099/V2/Forms1099Api.md index fbde3b7..7e63ebe 100644 --- a/docs/A1099/V2/Forms1099Api.md +++ b/docs/A1099/V2/Forms1099Api.md @@ -48,7 +48,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: api_instance = forms1099_api.Forms1099Api(api_client) avalara_version = '2.0.0' # str | API version dry_run = False # bool | (optional) if omitted the server will use the default value of False - x_correlation_id = '2887c820-8999-462b-a6d0-a806ff098c1d' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = '032e11a9-1930-48bc-9cd5-865dfeb5f8bb' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) bulk_upsert1099_forms_request = Avalara.SDK.BulkUpsert1099FormsRequest() # BulkUpsert1099FormsRequest | (optional) # example passing only required values which don't have defaults set @@ -139,7 +139,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = forms1099_api.Forms1099Api(api_client) avalara_version = '2.0.0' # str | API version - x_correlation_id = 'd0cd754d-adf8-41e6-be0a-b4d205e24e61' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = '2a525a1d-2ac8-4894-87a5-1bd347d76b1c' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) i_create_form1099_request = Avalara.SDK.ICreateForm1099Request() # ICreateForm1099Request | (optional) # example passing only required values which don't have defaults set @@ -227,7 +227,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: api_instance = forms1099_api.Forms1099Api(api_client) id = 'id_example' # str | The unique identifier of the desired form to delete. avalara_version = '2.0.0' # str | API version - x_correlation_id = 'addfa5c3-a255-432d-97a0-51af301447b2' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = 'ba633be6-e650-424e-a01c-28c6693b9e3a' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) # example passing only required values which don't have defaults set try: @@ -315,7 +315,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: api_instance = forms1099_api.Forms1099Api(api_client) id = 'id_example' # str | avalara_version = '2.0.0' # str | API version - x_correlation_id = 'd24d3112-03b3-42d3-8118-9654a4ed92c1' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = 'f311cf9a-de50-4d53-9663-bdf93020dd26' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) # example passing only required values which don't have defaults set try: @@ -404,7 +404,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: id = 'id_example' # str | The ID of the form avalara_version = '2.0.0' # str | API version mark_edelivered = True # bool | Optional boolean that if set indicates that the form should be marked as having been successfully edelivered (optional) - x_correlation_id = '84d9cf56-2aee-4be1-a89f-de5be5369993' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = 'a1c63b5e-c575-4315-90ad-0ac98e71a981' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) # example passing only required values which don't have defaults set try: @@ -497,7 +497,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: top = 10 # int | If nonzero, return no more than this number of results. Used with skip to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 1,000 records. (optional) if omitted the server will use the default value of 10 skip = 0 # int | If nonzero, skip this number of results before returning data. Used with top to provide pagination for large datasets. (optional) if omitted the server will use the default value of 0 order_by = 'order_by_example' # str | A comma separated list of sort statements in the format (fieldname) [ASC|DESC], for example issuerReferenceId ASC. Supported sorting fields are: issuerReferenceId taxYear createdAt recipientName updatedAt (optional) - x_correlation_id = 'edd69041-acfd-4252-8f4f-a0a3f009bda6' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = '443e5440-659c-4f7d-865e-fd185b0ed923' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) # example passing only required values which don't have defaults set try: @@ -590,7 +590,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: api_instance = forms1099_api.Forms1099Api(api_client) id = 'id_example' # str | avalara_version = '2.0.0' # str | API version - x_correlation_id = '860f5511-f0d8-45a4-ac62-6d2733e3028d' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = 'd65ebcaf-e252-421c-a543-3d1ba4e4175b' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) i_update_form1099_request = Avalara.SDK.IUpdateForm1099Request() # IUpdateForm1099Request | (optional) # example passing only required values which don't have defaults set diff --git a/docs/A1099/V2/FormsW9Api.md b/docs/A1099/V2/FormsW9Api.md index 3b1837d..fe47642 100644 --- a/docs/A1099/V2/FormsW9Api.md +++ b/docs/A1099/V2/FormsW9Api.md @@ -47,7 +47,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = forms_w9_api.FormsW9Api(api_client) avalara_version = '2.0.0' # str | API version - x_correlation_id = 'a80d4171-c58b-440c-8cc7-4093fd542b00' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = '968b9850-b859-4a5a-8165-bd1e444fbf47' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) create_w9_form_request = {"type":"W9","name":"John Doe","businessName":"Acme Inc.","businessClassification":"Individual","businessOther":null,"foreignPartnerOwnerOrBeneficiary":false,"exemptPayeeCode":null,"exemptFatcaCode":null,"foreignCountryIndicator":false,"address":"123 Main St.","foreignAddress":null,"city":"Anytown","state":"CA","zip":"12345","accountNumber":null,"tinType":"SSN","tin":"543456789","backupWithholding":false,"is1099able":true,"companyId":"32553266","referenceId":null,"email":null,"eDeliveryConsentedAt":null,"signature":null} # CreateW9FormRequest | Form to be created (optional) # example passing only required values which don't have defaults set @@ -134,7 +134,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: api_instance = forms_w9_api.FormsW9Api(api_client) id = 'id_example' # str | ID of the form to delete avalara_version = '2.0.0' # str | API version - x_correlation_id = '458bae89-b373-4297-b5eb-0e7a18838af3' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = '69926298-ed5b-4d78-8099-b5488589912d' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) # example passing only required values which don't have defaults set try: @@ -219,7 +219,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: api_instance = forms_w9_api.FormsW9Api(api_client) id = 'id_example' # str | ID of the form avalara_version = '2.0.0' # str | API version - x_correlation_id = 'fcd3a4fb-da5b-4195-a470-97567434f46c' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = 'e138390c-5561-49df-a969-49427e2c5ffa' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) # example passing only required values which don't have defaults set try: @@ -310,7 +310,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: skip = 0 # int | If nonzero, skip this number of results before returning data. Used with top to provide pagination for large datasets. (optional) if omitted the server will use the default value of 0 order_by = 'order_by_example' # str | A comma separated list of sort statements in the format (fieldname) [ASC|DESC], for example id ASC. (optional) count = True # bool | When true, returns a @recordSetCount in the result set (optional) - x_correlation_id = 'a4990941-fbe5-45f9-8495-43ed73f8334e' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = 'f80bd20b-84ec-47de-913f-304dd9951b58' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) # example passing only required values which don't have defaults set try: @@ -401,7 +401,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: api_instance = forms_w9_api.FormsW9Api(api_client) id = 'id_example' # str | The ID of the W9/W4/W8 form. avalara_version = '2.0.0' # str | API version - x_correlation_id = '72cf9106-878e-4643-9b5a-440f89a7b20d' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = '75735dc9-2909-4f11-bc6c-6e1ec0d77264' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) # example passing only required values which don't have defaults set try: @@ -488,7 +488,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: api_instance = forms_w9_api.FormsW9Api(api_client) id = 'id_example' # str | ID of the form to update avalara_version = '2.0.0' # str | API version - x_correlation_id = '38f0a02f-83cf-4142-b6ed-6b29474177df' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = 'd24784a4-9522-46c7-b6e0-8f44cb176f17' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) iw9_form_data_models_one_of = Avalara.SDK.IW9FormDataModelsOneOf() # IW9FormDataModelsOneOf | Form to be updated (optional) # example passing only required values which don't have defaults set @@ -576,7 +576,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: api_instance = forms_w9_api.FormsW9Api(api_client) id = 'id_example' # str | Id of the form avalara_version = '2.0.0' # str | API version - x_correlation_id = '4fee6fea-2e64-4911-bb75-0931dd2875be' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = 'ee2e9278-6cdb-47ad-82a0-9d5a726f7412' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) file = None # bytearray | (optional) # example passing only required values which don't have defaults set diff --git a/docs/A1099/V2/Issuers1099Api.md b/docs/A1099/V2/Issuers1099Api.md index 6bc37bc..c4b46c8 100644 --- a/docs/A1099/V2/Issuers1099Api.md +++ b/docs/A1099/V2/Issuers1099Api.md @@ -45,7 +45,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = issuers1099_api.Issuers1099Api(api_client) avalara_version = '2.0.0' # str | API version - x_correlation_id = '790d12c4-e473-4e06-8104-e1391469363d' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = 'ce42bd72-2b6a-438a-8e8b-983910339267' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) issuer_command = Avalara.SDK.IssuerCommand() # IssuerCommand | The issuer to create (optional) # example passing only required values which don't have defaults set @@ -132,7 +132,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: api_instance = issuers1099_api.Issuers1099Api(api_client) id = 'id_example' # str | Id of the issuer to delete avalara_version = '2.0.0' # str | API version - x_correlation_id = 'f4fbae4e-795e-458a-aec2-5e5232efb33b' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = '706821c8-d3fe-4fb8-82c2-5d6cf92c475e' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) # example passing only required values which don't have defaults set try: @@ -217,7 +217,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: api_instance = issuers1099_api.Issuers1099Api(api_client) id = 'id_example' # str | Id of the issuer to retrieve avalara_version = '2.0.0' # str | API version - x_correlation_id = '826bf1b5-f556-485c-be41-e57e14e5cae9' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = '14762757-396e-4e07-851b-2b7dd2542250' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) # example passing only required values which don't have defaults set try: @@ -309,7 +309,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: order_by = 'order_by_example' # str | A comma separated list of sort statements in the format (fieldname) [ASC|DESC], for example id ASC. (optional) count = True # bool | If true, return the global count of elements in the collection. (optional) count_only = True # bool | If true, return ONLY the global count of elements in the collection. It only applies when count=true. (optional) - x_correlation_id = '12264f5a-c0c1-4cb2-8ab1-e5434d55b73f' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = '99c911ff-f4eb-42a8-841d-342a6cd1c7d5' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) # example passing only required values which don't have defaults set try: @@ -403,7 +403,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: api_instance = issuers1099_api.Issuers1099Api(api_client) id = 'id_example' # str | Id of the issuer to update avalara_version = '2.0.0' # str | API version - x_correlation_id = '73758ef3-adb6-4b4b-ab1b-96f87332b71d' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = '092e5597-f724-49e7-bffa-4f1f21cb6236' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) issuer_command = Avalara.SDK.IssuerCommand() # IssuerCommand | The issuer to update (optional) # example passing only required values which don't have defaults set diff --git a/docs/A1099/V2/Jobs1099Api.md b/docs/A1099/V2/Jobs1099Api.md index 4512841..daa46e7 100644 --- a/docs/A1099/V2/Jobs1099Api.md +++ b/docs/A1099/V2/Jobs1099Api.md @@ -41,7 +41,7 @@ with Avalara.SDK.ApiClient(configuration) as api_client: api_instance = jobs1099_api.Jobs1099Api(api_client) id = 'id_example' # str | Job id obtained from other API responses, like `/1099/bulk-upsert`. avalara_version = '2.0.0' # str | API version - x_correlation_id = '08e85997-7532-4dd7-96fa-f7a029bb399f' # str | Unique correlation Id in a GUID format (optional) + x_correlation_id = '0d84e31f-0d44-4920-9f1b-5daa360e7925' # str | Unique correlation Id in a GUID format (optional) x_avalara_client = 'Swagger UI; 22.1.0' # str | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) . (optional) # example passing only required values which don't have defaults set try: diff --git a/docs/EInvoicing/V1/DataInputFieldsApi.md b/docs/EInvoicing/V1/DataInputFieldsApi.md index fd0452e..221bffe 100644 --- a/docs/EInvoicing/V1/DataInputFieldsApi.md +++ b/docs/EInvoicing/V1/DataInputFieldsApi.md @@ -43,8 +43,8 @@ with Avalara.SDK.ApiClient(configuration) as api_client: avalara_version = '1.4' # str | The HTTP Header meant to specify the version of the API intended to be used x_avalara_client = 'John's E-Invoicing-API Client' # str | You can freely use any text you wish for this value. This feature can help you diagnose and solve problems with your software. The header can be treated like a fingerprint. (optional) filter = 'requiredFor/countryMandate eq AU-B2G-PEPPOL' # str | Filter by field name and value. This filter only supports eq and contains. Refer to [https://developer.avalara.com/avatax/filtering-in-rest/](https://developer.avalara.com/avatax/filtering-in-rest/) for more information on filtering. (optional) - top = 10 # decimal.Decimal | If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 1,000 records. (optional) - skip = 10 # decimal.Decimal | If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets. (optional) + top = 56 # int | The number of items to include in the result. (optional) + skip = 56 # int | The number of items to skip in the result. (optional) count = true # bool | When set to true, the count of the collection is also returned in the response body (optional) count_only = true # bool | When set to true, only the count of the collection is returned (optional) # example passing only required values which don't have defaults set @@ -72,8 +72,8 @@ Name | Type | Description | Notes **avalara_version** | **str**| The HTTP Header meant to specify the version of the API intended to be used | **x_avalara_client** | **str**| You can freely use any text you wish for this value. This feature can help you diagnose and solve problems with your software. The header can be treated like a fingerprint. | [optional] **filter** | **str**| Filter by field name and value. This filter only supports <code>eq</code> and <code>contains</code>. Refer to [https://developer.avalara.com/avatax/filtering-in-rest/](https://developer.avalara.com/avatax/filtering-in-rest/) for more information on filtering. | [optional] - **top** | **decimal.Decimal**| If nonzero, return no more than this number of results. Used with <code>$skip</code> to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 1,000 records. | [optional] - **skip** | **decimal.Decimal**| If nonzero, skip this number of results before returning data. Used with <code>$top</code> to provide pagination for large datasets. | [optional] + **top** | **int**| The number of items to include in the result. | [optional] + **skip** | **int**| The number of items to skip in the result. | [optional] **count** | **bool**| When set to true, the count of the collection is also returned in the response body | [optional] **count_only** | **bool**| When set to true, only the count of the collection is returned | [optional] diff --git a/docs/EInvoicing/V1/DocumentsApi.md b/docs/EInvoicing/V1/DocumentsApi.md index fd5bbeb..83cc7bb 100644 --- a/docs/EInvoicing/V1/DocumentsApi.md +++ b/docs/EInvoicing/V1/DocumentsApi.md @@ -230,8 +230,8 @@ with Avalara.SDK.ApiClient(configuration) as api_client: count = 'true' # str | When set to true, the count of the collection is also returned in the response body (optional) count_only = 'false' # str | When set to true, only the count of the collection is returned (optional) filter = 'id eq 52f60401-44d0-4667-ad47-4afe519abb53' # str | Filter by field name and value. This filter only supports eq . Refer to [https://developer.avalara.com/avatax/filtering-in-rest/](https://developer.avalara.com/avatax/filtering-in-rest/) for more information on filtering. Filtering will be done over the provided startDate and endDate. If no startDate or endDate is provided, defaults will be assumed. (optional) - top = 10 # decimal.Decimal | If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 200 records. (optional) - skip = '10' # str | If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets. (optional) + top = 56 # int | The number of items to include in the result. (optional) + skip = 56 # int | The number of items to skip in the result. (optional) # example passing only required values which don't have defaults set try: # Returns a summary of documents for a date range @@ -262,8 +262,8 @@ Name | Type | Description | Notes **count** | **str**| When set to true, the count of the collection is also returned in the response body | [optional] **count_only** | **str**| When set to true, only the count of the collection is returned | [optional] **filter** | **str**| Filter by field name and value. This filter only supports <code>eq</code> . Refer to [https://developer.avalara.com/avatax/filtering-in-rest/](https://developer.avalara.com/avatax/filtering-in-rest/) for more information on filtering. Filtering will be done over the provided startDate and endDate. If no startDate or endDate is provided, defaults will be assumed. | [optional] - **top** | **decimal.Decimal**| If nonzero, return no more than this number of results. Used with <code>$skip</code> to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 200 records. | [optional] - **skip** | **str**| If nonzero, skip this number of results before returning data. Used with <code>$top</code> to provide pagination for large datasets. | [optional] + **top** | **int**| The number of items to include in the result. | [optional] + **skip** | **int**| The number of items to skip in the result. | [optional] ### Return type diff --git a/docs/EInvoicing/V1/MandatesApi.md b/docs/EInvoicing/V1/MandatesApi.md index 8fe0229..bedd705 100644 --- a/docs/EInvoicing/V1/MandatesApi.md +++ b/docs/EInvoicing/V1/MandatesApi.md @@ -140,8 +140,8 @@ with Avalara.SDK.ApiClient(configuration) as api_client: avalara_version = '1.4' # str | The HTTP Header meant to specify the version of the API intended to be used x_avalara_client = 'John's E-Invoicing-API Client' # str | You can freely use any text you wish for this value. This feature can help you diagnose and solve problems with your software. The header can be treated like a fingerprint. (optional) filter = 'countryMandate eq DE-B2G-PEPPOL' # str | Filter by field name and value. This filter only supports eq and contains. Refer to [https://developer.avalara.com/avatax/filtering-in-rest/](https://developer.avalara.com/avatax/filtering-in-rest/) for more information on filtering. (optional) - top = 10 # decimal.Decimal | If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 1,000 records. (optional) - skip = 10 # decimal.Decimal | If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets. (optional) + top = 56 # int | The number of items to include in the result. (optional) + skip = 56 # int | The number of items to skip in the result. (optional) count = true # bool | When set to true, the count of the collection is also returned in the response body. (optional) count_only = true # bool | When set to true, only the count of the collection is returned (optional) # example passing only required values which don't have defaults set @@ -169,8 +169,8 @@ Name | Type | Description | Notes **avalara_version** | **str**| The HTTP Header meant to specify the version of the API intended to be used | **x_avalara_client** | **str**| You can freely use any text you wish for this value. This feature can help you diagnose and solve problems with your software. The header can be treated like a fingerprint. | [optional] **filter** | **str**| Filter by field name and value. This filter only supports <code>eq</code> and <code>contains</code>. Refer to [https://developer.avalara.com/avatax/filtering-in-rest/](https://developer.avalara.com/avatax/filtering-in-rest/) for more information on filtering. | [optional] - **top** | **decimal.Decimal**| If nonzero, return no more than this number of results. Used with <code>$skip</code> to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 1,000 records. | [optional] - **skip** | **decimal.Decimal**| If nonzero, skip this number of results before returning data. Used with <code>$top</code> to provide pagination for large datasets. | [optional] + **top** | **int**| The number of items to include in the result. | [optional] + **skip** | **int**| The number of items to skip in the result. | [optional] **count** | **bool**| When set to true, the count of the collection is also returned in the response body. | [optional] **count_only** | **bool**| When set to true, only the count of the collection is returned | [optional] diff --git a/docs/EInvoicing/V1/TradingPartnersApi.md b/docs/EInvoicing/V1/TradingPartnersApi.md index b647555..457c60d 100644 --- a/docs/EInvoicing/V1/TradingPartnersApi.md +++ b/docs/EInvoicing/V1/TradingPartnersApi.md @@ -591,8 +591,8 @@ with Avalara.SDK.ApiClient(configuration) as api_client: x_avalara_client = 'John's E-Invoicing-API Client' # str | You can freely use any text you wish for this value. This feature can help you diagnose and solve problems with your software. The header can be treated like a \"Fingerprint\". (optional) filter = 'name eq 'Batch_Search_Import_V4'' # str | Filters the results by field name. Only the eq operator and the name field is supported. For more information, refer to [AvaTax filtering guide](https://developer.avalara.com/avatax/filtering-in-rest/). (optional) count = true # bool | When set to true, returns the total count of matching records included as @recordSetCount in the response body. (optional) - top = '10' # str | If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 200 records. (optional) - skip = '10' # str | If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets. (optional) + top = 56 # int | The number of items to include in the result. (optional) + skip = 56 # int | The number of items to skip in the result. (optional) order_by = 'name desc' # str | The $orderBy query parameter specifies the field and sorting direction for ordering the result set. The value is a string that combines a field name and a sorting direction (asc for ascending or desc for descending), separated by a space. (optional) x_correlation_id = 'f3f0d19a-01a1-4748-8a58-f000d0424f43' # str | The caller can use this as an identifier to use as a correlation id to trace the call. (optional) # example passing only required values which don't have defaults set @@ -621,8 +621,8 @@ Name | Type | Description | Notes **x_avalara_client** | **str**| You can freely use any text you wish for this value. This feature can help you diagnose and solve problems with your software. The header can be treated like a \"Fingerprint\". | [optional] **filter** | **str**| Filters the results by field name. Only the <code>eq</code> operator and the name field is supported. For more information, refer to [AvaTax filtering guide](https://developer.avalara.com/avatax/filtering-in-rest/). | [optional] **count** | **bool**| When set to <code>true</code>, returns the total count of matching records included as <code>@recordSetCount</code> in the response body. | [optional] - **top** | **str**| If nonzero, return no more than this number of results. Used with <code>$skip</code> to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 200 records. | [optional] - **skip** | **str**| If nonzero, skip this number of results before returning data. Used with <code>$top</code> to provide pagination for large datasets. | [optional] + **top** | **int**| The number of items to include in the result. | [optional] + **skip** | **int**| The number of items to skip in the result. | [optional] **order_by** | **str**| The <code>$orderBy</code> query parameter specifies the field and sorting direction for ordering the result set. The value is a string that combines a field name and a sorting direction (asc for ascending or desc for descending), separated by a space. | [optional] **x_correlation_id** | **str**| The caller can use this as an identifier to use as a correlation id to trace the call. | [optional] @@ -689,8 +689,8 @@ with Avalara.SDK.ApiClient(configuration) as api_client: x_avalara_client = 'John's E-Invoicing-API Client' # str | You can freely use any text you wish for this value. This feature can help you diagnose and solve problems with your software. The header can be treated like a \"Fingerprint\". (optional) count = true # bool | When set to true, returns the total count of matching records included as @recordSetCount in the response body. (optional) filter = 'network eq 'Peppol' and country eq 'Australia'' # str | Filters the results using the eq operator. Supported fields: network, country, documentType, idType. For more information, refer to [AvaTax filtering guide](https://developer.avalara.com/avatax/filtering-in-rest/). (optional) - top = '10' # str | If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 200 records. (optional) - skip = '10' # str | If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets. (optional) + top = 56 # int | The number of items to include in the result. (optional) + skip = 56 # int | The number of items to skip in the result. (optional) order_by = 'name desc' # str | The $orderBy query parameter specifies the field and sorting direction for ordering the result set. The value is a string that combines a field name and a sorting direction (asc for ascending or desc for descending), separated by a space. (optional) x_correlation_id = 'f3f0d19a-01a1-4748-8a58-f000d0424f43' # str | The caller can use this as an identifier to use as a correlation id to trace the call. (optional) # example passing only required values which don't have defaults set @@ -720,8 +720,8 @@ Name | Type | Description | Notes **x_avalara_client** | **str**| You can freely use any text you wish for this value. This feature can help you diagnose and solve problems with your software. The header can be treated like a \"Fingerprint\". | [optional] **count** | **bool**| When set to <code>true</code>, returns the total count of matching records included as <code>@recordSetCount</code> in the response body. | [optional] **filter** | **str**| Filters the results using the <code>eq</code> operator. Supported fields: <code>network</code>, <code>country</code>, <code>documentType</code>, <code>idType</code>. For more information, refer to [AvaTax filtering guide](https://developer.avalara.com/avatax/filtering-in-rest/). | [optional] - **top** | **str**| If nonzero, return no more than this number of results. Used with <code>$skip</code> to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 200 records. | [optional] - **skip** | **str**| If nonzero, skip this number of results before returning data. Used with <code>$top</code> to provide pagination for large datasets. | [optional] + **top** | **int**| The number of items to include in the result. | [optional] + **skip** | **int**| The number of items to skip in the result. | [optional] **order_by** | **str**| The <code>$orderBy</code> query parameter specifies the field and sorting direction for ordering the result set. The value is a string that combines a field name and a sorting direction (asc for ascending or desc for descending), separated by a space. | [optional] **x_correlation_id** | **str**| The caller can use this as an identifier to use as a correlation id to trace the call. | [optional]