diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6d2b7ebe70..a05b568c66 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,4 +20,5 @@ jobs: uses: ncipollo/release-action@v1 with: commit: main - tag: 1.4.3 + tag: 1.4.4 + diff --git a/.gitignore b/.gitignore index 2a0b8197ed..43995bd42f 100644 --- a/.gitignore +++ b/.gitignore @@ -64,6 +64,3 @@ target/ #Ipython Notebook .ipynb_checkpoints - -#IDE -.idea \ No newline at end of file diff --git a/README.md b/README.md index d70b13c867..37860fa0c1 100644 --- a/README.md +++ b/README.md @@ -184,13 +184,16 @@ from apideck.model.attachment_reference_type import AttachmentReferenceType from apideck.model.bad_request_response import BadRequestResponse from apideck.model.balance_sheet_filter import BalanceSheetFilter from apideck.model.bill import Bill +from apideck.model.bill_payment import BillPayment from apideck.model.bills_filter import BillsFilter from apideck.model.bills_sort import BillsSort from apideck.model.create_accounting_department_response import CreateAccountingDepartmentResponse from apideck.model.create_accounting_location_response import CreateAccountingLocationResponse +from apideck.model.create_bill_payment_response import CreateBillPaymentResponse from apideck.model.create_bill_response import CreateBillResponse from apideck.model.create_credit_note_response import CreateCreditNoteResponse from apideck.model.create_customer_response import CreateCustomerResponse +from apideck.model.create_expense_response import CreateExpenseResponse from apideck.model.create_invoice_item_response import CreateInvoiceItemResponse from apideck.model.create_invoice_response import CreateInvoiceResponse from apideck.model.create_journal_entry_response import CreateJournalEntryResponse @@ -210,9 +213,11 @@ from apideck.model.customers_sort import CustomersSort from apideck.model.delete_accounting_department_response import DeleteAccountingDepartmentResponse from apideck.model.delete_accounting_location_response import DeleteAccountingLocationResponse from apideck.model.delete_attachment_response import DeleteAttachmentResponse +from apideck.model.delete_bill_payment_response import DeleteBillPaymentResponse from apideck.model.delete_bill_response import DeleteBillResponse from apideck.model.delete_credit_note_response import DeleteCreditNoteResponse from apideck.model.delete_customer_response import DeleteCustomerResponse +from apideck.model.delete_expense_response import DeleteExpenseResponse from apideck.model.delete_invoice_response import DeleteInvoiceResponse from apideck.model.delete_journal_entry_response import DeleteJournalEntryResponse from apideck.model.delete_ledger_account_response import DeleteLedgerAccountResponse @@ -222,6 +227,7 @@ from apideck.model.delete_subsidiary_response import DeleteSubsidiaryResponse from apideck.model.delete_supplier_response import DeleteSupplierResponse from apideck.model.delete_tax_rate_response import DeleteTaxRateResponse from apideck.model.delete_tracking_category_response import DeleteTrackingCategoryResponse +from apideck.model.expense import Expense from apideck.model.get_accounting_department_response import GetAccountingDepartmentResponse from apideck.model.get_accounting_departments_response import GetAccountingDepartmentsResponse from apideck.model.get_accounting_location_response import GetAccountingLocationResponse @@ -229,6 +235,8 @@ from apideck.model.get_accounting_locations_response import GetAccountingLocatio from apideck.model.get_attachment_response import GetAttachmentResponse from apideck.model.get_attachments_response import GetAttachmentsResponse from apideck.model.get_balance_sheet_response import GetBalanceSheetResponse +from apideck.model.get_bill_payment_response import GetBillPaymentResponse +from apideck.model.get_bill_payments_response import GetBillPaymentsResponse from apideck.model.get_bill_response import GetBillResponse from apideck.model.get_bills_response import GetBillsResponse from apideck.model.get_company_info_response import GetCompanyInfoResponse @@ -236,6 +244,8 @@ from apideck.model.get_credit_note_response import GetCreditNoteResponse from apideck.model.get_credit_notes_response import GetCreditNotesResponse from apideck.model.get_customer_response import GetCustomerResponse from apideck.model.get_customers_response import GetCustomersResponse +from apideck.model.get_expense_response import GetExpenseResponse +from apideck.model.get_expenses_response import GetExpensesResponse from apideck.model.get_invoice_item_response import GetInvoiceItemResponse from apideck.model.get_invoice_items_response import GetInvoiceItemsResponse from apideck.model.get_invoice_response import GetInvoiceResponse @@ -290,9 +300,11 @@ from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unprocessable_response import UnprocessableResponse from apideck.model.update_accounting_department_response import UpdateAccountingDepartmentResponse from apideck.model.update_accounting_location_response import UpdateAccountingLocationResponse +from apideck.model.update_bill_payment_response import UpdateBillPaymentResponse from apideck.model.update_bill_response import UpdateBillResponse from apideck.model.update_credit_note_response import UpdateCreditNoteResponse from apideck.model.update_customer_response import UpdateCustomerResponse +from apideck.model.update_expense_response import UpdateExpenseResponse from apideck.model.update_invoice_items_response import UpdateInvoiceItemsResponse from apideck.model.update_invoice_response import UpdateInvoiceResponse from apideck.model.update_journal_entry_response import UpdateJournalEntryResponse @@ -359,6 +371,16 @@ _AccountingApi_ | [**attachments_one**](docs/apis/AccountingApi.md#attachments_o _AccountingApi_ | [**balance_sheet_one**](docs/apis/AccountingApi.md#balance_sheet_one) | **GET** /accounting/balance-sheet | Get BalanceSheet | +_AccountingApi_ | [**bill_payments_add**](docs/apis/AccountingApi.md#bill_payments_add) | **POST** /accounting/bill-payments | Create Bill Payment | + +_AccountingApi_ | [**bill_payments_all**](docs/apis/AccountingApi.md#bill_payments_all) | **GET** /accounting/bill-payments | List Bill Payments | + +_AccountingApi_ | [**bill_payments_delete**](docs/apis/AccountingApi.md#bill_payments_delete) | **DELETE** /accounting/bill-payments/{id} | Delete Bill Payment | + +_AccountingApi_ | [**bill_payments_one**](docs/apis/AccountingApi.md#bill_payments_one) | **GET** /accounting/bill-payments/{id} | Get Bill Payment | + +_AccountingApi_ | [**bill_payments_update**](docs/apis/AccountingApi.md#bill_payments_update) | **PATCH** /accounting/bill-payments/{id} | Update Bill Payment | + _AccountingApi_ | [**bills_add**](docs/apis/AccountingApi.md#bills_add) | **POST** /accounting/bills | Create Bill | _AccountingApi_ | [**bills_all**](docs/apis/AccountingApi.md#bills_all) | **GET** /accounting/bills | List Bills | @@ -401,6 +423,16 @@ _AccountingApi_ | [**departments_one**](docs/apis/AccountingApi.md#departments_o _AccountingApi_ | [**departments_update**](docs/apis/AccountingApi.md#departments_update) | **PATCH** /accounting/departments/{id} | Update Department | +_AccountingApi_ | [**expenses_add**](docs/apis/AccountingApi.md#expenses_add) | **POST** /accounting/expenses | Create Expense | + +_AccountingApi_ | [**expenses_all**](docs/apis/AccountingApi.md#expenses_all) | **GET** /accounting/expenses | List Expenses | + +_AccountingApi_ | [**expenses_delete**](docs/apis/AccountingApi.md#expenses_delete) | **DELETE** /accounting/expenses/{id} | Delete Expense | + +_AccountingApi_ | [**expenses_one**](docs/apis/AccountingApi.md#expenses_one) | **GET** /accounting/expenses/{id} | Get Expense | + +_AccountingApi_ | [**expenses_update**](docs/apis/AccountingApi.md#expenses_update) | **PATCH** /accounting/expenses/{id} | Update Expense | + _AccountingApi_ | [**invoice_items_add**](docs/apis/AccountingApi.md#invoice_items_add) | **POST** /accounting/invoice-items | Create Invoice Item | _AccountingApi_ | [**invoice_items_all**](docs/apis/AccountingApi.md#invoice_items_all) | **GET** /accounting/invoice-items | List Invoice Items | @@ -997,6 +1029,7 @@ _WebhookApi_ | [**webhooks_update**](docs/apis/WebhookApi.md#webhooks_update) | - [Benefit](docs/models/Benefit.md) - [Bill](docs/models/Bill.md) - [BillLineItem](docs/models/BillLineItem.md) + - [BillPayment](docs/models/BillPayment.md) - [BillsFilter](docs/models/BillsFilter.md) - [BillsSort](docs/models/BillsSort.md) - [Branch](docs/models/Branch.md) @@ -1049,6 +1082,7 @@ _WebhookApi_ | [**webhooks_update**](docs/apis/WebhookApi.md#webhooks_update) | - [CreateApplicationResponse](docs/models/CreateApplicationResponse.md) - [CreateAttachmentRequest](docs/models/CreateAttachmentRequest.md) - [CreateAttachmentResponse](docs/models/CreateAttachmentResponse.md) + - [CreateBillPaymentResponse](docs/models/CreateBillPaymentResponse.md) - [CreateBillResponse](docs/models/CreateBillResponse.md) - [CreateCommentResponse](docs/models/CreateCommentResponse.md) - [CreateCompanyResponse](docs/models/CreateCompanyResponse.md) @@ -1065,6 +1099,7 @@ _WebhookApi_ | [**webhooks_update**](docs/apis/WebhookApi.md#webhooks_update) | - [CreateEcommerceCustomerResponse](docs/models/CreateEcommerceCustomerResponse.md) - [CreateEcommerceOrderResponse](docs/models/CreateEcommerceOrderResponse.md) - [CreateEmployeeResponse](docs/models/CreateEmployeeResponse.md) + - [CreateExpenseResponse](docs/models/CreateExpenseResponse.md) - [CreateFileRequest](docs/models/CreateFileRequest.md) - [CreateFileResponse](docs/models/CreateFileResponse.md) - [CreateFolderRequest](docs/models/CreateFolderRequest.md) @@ -1124,6 +1159,7 @@ _WebhookApi_ | [**webhooks_update**](docs/apis/WebhookApi.md#webhooks_update) | - [DeleteApplicantResponse](docs/models/DeleteApplicantResponse.md) - [DeleteApplicationResponse](docs/models/DeleteApplicationResponse.md) - [DeleteAttachmentResponse](docs/models/DeleteAttachmentResponse.md) + - [DeleteBillPaymentResponse](docs/models/DeleteBillPaymentResponse.md) - [DeleteBillResponse](docs/models/DeleteBillResponse.md) - [DeleteCommentResponse](docs/models/DeleteCommentResponse.md) - [DeleteCompanyResponse](docs/models/DeleteCompanyResponse.md) @@ -1137,6 +1173,7 @@ _WebhookApi_ | [**webhooks_update**](docs/apis/WebhookApi.md#webhooks_update) | - [DeleteEcommerceCustomerResponse](docs/models/DeleteEcommerceCustomerResponse.md) - [DeleteEcommerceOrderResponse](docs/models/DeleteEcommerceOrderResponse.md) - [DeleteEmployeeResponse](docs/models/DeleteEmployeeResponse.md) + - [DeleteExpenseResponse](docs/models/DeleteExpenseResponse.md) - [DeleteFileResponse](docs/models/DeleteFileResponse.md) - [DeleteFolderResponse](docs/models/DeleteFolderResponse.md) - [DeleteHrisCompanyResponse](docs/models/DeleteHrisCompanyResponse.md) @@ -1174,6 +1211,7 @@ _WebhookApi_ | [**webhooks_update**](docs/apis/WebhookApi.md#webhooks_update) | - [DeleteWebhookResponse](docs/models/DeleteWebhookResponse.md) - [DeliveryUrl](docs/models/DeliveryUrl.md) - [Department](docs/models/Department.md) + - [DeprecatedLinkedSupplier](docs/models/DeprecatedLinkedSupplier.md) - [DeprecatedLinkedTrackingCategory](docs/models/DeprecatedLinkedTrackingCategory.md) - [Drive](docs/models/Drive.md) - [DriveGroup](docs/models/DriveGroup.md) @@ -1214,6 +1252,8 @@ _WebhookApi_ | [**webhooks_update**](docs/apis/WebhookApi.md#webhooks_update) | - [ExecuteWebhookEventRequest](docs/models/ExecuteWebhookEventRequest.md) - [ExecuteWebhookEventsRequest](docs/models/ExecuteWebhookEventsRequest.md) - [ExecuteWebhookResponse](docs/models/ExecuteWebhookResponse.md) + - [Expense](docs/models/Expense.md) + - [ExpenseLineItem](docs/models/ExpenseLineItem.md) - [FileStorageEventType](docs/models/FileStorageEventType.md) - [FileType](docs/models/FileType.md) - [FilesFilter](docs/models/FilesFilter.md) @@ -1241,6 +1281,8 @@ _WebhookApi_ | [**webhooks_update**](docs/apis/WebhookApi.md#webhooks_update) | - [GetAttachmentResponse](docs/models/GetAttachmentResponse.md) - [GetAttachmentsResponse](docs/models/GetAttachmentsResponse.md) - [GetBalanceSheetResponse](docs/models/GetBalanceSheetResponse.md) + - [GetBillPaymentResponse](docs/models/GetBillPaymentResponse.md) + - [GetBillPaymentsResponse](docs/models/GetBillPaymentsResponse.md) - [GetBillResponse](docs/models/GetBillResponse.md) - [GetBillsResponse](docs/models/GetBillsResponse.md) - [GetCollectionResponse](docs/models/GetCollectionResponse.md) @@ -1287,6 +1329,8 @@ _WebhookApi_ | [**webhooks_update**](docs/apis/WebhookApi.md#webhooks_update) | - [GetEmployeeResponse](docs/models/GetEmployeeResponse.md) - [GetEmployeeSchedulesResponse](docs/models/GetEmployeeSchedulesResponse.md) - [GetEmployeesResponse](docs/models/GetEmployeesResponse.md) + - [GetExpenseResponse](docs/models/GetExpenseResponse.md) + - [GetExpensesResponse](docs/models/GetExpensesResponse.md) - [GetFileResponse](docs/models/GetFileResponse.md) - [GetFilesResponse](docs/models/GetFilesResponse.md) - [GetFolderResponse](docs/models/GetFolderResponse.md) @@ -1460,6 +1504,8 @@ _WebhookApi_ | [**webhooks_update**](docs/apis/WebhookApi.md#webhooks_update) | - [PaymentCard](docs/models/PaymentCard.md) - [PaymentFrequency](docs/models/PaymentFrequency.md) - [PaymentRequiredResponse](docs/models/PaymentRequiredResponse.md) + - [PaymentStatus](docs/models/PaymentStatus.md) + - [PaymentType](docs/models/PaymentType.md) - [PaymentUnit](docs/models/PaymentUnit.md) - [PaymentsFilter](docs/models/PaymentsFilter.md) - [PaymentsSort](docs/models/PaymentsSort.md) @@ -1545,6 +1591,7 @@ _WebhookApi_ | [**webhooks_update**](docs/apis/WebhookApi.md#webhooks_update) | - [UpdateActivityResponse](docs/models/UpdateActivityResponse.md) - [UpdateApplicantResponse](docs/models/UpdateApplicantResponse.md) - [UpdateApplicationResponse](docs/models/UpdateApplicationResponse.md) + - [UpdateBillPaymentResponse](docs/models/UpdateBillPaymentResponse.md) - [UpdateBillResponse](docs/models/UpdateBillResponse.md) - [UpdateCommentResponse](docs/models/UpdateCommentResponse.md) - [UpdateCompanyResponse](docs/models/UpdateCompanyResponse.md) @@ -1562,6 +1609,7 @@ _WebhookApi_ | [**webhooks_update**](docs/apis/WebhookApi.md#webhooks_update) | - [UpdateEcommerceCustomerResponse](docs/models/UpdateEcommerceCustomerResponse.md) - [UpdateEcommerceOrderResponse](docs/models/UpdateEcommerceOrderResponse.md) - [UpdateEmployeeResponse](docs/models/UpdateEmployeeResponse.md) + - [UpdateExpenseResponse](docs/models/UpdateExpenseResponse.md) - [UpdateFileRequest](docs/models/UpdateFileRequest.md) - [UpdateFileResponse](docs/models/UpdateFileResponse.md) - [UpdateFolderRequest](docs/models/UpdateFolderRequest.md) diff --git a/docs/apis/AccountingApi.md b/docs/apis/AccountingApi.md index 2cababf149..178075cf57 100644 --- a/docs/apis/AccountingApi.md +++ b/docs/apis/AccountingApi.md @@ -9,6 +9,11 @@ Method | HTTP request | Description [**attachments_download**](AccountingApi.md#attachments_download) | **GET** /accounting/attachments/{reference_type}/{reference_id}/{id}/download | Download Attachment [**attachments_one**](AccountingApi.md#attachments_one) | **GET** /accounting/attachments/{reference_type}/{reference_id}/{id} | Get Attachment [**balance_sheet_one**](AccountingApi.md#balance_sheet_one) | **GET** /accounting/balance-sheet | Get BalanceSheet +[**bill_payments_add**](AccountingApi.md#bill_payments_add) | **POST** /accounting/bill-payments | Create Bill Payment +[**bill_payments_all**](AccountingApi.md#bill_payments_all) | **GET** /accounting/bill-payments | List Bill Payments +[**bill_payments_delete**](AccountingApi.md#bill_payments_delete) | **DELETE** /accounting/bill-payments/{id} | Delete Bill Payment +[**bill_payments_one**](AccountingApi.md#bill_payments_one) | **GET** /accounting/bill-payments/{id} | Get Bill Payment +[**bill_payments_update**](AccountingApi.md#bill_payments_update) | **PATCH** /accounting/bill-payments/{id} | Update Bill Payment [**bills_add**](AccountingApi.md#bills_add) | **POST** /accounting/bills | Create Bill [**bills_all**](AccountingApi.md#bills_all) | **GET** /accounting/bills | List Bills [**bills_delete**](AccountingApi.md#bills_delete) | **DELETE** /accounting/bills/{id} | Delete Bill @@ -30,6 +35,11 @@ Method | HTTP request | Description [**departments_delete**](AccountingApi.md#departments_delete) | **DELETE** /accounting/departments/{id} | Delete Department [**departments_one**](AccountingApi.md#departments_one) | **GET** /accounting/departments/{id} | Get Department [**departments_update**](AccountingApi.md#departments_update) | **PATCH** /accounting/departments/{id} | Update Department +[**expenses_add**](AccountingApi.md#expenses_add) | **POST** /accounting/expenses | Create Expense +[**expenses_all**](AccountingApi.md#expenses_all) | **GET** /accounting/expenses | List Expenses +[**expenses_delete**](AccountingApi.md#expenses_delete) | **DELETE** /accounting/expenses/{id} | Delete Expense +[**expenses_one**](AccountingApi.md#expenses_one) | **GET** /accounting/expenses/{id} | Get Expense +[**expenses_update**](AccountingApi.md#expenses_update) | **PATCH** /accounting/expenses/{id} | Update Expense [**invoice_items_add**](AccountingApi.md#invoice_items_add) | **POST** /accounting/invoice-items | Create Invoice Item [**invoice_items_all**](AccountingApi.md#invoice_items_all) | **GET** /accounting/invoice-items | List Invoice Items [**invoice_items_delete**](AccountingApi.md#invoice_items_delete) | **DELETE** /accounting/invoice-items/{id} | Delete Invoice Item @@ -647,12 +657,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **bills_add** -> CreateBillResponse bills_add(bill) +# **bill_payments_add** +> CreateBillPaymentResponse bill_payments_add(bill_payment) -Create Bill +Create Bill Payment -Create Bill +Create Bill Payment ### Example @@ -662,12 +672,12 @@ Create Bill import time import apideck from apideck.api import accounting_api +from apideck.model.create_bill_payment_response import CreateBillPaymentResponse from apideck.model.bad_request_response import BadRequestResponse -from apideck.model.bill import Bill from apideck.model.payment_required_response import PaymentRequiredResponse +from apideck.model.bill_payment import BillPayment from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse -from apideck.model.create_bill_response import CreateBillResponse from apideck.model.unprocessable_response import UnprocessableResponse from apideck.model.not_found_response import NotFoundResponse from pprint import pprint @@ -692,8 +702,20 @@ configuration.api_key['apiKey'] = 'YOUR_API_KEY' with apideck.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = accounting_api.AccountingApi(api_client) - bill = Bill( - bill_number="10001", + bill_payment = BillPayment( + currency=Currency("USD"), + currency_rate=0.69, + total_amount=1000, + reference="123456", + payment_method="cash", + payment_method_reference="123456", + payment_method_id="12345", + account=LinkedLedgerAccount( + id="123456", + nominal_code="N091", + code="453", + ), + transaction_date=dateutil_parser('2021-05-01T12:00:00Z'), supplier=LinkedSupplier( id="12345", display_name="Windsurf Shop", @@ -725,92 +747,35 @@ with apideck.ApiClient(configuration) as api_client: ), ), company_id="12345", - currency=Currency("USD"), - currency_rate=0.69, - tax_inclusive=True, - bill_date=dateutil_parser('Wed Sep 30 00:00:00 UTC 2020').date(), - due_date=dateutil_parser('Fri Oct 30 00:00:00 UTC 2020').date(), - paid_date=dateutil_parser('Fri Oct 30 00:00:00 UTC 2020').date(), - po_number="90000117", - reference="123456", - line_items=[ - BillLineItem( - row_id="12345", - code="120-C", - line_number=1, - description="Model Y is a fully electric, mid-size SUV, with seating for up to seven, dual motor AWD and unparalleled protection.", - type="expense_account", - tax_amount=27500, - total_amount=27500, - quantity=1, - unit_price=27500.5, - unit_of_measure="pc.", - discount_percentage=0.01, - discount_amount=19.99, - location_id="1234", - department_id="1234", - item=LinkedInvoiceItem( - id="12344", - code="120-C", - name="Model Y", - ), - tax_rate=LinkedTaxRate( - id="123456", - rate=10, - ), - ledger_account=LinkedLedgerAccount( - id="123456", - nominal_code="N091", - code="453", - ), - tracking_categories=LinkedTrackingCategories([ - LinkedTrackingCategory( - id="123456", - name="New York", - ), - ]), - row_version="1-12345", + reconciled=True, + status=PaymentStatus("authorised"), + type=PaymentType("accounts_receivable"), + allocations=[ + Allocation( + id="123456", + type="invoice", + amount=49.99, + allocation_id="123456", ), ], - terms="Net 30 days", - balance=27500, - deposit=0, - sub_total=27500, - total_tax=2500, - total=27500, - tax_code="1234", - notes="Some notes about this bill.", - status="draft", - ledger_account=LinkedLedgerAccount( - id="123456", - nominal_code="N091", - code="453", - ), - payment_method="cash", - channel="email", - language="EN", - accounting_by_row=False, - bank_account=BankAccount( - bank_name="Monzo", - account_number="123465", - account_name="SPACEX LLC", - account_type="credit_card", - iban="CH2989144532982975332", - bic="AUDSCHGGXXX", - routing_number="012345678", - bsb_number="062-001", - branch_identifier="001", - bank_code="BNH", - currency=Currency("USD"), - ), - discount_percentage=5.5, + note="Some notes about this transaction", + number="123456", tracking_categories=LinkedTrackingCategories([ LinkedTrackingCategory( id="123456", name="New York", ), ]), + custom_fields=[ + CustomField( + id="2389328923893298", + name="employee_level", + description="Employee Level", + value=None, + ), + ], row_version="1-12345", + display_id="123456", pass_through=PassThroughBody([ { service_id="service_id_example", @@ -824,8 +789,7 @@ with apideck.ApiClient(configuration) as api_client: ], }, ]), - accounting_period="01-24", - ) # Bill | + ) # BillPayment | raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) @@ -833,20 +797,20 @@ with apideck.ApiClient(configuration) as api_client: # example passing only required values which don't have defaults set try: - # Create Bill - api_response = api_instance.bills_add(bill) + # Create Bill Payment + api_response = api_instance.bill_payments_add(bill_payment) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->bills_add: %s\n" % e) + print("Exception when calling AccountingApi->bill_payments_add: %s\n" % e) # example passing only required values which don't have defaults set # and optional values try: - # Create Bill - api_response = api_instance.bills_add(bill, raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id) + # Create Bill Payment + api_response = api_instance.bill_payments_add(bill_payment, raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->bills_add: %s\n" % e) + print("Exception when calling AccountingApi->bill_payments_add: %s\n" % e) ``` @@ -854,7 +818,7 @@ with apideck.ApiClient(configuration) as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **bill** | [**Bill**](Bill.md)| | + **bill_payment** | [**BillPayment**](BillPayment.md)| | **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] **app_id** | **str**| The ID of your Unify application | [optional] @@ -862,7 +826,7 @@ Name | Type | Description | Notes ### Return type -[**CreateBillResponse**](CreateBillResponse.md) +[**CreateBillPaymentResponse**](CreateBillPaymentResponse.md) ### Authorization @@ -878,7 +842,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**201** | Bill created | - | +**201** | Bill Payment created | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -888,12 +852,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **bills_all** -> GetBillsResponse bills_all() +# **bill_payments_all** +> GetBillPaymentsResponse bill_payments_all() -List Bills +List Bill Payments -List Bills +List Bill Payments ### Example @@ -903,12 +867,12 @@ List Bills import time import apideck from apideck.api import accounting_api +from apideck.model.payments_sort import PaymentsSort from apideck.model.pass_through_query import PassThroughQuery -from apideck.model.get_bills_response import GetBillsResponse from apideck.model.bad_request_response import BadRequestResponse -from apideck.model.bills_filter import BillsFilter +from apideck.model.get_bill_payments_response import GetBillPaymentsResponse +from apideck.model.payments_filter import PaymentsFilter from apideck.model.payment_required_response import PaymentRequiredResponse -from apideck.model.bills_sort import BillsSort from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse from apideck.model.unprocessable_response import UnprocessableResponse @@ -941,24 +905,24 @@ with apideck.ApiClient(configuration) as api_client: service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) cursor = "cursor_example" # str, none_type | Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional) limit = 20 # int | Number of results to return. Minimum 1, Maximum 200, Default 20 (optional) if omitted the server will use the default value of 20 - filter = BillsFilter( + filter = PaymentsFilter( updated_since=dateutil_parser('2020-09-30T07:43:32Z'), - ) # BillsFilter | Apply filters (optional) - sort = BillsSort( + ) # PaymentsFilter | Apply filters (optional) + sort = PaymentsSort( by="updated_at", direction=SortDirection("asc"), - ) # BillsSort | Apply sorting (optional) + ) # PaymentsSort | Apply sorting (optional) pass_through = PassThroughQuery() # PassThroughQuery | Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional) fields = "id,updated_at" # str, none_type | The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional) # example passing only required values which don't have defaults set # and optional values try: - # List Bills - api_response = api_instance.bills_all(raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id, cursor=cursor, limit=limit, filter=filter, sort=sort, pass_through=pass_through, fields=fields) + # List Bill Payments + api_response = api_instance.bill_payments_all(raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id, cursor=cursor, limit=limit, filter=filter, sort=sort, pass_through=pass_through, fields=fields) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->bills_all: %s\n" % e) + print("Exception when calling AccountingApi->bill_payments_all: %s\n" % e) ``` @@ -972,14 +936,14 @@ Name | Type | Description | Notes **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] **cursor** | **str, none_type**| Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. | [optional] **limit** | **int**| Number of results to return. Minimum 1, Maximum 200, Default 20 | [optional] if omitted the server will use the default value of 20 - **filter** | **BillsFilter**| Apply filters | [optional] - **sort** | **BillsSort**| Apply sorting | [optional] + **filter** | **PaymentsFilter**| Apply filters | [optional] + **sort** | **PaymentsSort**| Apply sorting | [optional] **pass_through** | **PassThroughQuery**| Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads | [optional] **fields** | **str, none_type**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. | [optional] ### Return type -[**GetBillsResponse**](GetBillsResponse.md) +[**GetBillPaymentsResponse**](GetBillPaymentsResponse.md) ### Authorization @@ -995,7 +959,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Bills | - | +**200** | Bill Payments | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -1005,12 +969,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **bills_delete** -> DeleteBillResponse bills_delete(id) +# **bill_payments_delete** +> DeleteBillPaymentResponse bill_payments_delete(id) -Delete Bill +Delete Bill Payment -Delete Bill +Delete Bill Payment ### Example @@ -1021,8 +985,8 @@ import time import apideck from apideck.api import accounting_api from apideck.model.bad_request_response import BadRequestResponse -from apideck.model.delete_bill_response import DeleteBillResponse from apideck.model.payment_required_response import PaymentRequiredResponse +from apideck.model.delete_bill_payment_response import DeleteBillPaymentResponse from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse from apideck.model.unprocessable_response import UnprocessableResponse @@ -1057,20 +1021,20 @@ with apideck.ApiClient(configuration) as api_client: # example passing only required values which don't have defaults set try: - # Delete Bill - api_response = api_instance.bills_delete(id) + # Delete Bill Payment + api_response = api_instance.bill_payments_delete(id) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->bills_delete: %s\n" % e) + print("Exception when calling AccountingApi->bill_payments_delete: %s\n" % e) # example passing only required values which don't have defaults set # and optional values try: - # Delete Bill - api_response = api_instance.bills_delete(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) + # Delete Bill Payment + api_response = api_instance.bill_payments_delete(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->bills_delete: %s\n" % e) + print("Exception when calling AccountingApi->bill_payments_delete: %s\n" % e) ``` @@ -1086,7 +1050,7 @@ Name | Type | Description | Notes ### Return type -[**DeleteBillResponse**](DeleteBillResponse.md) +[**DeleteBillPaymentResponse**](DeleteBillPaymentResponse.md) ### Authorization @@ -1102,7 +1066,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Bill deleted | - | +**200** | Bill Payment deleted | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -1112,12 +1076,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **bills_one** -> GetBillResponse bills_one(id) +# **bill_payments_one** +> GetBillPaymentResponse bill_payments_one(id) -Get Bill +Get Bill Payment -Get Bill +Get Bill Payment ### Example @@ -1128,10 +1092,10 @@ import time import apideck from apideck.api import accounting_api from apideck.model.bad_request_response import BadRequestResponse -from apideck.model.get_bill_response import GetBillResponse from apideck.model.payment_required_response import PaymentRequiredResponse from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse +from apideck.model.get_bill_payment_response import GetBillPaymentResponse from apideck.model.unprocessable_response import UnprocessableResponse from apideck.model.not_found_response import NotFoundResponse from pprint import pprint @@ -1165,20 +1129,20 @@ with apideck.ApiClient(configuration) as api_client: # example passing only required values which don't have defaults set try: - # Get Bill - api_response = api_instance.bills_one(id) + # Get Bill Payment + api_response = api_instance.bill_payments_one(id) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->bills_one: %s\n" % e) + print("Exception when calling AccountingApi->bill_payments_one: %s\n" % e) # example passing only required values which don't have defaults set # and optional values try: - # Get Bill - api_response = api_instance.bills_one(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw, fields=fields) + # Get Bill Payment + api_response = api_instance.bill_payments_one(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw, fields=fields) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->bills_one: %s\n" % e) + print("Exception when calling AccountingApi->bill_payments_one: %s\n" % e) ``` @@ -1195,7 +1159,7 @@ Name | Type | Description | Notes ### Return type -[**GetBillResponse**](GetBillResponse.md) +[**GetBillPaymentResponse**](GetBillPaymentResponse.md) ### Authorization @@ -1211,7 +1175,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Bill | - | +**200** | Bill Payment | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -1221,12 +1185,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **bills_update** -> UpdateBillResponse bills_update(id, bill) +# **bill_payments_update** +> UpdateBillPaymentResponse bill_payments_update(id, bill_payment) -Update Bill +Update Bill Payment -Update Bill +Update Bill Payment ### Example @@ -1236,10 +1200,10 @@ Update Bill import time import apideck from apideck.api import accounting_api +from apideck.model.update_bill_payment_response import UpdateBillPaymentResponse from apideck.model.bad_request_response import BadRequestResponse -from apideck.model.bill import Bill from apideck.model.payment_required_response import PaymentRequiredResponse -from apideck.model.update_bill_response import UpdateBillResponse +from apideck.model.bill_payment import BillPayment from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse from apideck.model.unprocessable_response import UnprocessableResponse @@ -1267,8 +1231,20 @@ with apideck.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = accounting_api.AccountingApi(api_client) id = "id_example" # str | ID of the record you are acting upon. - bill = Bill( - bill_number="10001", + bill_payment = BillPayment( + currency=Currency("USD"), + currency_rate=0.69, + total_amount=1000, + reference="123456", + payment_method="cash", + payment_method_reference="123456", + payment_method_id="12345", + account=LinkedLedgerAccount( + id="123456", + nominal_code="N091", + code="453", + ), + transaction_date=dateutil_parser('2021-05-01T12:00:00Z'), supplier=LinkedSupplier( id="12345", display_name="Windsurf Shop", @@ -1300,92 +1276,35 @@ with apideck.ApiClient(configuration) as api_client: ), ), company_id="12345", - currency=Currency("USD"), - currency_rate=0.69, - tax_inclusive=True, - bill_date=dateutil_parser('Wed Sep 30 00:00:00 UTC 2020').date(), - due_date=dateutil_parser('Fri Oct 30 00:00:00 UTC 2020').date(), - paid_date=dateutil_parser('Fri Oct 30 00:00:00 UTC 2020').date(), - po_number="90000117", - reference="123456", - line_items=[ - BillLineItem( - row_id="12345", - code="120-C", - line_number=1, - description="Model Y is a fully electric, mid-size SUV, with seating for up to seven, dual motor AWD and unparalleled protection.", - type="expense_account", - tax_amount=27500, - total_amount=27500, - quantity=1, - unit_price=27500.5, - unit_of_measure="pc.", - discount_percentage=0.01, - discount_amount=19.99, - location_id="1234", - department_id="1234", - item=LinkedInvoiceItem( - id="12344", - code="120-C", - name="Model Y", - ), - tax_rate=LinkedTaxRate( - id="123456", - rate=10, - ), - ledger_account=LinkedLedgerAccount( - id="123456", - nominal_code="N091", - code="453", - ), - tracking_categories=LinkedTrackingCategories([ - LinkedTrackingCategory( - id="123456", - name="New York", - ), - ]), - row_version="1-12345", + reconciled=True, + status=PaymentStatus("authorised"), + type=PaymentType("accounts_receivable"), + allocations=[ + Allocation( + id="123456", + type="invoice", + amount=49.99, + allocation_id="123456", ), ], - terms="Net 30 days", - balance=27500, - deposit=0, - sub_total=27500, - total_tax=2500, - total=27500, - tax_code="1234", - notes="Some notes about this bill.", - status="draft", - ledger_account=LinkedLedgerAccount( - id="123456", - nominal_code="N091", - code="453", - ), - payment_method="cash", - channel="email", - language="EN", - accounting_by_row=False, - bank_account=BankAccount( - bank_name="Monzo", - account_number="123465", - account_name="SPACEX LLC", - account_type="credit_card", - iban="CH2989144532982975332", - bic="AUDSCHGGXXX", - routing_number="012345678", - bsb_number="062-001", - branch_identifier="001", - bank_code="BNH", - currency=Currency("USD"), - ), - discount_percentage=5.5, + note="Some notes about this transaction", + number="123456", tracking_categories=LinkedTrackingCategories([ LinkedTrackingCategory( id="123456", name="New York", ), ]), + custom_fields=[ + CustomField( + id="2389328923893298", + name="employee_level", + description="Employee Level", + value=None, + ), + ], row_version="1-12345", + display_id="123456", pass_through=PassThroughBody([ { service_id="service_id_example", @@ -1399,8 +1318,7 @@ with apideck.ApiClient(configuration) as api_client: ], }, ]), - accounting_period="01-24", - ) # Bill | + ) # BillPayment | consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) @@ -1408,20 +1326,20 @@ with apideck.ApiClient(configuration) as api_client: # example passing only required values which don't have defaults set try: - # Update Bill - api_response = api_instance.bills_update(id, bill) + # Update Bill Payment + api_response = api_instance.bill_payments_update(id, bill_payment) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->bills_update: %s\n" % e) + print("Exception when calling AccountingApi->bill_payments_update: %s\n" % e) # example passing only required values which don't have defaults set # and optional values try: - # Update Bill - api_response = api_instance.bills_update(id, bill, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) + # Update Bill Payment + api_response = api_instance.bill_payments_update(id, bill_payment, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->bills_update: %s\n" % e) + print("Exception when calling AccountingApi->bill_payments_update: %s\n" % e) ``` @@ -1430,7 +1348,7 @@ with apideck.ApiClient(configuration) as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **id** | **str**| ID of the record you are acting upon. | - **bill** | [**Bill**](Bill.md)| | + **bill_payment** | [**BillPayment**](BillPayment.md)| | **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] **app_id** | **str**| The ID of your Unify application | [optional] **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] @@ -1438,7 +1356,7 @@ Name | Type | Description | Notes ### Return type -[**UpdateBillResponse**](UpdateBillResponse.md) +[**UpdateBillPaymentResponse**](UpdateBillPaymentResponse.md) ### Authorization @@ -1454,7 +1372,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Bill Updated | - | +**200** | Bill Payment updated | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -1464,12 +1382,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **company_info_one** -> GetCompanyInfoResponse company_info_one() +# **bills_add** +> CreateBillResponse bills_add(bill) -Get company info +Create Bill -Get company info +Create Bill ### Example @@ -1479,11 +1397,12 @@ Get company info import time import apideck from apideck.api import accounting_api -from apideck.model.get_company_info_response import GetCompanyInfoResponse from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.bill import Bill from apideck.model.payment_required_response import PaymentRequiredResponse from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse +from apideck.model.create_bill_response import CreateBillResponse from apideck.model.unprocessable_response import UnprocessableResponse from apideck.model.not_found_response import NotFoundResponse from pprint import pprint @@ -1508,20 +1427,161 @@ configuration.api_key['apiKey'] = 'YOUR_API_KEY' with apideck.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = accounting_api.AccountingApi(api_client) + bill = Bill( + bill_number="10001", + supplier=LinkedSupplier( + id="12345", + display_name="Windsurf Shop", + address=Address( + id="123", + type="primary", + string="25 Spring Street, Blackburn, VIC 3130", + name="HQ US", + line1="Main street", + line2="apt #", + line3="Suite #", + line4="delivery instructions", + street_number="25", + city="San Francisco", + state="CA", + postal_code="94104", + country="US", + latitude="40.759211", + longitude="-73.984638", + county="Santa Clara", + contact_name="Elon Musk", + salutation="Mr", + phone_number="111-111-1111", + fax="122-111-1111", + email="elon@musk.com", + website="https://elonmusk.com", + notes="Address notes or delivery instructions.", + row_version="1-12345", + ), + ), + company_id="12345", + currency=Currency("USD"), + currency_rate=0.69, + tax_inclusive=True, + bill_date=dateutil_parser('Wed Sep 30 00:00:00 UTC 2020').date(), + due_date=dateutil_parser('Fri Oct 30 00:00:00 UTC 2020').date(), + paid_date=dateutil_parser('Fri Oct 30 00:00:00 UTC 2020').date(), + po_number="90000117", + reference="123456", + line_items=[ + BillLineItem( + row_id="12345", + code="120-C", + line_number=1, + description="Model Y is a fully electric, mid-size SUV, with seating for up to seven, dual motor AWD and unparalleled protection.", + type="expense_account", + tax_amount=27500, + total_amount=27500, + quantity=1, + unit_price=27500.5, + unit_of_measure="pc.", + discount_percentage=0.01, + discount_amount=19.99, + location_id="1234", + department_id="1234", + item=LinkedInvoiceItem( + id="12344", + code="120-C", + name="Model Y", + ), + tax_rate=LinkedTaxRate( + id="123456", + rate=10, + ), + ledger_account=LinkedLedgerAccount( + id="123456", + nominal_code="N091", + code="453", + ), + tracking_categories=LinkedTrackingCategories([ + LinkedTrackingCategory( + id="123456", + name="New York", + ), + ]), + row_version="1-12345", + ), + ], + terms="Net 30 days", + balance=27500, + deposit=0, + sub_total=27500, + total_tax=2500, + total=27500, + tax_code="1234", + notes="Some notes about this bill.", + status="draft", + ledger_account=LinkedLedgerAccount( + id="123456", + nominal_code="N091", + code="453", + ), + payment_method="cash", + channel="email", + language="EN", + accounting_by_row=False, + bank_account=BankAccount( + bank_name="Monzo", + account_number="123465", + account_name="SPACEX LLC", + account_type="credit_card", + iban="CH2989144532982975332", + bic="AUDSCHGGXXX", + routing_number="012345678", + bsb_number="062-001", + branch_identifier="001", + bank_code="BNH", + currency=Currency("USD"), + ), + discount_percentage=5.5, + tracking_categories=LinkedTrackingCategories([ + LinkedTrackingCategory( + id="123456", + name="New York", + ), + ]), + row_version="1-12345", + pass_through=PassThroughBody([ + { + service_id="service_id_example", + operation_id="operation_id_example", + extend_object={}, + extend_paths=[ + { + path="$.nested.property", + value=None, + }, + ], + }, + ]), + accounting_period="01-24", + ) # Bill | raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) - fields = "id,updated_at" # str, none_type | The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional) + + # example passing only required values which don't have defaults set + try: + # Create Bill + api_response = api_instance.bills_add(bill) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->bills_add: %s\n" % e) # example passing only required values which don't have defaults set # and optional values try: - # Get company info - api_response = api_instance.company_info_one(raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id, fields=fields) + # Create Bill + api_response = api_instance.bills_add(bill, raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->company_info_one: %s\n" % e) + print("Exception when calling AccountingApi->bills_add: %s\n" % e) ``` @@ -1529,15 +1589,15 @@ with apideck.ApiClient(configuration) as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- + **bill** | [**Bill**](Bill.md)| | **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] **app_id** | **str**| The ID of your Unify application | [optional] **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] - **fields** | **str, none_type**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. | [optional] ### Return type -[**GetCompanyInfoResponse**](GetCompanyInfoResponse.md) +[**CreateBillResponse**](CreateBillResponse.md) ### Authorization @@ -1545,7 +1605,7 @@ Name | Type | Description | Notes ### HTTP request headers - - **Content-Type**: Not defined + - **Content-Type**: application/json - **Accept**: application/json @@ -1553,7 +1613,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | CompanyInfo | - | +**201** | Bill created | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -1563,12 +1623,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **credit_notes_add** -> CreateCreditNoteResponse credit_notes_add(credit_note) +# **bills_all** +> GetBillsResponse bills_all() -Create Credit Note +List Bills -Create Credit Note +List Bills ### Example @@ -1578,10 +1638,12 @@ Create Credit Note import time import apideck from apideck.api import accounting_api -from apideck.model.create_credit_note_response import CreateCreditNoteResponse +from apideck.model.pass_through_query import PassThroughQuery +from apideck.model.get_bills_response import GetBillsResponse from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.bills_filter import BillsFilter from apideck.model.payment_required_response import PaymentRequiredResponse -from apideck.model.credit_note import CreditNote +from apideck.model.bills_sort import BillsSort from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse from apideck.model.unprocessable_response import UnprocessableResponse @@ -1608,194 +1670,30 @@ configuration.api_key['apiKey'] = 'YOUR_API_KEY' with apideck.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = accounting_api.AccountingApi(api_client) - credit_note = CreditNote( - number="OIT00546", - customer=LinkedCustomer( - id="12345", - display_name="Windsurf Shop", - name="Windsurf Shop", - email="boring@boring.com", - ), - company_id="12345", - currency=Currency("USD"), - currency_rate=0.69, - tax_inclusive=True, - sub_total=27500, - total_amount=49.99, - total_tax=2500, - tax_code="1234", - balance=27500, - remaining_credit=27500, - status="authorised", - reference="123456", - date_issued=dateutil_parser('2021-05-01T12:00:00Z'), - date_paid=dateutil_parser('2021-05-01T12:00:00Z'), - type="accounts_receivable_credit", - account=LinkedLedgerAccount( - id="123456", - nominal_code="N091", - code="453", - ), - line_items=[ - InvoiceLineItem( - id="12345", - row_id="12345", - code="120-C", - line_number=1, - description="Model Y is a fully electric, mid-size SUV, with seating for up to seven, dual motor AWD and unparalleled protection.", - type="sales_item", - tax_amount=27500, - total_amount=27500, - quantity=1, - unit_price=27500.5, - unit_of_measure="pc.", - discount_percentage=0.01, - discount_amount=19.99, - location_id="1234", - department_id="1234", - item=LinkedInvoiceItem( - id="12344", - code="120-C", - name="Model Y", - ), - tax_rate=LinkedTaxRate( - id="123456", - rate=10, - ), - tracking_categories=LinkedTrackingCategories([ - LinkedTrackingCategory( - id="123456", - name="New York", - ), - ]), - ledger_account=LinkedLedgerAccount( - id="123456", - nominal_code="N091", - code="453", - ), - custom_fields=[ - CustomField( - id="2389328923893298", - name="employee_level", - description="Employee Level", - value=None, - ), - ], - row_version="1-12345", - ), - ], - allocations=[ - Allocation( - id="123456", - type="invoice", - amount=49.99, - allocation_id="123456", - ), - ], - note="Some notes about this credit note", - terms="Some terms about this credit note", - billing_address=Address( - id="123", - type="primary", - string="25 Spring Street, Blackburn, VIC 3130", - name="HQ US", - line1="Main street", - line2="apt #", - line3="Suite #", - line4="delivery instructions", - street_number="25", - city="San Francisco", - state="CA", - postal_code="94104", - country="US", - latitude="40.759211", - longitude="-73.984638", - county="Santa Clara", - contact_name="Elon Musk", - salutation="Mr", - phone_number="111-111-1111", - fax="122-111-1111", - email="elon@musk.com", - website="https://elonmusk.com", - notes="Address notes or delivery instructions.", - row_version="1-12345", - ), - shipping_address=Address( - id="123", - type="primary", - string="25 Spring Street, Blackburn, VIC 3130", - name="HQ US", - line1="Main street", - line2="apt #", - line3="Suite #", - line4="delivery instructions", - street_number="25", - city="San Francisco", - state="CA", - postal_code="94104", - country="US", - latitude="40.759211", - longitude="-73.984638", - county="Santa Clara", - contact_name="Elon Musk", - salutation="Mr", - phone_number="111-111-1111", - fax="122-111-1111", - email="elon@musk.com", - website="https://elonmusk.com", - notes="Address notes or delivery instructions.", - row_version="1-12345", - ), - tracking_categories=LinkedTrackingCategories([ - LinkedTrackingCategory( - id="123456", - name="New York", - ), - ]), - custom_fields=[ - CustomField( - id="2389328923893298", - name="employee_level", - description="Employee Level", - value=None, - ), - ], - row_version="1-12345", - pass_through=PassThroughBody([ - { - service_id="service_id_example", - operation_id="operation_id_example", - extend_object={}, - extend_paths=[ - { - path="$.nested.property", - value=None, - }, - ], - }, - ]), - ) # CreditNote | raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) - - # example passing only required values which don't have defaults set - try: - # Create Credit Note - api_response = api_instance.credit_notes_add(credit_note) - pprint(api_response) - except apideck.ApiException as e: - print("Exception when calling AccountingApi->credit_notes_add: %s\n" % e) + cursor = "cursor_example" # str, none_type | Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional) + limit = 20 # int | Number of results to return. Minimum 1, Maximum 200, Default 20 (optional) if omitted the server will use the default value of 20 + filter = BillsFilter( + updated_since=dateutil_parser('2020-09-30T07:43:32Z'), + ) # BillsFilter | Apply filters (optional) + sort = BillsSort( + by="updated_at", + direction=SortDirection("asc"), + ) # BillsSort | Apply sorting (optional) + pass_through = PassThroughQuery() # PassThroughQuery | Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional) + fields = "id,updated_at" # str, none_type | The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional) # example passing only required values which don't have defaults set # and optional values try: - # Create Credit Note - api_response = api_instance.credit_notes_add(credit_note, raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id) + # List Bills + api_response = api_instance.bills_all(raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id, cursor=cursor, limit=limit, filter=filter, sort=sort, pass_through=pass_through, fields=fields) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->credit_notes_add: %s\n" % e) + print("Exception when calling AccountingApi->bills_all: %s\n" % e) ``` @@ -1803,15 +1701,20 @@ with apideck.ApiClient(configuration) as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **credit_note** | [**CreditNote**](CreditNote.md)| | **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] **app_id** | **str**| The ID of your Unify application | [optional] **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] + **cursor** | **str, none_type**| Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. | [optional] + **limit** | **int**| Number of results to return. Minimum 1, Maximum 200, Default 20 | [optional] if omitted the server will use the default value of 20 + **filter** | **BillsFilter**| Apply filters | [optional] + **sort** | **BillsSort**| Apply sorting | [optional] + **pass_through** | **PassThroughQuery**| Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads | [optional] + **fields** | **str, none_type**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. | [optional] ### Return type -[**CreateCreditNoteResponse**](CreateCreditNoteResponse.md) +[**GetBillsResponse**](GetBillsResponse.md) ### Authorization @@ -1819,7 +1722,7 @@ Name | Type | Description | Notes ### HTTP request headers - - **Content-Type**: application/json + - **Content-Type**: Not defined - **Accept**: application/json @@ -1827,7 +1730,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**201** | Credit Note created | - | +**200** | Bills | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -1837,12 +1740,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **credit_notes_all** -> GetCreditNotesResponse credit_notes_all() +# **bills_delete** +> DeleteBillResponse bills_delete(id) -List Credit Notes +Delete Bill -List Credit Notes +Delete Bill ### Example @@ -1852,12 +1755,9 @@ List Credit Notes import time import apideck from apideck.api import accounting_api -from apideck.model.get_credit_notes_response import GetCreditNotesResponse -from apideck.model.pass_through_query import PassThroughQuery from apideck.model.bad_request_response import BadRequestResponse -from apideck.model.credit_notes_sort import CreditNotesSort +from apideck.model.delete_bill_response import DeleteBillResponse from apideck.model.payment_required_response import PaymentRequiredResponse -from apideck.model.credit_notes_filter import CreditNotesFilter from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse from apideck.model.unprocessable_response import UnprocessableResponse @@ -1884,30 +1784,28 @@ configuration.api_key['apiKey'] = 'YOUR_API_KEY' with apideck.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = accounting_api.AccountingApi(api_client) - raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False + id = "id_example" # str | ID of the record you are acting upon. consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) - cursor = "cursor_example" # str, none_type | Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional) - limit = 20 # int | Number of results to return. Minimum 1, Maximum 200, Default 20 (optional) if omitted the server will use the default value of 20 - filter = CreditNotesFilter( - updated_since=dateutil_parser('2020-09-30T07:43:32Z'), - ) # CreditNotesFilter | Apply filters (optional) - sort = CreditNotesSort( - by="updated_at", - direction=SortDirection("asc"), - ) # CreditNotesSort | Apply sorting (optional) - pass_through = PassThroughQuery() # PassThroughQuery | Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional) - fields = "id,updated_at" # str, none_type | The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional) + raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False + + # example passing only required values which don't have defaults set + try: + # Delete Bill + api_response = api_instance.bills_delete(id) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->bills_delete: %s\n" % e) # example passing only required values which don't have defaults set # and optional values try: - # List Credit Notes - api_response = api_instance.credit_notes_all(raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id, cursor=cursor, limit=limit, filter=filter, sort=sort, pass_through=pass_through, fields=fields) + # Delete Bill + api_response = api_instance.bills_delete(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->credit_notes_all: %s\n" % e) + print("Exception when calling AccountingApi->bills_delete: %s\n" % e) ``` @@ -1915,20 +1813,15 @@ with apideck.ApiClient(configuration) as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False + **id** | **str**| ID of the record you are acting upon. | **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] **app_id** | **str**| The ID of your Unify application | [optional] **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] - **cursor** | **str, none_type**| Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. | [optional] - **limit** | **int**| Number of results to return. Minimum 1, Maximum 200, Default 20 | [optional] if omitted the server will use the default value of 20 - **filter** | **CreditNotesFilter**| Apply filters | [optional] - **sort** | **CreditNotesSort**| Apply sorting | [optional] - **pass_through** | **PassThroughQuery**| Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads | [optional] - **fields** | **str, none_type**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. | [optional] + **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False ### Return type -[**GetCreditNotesResponse**](GetCreditNotesResponse.md) +[**DeleteBillResponse**](DeleteBillResponse.md) ### Authorization @@ -1944,7 +1837,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Credit Notes | - | +**200** | Bill deleted | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -1954,12 +1847,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **credit_notes_delete** -> DeleteCreditNoteResponse credit_notes_delete(id) +# **bills_one** +> GetBillResponse bills_one(id) -Delete Credit Note +Get Bill -Delete Credit Note +Get Bill ### Example @@ -1970,10 +1863,10 @@ import time import apideck from apideck.api import accounting_api from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.get_bill_response import GetBillResponse from apideck.model.payment_required_response import PaymentRequiredResponse from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse -from apideck.model.delete_credit_note_response import DeleteCreditNoteResponse from apideck.model.unprocessable_response import UnprocessableResponse from apideck.model.not_found_response import NotFoundResponse from pprint import pprint @@ -2003,23 +1896,24 @@ with apideck.ApiClient(configuration) as api_client: app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False + fields = "id,updated_at" # str, none_type | The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional) # example passing only required values which don't have defaults set try: - # Delete Credit Note - api_response = api_instance.credit_notes_delete(id) + # Get Bill + api_response = api_instance.bills_one(id) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->credit_notes_delete: %s\n" % e) + print("Exception when calling AccountingApi->bills_one: %s\n" % e) # example passing only required values which don't have defaults set # and optional values try: - # Delete Credit Note - api_response = api_instance.credit_notes_delete(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) + # Get Bill + api_response = api_instance.bills_one(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw, fields=fields) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->credit_notes_delete: %s\n" % e) + print("Exception when calling AccountingApi->bills_one: %s\n" % e) ``` @@ -2032,10 +1926,11 @@ Name | Type | Description | Notes **app_id** | **str**| The ID of your Unify application | [optional] **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False + **fields** | **str, none_type**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. | [optional] ### Return type -[**DeleteCreditNoteResponse**](DeleteCreditNoteResponse.md) +[**GetBillResponse**](GetBillResponse.md) ### Authorization @@ -2051,7 +1946,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Credit Note deleted | - | +**200** | Bill | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -2061,12 +1956,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **credit_notes_one** -> GetCreditNoteResponse credit_notes_one(id) +# **bills_update** +> UpdateBillResponse bills_update(id, bill) -Get Credit Note +Update Bill -Get Credit Note +Update Bill ### Example @@ -2077,10 +1972,11 @@ import time import apideck from apideck.api import accounting_api from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.bill import Bill from apideck.model.payment_required_response import PaymentRequiredResponse +from apideck.model.update_bill_response import UpdateBillResponse from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse -from apideck.model.get_credit_note_response import GetCreditNoteResponse from apideck.model.unprocessable_response import UnprocessableResponse from apideck.model.not_found_response import NotFoundResponse from pprint import pprint @@ -2106,28 +2002,161 @@ with apideck.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = accounting_api.AccountingApi(api_client) id = "id_example" # str | ID of the record you are acting upon. + bill = Bill( + bill_number="10001", + supplier=LinkedSupplier( + id="12345", + display_name="Windsurf Shop", + address=Address( + id="123", + type="primary", + string="25 Spring Street, Blackburn, VIC 3130", + name="HQ US", + line1="Main street", + line2="apt #", + line3="Suite #", + line4="delivery instructions", + street_number="25", + city="San Francisco", + state="CA", + postal_code="94104", + country="US", + latitude="40.759211", + longitude="-73.984638", + county="Santa Clara", + contact_name="Elon Musk", + salutation="Mr", + phone_number="111-111-1111", + fax="122-111-1111", + email="elon@musk.com", + website="https://elonmusk.com", + notes="Address notes or delivery instructions.", + row_version="1-12345", + ), + ), + company_id="12345", + currency=Currency("USD"), + currency_rate=0.69, + tax_inclusive=True, + bill_date=dateutil_parser('Wed Sep 30 00:00:00 UTC 2020').date(), + due_date=dateutil_parser('Fri Oct 30 00:00:00 UTC 2020').date(), + paid_date=dateutil_parser('Fri Oct 30 00:00:00 UTC 2020').date(), + po_number="90000117", + reference="123456", + line_items=[ + BillLineItem( + row_id="12345", + code="120-C", + line_number=1, + description="Model Y is a fully electric, mid-size SUV, with seating for up to seven, dual motor AWD and unparalleled protection.", + type="expense_account", + tax_amount=27500, + total_amount=27500, + quantity=1, + unit_price=27500.5, + unit_of_measure="pc.", + discount_percentage=0.01, + discount_amount=19.99, + location_id="1234", + department_id="1234", + item=LinkedInvoiceItem( + id="12344", + code="120-C", + name="Model Y", + ), + tax_rate=LinkedTaxRate( + id="123456", + rate=10, + ), + ledger_account=LinkedLedgerAccount( + id="123456", + nominal_code="N091", + code="453", + ), + tracking_categories=LinkedTrackingCategories([ + LinkedTrackingCategory( + id="123456", + name="New York", + ), + ]), + row_version="1-12345", + ), + ], + terms="Net 30 days", + balance=27500, + deposit=0, + sub_total=27500, + total_tax=2500, + total=27500, + tax_code="1234", + notes="Some notes about this bill.", + status="draft", + ledger_account=LinkedLedgerAccount( + id="123456", + nominal_code="N091", + code="453", + ), + payment_method="cash", + channel="email", + language="EN", + accounting_by_row=False, + bank_account=BankAccount( + bank_name="Monzo", + account_number="123465", + account_name="SPACEX LLC", + account_type="credit_card", + iban="CH2989144532982975332", + bic="AUDSCHGGXXX", + routing_number="012345678", + bsb_number="062-001", + branch_identifier="001", + bank_code="BNH", + currency=Currency("USD"), + ), + discount_percentage=5.5, + tracking_categories=LinkedTrackingCategories([ + LinkedTrackingCategory( + id="123456", + name="New York", + ), + ]), + row_version="1-12345", + pass_through=PassThroughBody([ + { + service_id="service_id_example", + operation_id="operation_id_example", + extend_object={}, + extend_paths=[ + { + path="$.nested.property", + value=None, + }, + ], + }, + ]), + accounting_period="01-24", + ) # Bill | consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False - fields = "id,updated_at" # str, none_type | The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional) # example passing only required values which don't have defaults set try: - # Get Credit Note - api_response = api_instance.credit_notes_one(id) + # Update Bill + api_response = api_instance.bills_update(id, bill) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->credit_notes_one: %s\n" % e) + print("Exception when calling AccountingApi->bills_update: %s\n" % e) # example passing only required values which don't have defaults set # and optional values try: - # Get Credit Note - api_response = api_instance.credit_notes_one(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw, fields=fields) + # Update Bill + api_response = api_instance.bills_update(id, bill, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->credit_notes_one: %s\n" % e) + print("Exception when calling AccountingApi->bills_update: %s\n" % e) ``` @@ -2136,15 +2165,15 @@ with apideck.ApiClient(configuration) as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **id** | **str**| ID of the record you are acting upon. | + **bill** | [**Bill**](Bill.md)| | **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] **app_id** | **str**| The ID of your Unify application | [optional] **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False - **fields** | **str, none_type**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. | [optional] ### Return type -[**GetCreditNoteResponse**](GetCreditNoteResponse.md) +[**UpdateBillResponse**](UpdateBillResponse.md) ### Authorization @@ -2152,7 +2181,7 @@ Name | Type | Description | Notes ### HTTP request headers - - **Content-Type**: Not defined + - **Content-Type**: application/json - **Accept**: application/json @@ -2160,7 +2189,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Credit Note | - | +**200** | Bill Updated | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -2170,12 +2199,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **credit_notes_update** -> UpdateCreditNoteResponse credit_notes_update(id, credit_note) +# **company_info_one** +> GetCompanyInfoResponse company_info_one() -Update Credit Note +Get company info -Update Credit Note +Get company info ### Example @@ -2185,10 +2214,9 @@ Update Credit Note import time import apideck from apideck.api import accounting_api -from apideck.model.update_credit_note_response import UpdateCreditNoteResponse +from apideck.model.get_company_info_response import GetCompanyInfoResponse from apideck.model.bad_request_response import BadRequestResponse from apideck.model.payment_required_response import PaymentRequiredResponse -from apideck.model.credit_note import CreditNote from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse from apideck.model.unprocessable_response import UnprocessableResponse @@ -2215,86 +2243,185 @@ configuration.api_key['apiKey'] = 'YOUR_API_KEY' with apideck.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = accounting_api.AccountingApi(api_client) - id = "id_example" # str | ID of the record you are acting upon. - credit_note = CreditNote( - number="OIT00546", - customer=LinkedCustomer( - id="12345", - display_name="Windsurf Shop", - name="Windsurf Shop", - email="boring@boring.com", - ), - company_id="12345", - currency=Currency("USD"), - currency_rate=0.69, - tax_inclusive=True, - sub_total=27500, - total_amount=49.99, - total_tax=2500, - tax_code="1234", - balance=27500, - remaining_credit=27500, - status="authorised", - reference="123456", - date_issued=dateutil_parser('2021-05-01T12:00:00Z'), - date_paid=dateutil_parser('2021-05-01T12:00:00Z'), - type="accounts_receivable_credit", - account=LinkedLedgerAccount( - id="123456", - nominal_code="N091", - code="453", - ), - line_items=[ - InvoiceLineItem( - id="12345", - row_id="12345", - code="120-C", - line_number=1, - description="Model Y is a fully electric, mid-size SUV, with seating for up to seven, dual motor AWD and unparalleled protection.", - type="sales_item", - tax_amount=27500, - total_amount=27500, - quantity=1, - unit_price=27500.5, - unit_of_measure="pc.", - discount_percentage=0.01, - discount_amount=19.99, - location_id="1234", - department_id="1234", - item=LinkedInvoiceItem( - id="12344", - code="120-C", - name="Model Y", - ), - tax_rate=LinkedTaxRate( - id="123456", - rate=10, - ), - tracking_categories=LinkedTrackingCategories([ - LinkedTrackingCategory( - id="123456", - name="New York", - ), - ]), - ledger_account=LinkedLedgerAccount( - id="123456", - nominal_code="N091", - code="453", - ), - custom_fields=[ - CustomField( - id="2389328923893298", - name="employee_level", - description="Employee Level", - value=None, - ), - ], - row_version="1-12345", - ), - ], - allocations=[ - Allocation( - id="123456", + raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False + consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) + app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) + service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) + fields = "id,updated_at" # str, none_type | The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional) + + # example passing only required values which don't have defaults set + # and optional values + try: + # Get company info + api_response = api_instance.company_info_one(raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id, fields=fields) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->company_info_one: %s\n" % e) +``` + + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False + **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] + **app_id** | **str**| The ID of your Unify application | [optional] + **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] + **fields** | **str, none_type**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. | [optional] + +### Return type + +[**GetCompanyInfoResponse**](GetCompanyInfoResponse.md) + +### Authorization + +[apiKey](../../README.md#apiKey) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: application/json + + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | CompanyInfo | - | +**400** | Bad Request | - | +**401** | Unauthorized | - | +**402** | Payment Required | - | +**404** | The specified resource was not found | - | +**422** | Unprocessable | - | +**0** | Unexpected error | - | + +[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) + +# **credit_notes_add** +> CreateCreditNoteResponse credit_notes_add(credit_note) + +Create Credit Note + +Create Credit Note + +### Example + +* Api Key Authentication (apiKey): + +```python +import time +import apideck +from apideck.api import accounting_api +from apideck.model.create_credit_note_response import CreateCreditNoteResponse +from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.payment_required_response import PaymentRequiredResponse +from apideck.model.credit_note import CreditNote +from apideck.model.unexpected_error_response import UnexpectedErrorResponse +from apideck.model.unauthorized_response import UnauthorizedResponse +from apideck.model.unprocessable_response import UnprocessableResponse +from apideck.model.not_found_response import NotFoundResponse +from pprint import pprint +# Defining the host is optional and defaults to https://unify.apideck.com +# See configuration.py for a list of all supported configuration parameters. +configuration = apideck.Configuration( + host = "https://unify.apideck.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure API key authorization: apiKey +configuration.api_key['apiKey'] = 'YOUR_API_KEY' + +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['apiKey'] = 'Bearer' + +# Enter a context with an instance of the API client +with apideck.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = accounting_api.AccountingApi(api_client) + credit_note = CreditNote( + number="OIT00546", + customer=LinkedCustomer( + id="12345", + display_name="Windsurf Shop", + name="Windsurf Shop", + email="boring@boring.com", + ), + company_id="12345", + currency=Currency("USD"), + currency_rate=0.69, + tax_inclusive=True, + sub_total=27500, + total_amount=49.99, + total_tax=2500, + tax_code="1234", + balance=27500, + remaining_credit=27500, + status="authorised", + reference="123456", + date_issued=dateutil_parser('2021-05-01T12:00:00Z'), + date_paid=dateutil_parser('2021-05-01T12:00:00Z'), + type="accounts_receivable_credit", + account=LinkedLedgerAccount( + id="123456", + nominal_code="N091", + code="453", + ), + line_items=[ + InvoiceLineItem( + id="12345", + row_id="12345", + code="120-C", + line_number=1, + description="Model Y is a fully electric, mid-size SUV, with seating for up to seven, dual motor AWD and unparalleled protection.", + type="sales_item", + tax_amount=27500, + total_amount=27500, + quantity=1, + unit_price=27500.5, + unit_of_measure="pc.", + discount_percentage=0.01, + discount_amount=19.99, + location_id="1234", + department_id="1234", + item=LinkedInvoiceItem( + id="12344", + code="120-C", + name="Model Y", + ), + tax_rate=LinkedTaxRate( + id="123456", + rate=10, + ), + tracking_categories=LinkedTrackingCategories([ + LinkedTrackingCategory( + id="123456", + name="New York", + ), + ]), + ledger_account=LinkedLedgerAccount( + id="123456", + nominal_code="N091", + code="453", + ), + custom_fields=[ + CustomField( + id="2389328923893298", + name="employee_level", + description="Employee Level", + value=None, + ), + ], + row_version="1-12345", + ), + ], + allocations=[ + Allocation( + id="123456", type="invoice", amount=49.99, allocation_id="123456", @@ -2383,27 +2510,1194 @@ with apideck.ApiClient(configuration) as api_client: }, ]), ) # CreditNote | + raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False + consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) + app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) + service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) + + # example passing only required values which don't have defaults set + try: + # Create Credit Note + api_response = api_instance.credit_notes_add(credit_note) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->credit_notes_add: %s\n" % e) + + # example passing only required values which don't have defaults set + # and optional values + try: + # Create Credit Note + api_response = api_instance.credit_notes_add(credit_note, raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->credit_notes_add: %s\n" % e) +``` + + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **credit_note** | [**CreditNote**](CreditNote.md)| | + **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False + **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] + **app_id** | **str**| The ID of your Unify application | [optional] + **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] + +### Return type + +[**CreateCreditNoteResponse**](CreateCreditNoteResponse.md) + +### Authorization + +[apiKey](../../README.md#apiKey) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**201** | Credit Note created | - | +**400** | Bad Request | - | +**401** | Unauthorized | - | +**402** | Payment Required | - | +**404** | The specified resource was not found | - | +**422** | Unprocessable | - | +**0** | Unexpected error | - | + +[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) + +# **credit_notes_all** +> GetCreditNotesResponse credit_notes_all() + +List Credit Notes + +List Credit Notes + +### Example + +* Api Key Authentication (apiKey): + +```python +import time +import apideck +from apideck.api import accounting_api +from apideck.model.get_credit_notes_response import GetCreditNotesResponse +from apideck.model.pass_through_query import PassThroughQuery +from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.credit_notes_sort import CreditNotesSort +from apideck.model.payment_required_response import PaymentRequiredResponse +from apideck.model.credit_notes_filter import CreditNotesFilter +from apideck.model.unexpected_error_response import UnexpectedErrorResponse +from apideck.model.unauthorized_response import UnauthorizedResponse +from apideck.model.unprocessable_response import UnprocessableResponse +from apideck.model.not_found_response import NotFoundResponse +from pprint import pprint +# Defining the host is optional and defaults to https://unify.apideck.com +# See configuration.py for a list of all supported configuration parameters. +configuration = apideck.Configuration( + host = "https://unify.apideck.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure API key authorization: apiKey +configuration.api_key['apiKey'] = 'YOUR_API_KEY' + +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['apiKey'] = 'Bearer' + +# Enter a context with an instance of the API client +with apideck.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = accounting_api.AccountingApi(api_client) + raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False + consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) + app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) + service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) + cursor = "cursor_example" # str, none_type | Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional) + limit = 20 # int | Number of results to return. Minimum 1, Maximum 200, Default 20 (optional) if omitted the server will use the default value of 20 + filter = CreditNotesFilter( + updated_since=dateutil_parser('2020-09-30T07:43:32Z'), + ) # CreditNotesFilter | Apply filters (optional) + sort = CreditNotesSort( + by="updated_at", + direction=SortDirection("asc"), + ) # CreditNotesSort | Apply sorting (optional) + pass_through = PassThroughQuery() # PassThroughQuery | Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional) + fields = "id,updated_at" # str, none_type | The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional) + + # example passing only required values which don't have defaults set + # and optional values + try: + # List Credit Notes + api_response = api_instance.credit_notes_all(raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id, cursor=cursor, limit=limit, filter=filter, sort=sort, pass_through=pass_through, fields=fields) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->credit_notes_all: %s\n" % e) +``` + + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False + **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] + **app_id** | **str**| The ID of your Unify application | [optional] + **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] + **cursor** | **str, none_type**| Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. | [optional] + **limit** | **int**| Number of results to return. Minimum 1, Maximum 200, Default 20 | [optional] if omitted the server will use the default value of 20 + **filter** | **CreditNotesFilter**| Apply filters | [optional] + **sort** | **CreditNotesSort**| Apply sorting | [optional] + **pass_through** | **PassThroughQuery**| Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads | [optional] + **fields** | **str, none_type**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. | [optional] + +### Return type + +[**GetCreditNotesResponse**](GetCreditNotesResponse.md) + +### Authorization + +[apiKey](../../README.md#apiKey) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: application/json + + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | Credit Notes | - | +**400** | Bad Request | - | +**401** | Unauthorized | - | +**402** | Payment Required | - | +**404** | The specified resource was not found | - | +**422** | Unprocessable | - | +**0** | Unexpected error | - | + +[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) + +# **credit_notes_delete** +> DeleteCreditNoteResponse credit_notes_delete(id) + +Delete Credit Note + +Delete Credit Note + +### Example + +* Api Key Authentication (apiKey): + +```python +import time +import apideck +from apideck.api import accounting_api +from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.payment_required_response import PaymentRequiredResponse +from apideck.model.unexpected_error_response import UnexpectedErrorResponse +from apideck.model.unauthorized_response import UnauthorizedResponse +from apideck.model.delete_credit_note_response import DeleteCreditNoteResponse +from apideck.model.unprocessable_response import UnprocessableResponse +from apideck.model.not_found_response import NotFoundResponse +from pprint import pprint +# Defining the host is optional and defaults to https://unify.apideck.com +# See configuration.py for a list of all supported configuration parameters. +configuration = apideck.Configuration( + host = "https://unify.apideck.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure API key authorization: apiKey +configuration.api_key['apiKey'] = 'YOUR_API_KEY' + +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['apiKey'] = 'Bearer' + +# Enter a context with an instance of the API client +with apideck.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = accounting_api.AccountingApi(api_client) + id = "id_example" # str | ID of the record you are acting upon. + consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) + app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) + service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) + raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False + + # example passing only required values which don't have defaults set + try: + # Delete Credit Note + api_response = api_instance.credit_notes_delete(id) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->credit_notes_delete: %s\n" % e) + + # example passing only required values which don't have defaults set + # and optional values + try: + # Delete Credit Note + api_response = api_instance.credit_notes_delete(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->credit_notes_delete: %s\n" % e) +``` + + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **id** | **str**| ID of the record you are acting upon. | + **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] + **app_id** | **str**| The ID of your Unify application | [optional] + **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] + **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False + +### Return type + +[**DeleteCreditNoteResponse**](DeleteCreditNoteResponse.md) + +### Authorization + +[apiKey](../../README.md#apiKey) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: application/json + + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | Credit Note deleted | - | +**400** | Bad Request | - | +**401** | Unauthorized | - | +**402** | Payment Required | - | +**404** | The specified resource was not found | - | +**422** | Unprocessable | - | +**0** | Unexpected error | - | + +[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) + +# **credit_notes_one** +> GetCreditNoteResponse credit_notes_one(id) + +Get Credit Note + +Get Credit Note + +### Example + +* Api Key Authentication (apiKey): + +```python +import time +import apideck +from apideck.api import accounting_api +from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.payment_required_response import PaymentRequiredResponse +from apideck.model.unexpected_error_response import UnexpectedErrorResponse +from apideck.model.unauthorized_response import UnauthorizedResponse +from apideck.model.get_credit_note_response import GetCreditNoteResponse +from apideck.model.unprocessable_response import UnprocessableResponse +from apideck.model.not_found_response import NotFoundResponse +from pprint import pprint +# Defining the host is optional and defaults to https://unify.apideck.com +# See configuration.py for a list of all supported configuration parameters. +configuration = apideck.Configuration( + host = "https://unify.apideck.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure API key authorization: apiKey +configuration.api_key['apiKey'] = 'YOUR_API_KEY' + +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['apiKey'] = 'Bearer' + +# Enter a context with an instance of the API client +with apideck.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = accounting_api.AccountingApi(api_client) + id = "id_example" # str | ID of the record you are acting upon. + consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) + app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) + service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) + raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False + fields = "id,updated_at" # str, none_type | The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional) + + # example passing only required values which don't have defaults set + try: + # Get Credit Note + api_response = api_instance.credit_notes_one(id) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->credit_notes_one: %s\n" % e) + + # example passing only required values which don't have defaults set + # and optional values + try: + # Get Credit Note + api_response = api_instance.credit_notes_one(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw, fields=fields) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->credit_notes_one: %s\n" % e) +``` + + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **id** | **str**| ID of the record you are acting upon. | + **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] + **app_id** | **str**| The ID of your Unify application | [optional] + **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] + **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False + **fields** | **str, none_type**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. | [optional] + +### Return type + +[**GetCreditNoteResponse**](GetCreditNoteResponse.md) + +### Authorization + +[apiKey](../../README.md#apiKey) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: application/json + + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | Credit Note | - | +**400** | Bad Request | - | +**401** | Unauthorized | - | +**402** | Payment Required | - | +**404** | The specified resource was not found | - | +**422** | Unprocessable | - | +**0** | Unexpected error | - | + +[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) + +# **credit_notes_update** +> UpdateCreditNoteResponse credit_notes_update(id, credit_note) + +Update Credit Note + +Update Credit Note + +### Example + +* Api Key Authentication (apiKey): + +```python +import time +import apideck +from apideck.api import accounting_api +from apideck.model.update_credit_note_response import UpdateCreditNoteResponse +from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.payment_required_response import PaymentRequiredResponse +from apideck.model.credit_note import CreditNote +from apideck.model.unexpected_error_response import UnexpectedErrorResponse +from apideck.model.unauthorized_response import UnauthorizedResponse +from apideck.model.unprocessable_response import UnprocessableResponse +from apideck.model.not_found_response import NotFoundResponse +from pprint import pprint +# Defining the host is optional and defaults to https://unify.apideck.com +# See configuration.py for a list of all supported configuration parameters. +configuration = apideck.Configuration( + host = "https://unify.apideck.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure API key authorization: apiKey +configuration.api_key['apiKey'] = 'YOUR_API_KEY' + +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['apiKey'] = 'Bearer' + +# Enter a context with an instance of the API client +with apideck.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = accounting_api.AccountingApi(api_client) + id = "id_example" # str | ID of the record you are acting upon. + credit_note = CreditNote( + number="OIT00546", + customer=LinkedCustomer( + id="12345", + display_name="Windsurf Shop", + name="Windsurf Shop", + email="boring@boring.com", + ), + company_id="12345", + currency=Currency("USD"), + currency_rate=0.69, + tax_inclusive=True, + sub_total=27500, + total_amount=49.99, + total_tax=2500, + tax_code="1234", + balance=27500, + remaining_credit=27500, + status="authorised", + reference="123456", + date_issued=dateutil_parser('2021-05-01T12:00:00Z'), + date_paid=dateutil_parser('2021-05-01T12:00:00Z'), + type="accounts_receivable_credit", + account=LinkedLedgerAccount( + id="123456", + nominal_code="N091", + code="453", + ), + line_items=[ + InvoiceLineItem( + id="12345", + row_id="12345", + code="120-C", + line_number=1, + description="Model Y is a fully electric, mid-size SUV, with seating for up to seven, dual motor AWD and unparalleled protection.", + type="sales_item", + tax_amount=27500, + total_amount=27500, + quantity=1, + unit_price=27500.5, + unit_of_measure="pc.", + discount_percentage=0.01, + discount_amount=19.99, + location_id="1234", + department_id="1234", + item=LinkedInvoiceItem( + id="12344", + code="120-C", + name="Model Y", + ), + tax_rate=LinkedTaxRate( + id="123456", + rate=10, + ), + tracking_categories=LinkedTrackingCategories([ + LinkedTrackingCategory( + id="123456", + name="New York", + ), + ]), + ledger_account=LinkedLedgerAccount( + id="123456", + nominal_code="N091", + code="453", + ), + custom_fields=[ + CustomField( + id="2389328923893298", + name="employee_level", + description="Employee Level", + value=None, + ), + ], + row_version="1-12345", + ), + ], + allocations=[ + Allocation( + id="123456", + type="invoice", + amount=49.99, + allocation_id="123456", + ), + ], + note="Some notes about this credit note", + terms="Some terms about this credit note", + billing_address=Address( + id="123", + type="primary", + string="25 Spring Street, Blackburn, VIC 3130", + name="HQ US", + line1="Main street", + line2="apt #", + line3="Suite #", + line4="delivery instructions", + street_number="25", + city="San Francisco", + state="CA", + postal_code="94104", + country="US", + latitude="40.759211", + longitude="-73.984638", + county="Santa Clara", + contact_name="Elon Musk", + salutation="Mr", + phone_number="111-111-1111", + fax="122-111-1111", + email="elon@musk.com", + website="https://elonmusk.com", + notes="Address notes or delivery instructions.", + row_version="1-12345", + ), + shipping_address=Address( + id="123", + type="primary", + string="25 Spring Street, Blackburn, VIC 3130", + name="HQ US", + line1="Main street", + line2="apt #", + line3="Suite #", + line4="delivery instructions", + street_number="25", + city="San Francisco", + state="CA", + postal_code="94104", + country="US", + latitude="40.759211", + longitude="-73.984638", + county="Santa Clara", + contact_name="Elon Musk", + salutation="Mr", + phone_number="111-111-1111", + fax="122-111-1111", + email="elon@musk.com", + website="https://elonmusk.com", + notes="Address notes or delivery instructions.", + row_version="1-12345", + ), + tracking_categories=LinkedTrackingCategories([ + LinkedTrackingCategory( + id="123456", + name="New York", + ), + ]), + custom_fields=[ + CustomField( + id="2389328923893298", + name="employee_level", + description="Employee Level", + value=None, + ), + ], + row_version="1-12345", + pass_through=PassThroughBody([ + { + service_id="service_id_example", + operation_id="operation_id_example", + extend_object={}, + extend_paths=[ + { + path="$.nested.property", + value=None, + }, + ], + }, + ]), + ) # CreditNote | + consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) + app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) + service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) + raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False + + # example passing only required values which don't have defaults set + try: + # Update Credit Note + api_response = api_instance.credit_notes_update(id, credit_note) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->credit_notes_update: %s\n" % e) + + # example passing only required values which don't have defaults set + # and optional values + try: + # Update Credit Note + api_response = api_instance.credit_notes_update(id, credit_note, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->credit_notes_update: %s\n" % e) +``` + + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **id** | **str**| ID of the record you are acting upon. | + **credit_note** | [**CreditNote**](CreditNote.md)| | + **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] + **app_id** | **str**| The ID of your Unify application | [optional] + **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] + **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False + +### Return type + +[**UpdateCreditNoteResponse**](UpdateCreditNoteResponse.md) + +### Authorization + +[apiKey](../../README.md#apiKey) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | Credit Note updated | - | +**400** | Bad Request | - | +**401** | Unauthorized | - | +**402** | Payment Required | - | +**404** | The specified resource was not found | - | +**422** | Unprocessable | - | +**0** | Unexpected error | - | + +[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) + +# **customers_add** +> CreateCustomerResponse customers_add(customer) + +Create Customer + +Create Customer + +### Example + +* Api Key Authentication (apiKey): + +```python +import time +import apideck +from apideck.api import accounting_api +from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.payment_required_response import PaymentRequiredResponse +from apideck.model.unexpected_error_response import UnexpectedErrorResponse +from apideck.model.unauthorized_response import UnauthorizedResponse +from apideck.model.create_customer_response import CreateCustomerResponse +from apideck.model.customer import Customer +from apideck.model.unprocessable_response import UnprocessableResponse +from apideck.model.not_found_response import NotFoundResponse +from pprint import pprint +# Defining the host is optional and defaults to https://unify.apideck.com +# See configuration.py for a list of all supported configuration parameters. +configuration = apideck.Configuration( + host = "https://unify.apideck.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure API key authorization: apiKey +configuration.api_key['apiKey'] = 'YOUR_API_KEY' + +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['apiKey'] = 'Bearer' + +# Enter a context with an instance of the API client +with apideck.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = accounting_api.AccountingApi(api_client) + customer = Customer( + display_id="EMP00101", + display_name="Windsurf Shop", + company_name="SpaceX", + company_id="12345", + title="CEO", + first_name="Elon", + middle_name="D.", + last_name="Musk", + suffix="Jr.", + individual=True, + project=False, + addresses=[ + Address( + id="123", + type="primary", + string="25 Spring Street, Blackburn, VIC 3130", + name="HQ US", + line1="Main street", + line2="apt #", + line3="Suite #", + line4="delivery instructions", + street_number="25", + city="San Francisco", + state="CA", + postal_code="94104", + country="US", + latitude="40.759211", + longitude="-73.984638", + county="Santa Clara", + contact_name="Elon Musk", + salutation="Mr", + phone_number="111-111-1111", + fax="122-111-1111", + email="elon@musk.com", + website="https://elonmusk.com", + notes="Address notes or delivery instructions.", + row_version="1-12345", + ), + ], + phone_numbers=[ + PhoneNumber( + id="12345", + country_code="1", + area_code="323", + number="111-111-1111", + extension="105", + type="primary", + ), + ], + emails=[ + Email( + id="123", + email="elon@musk.com", + type="primary", + ), + ], + websites=[ + Website( + id="12345", + url="http://example.com", + type="primary", + ), + ], + bank_accounts=[ + BankAccount( + bank_name="Monzo", + account_number="123465", + account_name="SPACEX LLC", + account_type="credit_card", + iban="CH2989144532982975332", + bic="AUDSCHGGXXX", + routing_number="012345678", + bsb_number="062-001", + branch_identifier="001", + bank_code="BNH", + currency=Currency("USD"), + ), + ], + notes="Some notes about this customer", + tax_rate=LinkedTaxRate( + id="123456", + rate=10, + ), + tax_number="US123945459", + currency=Currency("USD"), + account=LinkedLedgerAccount( + id="123456", + nominal_code="N091", + code="453", + ), + parent=LinkedParentCustomer( + id="12345", + name="Windsurf Shop", + ), + status="active", + payment_method="cash", + channel="email", + row_version="1-12345", + pass_through=PassThroughBody([ + { + service_id="service_id_example", + operation_id="operation_id_example", + extend_object={}, + extend_paths=[ + { + path="$.nested.property", + value=None, + }, + ], + }, + ]), + ) # Customer | + raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False + consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) + app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) + service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) + + # example passing only required values which don't have defaults set + try: + # Create Customer + api_response = api_instance.customers_add(customer) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->customers_add: %s\n" % e) + + # example passing only required values which don't have defaults set + # and optional values + try: + # Create Customer + api_response = api_instance.customers_add(customer, raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->customers_add: %s\n" % e) +``` + + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **customer** | [**Customer**](Customer.md)| | + **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False + **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] + **app_id** | **str**| The ID of your Unify application | [optional] + **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] + +### Return type + +[**CreateCustomerResponse**](CreateCustomerResponse.md) + +### Authorization + +[apiKey](../../README.md#apiKey) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**201** | Customers | - | +**400** | Bad Request | - | +**401** | Unauthorized | - | +**402** | Payment Required | - | +**404** | The specified resource was not found | - | +**422** | Unprocessable | - | +**0** | Unexpected error | - | + +[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) + +# **customers_all** +> GetCustomersResponse customers_all() + +List Customers + +List Customers + +### Example + +* Api Key Authentication (apiKey): + +```python +import time +import apideck +from apideck.api import accounting_api +from apideck.model.customers_sort import CustomersSort +from apideck.model.pass_through_query import PassThroughQuery +from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.payment_required_response import PaymentRequiredResponse +from apideck.model.unexpected_error_response import UnexpectedErrorResponse +from apideck.model.unauthorized_response import UnauthorizedResponse +from apideck.model.customers_filter import CustomersFilter +from apideck.model.get_customers_response import GetCustomersResponse +from apideck.model.unprocessable_response import UnprocessableResponse +from apideck.model.not_found_response import NotFoundResponse +from pprint import pprint +# Defining the host is optional and defaults to https://unify.apideck.com +# See configuration.py for a list of all supported configuration parameters. +configuration = apideck.Configuration( + host = "https://unify.apideck.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure API key authorization: apiKey +configuration.api_key['apiKey'] = 'YOUR_API_KEY' + +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['apiKey'] = 'Bearer' + +# Enter a context with an instance of the API client +with apideck.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = accounting_api.AccountingApi(api_client) + raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False + consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) + app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) + service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) + cursor = "cursor_example" # str, none_type | Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional) + limit = 20 # int | Number of results to return. Minimum 1, Maximum 200, Default 20 (optional) if omitted the server will use the default value of 20 + filter = CustomersFilter( + company_name="SpaceX", + display_name="Techno King", + first_name="Elon", + last_name="Musk", + email="elon@spacex.com", + status="active", + updated_since=dateutil_parser('2020-09-30T07:43:32Z'), + ) # CustomersFilter | Apply filters (optional) + sort = CustomersSort( + by="updated_at", + direction=SortDirection("asc"), + ) # CustomersSort | Apply sorting (optional) + pass_through = PassThroughQuery() # PassThroughQuery | Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional) + fields = "id,updated_at" # str, none_type | The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional) + + # example passing only required values which don't have defaults set + # and optional values + try: + # List Customers + api_response = api_instance.customers_all(raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id, cursor=cursor, limit=limit, filter=filter, sort=sort, pass_through=pass_through, fields=fields) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->customers_all: %s\n" % e) +``` + + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False + **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] + **app_id** | **str**| The ID of your Unify application | [optional] + **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] + **cursor** | **str, none_type**| Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. | [optional] + **limit** | **int**| Number of results to return. Minimum 1, Maximum 200, Default 20 | [optional] if omitted the server will use the default value of 20 + **filter** | **CustomersFilter**| Apply filters | [optional] + **sort** | **CustomersSort**| Apply sorting | [optional] + **pass_through** | **PassThroughQuery**| Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads | [optional] + **fields** | **str, none_type**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. | [optional] + +### Return type + +[**GetCustomersResponse**](GetCustomersResponse.md) + +### Authorization + +[apiKey](../../README.md#apiKey) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: application/json + + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | Customers | - | +**400** | Bad Request | - | +**401** | Unauthorized | - | +**402** | Payment Required | - | +**404** | The specified resource was not found | - | +**422** | Unprocessable | - | +**0** | Unexpected error | - | + +[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) + +# **customers_delete** +> DeleteCustomerResponse customers_delete(id) + +Delete Customer + +Delete Customer + +### Example + +* Api Key Authentication (apiKey): + +```python +import time +import apideck +from apideck.api import accounting_api +from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.payment_required_response import PaymentRequiredResponse +from apideck.model.unexpected_error_response import UnexpectedErrorResponse +from apideck.model.unauthorized_response import UnauthorizedResponse +from apideck.model.delete_customer_response import DeleteCustomerResponse +from apideck.model.unprocessable_response import UnprocessableResponse +from apideck.model.not_found_response import NotFoundResponse +from pprint import pprint +# Defining the host is optional and defaults to https://unify.apideck.com +# See configuration.py for a list of all supported configuration parameters. +configuration = apideck.Configuration( + host = "https://unify.apideck.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure API key authorization: apiKey +configuration.api_key['apiKey'] = 'YOUR_API_KEY' + +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['apiKey'] = 'Bearer' + +# Enter a context with an instance of the API client +with apideck.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = accounting_api.AccountingApi(api_client) + id = "id_example" # str | ID of the record you are acting upon. + consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) + app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) + service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) + raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False + + # example passing only required values which don't have defaults set + try: + # Delete Customer + api_response = api_instance.customers_delete(id) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->customers_delete: %s\n" % e) + + # example passing only required values which don't have defaults set + # and optional values + try: + # Delete Customer + api_response = api_instance.customers_delete(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->customers_delete: %s\n" % e) +``` + + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **id** | **str**| ID of the record you are acting upon. | + **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] + **app_id** | **str**| The ID of your Unify application | [optional] + **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] + **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False + +### Return type + +[**DeleteCustomerResponse**](DeleteCustomerResponse.md) + +### Authorization + +[apiKey](../../README.md#apiKey) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: application/json + + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | Customers | - | +**400** | Bad Request | - | +**401** | Unauthorized | - | +**402** | Payment Required | - | +**404** | The specified resource was not found | - | +**422** | Unprocessable | - | +**0** | Unexpected error | - | + +[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) + +# **customers_one** +> GetCustomerResponse customers_one(id) + +Get Customer + +Get Customer + +### Example + +* Api Key Authentication (apiKey): + +```python +import time +import apideck +from apideck.api import accounting_api +from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.payment_required_response import PaymentRequiredResponse +from apideck.model.get_customer_response import GetCustomerResponse +from apideck.model.unexpected_error_response import UnexpectedErrorResponse +from apideck.model.unauthorized_response import UnauthorizedResponse +from apideck.model.unprocessable_response import UnprocessableResponse +from apideck.model.not_found_response import NotFoundResponse +from pprint import pprint +# Defining the host is optional and defaults to https://unify.apideck.com +# See configuration.py for a list of all supported configuration parameters. +configuration = apideck.Configuration( + host = "https://unify.apideck.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure API key authorization: apiKey +configuration.api_key['apiKey'] = 'YOUR_API_KEY' + +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['apiKey'] = 'Bearer' + +# Enter a context with an instance of the API client +with apideck.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = accounting_api.AccountingApi(api_client) + id = "id_example" # str | ID of the record you are acting upon. consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False + fields = "id,updated_at" # str, none_type | The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional) # example passing only required values which don't have defaults set try: - # Update Credit Note - api_response = api_instance.credit_notes_update(id, credit_note) + # Get Customer + api_response = api_instance.customers_one(id) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->credit_notes_update: %s\n" % e) + print("Exception when calling AccountingApi->customers_one: %s\n" % e) # example passing only required values which don't have defaults set # and optional values try: - # Update Credit Note - api_response = api_instance.credit_notes_update(id, credit_note, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) + # Get Customer + api_response = api_instance.customers_one(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw, fields=fields) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->credit_notes_update: %s\n" % e) + print("Exception when calling AccountingApi->customers_one: %s\n" % e) ``` @@ -2412,15 +3706,15 @@ with apideck.ApiClient(configuration) as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **id** | **str**| ID of the record you are acting upon. | - **credit_note** | [**CreditNote**](CreditNote.md)| | **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] **app_id** | **str**| The ID of your Unify application | [optional] **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False + **fields** | **str, none_type**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. | [optional] ### Return type -[**UpdateCreditNoteResponse**](UpdateCreditNoteResponse.md) +[**GetCustomerResponse**](GetCustomerResponse.md) ### Authorization @@ -2428,7 +3722,7 @@ Name | Type | Description | Notes ### HTTP request headers - - **Content-Type**: application/json + - **Content-Type**: Not defined - **Accept**: application/json @@ -2436,7 +3730,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Credit Note updated | - | +**200** | Customer | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -2446,12 +3740,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **customers_add** -> CreateCustomerResponse customers_add(customer) +# **customers_update** +> UpdateCustomerResponse customers_update(id, customer) -Create Customer +Update Customer -Create Customer +Update Customer ### Example @@ -2465,7 +3759,7 @@ from apideck.model.bad_request_response import BadRequestResponse from apideck.model.payment_required_response import PaymentRequiredResponse from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse -from apideck.model.create_customer_response import CreateCustomerResponse +from apideck.model.update_customer_response import UpdateCustomerResponse from apideck.model.customer import Customer from apideck.model.unprocessable_response import UnprocessableResponse from apideck.model.not_found_response import NotFoundResponse @@ -2491,6 +3785,7 @@ configuration.api_key['apiKey'] = 'YOUR_API_KEY' with apideck.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = accounting_api.AccountingApi(api_client) + id = "id_example" # str | ID of the record you are acting upon. customer = Customer( display_id="EMP00101", display_name="Windsurf Shop", @@ -2587,8 +3882,140 @@ with apideck.ApiClient(configuration) as api_client: name="Windsurf Shop", ), status="active", - payment_method="cash", - channel="email", + payment_method="cash", + channel="email", + row_version="1-12345", + pass_through=PassThroughBody([ + { + service_id="service_id_example", + operation_id="operation_id_example", + extend_object={}, + extend_paths=[ + { + path="$.nested.property", + value=None, + }, + ], + }, + ]), + ) # Customer | + consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) + app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) + service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) + raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False + + # example passing only required values which don't have defaults set + try: + # Update Customer + api_response = api_instance.customers_update(id, customer) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->customers_update: %s\n" % e) + + # example passing only required values which don't have defaults set + # and optional values + try: + # Update Customer + api_response = api_instance.customers_update(id, customer, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) + pprint(api_response) + except apideck.ApiException as e: + print("Exception when calling AccountingApi->customers_update: %s\n" % e) +``` + + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **id** | **str**| ID of the record you are acting upon. | + **customer** | [**Customer**](Customer.md)| | + **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] + **app_id** | **str**| The ID of your Unify application | [optional] + **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] + **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False + +### Return type + +[**UpdateCustomerResponse**](UpdateCustomerResponse.md) + +### Authorization + +[apiKey](../../README.md#apiKey) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | Customers | - | +**400** | Bad Request | - | +**401** | Unauthorized | - | +**402** | Payment Required | - | +**404** | The specified resource was not found | - | +**422** | Unprocessable | - | +**0** | Unexpected error | - | + +[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) + +# **departments_add** +> CreateAccountingDepartmentResponse departments_add(accounting_department) + +Create Department + +Create Department + +### Example + +* Api Key Authentication (apiKey): + +```python +import time +import apideck +from apideck.api import accounting_api +from apideck.model.accounting_department import AccountingDepartment +from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.payment_required_response import PaymentRequiredResponse +from apideck.model.create_accounting_department_response import CreateAccountingDepartmentResponse +from apideck.model.unexpected_error_response import UnexpectedErrorResponse +from apideck.model.unauthorized_response import UnauthorizedResponse +from apideck.model.unprocessable_response import UnprocessableResponse +from apideck.model.not_found_response import NotFoundResponse +from pprint import pprint +# Defining the host is optional and defaults to https://unify.apideck.com +# See configuration.py for a list of all supported configuration parameters. +configuration = apideck.Configuration( + host = "https://unify.apideck.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure API key authorization: apiKey +configuration.api_key['apiKey'] = 'YOUR_API_KEY' + +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['apiKey'] = 'Bearer' + +# Enter a context with an instance of the API client +with apideck.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = accounting_api.AccountingApi(api_client) + accounting_department = AccountingDepartment( + parent_id="12345", + name="Sales", + status="active", + subsidiaries=[ + SubsidiaryReference( + name="SpaceX", + ), + ], row_version="1-12345", pass_through=PassThroughBody([ { @@ -2603,7 +4030,7 @@ with apideck.ApiClient(configuration) as api_client: ], }, ]), - ) # Customer | + ) # AccountingDepartment | raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) @@ -2611,20 +4038,20 @@ with apideck.ApiClient(configuration) as api_client: # example passing only required values which don't have defaults set try: - # Create Customer - api_response = api_instance.customers_add(customer) + # Create Department + api_response = api_instance.departments_add(accounting_department) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->customers_add: %s\n" % e) + print("Exception when calling AccountingApi->departments_add: %s\n" % e) # example passing only required values which don't have defaults set # and optional values try: - # Create Customer - api_response = api_instance.customers_add(customer, raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id) + # Create Department + api_response = api_instance.departments_add(accounting_department, raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->customers_add: %s\n" % e) + print("Exception when calling AccountingApi->departments_add: %s\n" % e) ``` @@ -2632,7 +4059,7 @@ with apideck.ApiClient(configuration) as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **customer** | [**Customer**](Customer.md)| | + **accounting_department** | [**AccountingDepartment**](AccountingDepartment.md)| | **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] **app_id** | **str**| The ID of your Unify application | [optional] @@ -2640,7 +4067,7 @@ Name | Type | Description | Notes ### Return type -[**CreateCustomerResponse**](CreateCustomerResponse.md) +[**CreateAccountingDepartmentResponse**](CreateAccountingDepartmentResponse.md) ### Authorization @@ -2656,7 +4083,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**201** | Customers | - | +**201** | Department | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -2666,12 +4093,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **customers_all** -> GetCustomersResponse customers_all() +# **departments_all** +> GetAccountingDepartmentsResponse departments_all() -List Customers +List Departments -List Customers +List Departments ### Example @@ -2681,14 +4108,12 @@ List Customers import time import apideck from apideck.api import accounting_api -from apideck.model.customers_sort import CustomersSort -from apideck.model.pass_through_query import PassThroughQuery +from apideck.model.get_accounting_departments_response import GetAccountingDepartmentsResponse from apideck.model.bad_request_response import BadRequestResponse from apideck.model.payment_required_response import PaymentRequiredResponse from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse -from apideck.model.customers_filter import CustomersFilter -from apideck.model.get_customers_response import GetCustomersResponse +from apideck.model.accounting_departments_filter import AccountingDepartmentsFilter from apideck.model.unprocessable_response import UnprocessableResponse from apideck.model.not_found_response import NotFoundResponse from pprint import pprint @@ -2719,30 +4144,19 @@ with apideck.ApiClient(configuration) as api_client: service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) cursor = "cursor_example" # str, none_type | Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional) limit = 20 # int | Number of results to return. Minimum 1, Maximum 200, Default 20 (optional) if omitted the server will use the default value of 20 - filter = CustomersFilter( - company_name="SpaceX", - display_name="Techno King", - first_name="Elon", - last_name="Musk", - email="elon@spacex.com", - status="active", - updated_since=dateutil_parser('2020-09-30T07:43:32Z'), - ) # CustomersFilter | Apply filters (optional) - sort = CustomersSort( - by="updated_at", - direction=SortDirection("asc"), - ) # CustomersSort | Apply sorting (optional) - pass_through = PassThroughQuery() # PassThroughQuery | Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional) fields = "id,updated_at" # str, none_type | The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional) + filter = AccountingDepartmentsFilter( + subsidiary="1", + ) # AccountingDepartmentsFilter | Apply filters (optional) # example passing only required values which don't have defaults set # and optional values try: - # List Customers - api_response = api_instance.customers_all(raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id, cursor=cursor, limit=limit, filter=filter, sort=sort, pass_through=pass_through, fields=fields) + # List Departments + api_response = api_instance.departments_all(raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id, cursor=cursor, limit=limit, fields=fields, filter=filter) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->customers_all: %s\n" % e) + print("Exception when calling AccountingApi->departments_all: %s\n" % e) ``` @@ -2756,14 +4170,12 @@ Name | Type | Description | Notes **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] **cursor** | **str, none_type**| Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. | [optional] **limit** | **int**| Number of results to return. Minimum 1, Maximum 200, Default 20 | [optional] if omitted the server will use the default value of 20 - **filter** | **CustomersFilter**| Apply filters | [optional] - **sort** | **CustomersSort**| Apply sorting | [optional] - **pass_through** | **PassThroughQuery**| Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads | [optional] **fields** | **str, none_type**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. | [optional] + **filter** | **AccountingDepartmentsFilter**| Apply filters | [optional] ### Return type -[**GetCustomersResponse**](GetCustomersResponse.md) +[**GetAccountingDepartmentsResponse**](GetAccountingDepartmentsResponse.md) ### Authorization @@ -2779,7 +4191,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Customers | - | +**200** | Departments | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -2789,12 +4201,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **customers_delete** -> DeleteCustomerResponse customers_delete(id) +# **departments_delete** +> DeleteAccountingDepartmentResponse departments_delete(id) -Delete Customer +Delete Department -Delete Customer +Delete Department ### Example @@ -2804,11 +4216,11 @@ Delete Customer import time import apideck from apideck.api import accounting_api +from apideck.model.delete_accounting_department_response import DeleteAccountingDepartmentResponse from apideck.model.bad_request_response import BadRequestResponse from apideck.model.payment_required_response import PaymentRequiredResponse from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse -from apideck.model.delete_customer_response import DeleteCustomerResponse from apideck.model.unprocessable_response import UnprocessableResponse from apideck.model.not_found_response import NotFoundResponse from pprint import pprint @@ -2841,20 +4253,20 @@ with apideck.ApiClient(configuration) as api_client: # example passing only required values which don't have defaults set try: - # Delete Customer - api_response = api_instance.customers_delete(id) + # Delete Department + api_response = api_instance.departments_delete(id) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->customers_delete: %s\n" % e) + print("Exception when calling AccountingApi->departments_delete: %s\n" % e) # example passing only required values which don't have defaults set # and optional values try: - # Delete Customer - api_response = api_instance.customers_delete(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) + # Delete Department + api_response = api_instance.departments_delete(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->customers_delete: %s\n" % e) + print("Exception when calling AccountingApi->departments_delete: %s\n" % e) ``` @@ -2870,7 +4282,7 @@ Name | Type | Description | Notes ### Return type -[**DeleteCustomerResponse**](DeleteCustomerResponse.md) +[**DeleteAccountingDepartmentResponse**](DeleteAccountingDepartmentResponse.md) ### Authorization @@ -2886,7 +4298,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Customers | - | +**200** | Department deleted | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -2896,12 +4308,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **customers_one** -> GetCustomerResponse customers_one(id) +# **departments_one** +> GetAccountingDepartmentResponse departments_one(id) -Get Customer +Get Department -Get Customer +Get Department ### Example @@ -2913,7 +4325,7 @@ import apideck from apideck.api import accounting_api from apideck.model.bad_request_response import BadRequestResponse from apideck.model.payment_required_response import PaymentRequiredResponse -from apideck.model.get_customer_response import GetCustomerResponse +from apideck.model.get_accounting_department_response import GetAccountingDepartmentResponse from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse from apideck.model.unprocessable_response import UnprocessableResponse @@ -2949,20 +4361,20 @@ with apideck.ApiClient(configuration) as api_client: # example passing only required values which don't have defaults set try: - # Get Customer - api_response = api_instance.customers_one(id) + # Get Department + api_response = api_instance.departments_one(id) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->customers_one: %s\n" % e) + print("Exception when calling AccountingApi->departments_one: %s\n" % e) # example passing only required values which don't have defaults set # and optional values try: - # Get Customer - api_response = api_instance.customers_one(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw, fields=fields) + # Get Department + api_response = api_instance.departments_one(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw, fields=fields) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->customers_one: %s\n" % e) + print("Exception when calling AccountingApi->departments_one: %s\n" % e) ``` @@ -2979,7 +4391,7 @@ Name | Type | Description | Notes ### Return type -[**GetCustomerResponse**](GetCustomerResponse.md) +[**GetAccountingDepartmentResponse**](GetAccountingDepartmentResponse.md) ### Authorization @@ -2995,160 +4407,71 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Customer | - | +**200** | Location | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | -**404** | The specified resource was not found | - | -**422** | Unprocessable | - | -**0** | Unexpected error | - | - -[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) - -# **customers_update** -> UpdateCustomerResponse customers_update(id, customer) - -Update Customer - -Update Customer - -### Example - -* Api Key Authentication (apiKey): - -```python -import time -import apideck -from apideck.api import accounting_api -from apideck.model.bad_request_response import BadRequestResponse -from apideck.model.payment_required_response import PaymentRequiredResponse -from apideck.model.unexpected_error_response import UnexpectedErrorResponse -from apideck.model.unauthorized_response import UnauthorizedResponse -from apideck.model.update_customer_response import UpdateCustomerResponse -from apideck.model.customer import Customer -from apideck.model.unprocessable_response import UnprocessableResponse -from apideck.model.not_found_response import NotFoundResponse -from pprint import pprint -# Defining the host is optional and defaults to https://unify.apideck.com -# See configuration.py for a list of all supported configuration parameters. -configuration = apideck.Configuration( - host = "https://unify.apideck.com" -) - -# The client must configure the authentication and authorization parameters -# in accordance with the API server security policy. -# Examples for each auth method are provided below, use the example that -# satisfies your auth use case. - -# Configure API key authorization: apiKey -configuration.api_key['apiKey'] = 'YOUR_API_KEY' - -# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed -# configuration.api_key_prefix['apiKey'] = 'Bearer' - -# Enter a context with an instance of the API client -with apideck.ApiClient(configuration) as api_client: - # Create an instance of the API class - api_instance = accounting_api.AccountingApi(api_client) - id = "id_example" # str | ID of the record you are acting upon. - customer = Customer( - display_id="EMP00101", - display_name="Windsurf Shop", - company_name="SpaceX", - company_id="12345", - title="CEO", - first_name="Elon", - middle_name="D.", - last_name="Musk", - suffix="Jr.", - individual=True, - project=False, - addresses=[ - Address( - id="123", - type="primary", - string="25 Spring Street, Blackburn, VIC 3130", - name="HQ US", - line1="Main street", - line2="apt #", - line3="Suite #", - line4="delivery instructions", - street_number="25", - city="San Francisco", - state="CA", - postal_code="94104", - country="US", - latitude="40.759211", - longitude="-73.984638", - county="Santa Clara", - contact_name="Elon Musk", - salutation="Mr", - phone_number="111-111-1111", - fax="122-111-1111", - email="elon@musk.com", - website="https://elonmusk.com", - notes="Address notes or delivery instructions.", - row_version="1-12345", - ), - ], - phone_numbers=[ - PhoneNumber( - id="12345", - country_code="1", - area_code="323", - number="111-111-1111", - extension="105", - type="primary", - ), - ], - emails=[ - Email( - id="123", - email="elon@musk.com", - type="primary", - ), - ], - websites=[ - Website( - id="12345", - url="http://example.com", - type="primary", - ), - ], - bank_accounts=[ - BankAccount( - bank_name="Monzo", - account_number="123465", - account_name="SPACEX LLC", - account_type="credit_card", - iban="CH2989144532982975332", - bic="AUDSCHGGXXX", - routing_number="012345678", - bsb_number="062-001", - branch_identifier="001", - bank_code="BNH", - currency=Currency("USD"), +**404** | The specified resource was not found | - | +**422** | Unprocessable | - | +**0** | Unexpected error | - | + +[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) + +# **departments_update** +> UpdateAccountingDepartmentResponse departments_update(id, accounting_department) + +Update Department + +Update Department + +### Example + +* Api Key Authentication (apiKey): + +```python +import time +import apideck +from apideck.api import accounting_api +from apideck.model.accounting_department import AccountingDepartment +from apideck.model.update_accounting_department_response import UpdateAccountingDepartmentResponse +from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.payment_required_response import PaymentRequiredResponse +from apideck.model.unexpected_error_response import UnexpectedErrorResponse +from apideck.model.unauthorized_response import UnauthorizedResponse +from apideck.model.unprocessable_response import UnprocessableResponse +from apideck.model.not_found_response import NotFoundResponse +from pprint import pprint +# Defining the host is optional and defaults to https://unify.apideck.com +# See configuration.py for a list of all supported configuration parameters. +configuration = apideck.Configuration( + host = "https://unify.apideck.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure API key authorization: apiKey +configuration.api_key['apiKey'] = 'YOUR_API_KEY' + +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['apiKey'] = 'Bearer' + +# Enter a context with an instance of the API client +with apideck.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = accounting_api.AccountingApi(api_client) + id = "id_example" # str | ID of the record you are acting upon. + accounting_department = AccountingDepartment( + parent_id="12345", + name="Sales", + status="active", + subsidiaries=[ + SubsidiaryReference( + name="SpaceX", ), ], - notes="Some notes about this customer", - tax_rate=LinkedTaxRate( - id="123456", - rate=10, - ), - tax_number="US123945459", - currency=Currency("USD"), - account=LinkedLedgerAccount( - id="123456", - nominal_code="N091", - code="453", - ), - parent=LinkedParentCustomer( - id="12345", - name="Windsurf Shop", - ), - status="active", - payment_method="cash", - channel="email", row_version="1-12345", pass_through=PassThroughBody([ { @@ -3163,7 +4486,7 @@ with apideck.ApiClient(configuration) as api_client: ], }, ]), - ) # Customer | + ) # AccountingDepartment | consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) @@ -3171,20 +4494,20 @@ with apideck.ApiClient(configuration) as api_client: # example passing only required values which don't have defaults set try: - # Update Customer - api_response = api_instance.customers_update(id, customer) + # Update Department + api_response = api_instance.departments_update(id, accounting_department) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->customers_update: %s\n" % e) + print("Exception when calling AccountingApi->departments_update: %s\n" % e) # example passing only required values which don't have defaults set # and optional values try: - # Update Customer - api_response = api_instance.customers_update(id, customer, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) + # Update Department + api_response = api_instance.departments_update(id, accounting_department, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->customers_update: %s\n" % e) + print("Exception when calling AccountingApi->departments_update: %s\n" % e) ``` @@ -3193,7 +4516,7 @@ with apideck.ApiClient(configuration) as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **id** | **str**| ID of the record you are acting upon. | - **customer** | [**Customer**](Customer.md)| | + **accounting_department** | [**AccountingDepartment**](AccountingDepartment.md)| | **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] **app_id** | **str**| The ID of your Unify application | [optional] **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] @@ -3201,7 +4524,7 @@ Name | Type | Description | Notes ### Return type -[**UpdateCustomerResponse**](UpdateCustomerResponse.md) +[**UpdateAccountingDepartmentResponse**](UpdateAccountingDepartmentResponse.md) ### Authorization @@ -3217,7 +4540,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Customers | - | +**200** | Department | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -3227,12 +4550,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **departments_add** -> CreateAccountingDepartmentResponse departments_add(accounting_department) +# **expenses_add** +> CreateExpenseResponse expenses_add(expense) -Create Department +Create Expense -Create Department +Create Expense ### Example @@ -3242,10 +4565,10 @@ Create Department import time import apideck from apideck.api import accounting_api -from apideck.model.accounting_department import AccountingDepartment +from apideck.model.expense import Expense from apideck.model.bad_request_response import BadRequestResponse from apideck.model.payment_required_response import PaymentRequiredResponse -from apideck.model.create_accounting_department_response import CreateAccountingDepartmentResponse +from apideck.model.create_expense_response import CreateExpenseResponse from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse from apideck.model.unprocessable_response import UnprocessableResponse @@ -3272,13 +4595,50 @@ configuration.api_key['apiKey'] = 'YOUR_API_KEY' with apideck.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = accounting_api.AccountingApi(api_client) - accounting_department = AccountingDepartment( - parent_id="12345", - name="Sales", - status="active", - subsidiaries=[ - SubsidiaryReference( - name="SpaceX", + expense = Expense( + number="OIT00546", + transaction_date=dateutil_parser('2021-05-01T12:00:00Z'), + account_id="123456", + customer_id="12345", + supplier_id="12345", + company_id="12345", + department_id="12345", + currency=Currency("USD"), + currency_rate=0.69, + type="expense", + memo="For travel expenses incurred on 2024-05-15", + tax_rate=LinkedTaxRate( + id="123456", + rate=10, + ), + total_amount=275, + line_items=[ + ExpenseLineItem( + tracking_categories=LinkedTrackingCategories([ + LinkedTrackingCategory( + id="123456", + name="New York", + ), + ]), + account_id="123456", + customer_id="12345", + department_id="12345", + location_id="12345", + tax_rate=LinkedTaxRate( + id="123456", + rate=10, + ), + description="Travel US.", + total_amount=275, + billable=True, + ), + ], + custom_fields=[ + CustomField( + id="2389328923893298", + name="employee_level", + description="Employee Level", + value=None, ), ], row_version="1-12345", @@ -3295,7 +4655,7 @@ with apideck.ApiClient(configuration) as api_client: ], }, ]), - ) # AccountingDepartment | + ) # Expense | raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) @@ -3303,20 +4663,20 @@ with apideck.ApiClient(configuration) as api_client: # example passing only required values which don't have defaults set try: - # Create Department - api_response = api_instance.departments_add(accounting_department) + # Create Expense + api_response = api_instance.expenses_add(expense) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->departments_add: %s\n" % e) + print("Exception when calling AccountingApi->expenses_add: %s\n" % e) # example passing only required values which don't have defaults set # and optional values try: - # Create Department - api_response = api_instance.departments_add(accounting_department, raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id) + # Create Expense + api_response = api_instance.expenses_add(expense, raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->departments_add: %s\n" % e) + print("Exception when calling AccountingApi->expenses_add: %s\n" % e) ``` @@ -3324,7 +4684,7 @@ with apideck.ApiClient(configuration) as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **accounting_department** | [**AccountingDepartment**](AccountingDepartment.md)| | + **expense** | [**Expense**](Expense.md)| | **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] **app_id** | **str**| The ID of your Unify application | [optional] @@ -3332,7 +4692,7 @@ Name | Type | Description | Notes ### Return type -[**CreateAccountingDepartmentResponse**](CreateAccountingDepartmentResponse.md) +[**CreateExpenseResponse**](CreateExpenseResponse.md) ### Authorization @@ -3348,7 +4708,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**201** | Department | - | +**201** | Expenses | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -3358,12 +4718,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **departments_all** -> GetAccountingDepartmentsResponse departments_all() +# **expenses_all** +> GetExpensesResponse expenses_all() -List Departments +List Expenses -List Departments +List Expenses ### Example @@ -3373,12 +4733,11 @@ List Departments import time import apideck from apideck.api import accounting_api -from apideck.model.get_accounting_departments_response import GetAccountingDepartmentsResponse from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.get_expenses_response import GetExpensesResponse from apideck.model.payment_required_response import PaymentRequiredResponse from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse -from apideck.model.accounting_departments_filter import AccountingDepartmentsFilter from apideck.model.unprocessable_response import UnprocessableResponse from apideck.model.not_found_response import NotFoundResponse from pprint import pprint @@ -3409,19 +4768,15 @@ with apideck.ApiClient(configuration) as api_client: service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) cursor = "cursor_example" # str, none_type | Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional) limit = 20 # int | Number of results to return. Minimum 1, Maximum 200, Default 20 (optional) if omitted the server will use the default value of 20 - fields = "id,updated_at" # str, none_type | The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional) - filter = AccountingDepartmentsFilter( - subsidiary="1", - ) # AccountingDepartmentsFilter | Apply filters (optional) # example passing only required values which don't have defaults set # and optional values try: - # List Departments - api_response = api_instance.departments_all(raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id, cursor=cursor, limit=limit, fields=fields, filter=filter) + # List Expenses + api_response = api_instance.expenses_all(raw=raw, consumer_id=consumer_id, app_id=app_id, service_id=service_id, cursor=cursor, limit=limit) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->departments_all: %s\n" % e) + print("Exception when calling AccountingApi->expenses_all: %s\n" % e) ``` @@ -3435,12 +4790,10 @@ Name | Type | Description | Notes **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] **cursor** | **str, none_type**| Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. | [optional] **limit** | **int**| Number of results to return. Minimum 1, Maximum 200, Default 20 | [optional] if omitted the server will use the default value of 20 - **fields** | **str, none_type**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. | [optional] - **filter** | **AccountingDepartmentsFilter**| Apply filters | [optional] ### Return type -[**GetAccountingDepartmentsResponse**](GetAccountingDepartmentsResponse.md) +[**GetExpensesResponse**](GetExpensesResponse.md) ### Authorization @@ -3456,7 +4809,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Departments | - | +**200** | Expenses | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -3466,12 +4819,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **departments_delete** -> DeleteAccountingDepartmentResponse departments_delete(id) +# **expenses_delete** +> DeleteExpenseResponse expenses_delete(id) -Delete Department +Delete Expense -Delete Department +Delete Expense ### Example @@ -3481,8 +4834,8 @@ Delete Department import time import apideck from apideck.api import accounting_api -from apideck.model.delete_accounting_department_response import DeleteAccountingDepartmentResponse from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.delete_expense_response import DeleteExpenseResponse from apideck.model.payment_required_response import PaymentRequiredResponse from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse @@ -3518,20 +4871,20 @@ with apideck.ApiClient(configuration) as api_client: # example passing only required values which don't have defaults set try: - # Delete Department - api_response = api_instance.departments_delete(id) + # Delete Expense + api_response = api_instance.expenses_delete(id) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->departments_delete: %s\n" % e) + print("Exception when calling AccountingApi->expenses_delete: %s\n" % e) # example passing only required values which don't have defaults set # and optional values try: - # Delete Department - api_response = api_instance.departments_delete(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) + # Delete Expense + api_response = api_instance.expenses_delete(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->departments_delete: %s\n" % e) + print("Exception when calling AccountingApi->expenses_delete: %s\n" % e) ``` @@ -3547,7 +4900,7 @@ Name | Type | Description | Notes ### Return type -[**DeleteAccountingDepartmentResponse**](DeleteAccountingDepartmentResponse.md) +[**DeleteExpenseResponse**](DeleteExpenseResponse.md) ### Authorization @@ -3563,7 +4916,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Department deleted | - | +**200** | Expenses | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -3573,12 +4926,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **departments_one** -> GetAccountingDepartmentResponse departments_one(id) +# **expenses_one** +> GetExpenseResponse expenses_one(id) -Get Department +Get Expense -Get Department +Get Expense ### Example @@ -3589,8 +4942,8 @@ import time import apideck from apideck.api import accounting_api from apideck.model.bad_request_response import BadRequestResponse +from apideck.model.get_expense_response import GetExpenseResponse from apideck.model.payment_required_response import PaymentRequiredResponse -from apideck.model.get_accounting_department_response import GetAccountingDepartmentResponse from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse from apideck.model.unprocessable_response import UnprocessableResponse @@ -3622,24 +4975,23 @@ with apideck.ApiClient(configuration) as api_client: app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False - fields = "id,updated_at" # str, none_type | The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional) # example passing only required values which don't have defaults set try: - # Get Department - api_response = api_instance.departments_one(id) + # Get Expense + api_response = api_instance.expenses_one(id) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->departments_one: %s\n" % e) + print("Exception when calling AccountingApi->expenses_one: %s\n" % e) # example passing only required values which don't have defaults set # and optional values try: - # Get Department - api_response = api_instance.departments_one(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw, fields=fields) + # Get Expense + api_response = api_instance.expenses_one(id, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->departments_one: %s\n" % e) + print("Exception when calling AccountingApi->expenses_one: %s\n" % e) ``` @@ -3652,11 +5004,10 @@ Name | Type | Description | Notes **app_id** | **str**| The ID of your Unify application | [optional] **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] **raw** | **bool**| Include raw response. Mostly used for debugging purposes | [optional] if omitted the server will use the default value of False - **fields** | **str, none_type**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. | [optional] ### Return type -[**GetAccountingDepartmentResponse**](GetAccountingDepartmentResponse.md) +[**GetExpenseResponse**](GetExpenseResponse.md) ### Authorization @@ -3672,7 +5023,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Location | - | +**200** | Expenses | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -3682,12 +5033,12 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) -# **departments_update** -> UpdateAccountingDepartmentResponse departments_update(id, accounting_department) +# **expenses_update** +> UpdateExpenseResponse expenses_update(id, expense) -Update Department +Update Expense -Update Department +Update Expense ### Example @@ -3697,12 +5048,12 @@ Update Department import time import apideck from apideck.api import accounting_api -from apideck.model.accounting_department import AccountingDepartment -from apideck.model.update_accounting_department_response import UpdateAccountingDepartmentResponse +from apideck.model.expense import Expense from apideck.model.bad_request_response import BadRequestResponse from apideck.model.payment_required_response import PaymentRequiredResponse from apideck.model.unexpected_error_response import UnexpectedErrorResponse from apideck.model.unauthorized_response import UnauthorizedResponse +from apideck.model.update_expense_response import UpdateExpenseResponse from apideck.model.unprocessable_response import UnprocessableResponse from apideck.model.not_found_response import NotFoundResponse from pprint import pprint @@ -3728,13 +5079,50 @@ with apideck.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = accounting_api.AccountingApi(api_client) id = "id_example" # str | ID of the record you are acting upon. - accounting_department = AccountingDepartment( - parent_id="12345", - name="Sales", - status="active", - subsidiaries=[ - SubsidiaryReference( - name="SpaceX", + expense = Expense( + number="OIT00546", + transaction_date=dateutil_parser('2021-05-01T12:00:00Z'), + account_id="123456", + customer_id="12345", + supplier_id="12345", + company_id="12345", + department_id="12345", + currency=Currency("USD"), + currency_rate=0.69, + type="expense", + memo="For travel expenses incurred on 2024-05-15", + tax_rate=LinkedTaxRate( + id="123456", + rate=10, + ), + total_amount=275, + line_items=[ + ExpenseLineItem( + tracking_categories=LinkedTrackingCategories([ + LinkedTrackingCategory( + id="123456", + name="New York", + ), + ]), + account_id="123456", + customer_id="12345", + department_id="12345", + location_id="12345", + tax_rate=LinkedTaxRate( + id="123456", + rate=10, + ), + description="Travel US.", + total_amount=275, + billable=True, + ), + ], + custom_fields=[ + CustomField( + id="2389328923893298", + name="employee_level", + description="Employee Level", + value=None, ), ], row_version="1-12345", @@ -3751,7 +5139,7 @@ with apideck.ApiClient(configuration) as api_client: ], }, ]), - ) # AccountingDepartment | + ) # Expense | consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional) app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional) service_id = "x-apideck-service-id_example" # str | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional) @@ -3759,20 +5147,20 @@ with apideck.ApiClient(configuration) as api_client: # example passing only required values which don't have defaults set try: - # Update Department - api_response = api_instance.departments_update(id, accounting_department) + # Update Expense + api_response = api_instance.expenses_update(id, expense) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->departments_update: %s\n" % e) + print("Exception when calling AccountingApi->expenses_update: %s\n" % e) # example passing only required values which don't have defaults set # and optional values try: - # Update Department - api_response = api_instance.departments_update(id, accounting_department, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) + # Update Expense + api_response = api_instance.expenses_update(id, expense, consumer_id=consumer_id, app_id=app_id, service_id=service_id, raw=raw) pprint(api_response) except apideck.ApiException as e: - print("Exception when calling AccountingApi->departments_update: %s\n" % e) + print("Exception when calling AccountingApi->expenses_update: %s\n" % e) ``` @@ -3781,7 +5169,7 @@ with apideck.ApiClient(configuration) as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **id** | **str**| ID of the record you are acting upon. | - **accounting_department** | [**AccountingDepartment**](AccountingDepartment.md)| | + **expense** | [**Expense**](Expense.md)| | **consumer_id** | **str**| ID of the consumer which you want to get or push data from | [optional] **app_id** | **str**| The ID of your Unify application | [optional] **service_id** | **str**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | [optional] @@ -3789,7 +5177,7 @@ Name | Type | Description | Notes ### Return type -[**UpdateAccountingDepartmentResponse**](UpdateAccountingDepartmentResponse.md) +[**UpdateExpenseResponse**](UpdateExpenseResponse.md) ### Authorization @@ -3805,7 +5193,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Department | - | +**200** | Expenses | - | **400** | Bad Request | - | **401** | Unauthorized | - | **402** | Payment Required | - | @@ -4849,6 +6237,7 @@ with apideck.ApiClient(configuration) as api_client: filter = InvoicesFilter( updated_since=dateutil_parser('2020-09-30T07:43:32Z'), created_since=dateutil_parser('2020-09-30T07:43:32Z'), + number="OIT00546", ) # InvoicesFilter | Apply filters (optional) sort = InvoicesSort( by="updated_at", @@ -7524,11 +8913,11 @@ with apideck.ApiClient(configuration) as api_client: payment = Payment( currency=Currency("USD"), currency_rate=0.69, - total_amount=49.99, + total_amount=1000, reference="123456", - payment_method="Credit Card", + payment_method="cash", payment_method_reference="123456", - payment_method_id="123456", + payment_method_id="12345", accounts_receivable_account_type="Account", accounts_receivable_account_id="123456", account=LinkedLedgerAccount( @@ -7543,8 +8932,7 @@ with apideck.ApiClient(configuration) as api_client: name="Windsurf Shop", email="boring@boring.com", ), - supplier=LinkedSupplier( - id="12345", + supplier=DeprecatedLinkedSupplier( display_name="Windsurf Shop", address=Address( id="123", @@ -7575,8 +8963,8 @@ with apideck.ApiClient(configuration) as api_client: ), company_id="12345", reconciled=True, - status="authorised", - type="accounts_receivable", + status=PaymentStatus("authorised"), + type=PaymentType("accounts_receivable"), allocations=[ Allocation( id="123456", @@ -7585,8 +8973,8 @@ with apideck.ApiClient(configuration) as api_client: allocation_id="123456", ), ], - note="Some notes about this payment", - number="Some notes about this payment", + note="Some notes about this transaction", + number="123456", tracking_categories=LinkedTrackingCategories([ LinkedTrackingCategory( id="123456", @@ -8061,11 +9449,11 @@ with apideck.ApiClient(configuration) as api_client: payment = Payment( currency=Currency("USD"), currency_rate=0.69, - total_amount=49.99, + total_amount=1000, reference="123456", - payment_method="Credit Card", + payment_method="cash", payment_method_reference="123456", - payment_method_id="123456", + payment_method_id="12345", accounts_receivable_account_type="Account", accounts_receivable_account_id="123456", account=LinkedLedgerAccount( @@ -8080,8 +9468,7 @@ with apideck.ApiClient(configuration) as api_client: name="Windsurf Shop", email="boring@boring.com", ), - supplier=LinkedSupplier( - id="12345", + supplier=DeprecatedLinkedSupplier( display_name="Windsurf Shop", address=Address( id="123", @@ -8112,8 +9499,8 @@ with apideck.ApiClient(configuration) as api_client: ), company_id="12345", reconciled=True, - status="authorised", - type="accounts_receivable", + status=PaymentStatus("authorised"), + type=PaymentType("accounts_receivable"), allocations=[ Allocation( id="123456", @@ -8122,8 +9509,8 @@ with apideck.ApiClient(configuration) as api_client: allocation_id="123456", ), ], - note="Some notes about this payment", - number="Some notes about this payment", + note="Some notes about this transaction", + number="123456", tracking_categories=LinkedTrackingCategories([ LinkedTrackingCategory( id="123456", diff --git a/docs/apis/CrmApi.md b/docs/apis/CrmApi.md index 1c61285627..5903edf6e1 100644 --- a/docs/apis/CrmApi.md +++ b/docs/apis/CrmApi.md @@ -2641,6 +2641,7 @@ with apideck.ApiClient(configuration) as api_client: first_name="Elon", last_name="Musk", email="elon@tesla.com", + phone_number="1234567890", ) # LeadsFilter | Apply filters (optional) sort = LeadsSort( by="created_at", diff --git a/docs/apis/HrisApi.md b/docs/apis/HrisApi.md index b3ecddba52..401daa94ae 100644 --- a/docs/apis/HrisApi.md +++ b/docs/apis/HrisApi.md @@ -2911,6 +2911,7 @@ with apideck.ApiClient(configuration) as api_client: approval_date="2022-03-21", units="hours", amount=3.5, + day_part="morning", notes=TimeOffRequestNotes( employee="Relaxing on the beach for a few hours.", manager="Enjoy!", @@ -3050,6 +3051,7 @@ with apideck.ApiClient(configuration) as api_client: updated_since="2020-09-30T07:43:32.000Z", employee_id="1234", time_off_request_status="", + company_id="1234", ) # TimeOffRequestsFilter | Apply filters (optional) pass_through = PassThroughQuery() # PassThroughQuery | Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional) fields = "id,updated_at" # str, none_type | The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional) @@ -3386,6 +3388,7 @@ with apideck.ApiClient(configuration) as api_client: approval_date="2022-03-21", units="hours", amount=3.5, + day_part="morning", notes=TimeOffRequestNotes( employee="Relaxing on the beach for a few hours.", manager="Enjoy!", diff --git a/docs/apis/LeadApi.md b/docs/apis/LeadApi.md index 77b2c26bde..43dcb11a4a 100644 --- a/docs/apis/LeadApi.md +++ b/docs/apis/LeadApi.md @@ -275,6 +275,7 @@ with apideck.ApiClient(configuration) as api_client: first_name="Elon", last_name="Musk", email="elon@tesla.com", + phone_number="1234567890", ) # LeadsFilter | Apply filters (optional) sort = LeadsSort( by="created_at", diff --git a/docs/models/AccountingEventType.md b/docs/models/AccountingEventType.md index d419eec890..97f2478df5 100644 --- a/docs/models/AccountingEventType.md +++ b/docs/models/AccountingEventType.md @@ -4,7 +4,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**value** | **str** | | must be one of ["*", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", ] +**value** | **str** | | must be one of ["*", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", "accounting.expense.created", "accounting.expense.updated", "accounting.expense.deleted", ] [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/docs/models/Attachment.md b/docs/models/Attachment.md index 991ff21614..0ff1644119 100644 --- a/docs/models/Attachment.md +++ b/docs/models/Attachment.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes **size** | **int, none_type** | The size of the file in bytes | [optional] **reference** | [**AttachmentReference**](AttachmentReference.md) | | [optional] **description** | **str, none_type** | Optional description of the file | [optional] +**parent_folder_id** | **str, none_type** | The folder id where this attachment belong to | [optional] **updated_by** | **str, none_type** | The user who last updated the object. | [optional] [readonly] **created_by** | **str, none_type** | The user who created the object. | [optional] [readonly] **updated_at** | **datetime, none_type** | The date and time when the object was last updated. | [optional] [readonly] diff --git a/docs/models/AttachmentReferenceType.md b/docs/models/AttachmentReferenceType.md index 05e583b3c8..4fa6b1af67 100644 --- a/docs/models/AttachmentReferenceType.md +++ b/docs/models/AttachmentReferenceType.md @@ -4,7 +4,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**value** | **str** | | must be one of ["invoice", "bill", ] +**value** | **str** | | must be one of ["invoice", "bill", "expense", ] [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/docs/models/BillPayment.md b/docs/models/BillPayment.md new file mode 100644 index 0000000000..b14343d01b --- /dev/null +++ b/docs/models/BillPayment.md @@ -0,0 +1,39 @@ +# BillPayment + + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **str** | A unique identifier for an object. | [readonly] +**total_amount** | **float, none_type** | The total amount of the transaction | +**transaction_date** | **datetime, none_type** | The date of the transaction - YYYY:MM::DDThh:mm:ss.sTZD | +**downstream_id** | **str, none_type** | The third-party API ID of original entity | [optional] [readonly] +**currency** | [**Currency**](Currency.md) | | [optional] +**currency_rate** | **float, none_type** | Currency Exchange Rate at the time entity was recorded/generated. | [optional] +**reference** | **str, none_type** | Optional transaction reference message ie: Debit remittance detail. | [optional] +**payment_method** | **str, none_type** | Payment method used for the transaction, such as cash, credit card, bank transfer, or check | [optional] +**payment_method_reference** | **str, none_type** | Optional reference message returned by payment method on processing | [optional] +**payment_method_id** | **str, none_type** | A unique identifier for an object. | [optional] +**account** | [**LinkedLedgerAccount**](LinkedLedgerAccount.md) | | [optional] +**supplier** | [**LinkedSupplier**](LinkedSupplier.md) | | [optional] +**company_id** | **str, none_type** | The company or subsidiary id the transaction belongs to | [optional] +**reconciled** | **bool, none_type** | Indicates if the transaction has been reconciled. | [optional] +**status** | [**PaymentStatus**](PaymentStatus.md) | | [optional] +**type** | [**PaymentType**](PaymentType.md) | | [optional] +**allocations** | [**[Allocation]**](Allocation.md) | | [optional] +**note** | **str, none_type** | Note associated with the transaction | [optional] +**number** | **str, none_type** | Number associated with the transaction | [optional] +**tracking_categories** | [**LinkedTrackingCategories**](LinkedTrackingCategories.md) | | [optional] +**custom_fields** | [**[CustomField]**](CustomField.md) | | [optional] +**row_version** | **str, none_type** | A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object. | [optional] +**display_id** | **str, none_type** | Id to be displayed. | [optional] +**custom_mappings** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type** | When custom mappings are configured on the resource, the result is included here. | [optional] [readonly] +**updated_by** | **str, none_type** | The user who last updated the object. | [optional] [readonly] +**created_by** | **str, none_type** | The user who created the object. | [optional] [readonly] +**created_at** | **datetime, none_type** | The date and time when the object was created. | [optional] [readonly] +**updated_at** | **datetime, none_type** | The date and time when the object was last updated. | [optional] [readonly] +**pass_through** | [**PassThroughBody**](PassThroughBody.md) | | [optional] + +[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) + + diff --git a/docs/models/CreateAttachmentRequest.md b/docs/models/CreateAttachmentRequest.md index f91afe43a0..4cf71836f6 100644 --- a/docs/models/CreateAttachmentRequest.md +++ b/docs/models/CreateAttachmentRequest.md @@ -6,6 +6,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **name** | **str** | The name of the file | **description** | **str** | Optional description of the file. | [optional] +**parent_folder_id** | **str** | The folder id where this attachment belong to | [optional] **pass_through** | [**PassThroughBody**](PassThroughBody.md) | | [optional] [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/docs/models/CreateBillPaymentResponse.md b/docs/models/CreateBillPaymentResponse.md new file mode 100644 index 0000000000..03e177f15b --- /dev/null +++ b/docs/models/CreateBillPaymentResponse.md @@ -0,0 +1,17 @@ +# CreateBillPaymentResponse + + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**status_code** | **int** | HTTP Response Status Code | +**status** | **str** | HTTP Response Status | +**service** | **str** | Apideck ID of service provider | +**resource** | **str** | Unified API resource name | +**operation** | **str** | Operation performed | +**data** | [**UnifiedId**](UnifiedId.md) | | +**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] + +[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) + + diff --git a/docs/models/CreateExpenseResponse.md b/docs/models/CreateExpenseResponse.md new file mode 100644 index 0000000000..8eae7bb950 --- /dev/null +++ b/docs/models/CreateExpenseResponse.md @@ -0,0 +1,17 @@ +# CreateExpenseResponse + + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**status_code** | **int** | HTTP Response Status Code | +**status** | **str** | HTTP Response Status | +**service** | **str** | Apideck ID of service provider | +**resource** | **str** | Unified API resource name | +**operation** | **str** | Operation performed | +**data** | [**UnifiedId**](UnifiedId.md) | | +**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] + +[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) + + diff --git a/docs/models/DeleteBillPaymentResponse.md b/docs/models/DeleteBillPaymentResponse.md new file mode 100644 index 0000000000..304a1ca9e7 --- /dev/null +++ b/docs/models/DeleteBillPaymentResponse.md @@ -0,0 +1,17 @@ +# DeleteBillPaymentResponse + + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**status_code** | **int** | HTTP Response Status Code | +**status** | **str** | HTTP Response Status | +**service** | **str** | Apideck ID of service provider | +**resource** | **str** | Unified API resource name | +**operation** | **str** | Operation performed | +**data** | [**UnifiedId**](UnifiedId.md) | | +**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] + +[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) + + diff --git a/docs/models/DeleteExpenseResponse.md b/docs/models/DeleteExpenseResponse.md new file mode 100644 index 0000000000..cf0db77feb --- /dev/null +++ b/docs/models/DeleteExpenseResponse.md @@ -0,0 +1,17 @@ +# DeleteExpenseResponse + + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**status_code** | **int** | HTTP Response Status Code | +**status** | **str** | HTTP Response Status | +**service** | **str** | Apideck ID of service provider | +**resource** | **str** | Unified API resource name | +**operation** | **str** | Operation performed | +**data** | [**UnifiedId**](UnifiedId.md) | | +**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] + +[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) + + diff --git a/docs/models/DeprecatedLinkedSupplier.md b/docs/models/DeprecatedLinkedSupplier.md new file mode 100644 index 0000000000..94ae567946 --- /dev/null +++ b/docs/models/DeprecatedLinkedSupplier.md @@ -0,0 +1,17 @@ +# DeprecatedLinkedSupplier + +The supplier this entity is linked to. + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **str** | A unique identifier for an object. | [optional] [readonly] +**display_id** | **str, none_type** | The display ID of the supplier. | [optional] [readonly] +**display_name** | **str, none_type** | The display name of the supplier. | [optional] +**company_name** | **str, none_type** | The company name of the supplier. | [optional] [readonly] +**address** | [**Address**](Address.md) | | [optional] +**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] + +[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) + + diff --git a/docs/models/Expense.md b/docs/models/Expense.md new file mode 100644 index 0000000000..b43d43a95f --- /dev/null +++ b/docs/models/Expense.md @@ -0,0 +1,31 @@ +# Expense + + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**transaction_date** | **datetime, none_type** | The date of the transaction - YYYY:MM::DDThh:mm:ss.sTZD | +**account_id** | **str** | The unique identifier for the ledger account that this expense should be credited to. | +**line_items** | [**[ExpenseLineItem]**](ExpenseLineItem.md) | Expense line items linked to this expense. | +**id** | **str** | A unique identifier for an object. | [optional] [readonly] +**number** | **str, none_type** | Number. | [optional] +**customer_id** | **str** | The ID of the customer this entity is linked to. Used for expenses that should be marked as billable to customers. | [optional] +**supplier_id** | **str** | The ID of the supplier this entity is linked to. | [optional] +**company_id** | **str, none_type** | The company or subsidiary id the transaction belongs to | [optional] +**department_id** | **str** | The ID of the department this expense is linked to. | [optional] +**currency** | [**Currency**](Currency.md) | | [optional] +**currency_rate** | **float, none_type** | Currency Exchange Rate at the time entity was recorded/generated. | [optional] +**type** | **str, none_type** | The type of expense. | [optional] +**memo** | **str, none_type** | The memo of the expense. | [optional] +**tax_rate** | [**LinkedTaxRate**](LinkedTaxRate.md) | | [optional] +**total_amount** | **float, none_type** | The total amount of the expense line item. | [optional] +**custom_fields** | [**[CustomField]**](CustomField.md) | | [optional] +**custom_mappings** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type** | When custom mappings are configured on the resource, the result is included here. | [optional] [readonly] +**updated_at** | **datetime, none_type** | The date and time when the object was last updated. | [optional] [readonly] +**created_at** | **datetime, none_type** | The date and time when the object was created. | [optional] [readonly] +**row_version** | **str, none_type** | A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object. | [optional] +**pass_through** | [**PassThroughBody**](PassThroughBody.md) | | [optional] + +[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) + + diff --git a/docs/models/ExpenseLineItem.md b/docs/models/ExpenseLineItem.md new file mode 100644 index 0000000000..c5eac66d7f --- /dev/null +++ b/docs/models/ExpenseLineItem.md @@ -0,0 +1,20 @@ +# ExpenseLineItem + + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**total_amount** | **float, none_type** | The total amount of the expense line item. | +**id** | **str** | A unique identifier for an object. | [optional] [readonly] +**tracking_categories** | [**LinkedTrackingCategories**](LinkedTrackingCategories.md) | | [optional] +**account_id** | **str** | The unique identifier for the ledger account. | [optional] +**customer_id** | **str** | The ID of the customer this expense item is linked to. | [optional] +**department_id** | **str** | The ID of the department this expense item is linked to. | [optional] +**location_id** | **str** | The ID of the location this expense item is linked to. | [optional] +**tax_rate** | [**LinkedTaxRate**](LinkedTaxRate.md) | | [optional] +**description** | **str, none_type** | The expense line item description | [optional] +**billable** | **bool** | Boolean that indicates if the line item is billable or not. | [optional] + +[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) + + diff --git a/docs/models/GetBillPaymentResponse.md b/docs/models/GetBillPaymentResponse.md new file mode 100644 index 0000000000..7ad7596cc6 --- /dev/null +++ b/docs/models/GetBillPaymentResponse.md @@ -0,0 +1,17 @@ +# GetBillPaymentResponse + + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**status_code** | **int** | HTTP Response Status Code | +**status** | **str** | HTTP Response Status | +**service** | **str** | Apideck ID of service provider | +**resource** | **str** | Unified API resource name | +**operation** | **str** | Operation performed | +**data** | [**BillPayment**](BillPayment.md) | | +**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] + +[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) + + diff --git a/docs/models/GetBillPaymentsResponse.md b/docs/models/GetBillPaymentsResponse.md new file mode 100644 index 0000000000..398be3c86f --- /dev/null +++ b/docs/models/GetBillPaymentsResponse.md @@ -0,0 +1,19 @@ +# GetBillPaymentsResponse + + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**status_code** | **int** | HTTP Response Status Code | +**status** | **str** | HTTP Response Status | +**service** | **str** | Apideck ID of service provider | +**resource** | **str** | Unified API resource name | +**operation** | **str** | Operation performed | +**data** | [**[BillPayment]**](BillPayment.md) | | +**meta** | [**Meta**](Meta.md) | | [optional] +**links** | [**Links**](Links.md) | | [optional] +**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] + +[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) + + diff --git a/docs/models/GetExpenseResponse.md b/docs/models/GetExpenseResponse.md new file mode 100644 index 0000000000..689c4945bb --- /dev/null +++ b/docs/models/GetExpenseResponse.md @@ -0,0 +1,17 @@ +# GetExpenseResponse + + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**status_code** | **int** | HTTP Response Status Code | +**status** | **str** | HTTP Response Status | +**service** | **str** | Apideck ID of service provider | +**resource** | **str** | Unified API resource name | +**operation** | **str** | Operation performed | +**data** | [**Expense**](Expense.md) | | +**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] + +[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) + + diff --git a/docs/models/GetExpensesResponse.md b/docs/models/GetExpensesResponse.md new file mode 100644 index 0000000000..343e98f00a --- /dev/null +++ b/docs/models/GetExpensesResponse.md @@ -0,0 +1,19 @@ +# GetExpensesResponse + + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**status_code** | **int** | HTTP Response Status Code | +**status** | **str** | HTTP Response Status | +**service** | **str** | Apideck ID of service provider | +**resource** | **str** | Unified API resource name | +**operation** | **str** | Operation performed | +**data** | [**[Expense]**](Expense.md) | | +**meta** | [**Meta**](Meta.md) | | [optional] +**links** | [**Links**](Links.md) | | [optional] +**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] + +[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) + + diff --git a/docs/models/InvoicesFilter.md b/docs/models/InvoicesFilter.md index 779aad8c57..6cd2550927 100644 --- a/docs/models/InvoicesFilter.md +++ b/docs/models/InvoicesFilter.md @@ -6,6 +6,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **updated_since** | **datetime** | | [optional] **created_since** | **datetime** | | [optional] +**number** | **str** | Invoice number to search for | [optional] [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/docs/models/LeadsFilter.md b/docs/models/LeadsFilter.md index fd8f664b6c..df0b7fcceb 100644 --- a/docs/models/LeadsFilter.md +++ b/docs/models/LeadsFilter.md @@ -8,6 +8,7 @@ Name | Type | Description | Notes **first_name** | **str** | First name of the lead to filter on | [optional] **last_name** | **str** | Last name of the lead to filter on | [optional] **email** | **str** | E-mail of the lead to filter on | [optional] +**phone_number** | **str** | Phone number of the lead to filter on | [optional] [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/docs/models/Payment.md b/docs/models/Payment.md index 29c09b72bc..89dcc74284 100644 --- a/docs/models/Payment.md +++ b/docs/models/Payment.md @@ -4,32 +4,32 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**id** | **str** | Unique identifier representing the entity | [readonly] -**total_amount** | **float** | Amount of payment | -**transaction_date** | **datetime** | Date transaction was entered - YYYY:MM::DDThh:mm:ss.sTZD | +**id** | **str** | A unique identifier for an object. | [readonly] +**total_amount** | **float, none_type** | The total amount of the transaction | +**transaction_date** | **datetime, none_type** | The date of the transaction - YYYY:MM::DDThh:mm:ss.sTZD | **downstream_id** | **str, none_type** | The third-party API ID of original entity | [optional] [readonly] **currency** | [**Currency**](Currency.md) | | [optional] **currency_rate** | **float, none_type** | Currency Exchange Rate at the time entity was recorded/generated. | [optional] -**reference** | **str, none_type** | Optional payment reference message ie: Debit remittance detail. | [optional] -**payment_method** | **str, none_type** | Payment method name | [optional] +**reference** | **str, none_type** | Optional transaction reference message ie: Debit remittance detail. | [optional] +**payment_method** | **str, none_type** | Payment method used for the transaction, such as cash, credit card, bank transfer, or check | [optional] **payment_method_reference** | **str, none_type** | Optional reference message returned by payment method on processing | [optional] -**payment_method_id** | **str, none_type** | Unique identifier for the payment method. | [optional] +**payment_method_id** | **str, none_type** | A unique identifier for an object. | [optional] **accounts_receivable_account_type** | **str, none_type** | Type of accounts receivable account. | [optional] **accounts_receivable_account_id** | **str, none_type** | Unique identifier for the account to allocate payment to. | [optional] **account** | [**LinkedLedgerAccount**](LinkedLedgerAccount.md) | | [optional] **customer** | [**LinkedCustomer**](LinkedCustomer.md) | | [optional] -**supplier** | [**LinkedSupplier**](LinkedSupplier.md) | | [optional] +**supplier** | [**DeprecatedLinkedSupplier**](DeprecatedLinkedSupplier.md) | | [optional] **company_id** | **str, none_type** | The company or subsidiary id the transaction belongs to | [optional] -**reconciled** | **bool** | Payment has been reconciled | [optional] -**status** | **str** | Status of payment | [optional] -**type** | **str** | Type of payment | [optional] +**reconciled** | **bool, none_type** | Indicates if the transaction has been reconciled. | [optional] +**status** | [**PaymentStatus**](PaymentStatus.md) | | [optional] +**type** | [**PaymentType**](PaymentType.md) | | [optional] **allocations** | [**[Allocation]**](Allocation.md) | | [optional] -**note** | **str, none_type** | Optional note to be associated with the payment. | [optional] -**number** | **str, none_type** | Payment number. | [optional] +**note** | **str, none_type** | Note associated with the transaction | [optional] +**number** | **str, none_type** | Number associated with the transaction | [optional] **tracking_categories** | [**LinkedTrackingCategories**](LinkedTrackingCategories.md) | | [optional] **custom_fields** | [**[CustomField]**](CustomField.md) | | [optional] **row_version** | **str, none_type** | A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object. | [optional] -**display_id** | **str, none_type** | Payment id to be displayed. | [optional] +**display_id** | **str, none_type** | Id to be displayed. | [optional] **custom_mappings** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type** | When custom mappings are configured on the resource, the result is included here. | [optional] [readonly] **updated_by** | **str, none_type** | The user who last updated the object. | [optional] [readonly] **created_by** | **str, none_type** | The user who created the object. | [optional] [readonly] diff --git a/docs/models/PaymentStatus.md b/docs/models/PaymentStatus.md new file mode 100644 index 0000000000..8fd8a0adac --- /dev/null +++ b/docs/models/PaymentStatus.md @@ -0,0 +1,12 @@ +# PaymentStatus + +Status of payment + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**value** | **str** | Status of payment | must be one of ["authorised", "paid", "voided", "deleted", ] + +[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) + + diff --git a/docs/models/PaymentType.md b/docs/models/PaymentType.md new file mode 100644 index 0000000000..98a3334a13 --- /dev/null +++ b/docs/models/PaymentType.md @@ -0,0 +1,12 @@ +# PaymentType + +Type of payment + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**value** | **str** | Type of payment | must be one of ["accounts_receivable", "accounts_payable", "accounts_receivable_credit", "accounts_payable_credit", "accounts_receivable_overpayment", "accounts_payable_overpayment", "accounts_receivable_prepayment", "accounts_payable_prepayment", ] + +[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) + + diff --git a/docs/models/TimeOffRequest.md b/docs/models/TimeOffRequest.md index 552dd972c6..f4df35e5bc 100644 --- a/docs/models/TimeOffRequest.md +++ b/docs/models/TimeOffRequest.md @@ -16,6 +16,7 @@ Name | Type | Description | Notes **approval_date** | **str, none_type** | The date the request was approved | [optional] **units** | **str, none_type** | The unit of time off requested. Possible values include: `hours`, `days`, or `other`. | [optional] **amount** | **float, none_type** | The amount of time off requested. | [optional] +**day_part** | **str, none_type** | The day part of the time off request. | [optional] **notes** | [**TimeOffRequestNotes**](TimeOffRequestNotes.md) | | [optional] **custom_mappings** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type** | When custom mappings are configured on the resource, the result is included here. | [optional] [readonly] **updated_by** | **str, none_type** | The user who last updated the object. | [optional] [readonly] diff --git a/docs/models/TimeOffRequestsFilter.md b/docs/models/TimeOffRequestsFilter.md index 5af663f592..e7e3801300 100644 --- a/docs/models/TimeOffRequestsFilter.md +++ b/docs/models/TimeOffRequestsFilter.md @@ -9,6 +9,7 @@ Name | Type | Description | Notes **updated_since** | **str** | Minimum date the time off request was last created or modified | [optional] **employee_id** | **str** | Employee ID | [optional] **time_off_request_status** | **str** | Time off request status to filter on | [optional] +**company_id** | **str** | Company ID | [optional] [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/docs/models/UpdateBillPaymentResponse.md b/docs/models/UpdateBillPaymentResponse.md new file mode 100644 index 0000000000..4c051f6792 --- /dev/null +++ b/docs/models/UpdateBillPaymentResponse.md @@ -0,0 +1,17 @@ +# UpdateBillPaymentResponse + + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**status_code** | **int** | HTTP Response Status Code | +**status** | **str** | HTTP Response Status | +**service** | **str** | Apideck ID of service provider | +**resource** | **str** | Unified API resource name | +**operation** | **str** | Operation performed | +**data** | [**UnifiedId**](UnifiedId.md) | | +**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] + +[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) + + diff --git a/docs/models/UpdateExpenseResponse.md b/docs/models/UpdateExpenseResponse.md new file mode 100644 index 0000000000..e56fe97a2d --- /dev/null +++ b/docs/models/UpdateExpenseResponse.md @@ -0,0 +1,17 @@ +# UpdateExpenseResponse + + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**status_code** | **int** | HTTP Response Status Code | +**status** | **str** | HTTP Response Status | +**service** | **str** | Apideck ID of service provider | +**resource** | **str** | Unified API resource name | +**operation** | **str** | Operation performed | +**data** | [**UnifiedId**](UnifiedId.md) | | +**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] + +[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) + + diff --git a/docs/models/WebhookEventType.md b/docs/models/WebhookEventType.md index 2bcb776b33..c8c7c5a2e4 100644 --- a/docs/models/WebhookEventType.md +++ b/docs/models/WebhookEventType.md @@ -4,7 +4,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**value** | **str** | | must be one of ["*", "crm.activity.created", "crm.activity.updated", "crm.activity.deleted", "crm.company.created", "crm.company.updated", "crm.company.deleted", "crm.contact.created", "crm.contact.updated", "crm.contact.deleted", "crm.lead.created", "crm.lead.updated", "crm.lead.deleted", "crm.note.created", "crm.notes.updated", "crm.notes.deleted", "crm.opportunity.created", "crm.opportunity.updated", "crm.opportunity.deleted", "lead.lead.created", "lead.lead.updated", "lead.lead.deleted", "vault.connection.created", "vault.connection.updated", "vault.connection.disabled", "vault.connection.deleted", "vault.connection.callable", "vault.connection.revoked", "vault.connection.token_refresh.failed", "ats.job.created", "ats.job.updated", "ats.job.deleted", "ats.applicant.created", "ats.applicant.updated", "ats.applicant.deleted", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", "pos.order.created", "pos.order.updated", "pos.order.deleted", "pos.product.created", "pos.product.updated", "pos.product.deleted", "pos.payment.created", "pos.payment.updated", "pos.payment.deleted", "pos.merchant.created", "pos.merchant.updated", "pos.merchant.deleted", "pos.location.created", "pos.location.updated", "pos.location.deleted", "pos.item.created", "pos.item.updated", "pos.item.deleted", "pos.modifier.created", "pos.modifier.updated", "pos.modifier.deleted", "pos.modifier-group.created", "pos.modifier-group.updated", "pos.modifier-group.deleted", "hris.employee.created", "hris.employee.updated", "hris.employee.deleted", "hris.employee.terminated", "hris.company.created", "hris.company.updated", "hris.company.deleted", "file-storage.file.created", "file-storage.file.updated", "file-storage.file.deleted", "issue-tracking.ticket.created", "issue-tracking.ticket.updated", "issue-tracking.ticket.deleted", "ats.application.created", "ats.application.updated", "ats.application.deleted", ] +**value** | **str** | | must be one of ["*", "crm.activity.created", "crm.activity.updated", "crm.activity.deleted", "crm.company.created", "crm.company.updated", "crm.company.deleted", "crm.contact.created", "crm.contact.updated", "crm.contact.deleted", "crm.lead.created", "crm.lead.updated", "crm.lead.deleted", "crm.note.created", "crm.notes.updated", "crm.notes.deleted", "crm.opportunity.created", "crm.opportunity.updated", "crm.opportunity.deleted", "lead.lead.created", "lead.lead.updated", "lead.lead.deleted", "vault.connection.created", "vault.connection.updated", "vault.connection.disabled", "vault.connection.deleted", "vault.connection.callable", "vault.connection.revoked", "vault.connection.token_refresh.failed", "ats.job.created", "ats.job.updated", "ats.job.deleted", "ats.applicant.created", "ats.applicant.updated", "ats.applicant.deleted", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", "pos.order.created", "pos.order.updated", "pos.order.deleted", "pos.product.created", "pos.product.updated", "pos.product.deleted", "pos.payment.created", "pos.payment.updated", "pos.payment.deleted", "pos.merchant.created", "pos.merchant.updated", "pos.merchant.deleted", "pos.location.created", "pos.location.updated", "pos.location.deleted", "pos.item.created", "pos.item.updated", "pos.item.deleted", "pos.modifier.created", "pos.modifier.updated", "pos.modifier.deleted", "pos.modifier-group.created", "pos.modifier-group.updated", "pos.modifier-group.deleted", "hris.employee.created", "hris.employee.updated", "hris.employee.deleted", "hris.employee.terminated", "hris.company.created", "hris.company.updated", "hris.company.deleted", "file-storage.file.created", "file-storage.file.updated", "file-storage.file.deleted", "issue-tracking.ticket.created", "issue-tracking.ticket.updated", "issue-tracking.ticket.deleted", "ats.application.created", "ats.application.updated", "ats.application.deleted", "accounting.expense.created", "accounting.expense.updated", "accounting.expense.deleted", ] [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/package.json b/package.json index 2a8fe6f564..be431896bc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@apideck/python", - "version": "1.4.3", + "version": "1.4.4", "description": "Apideck Python SDK", "keywords": [ "apideck", diff --git a/pyproject.toml b/pyproject.toml index 3703e5466d..021ae3e895 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "apideck" -version = "1.4.3" +version = "1.4.4" authors = [ { name="Apideck", email="support@apideck.com" }, ] diff --git a/src/.openapi-generator/FILES b/src/.openapi-generator/FILES index 3662c89487..1cb2cf5393 100644 --- a/src/.openapi-generator/FILES +++ b/src/.openapi-generator/FILES @@ -75,6 +75,7 @@ apideck/model/bank_account.py apideck/model/benefit.py apideck/model/bill.py apideck/model/bill_line_item.py +apideck/model/bill_payment.py apideck/model/bills_filter.py apideck/model/bills_sort.py apideck/model/branch.py @@ -127,6 +128,7 @@ apideck/model/create_applicant_response.py apideck/model/create_application_response.py apideck/model/create_attachment_request.py apideck/model/create_attachment_response.py +apideck/model/create_bill_payment_response.py apideck/model/create_bill_response.py apideck/model/create_comment_response.py apideck/model/create_company_response.py @@ -143,6 +145,7 @@ apideck/model/create_drive_response.py apideck/model/create_ecommerce_customer_response.py apideck/model/create_ecommerce_order_response.py apideck/model/create_employee_response.py +apideck/model/create_expense_response.py apideck/model/create_file_request.py apideck/model/create_file_response.py apideck/model/create_folder_request.py @@ -202,6 +205,7 @@ apideck/model/delete_activity_response.py apideck/model/delete_applicant_response.py apideck/model/delete_application_response.py apideck/model/delete_attachment_response.py +apideck/model/delete_bill_payment_response.py apideck/model/delete_bill_response.py apideck/model/delete_comment_response.py apideck/model/delete_company_response.py @@ -215,6 +219,7 @@ apideck/model/delete_drive_response.py apideck/model/delete_ecommerce_customer_response.py apideck/model/delete_ecommerce_order_response.py apideck/model/delete_employee_response.py +apideck/model/delete_expense_response.py apideck/model/delete_file_response.py apideck/model/delete_folder_response.py apideck/model/delete_hris_company_response.py @@ -252,6 +257,7 @@ apideck/model/delete_user_response.py apideck/model/delete_webhook_response.py apideck/model/delivery_url.py apideck/model/department.py +apideck/model/deprecated_linked_supplier.py apideck/model/deprecated_linked_tracking_category.py apideck/model/drive.py apideck/model/drive_group.py @@ -292,6 +298,8 @@ apideck/model/execute_base_url.py apideck/model/execute_webhook_event_request.py apideck/model/execute_webhook_events_request.py apideck/model/execute_webhook_response.py +apideck/model/expense.py +apideck/model/expense_line_item.py apideck/model/file_storage_event_type.py apideck/model/file_type.py apideck/model/files_filter.py @@ -319,6 +327,8 @@ apideck/model/get_applications_response.py apideck/model/get_attachment_response.py apideck/model/get_attachments_response.py apideck/model/get_balance_sheet_response.py +apideck/model/get_bill_payment_response.py +apideck/model/get_bill_payments_response.py apideck/model/get_bill_response.py apideck/model/get_bills_response.py apideck/model/get_collection_response.py @@ -365,6 +375,8 @@ apideck/model/get_employee_payrolls_response.py apideck/model/get_employee_response.py apideck/model/get_employee_schedules_response.py apideck/model/get_employees_response.py +apideck/model/get_expense_response.py +apideck/model/get_expenses_response.py apideck/model/get_file_response.py apideck/model/get_files_response.py apideck/model/get_folder_response.py @@ -538,6 +550,8 @@ apideck/model/payment.py apideck/model/payment_card.py apideck/model/payment_frequency.py apideck/model/payment_required_response.py +apideck/model/payment_status.py +apideck/model/payment_type.py apideck/model/payment_unit.py apideck/model/payments_filter.py apideck/model/payments_sort.py @@ -623,6 +637,7 @@ apideck/model/update_accounting_location_response.py apideck/model/update_activity_response.py apideck/model/update_applicant_response.py apideck/model/update_application_response.py +apideck/model/update_bill_payment_response.py apideck/model/update_bill_response.py apideck/model/update_comment_response.py apideck/model/update_company_response.py @@ -640,6 +655,7 @@ apideck/model/update_drive_response.py apideck/model/update_ecommerce_customer_response.py apideck/model/update_ecommerce_order_response.py apideck/model/update_employee_response.py +apideck/model/update_expense_response.py apideck/model/update_file_request.py apideck/model/update_file_response.py apideck/model/update_folder_request.py @@ -746,6 +762,7 @@ docs/BankAccount.md docs/Benefit.md docs/Bill.md docs/BillLineItem.md +docs/BillPayment.md docs/BillsFilter.md docs/BillsSort.md docs/Branch.md @@ -799,6 +816,7 @@ docs/CreateApplicantResponse.md docs/CreateApplicationResponse.md docs/CreateAttachmentRequest.md docs/CreateAttachmentResponse.md +docs/CreateBillPaymentResponse.md docs/CreateBillResponse.md docs/CreateCommentResponse.md docs/CreateCompanyResponse.md @@ -815,6 +833,7 @@ docs/CreateDriveResponse.md docs/CreateEcommerceCustomerResponse.md docs/CreateEcommerceOrderResponse.md docs/CreateEmployeeResponse.md +docs/CreateExpenseResponse.md docs/CreateFileRequest.md docs/CreateFileResponse.md docs/CreateFolderRequest.md @@ -875,6 +894,7 @@ docs/DeleteActivityResponse.md docs/DeleteApplicantResponse.md docs/DeleteApplicationResponse.md docs/DeleteAttachmentResponse.md +docs/DeleteBillPaymentResponse.md docs/DeleteBillResponse.md docs/DeleteCommentResponse.md docs/DeleteCompanyResponse.md @@ -888,6 +908,7 @@ docs/DeleteDriveResponse.md docs/DeleteEcommerceCustomerResponse.md docs/DeleteEcommerceOrderResponse.md docs/DeleteEmployeeResponse.md +docs/DeleteExpenseResponse.md docs/DeleteFileResponse.md docs/DeleteFolderResponse.md docs/DeleteHrisCompanyResponse.md @@ -925,6 +946,7 @@ docs/DeleteUserResponse.md docs/DeleteWebhookResponse.md docs/DeliveryUrl.md docs/Department.md +docs/DeprecatedLinkedSupplier.md docs/DeprecatedLinkedTrackingCategory.md docs/Drive.md docs/DriveGroup.md @@ -966,6 +988,8 @@ docs/ExecuteBaseUrl.md docs/ExecuteWebhookEventRequest.md docs/ExecuteWebhookEventsRequest.md docs/ExecuteWebhookResponse.md +docs/Expense.md +docs/ExpenseLineItem.md docs/FileStorageApi.md docs/FileStorageEventType.md docs/FileType.md @@ -994,6 +1018,8 @@ docs/GetApplicationsResponse.md docs/GetAttachmentResponse.md docs/GetAttachmentsResponse.md docs/GetBalanceSheetResponse.md +docs/GetBillPaymentResponse.md +docs/GetBillPaymentsResponse.md docs/GetBillResponse.md docs/GetBillsResponse.md docs/GetCollectionResponse.md @@ -1040,6 +1066,8 @@ docs/GetEmployeePayrollsResponse.md docs/GetEmployeeResponse.md docs/GetEmployeeSchedulesResponse.md docs/GetEmployeesResponse.md +docs/GetExpenseResponse.md +docs/GetExpensesResponse.md docs/GetFileResponse.md docs/GetFilesResponse.md docs/GetFolderResponse.md @@ -1216,6 +1244,8 @@ docs/Payment.md docs/PaymentCard.md docs/PaymentFrequency.md docs/PaymentRequiredResponse.md +docs/PaymentStatus.md +docs/PaymentType.md docs/PaymentUnit.md docs/PaymentsFilter.md docs/PaymentsSort.md @@ -1303,6 +1333,7 @@ docs/UpdateAccountingLocationResponse.md docs/UpdateActivityResponse.md docs/UpdateApplicantResponse.md docs/UpdateApplicationResponse.md +docs/UpdateBillPaymentResponse.md docs/UpdateBillResponse.md docs/UpdateCommentResponse.md docs/UpdateCompanyResponse.md @@ -1320,6 +1351,7 @@ docs/UpdateDriveResponse.md docs/UpdateEcommerceCustomerResponse.md docs/UpdateEcommerceOrderResponse.md docs/UpdateEmployeeResponse.md +docs/UpdateExpenseResponse.md docs/UpdateFileRequest.md docs/UpdateFileResponse.md docs/UpdateFolderRequest.md @@ -1431,6 +1463,7 @@ test/test_bank_account.py test/test_benefit.py test/test_bill.py test/test_bill_line_item.py +test/test_bill_payment.py test/test_bills_filter.py test/test_bills_sort.py test/test_branch.py @@ -1484,6 +1517,7 @@ test/test_create_applicant_response.py test/test_create_application_response.py test/test_create_attachment_request.py test/test_create_attachment_response.py +test/test_create_bill_payment_response.py test/test_create_bill_response.py test/test_create_comment_response.py test/test_create_company_response.py @@ -1500,6 +1534,7 @@ test/test_create_drive_response.py test/test_create_ecommerce_customer_response.py test/test_create_ecommerce_order_response.py test/test_create_employee_response.py +test/test_create_expense_response.py test/test_create_file_request.py test/test_create_file_response.py test/test_create_folder_request.py @@ -1560,6 +1595,7 @@ test/test_delete_activity_response.py test/test_delete_applicant_response.py test/test_delete_application_response.py test/test_delete_attachment_response.py +test/test_delete_bill_payment_response.py test/test_delete_bill_response.py test/test_delete_comment_response.py test/test_delete_company_response.py @@ -1573,6 +1609,7 @@ test/test_delete_drive_response.py test/test_delete_ecommerce_customer_response.py test/test_delete_ecommerce_order_response.py test/test_delete_employee_response.py +test/test_delete_expense_response.py test/test_delete_file_response.py test/test_delete_folder_response.py test/test_delete_hris_company_response.py @@ -1610,6 +1647,7 @@ test/test_delete_user_response.py test/test_delete_webhook_response.py test/test_delivery_url.py test/test_department.py +test/test_deprecated_linked_supplier.py test/test_deprecated_linked_tracking_category.py test/test_drive.py test/test_drive_group.py @@ -1651,6 +1689,8 @@ test/test_execute_base_url.py test/test_execute_webhook_event_request.py test/test_execute_webhook_events_request.py test/test_execute_webhook_response.py +test/test_expense.py +test/test_expense_line_item.py test/test_file_storage_api.py test/test_file_storage_event_type.py test/test_file_type.py @@ -1679,6 +1719,8 @@ test/test_get_applications_response.py test/test_get_attachment_response.py test/test_get_attachments_response.py test/test_get_balance_sheet_response.py +test/test_get_bill_payment_response.py +test/test_get_bill_payments_response.py test/test_get_bill_response.py test/test_get_bills_response.py test/test_get_collection_response.py @@ -1725,6 +1767,8 @@ test/test_get_employee_payrolls_response.py test/test_get_employee_response.py test/test_get_employee_schedules_response.py test/test_get_employees_response.py +test/test_get_expense_response.py +test/test_get_expenses_response.py test/test_get_file_response.py test/test_get_files_response.py test/test_get_folder_response.py @@ -1901,6 +1945,8 @@ test/test_payment.py test/test_payment_card.py test/test_payment_frequency.py test/test_payment_required_response.py +test/test_payment_status.py +test/test_payment_type.py test/test_payment_unit.py test/test_payments_filter.py test/test_payments_sort.py @@ -1988,6 +2034,7 @@ test/test_update_accounting_location_response.py test/test_update_activity_response.py test/test_update_applicant_response.py test/test_update_application_response.py +test/test_update_bill_payment_response.py test/test_update_bill_response.py test/test_update_comment_response.py test/test_update_company_response.py @@ -2005,6 +2052,7 @@ test/test_update_drive_response.py test/test_update_ecommerce_customer_response.py test/test_update_ecommerce_order_response.py test/test_update_employee_response.py +test/test_update_expense_response.py test/test_update_file_request.py test/test_update_file_response.py test/test_update_folder_request.py diff --git a/src/apideck/__init__.py b/src/apideck/__init__.py index a1d61bbe84..ddc766502a 100644 --- a/src/apideck/__init__.py +++ b/src/apideck/__init__.py @@ -5,12 +5,12 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ -__version__ = "1.4.3" +__version__ = "1.4.4" # import ApiClient from apideck.api_client import ApiClient diff --git a/src/apideck/api/accounting_api.py b/src/apideck/api/accounting_api.py index 7a5cdc04af..0a50109256 100644 --- a/src/apideck/api/accounting_api.py +++ b/src/apideck/api/accounting_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -29,13 +29,16 @@ from apideck.model.bad_request_response import BadRequestResponse from apideck.model.balance_sheet_filter import BalanceSheetFilter from apideck.model.bill import Bill +from apideck.model.bill_payment import BillPayment from apideck.model.bills_filter import BillsFilter from apideck.model.bills_sort import BillsSort from apideck.model.create_accounting_department_response import CreateAccountingDepartmentResponse from apideck.model.create_accounting_location_response import CreateAccountingLocationResponse +from apideck.model.create_bill_payment_response import CreateBillPaymentResponse from apideck.model.create_bill_response import CreateBillResponse from apideck.model.create_credit_note_response import CreateCreditNoteResponse from apideck.model.create_customer_response import CreateCustomerResponse +from apideck.model.create_expense_response import CreateExpenseResponse from apideck.model.create_invoice_item_response import CreateInvoiceItemResponse from apideck.model.create_invoice_response import CreateInvoiceResponse from apideck.model.create_journal_entry_response import CreateJournalEntryResponse @@ -55,9 +58,11 @@ from apideck.model.delete_accounting_department_response import DeleteAccountingDepartmentResponse from apideck.model.delete_accounting_location_response import DeleteAccountingLocationResponse from apideck.model.delete_attachment_response import DeleteAttachmentResponse +from apideck.model.delete_bill_payment_response import DeleteBillPaymentResponse from apideck.model.delete_bill_response import DeleteBillResponse from apideck.model.delete_credit_note_response import DeleteCreditNoteResponse from apideck.model.delete_customer_response import DeleteCustomerResponse +from apideck.model.delete_expense_response import DeleteExpenseResponse from apideck.model.delete_invoice_response import DeleteInvoiceResponse from apideck.model.delete_journal_entry_response import DeleteJournalEntryResponse from apideck.model.delete_ledger_account_response import DeleteLedgerAccountResponse @@ -67,6 +72,7 @@ from apideck.model.delete_supplier_response import DeleteSupplierResponse from apideck.model.delete_tax_rate_response import DeleteTaxRateResponse from apideck.model.delete_tracking_category_response import DeleteTrackingCategoryResponse +from apideck.model.expense import Expense from apideck.model.get_accounting_department_response import GetAccountingDepartmentResponse from apideck.model.get_accounting_departments_response import GetAccountingDepartmentsResponse from apideck.model.get_accounting_location_response import GetAccountingLocationResponse @@ -74,6 +80,8 @@ from apideck.model.get_attachment_response import GetAttachmentResponse from apideck.model.get_attachments_response import GetAttachmentsResponse from apideck.model.get_balance_sheet_response import GetBalanceSheetResponse +from apideck.model.get_bill_payment_response import GetBillPaymentResponse +from apideck.model.get_bill_payments_response import GetBillPaymentsResponse from apideck.model.get_bill_response import GetBillResponse from apideck.model.get_bills_response import GetBillsResponse from apideck.model.get_company_info_response import GetCompanyInfoResponse @@ -81,6 +89,8 @@ from apideck.model.get_credit_notes_response import GetCreditNotesResponse from apideck.model.get_customer_response import GetCustomerResponse from apideck.model.get_customers_response import GetCustomersResponse +from apideck.model.get_expense_response import GetExpenseResponse +from apideck.model.get_expenses_response import GetExpensesResponse from apideck.model.get_invoice_item_response import GetInvoiceItemResponse from apideck.model.get_invoice_items_response import GetInvoiceItemsResponse from apideck.model.get_invoice_response import GetInvoiceResponse @@ -135,9 +145,11 @@ from apideck.model.unprocessable_response import UnprocessableResponse from apideck.model.update_accounting_department_response import UpdateAccountingDepartmentResponse from apideck.model.update_accounting_location_response import UpdateAccountingLocationResponse +from apideck.model.update_bill_payment_response import UpdateBillPaymentResponse from apideck.model.update_bill_response import UpdateBillResponse from apideck.model.update_credit_note_response import UpdateCreditNoteResponse from apideck.model.update_customer_response import UpdateCustomerResponse +from apideck.model.update_expense_response import UpdateExpenseResponse from apideck.model.update_invoice_items_response import UpdateInvoiceItemsResponse from apideck.model.update_invoice_response import UpdateInvoiceResponse from apideck.model.update_journal_entry_response import UpdateJournalEntryResponse @@ -592,27 +604,27 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.bills_add_endpoint = _Endpoint( + self.bill_payments_add_endpoint = _Endpoint( settings={ - 'response_type': (CreateBillResponse,), + 'response_type': (CreateBillPaymentResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/bills', - 'operation_id': 'bills_add', + 'endpoint_path': '/accounting/bill-payments', + 'operation_id': 'bill_payments_add', 'http_method': 'POST', 'servers': None, }, params_map={ 'all': [ - 'bill', + 'bill_payment', 'raw', 'consumer_id', 'app_id', 'service_id', ], 'required': [ - 'bill', + 'bill_payment', ], 'nullable': [ ], @@ -627,8 +639,8 @@ def __init__(self, api_client=None): 'allowed_values': { }, 'openapi_types': { - 'bill': - (Bill,), + 'bill_payment': + (BillPayment,), 'raw': (bool,), 'consumer_id': @@ -645,7 +657,7 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', }, 'location_map': { - 'bill': 'body', + 'bill_payment': 'body', 'raw': 'query', 'consumer_id': 'header', 'app_id': 'header', @@ -664,14 +676,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.bills_all_endpoint = _Endpoint( + self.bill_payments_all_endpoint = _Endpoint( settings={ - 'response_type': (GetBillsResponse,), + 'response_type': (GetBillPaymentsResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/bills', - 'operation_id': 'bills_all', + 'endpoint_path': '/accounting/bill-payments', + 'operation_id': 'bill_payments_all', 'http_method': 'GET', 'servers': None, }, @@ -723,9 +735,9 @@ def __init__(self, api_client=None): 'limit': (int,), 'filter': - (BillsFilter,), + (PaymentsFilter,), 'sort': - (BillsSort,), + (PaymentsSort,), 'pass_through': (PassThroughQuery,), 'fields': @@ -766,14 +778,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.bills_delete_endpoint = _Endpoint( + self.bill_payments_delete_endpoint = _Endpoint( settings={ - 'response_type': (DeleteBillResponse,), + 'response_type': (DeleteBillPaymentResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/bills/{id}', - 'operation_id': 'bills_delete', + 'endpoint_path': '/accounting/bill-payments/{id}', + 'operation_id': 'bill_payments_delete', 'http_method': 'DELETE', 'servers': None, }, @@ -837,14 +849,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.bills_one_endpoint = _Endpoint( + self.bill_payments_one_endpoint = _Endpoint( settings={ - 'response_type': (GetBillResponse,), + 'response_type': (GetBillPaymentResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/bills/{id}', - 'operation_id': 'bills_one', + 'endpoint_path': '/accounting/bill-payments/{id}', + 'operation_id': 'bill_payments_one', 'http_method': 'GET', 'servers': None, }, @@ -914,21 +926,21 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.bills_update_endpoint = _Endpoint( + self.bill_payments_update_endpoint = _Endpoint( settings={ - 'response_type': (UpdateBillResponse,), + 'response_type': (UpdateBillPaymentResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/bills/{id}', - 'operation_id': 'bills_update', + 'endpoint_path': '/accounting/bill-payments/{id}', + 'operation_id': 'bill_payments_update', 'http_method': 'PATCH', 'servers': None, }, params_map={ 'all': [ 'id', - 'bill', + 'bill_payment', 'consumer_id', 'app_id', 'service_id', @@ -936,7 +948,7 @@ def __init__(self, api_client=None): ], 'required': [ 'id', - 'bill', + 'bill_payment', ], 'nullable': [ ], @@ -953,8 +965,8 @@ def __init__(self, api_client=None): 'openapi_types': { 'id': (str,), - 'bill': - (Bill,), + 'bill_payment': + (BillPayment,), 'consumer_id': (str,), 'app_id': @@ -973,7 +985,7 @@ def __init__(self, api_client=None): }, 'location_map': { 'id': 'path', - 'bill': 'body', + 'bill_payment': 'body', 'consumer_id': 'header', 'app_id': 'header', 'service_id': 'header', @@ -992,97 +1004,27 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.company_info_one_endpoint = _Endpoint( - settings={ - 'response_type': (GetCompanyInfoResponse,), - 'auth': [ - 'apiKey' - ], - 'endpoint_path': '/accounting/company-info', - 'operation_id': 'company_info_one', - 'http_method': 'GET', - 'servers': None, - }, - params_map={ - 'all': [ - 'raw', - 'consumer_id', - 'app_id', - 'service_id', - 'fields', - ], - 'required': [], - 'nullable': [ - 'fields', - ], - 'enum': [ - ], - 'validation': [ - ] - }, - root_map={ - 'validations': { - }, - 'allowed_values': { - }, - 'openapi_types': { - 'raw': - (bool,), - 'consumer_id': - (str,), - 'app_id': - (str,), - 'service_id': - (str,), - 'fields': - (str, none_type,), - }, - 'attribute_map': { - 'raw': 'raw', - 'consumer_id': 'x-apideck-consumer-id', - 'app_id': 'x-apideck-app-id', - 'service_id': 'x-apideck-service-id', - 'fields': 'fields', - }, - 'location_map': { - 'raw': 'query', - 'consumer_id': 'header', - 'app_id': 'header', - 'service_id': 'header', - 'fields': 'query', - }, - 'collection_format_map': { - } - }, - headers_map={ - 'accept': [ - 'application/json' - ], - 'content_type': [], - }, - api_client=api_client - ) - self.credit_notes_add_endpoint = _Endpoint( + self.bills_add_endpoint = _Endpoint( settings={ - 'response_type': (CreateCreditNoteResponse,), + 'response_type': (CreateBillResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/credit-notes', - 'operation_id': 'credit_notes_add', + 'endpoint_path': '/accounting/bills', + 'operation_id': 'bills_add', 'http_method': 'POST', 'servers': None, }, params_map={ 'all': [ - 'credit_note', + 'bill', 'raw', 'consumer_id', 'app_id', 'service_id', ], 'required': [ - 'credit_note', + 'bill', ], 'nullable': [ ], @@ -1097,8 +1039,8 @@ def __init__(self, api_client=None): 'allowed_values': { }, 'openapi_types': { - 'credit_note': - (CreditNote,), + 'bill': + (Bill,), 'raw': (bool,), 'consumer_id': @@ -1115,7 +1057,7 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', }, 'location_map': { - 'credit_note': 'body', + 'bill': 'body', 'raw': 'query', 'consumer_id': 'header', 'app_id': 'header', @@ -1134,14 +1076,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.credit_notes_all_endpoint = _Endpoint( + self.bills_all_endpoint = _Endpoint( settings={ - 'response_type': (GetCreditNotesResponse,), + 'response_type': (GetBillsResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/credit-notes', - 'operation_id': 'credit_notes_all', + 'endpoint_path': '/accounting/bills', + 'operation_id': 'bills_all', 'http_method': 'GET', 'servers': None, }, @@ -1193,9 +1135,9 @@ def __init__(self, api_client=None): 'limit': (int,), 'filter': - (CreditNotesFilter,), + (BillsFilter,), 'sort': - (CreditNotesSort,), + (BillsSort,), 'pass_through': (PassThroughQuery,), 'fields': @@ -1236,14 +1178,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.credit_notes_delete_endpoint = _Endpoint( + self.bills_delete_endpoint = _Endpoint( settings={ - 'response_type': (DeleteCreditNoteResponse,), + 'response_type': (DeleteBillResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/credit-notes/{id}', - 'operation_id': 'credit_notes_delete', + 'endpoint_path': '/accounting/bills/{id}', + 'operation_id': 'bills_delete', 'http_method': 'DELETE', 'servers': None, }, @@ -1307,14 +1249,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.credit_notes_one_endpoint = _Endpoint( + self.bills_one_endpoint = _Endpoint( settings={ - 'response_type': (GetCreditNoteResponse,), + 'response_type': (GetBillResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/credit-notes/{id}', - 'operation_id': 'credit_notes_one', + 'endpoint_path': '/accounting/bills/{id}', + 'operation_id': 'bills_one', 'http_method': 'GET', 'servers': None, }, @@ -1384,21 +1326,21 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.credit_notes_update_endpoint = _Endpoint( + self.bills_update_endpoint = _Endpoint( settings={ - 'response_type': (UpdateCreditNoteResponse,), + 'response_type': (UpdateBillResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/credit-notes/{id}', - 'operation_id': 'credit_notes_update', + 'endpoint_path': '/accounting/bills/{id}', + 'operation_id': 'bills_update', 'http_method': 'PATCH', 'servers': None, }, params_map={ 'all': [ 'id', - 'credit_note', + 'bill', 'consumer_id', 'app_id', 'service_id', @@ -1406,7 +1348,7 @@ def __init__(self, api_client=None): ], 'required': [ 'id', - 'credit_note', + 'bill', ], 'nullable': [ ], @@ -1423,8 +1365,8 @@ def __init__(self, api_client=None): 'openapi_types': { 'id': (str,), - 'credit_note': - (CreditNote,), + 'bill': + (Bill,), 'consumer_id': (str,), 'app_id': @@ -1443,7 +1385,7 @@ def __init__(self, api_client=None): }, 'location_map': { 'id': 'path', - 'credit_note': 'body', + 'bill': 'body', 'consumer_id': 'header', 'app_id': 'header', 'service_id': 'header', @@ -1462,29 +1404,28 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.customers_add_endpoint = _Endpoint( + self.company_info_one_endpoint = _Endpoint( settings={ - 'response_type': (CreateCustomerResponse,), + 'response_type': (GetCompanyInfoResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/customers', - 'operation_id': 'customers_add', - 'http_method': 'POST', + 'endpoint_path': '/accounting/company-info', + 'operation_id': 'company_info_one', + 'http_method': 'GET', 'servers': None, }, params_map={ 'all': [ - 'customer', 'raw', 'consumer_id', 'app_id', 'service_id', + 'fields', ], - 'required': [ - 'customer', - ], + 'required': [], 'nullable': [ + 'fields', ], 'enum': [ ], @@ -1497,8 +1438,6 @@ def __init__(self, api_client=None): 'allowed_values': { }, 'openapi_types': { - 'customer': - (Customer,), 'raw': (bool,), 'consumer_id': @@ -1507,19 +1446,22 @@ def __init__(self, api_client=None): (str,), 'service_id': (str,), + 'fields': + (str, none_type,), }, 'attribute_map': { 'raw': 'raw', 'consumer_id': 'x-apideck-consumer-id', 'app_id': 'x-apideck-app-id', 'service_id': 'x-apideck-service-id', + 'fields': 'fields', }, 'location_map': { - 'customer': 'body', 'raw': 'query', 'consumer_id': 'header', 'app_id': 'header', 'service_id': 'header', + 'fields': 'query', }, 'collection_format_map': { } @@ -1528,58 +1470,47 @@ def __init__(self, api_client=None): 'accept': [ 'application/json' ], - 'content_type': [ - 'application/json' - ] + 'content_type': [], }, api_client=api_client ) - self.customers_all_endpoint = _Endpoint( + self.credit_notes_add_endpoint = _Endpoint( settings={ - 'response_type': (GetCustomersResponse,), + 'response_type': (CreateCreditNoteResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/customers', - 'operation_id': 'customers_all', - 'http_method': 'GET', + 'endpoint_path': '/accounting/credit-notes', + 'operation_id': 'credit_notes_add', + 'http_method': 'POST', 'servers': None, }, params_map={ 'all': [ + 'credit_note', 'raw', 'consumer_id', 'app_id', 'service_id', - 'cursor', - 'limit', - 'filter', - 'sort', - 'pass_through', - 'fields', ], - 'required': [], + 'required': [ + 'credit_note', + ], 'nullable': [ - 'cursor', - 'fields', ], 'enum': [ ], 'validation': [ - 'limit', ] }, root_map={ 'validations': { - ('limit',): { - - 'inclusive_maximum': 200, - 'inclusive_minimum': 1, - }, }, 'allowed_values': { }, 'openapi_types': { + 'credit_note': + (CreditNote,), 'raw': (bool,), 'consumer_id': @@ -1588,42 +1519,19 @@ def __init__(self, api_client=None): (str,), 'service_id': (str,), - 'cursor': - (str, none_type,), - 'limit': - (int,), - 'filter': - (CustomersFilter,), - 'sort': - (CustomersSort,), - 'pass_through': - (PassThroughQuery,), - 'fields': - (str, none_type,), }, 'attribute_map': { 'raw': 'raw', 'consumer_id': 'x-apideck-consumer-id', 'app_id': 'x-apideck-app-id', 'service_id': 'x-apideck-service-id', - 'cursor': 'cursor', - 'limit': 'limit', - 'filter': 'filter', - 'sort': 'sort', - 'pass_through': 'pass_through', - 'fields': 'fields', }, 'location_map': { + 'credit_note': 'body', 'raw': 'query', 'consumer_id': 'header', 'app_id': 'header', 'service_id': 'header', - 'cursor': 'query', - 'limit': 'query', - 'filter': 'query', - 'sort': 'query', - 'pass_through': 'query', - 'fields': 'query', }, 'collection_format_map': { } @@ -1632,18 +1540,122 @@ def __init__(self, api_client=None): 'accept': [ 'application/json' ], - 'content_type': [], + 'content_type': [ + 'application/json' + ] }, api_client=api_client ) - self.customers_delete_endpoint = _Endpoint( + self.credit_notes_all_endpoint = _Endpoint( settings={ - 'response_type': (DeleteCustomerResponse,), + 'response_type': (GetCreditNotesResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/customers/{id}', - 'operation_id': 'customers_delete', + 'endpoint_path': '/accounting/credit-notes', + 'operation_id': 'credit_notes_all', + 'http_method': 'GET', + 'servers': None, + }, + params_map={ + 'all': [ + 'raw', + 'consumer_id', + 'app_id', + 'service_id', + 'cursor', + 'limit', + 'filter', + 'sort', + 'pass_through', + 'fields', + ], + 'required': [], + 'nullable': [ + 'cursor', + 'fields', + ], + 'enum': [ + ], + 'validation': [ + 'limit', + ] + }, + root_map={ + 'validations': { + ('limit',): { + + 'inclusive_maximum': 200, + 'inclusive_minimum': 1, + }, + }, + 'allowed_values': { + }, + 'openapi_types': { + 'raw': + (bool,), + 'consumer_id': + (str,), + 'app_id': + (str,), + 'service_id': + (str,), + 'cursor': + (str, none_type,), + 'limit': + (int,), + 'filter': + (CreditNotesFilter,), + 'sort': + (CreditNotesSort,), + 'pass_through': + (PassThroughQuery,), + 'fields': + (str, none_type,), + }, + 'attribute_map': { + 'raw': 'raw', + 'consumer_id': 'x-apideck-consumer-id', + 'app_id': 'x-apideck-app-id', + 'service_id': 'x-apideck-service-id', + 'cursor': 'cursor', + 'limit': 'limit', + 'filter': 'filter', + 'sort': 'sort', + 'pass_through': 'pass_through', + 'fields': 'fields', + }, + 'location_map': { + 'raw': 'query', + 'consumer_id': 'header', + 'app_id': 'header', + 'service_id': 'header', + 'cursor': 'query', + 'limit': 'query', + 'filter': 'query', + 'sort': 'query', + 'pass_through': 'query', + 'fields': 'query', + }, + 'collection_format_map': { + } + }, + headers_map={ + 'accept': [ + 'application/json' + ], + 'content_type': [], + }, + api_client=api_client + ) + self.credit_notes_delete_endpoint = _Endpoint( + settings={ + 'response_type': (DeleteCreditNoteResponse,), + 'auth': [ + 'apiKey' + ], + 'endpoint_path': '/accounting/credit-notes/{id}', + 'operation_id': 'credit_notes_delete', 'http_method': 'DELETE', 'servers': None, }, @@ -1707,14 +1719,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.customers_one_endpoint = _Endpoint( + self.credit_notes_one_endpoint = _Endpoint( settings={ - 'response_type': (GetCustomerResponse,), + 'response_type': (GetCreditNoteResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/customers/{id}', - 'operation_id': 'customers_one', + 'endpoint_path': '/accounting/credit-notes/{id}', + 'operation_id': 'credit_notes_one', 'http_method': 'GET', 'servers': None, }, @@ -1784,21 +1796,21 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.customers_update_endpoint = _Endpoint( + self.credit_notes_update_endpoint = _Endpoint( settings={ - 'response_type': (UpdateCustomerResponse,), + 'response_type': (UpdateCreditNoteResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/customers/{id}', - 'operation_id': 'customers_update', + 'endpoint_path': '/accounting/credit-notes/{id}', + 'operation_id': 'credit_notes_update', 'http_method': 'PATCH', 'servers': None, }, params_map={ 'all': [ 'id', - 'customer', + 'credit_note', 'consumer_id', 'app_id', 'service_id', @@ -1806,7 +1818,7 @@ def __init__(self, api_client=None): ], 'required': [ 'id', - 'customer', + 'credit_note', ], 'nullable': [ ], @@ -1823,8 +1835,8 @@ def __init__(self, api_client=None): 'openapi_types': { 'id': (str,), - 'customer': - (Customer,), + 'credit_note': + (CreditNote,), 'consumer_id': (str,), 'app_id': @@ -1843,7 +1855,7 @@ def __init__(self, api_client=None): }, 'location_map': { 'id': 'path', - 'customer': 'body', + 'credit_note': 'body', 'consumer_id': 'header', 'app_id': 'header', 'service_id': 'header', @@ -1862,27 +1874,27 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.departments_add_endpoint = _Endpoint( + self.customers_add_endpoint = _Endpoint( settings={ - 'response_type': (CreateAccountingDepartmentResponse,), + 'response_type': (CreateCustomerResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/departments', - 'operation_id': 'departments_add', + 'endpoint_path': '/accounting/customers', + 'operation_id': 'customers_add', 'http_method': 'POST', 'servers': None, }, params_map={ 'all': [ - 'accounting_department', + 'customer', 'raw', 'consumer_id', 'app_id', 'service_id', ], 'required': [ - 'accounting_department', + 'customer', ], 'nullable': [ ], @@ -1897,8 +1909,8 @@ def __init__(self, api_client=None): 'allowed_values': { }, 'openapi_types': { - 'accounting_department': - (AccountingDepartment,), + 'customer': + (Customer,), 'raw': (bool,), 'consumer_id': @@ -1915,7 +1927,7 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', }, 'location_map': { - 'accounting_department': 'body', + 'customer': 'body', 'raw': 'query', 'consumer_id': 'header', 'app_id': 'header', @@ -1934,14 +1946,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.departments_all_endpoint = _Endpoint( + self.customers_all_endpoint = _Endpoint( settings={ - 'response_type': (GetAccountingDepartmentsResponse,), + 'response_type': (GetCustomersResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/departments', - 'operation_id': 'departments_all', + 'endpoint_path': '/accounting/customers', + 'operation_id': 'customers_all', 'http_method': 'GET', 'servers': None, }, @@ -1953,8 +1965,10 @@ def __init__(self, api_client=None): 'service_id', 'cursor', 'limit', - 'fields', 'filter', + 'sort', + 'pass_through', + 'fields', ], 'required': [], 'nullable': [ @@ -1990,10 +2004,14 @@ def __init__(self, api_client=None): (str, none_type,), 'limit': (int,), + 'filter': + (CustomersFilter,), + 'sort': + (CustomersSort,), + 'pass_through': + (PassThroughQuery,), 'fields': (str, none_type,), - 'filter': - (AccountingDepartmentsFilter,), }, 'attribute_map': { 'raw': 'raw', @@ -2002,8 +2020,10 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', 'cursor': 'cursor', 'limit': 'limit', - 'fields': 'fields', 'filter': 'filter', + 'sort': 'sort', + 'pass_through': 'pass_through', + 'fields': 'fields', }, 'location_map': { 'raw': 'query', @@ -2012,8 +2032,10 @@ def __init__(self, api_client=None): 'service_id': 'header', 'cursor': 'query', 'limit': 'query', - 'fields': 'query', 'filter': 'query', + 'sort': 'query', + 'pass_through': 'query', + 'fields': 'query', }, 'collection_format_map': { } @@ -2026,14 +2048,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.departments_delete_endpoint = _Endpoint( + self.customers_delete_endpoint = _Endpoint( settings={ - 'response_type': (DeleteAccountingDepartmentResponse,), + 'response_type': (DeleteCustomerResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/departments/{id}', - 'operation_id': 'departments_delete', + 'endpoint_path': '/accounting/customers/{id}', + 'operation_id': 'customers_delete', 'http_method': 'DELETE', 'servers': None, }, @@ -2097,14 +2119,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.departments_one_endpoint = _Endpoint( + self.customers_one_endpoint = _Endpoint( settings={ - 'response_type': (GetAccountingDepartmentResponse,), + 'response_type': (GetCustomerResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/departments/{id}', - 'operation_id': 'departments_one', + 'endpoint_path': '/accounting/customers/{id}', + 'operation_id': 'customers_one', 'http_method': 'GET', 'servers': None, }, @@ -2174,21 +2196,21 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.departments_update_endpoint = _Endpoint( + self.customers_update_endpoint = _Endpoint( settings={ - 'response_type': (UpdateAccountingDepartmentResponse,), + 'response_type': (UpdateCustomerResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/departments/{id}', - 'operation_id': 'departments_update', + 'endpoint_path': '/accounting/customers/{id}', + 'operation_id': 'customers_update', 'http_method': 'PATCH', 'servers': None, }, params_map={ 'all': [ 'id', - 'accounting_department', + 'customer', 'consumer_id', 'app_id', 'service_id', @@ -2196,7 +2218,7 @@ def __init__(self, api_client=None): ], 'required': [ 'id', - 'accounting_department', + 'customer', ], 'nullable': [ ], @@ -2213,8 +2235,8 @@ def __init__(self, api_client=None): 'openapi_types': { 'id': (str,), - 'accounting_department': - (AccountingDepartment,), + 'customer': + (Customer,), 'consumer_id': (str,), 'app_id': @@ -2233,7 +2255,7 @@ def __init__(self, api_client=None): }, 'location_map': { 'id': 'path', - 'accounting_department': 'body', + 'customer': 'body', 'consumer_id': 'header', 'app_id': 'header', 'service_id': 'header', @@ -2252,27 +2274,27 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.invoice_items_add_endpoint = _Endpoint( + self.departments_add_endpoint = _Endpoint( settings={ - 'response_type': (CreateInvoiceItemResponse,), + 'response_type': (CreateAccountingDepartmentResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/invoice-items', - 'operation_id': 'invoice_items_add', + 'endpoint_path': '/accounting/departments', + 'operation_id': 'departments_add', 'http_method': 'POST', 'servers': None, }, params_map={ 'all': [ - 'invoice_item', + 'accounting_department', 'raw', 'consumer_id', 'app_id', 'service_id', ], 'required': [ - 'invoice_item', + 'accounting_department', ], 'nullable': [ ], @@ -2287,8 +2309,8 @@ def __init__(self, api_client=None): 'allowed_values': { }, 'openapi_types': { - 'invoice_item': - (InvoiceItem,), + 'accounting_department': + (AccountingDepartment,), 'raw': (bool,), 'consumer_id': @@ -2305,7 +2327,7 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', }, 'location_map': { - 'invoice_item': 'body', + 'accounting_department': 'body', 'raw': 'query', 'consumer_id': 'header', 'app_id': 'header', @@ -2324,14 +2346,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.invoice_items_all_endpoint = _Endpoint( + self.departments_all_endpoint = _Endpoint( settings={ - 'response_type': (GetInvoiceItemsResponse,), + 'response_type': (GetAccountingDepartmentsResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/invoice-items', - 'operation_id': 'invoice_items_all', + 'endpoint_path': '/accounting/departments', + 'operation_id': 'departments_all', 'http_method': 'GET', 'servers': None, }, @@ -2343,9 +2365,8 @@ def __init__(self, api_client=None): 'service_id', 'cursor', 'limit', - 'filter', - 'pass_through', 'fields', + 'filter', ], 'required': [], 'nullable': [ @@ -2381,12 +2402,10 @@ def __init__(self, api_client=None): (str, none_type,), 'limit': (int,), - 'filter': - (InvoiceItemsFilter,), - 'pass_through': - (PassThroughQuery,), 'fields': (str, none_type,), + 'filter': + (AccountingDepartmentsFilter,), }, 'attribute_map': { 'raw': 'raw', @@ -2395,9 +2414,8 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', 'cursor': 'cursor', 'limit': 'limit', - 'filter': 'filter', - 'pass_through': 'pass_through', 'fields': 'fields', + 'filter': 'filter', }, 'location_map': { 'raw': 'query', @@ -2406,9 +2424,8 @@ def __init__(self, api_client=None): 'service_id': 'header', 'cursor': 'query', 'limit': 'query', - 'filter': 'query', - 'pass_through': 'query', 'fields': 'query', + 'filter': 'query', }, 'collection_format_map': { } @@ -2421,14 +2438,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.invoice_items_delete_endpoint = _Endpoint( + self.departments_delete_endpoint = _Endpoint( settings={ - 'response_type': (DeleteTaxRateResponse,), + 'response_type': (DeleteAccountingDepartmentResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/invoice-items/{id}', - 'operation_id': 'invoice_items_delete', + 'endpoint_path': '/accounting/departments/{id}', + 'operation_id': 'departments_delete', 'http_method': 'DELETE', 'servers': None, }, @@ -2492,14 +2509,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.invoice_items_one_endpoint = _Endpoint( + self.departments_one_endpoint = _Endpoint( settings={ - 'response_type': (GetInvoiceItemResponse,), + 'response_type': (GetAccountingDepartmentResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/invoice-items/{id}', - 'operation_id': 'invoice_items_one', + 'endpoint_path': '/accounting/departments/{id}', + 'operation_id': 'departments_one', 'http_method': 'GET', 'servers': None, }, @@ -2569,21 +2586,21 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.invoice_items_update_endpoint = _Endpoint( + self.departments_update_endpoint = _Endpoint( settings={ - 'response_type': (UpdateInvoiceItemsResponse,), + 'response_type': (UpdateAccountingDepartmentResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/invoice-items/{id}', - 'operation_id': 'invoice_items_update', + 'endpoint_path': '/accounting/departments/{id}', + 'operation_id': 'departments_update', 'http_method': 'PATCH', 'servers': None, }, params_map={ 'all': [ 'id', - 'invoice_item', + 'accounting_department', 'consumer_id', 'app_id', 'service_id', @@ -2591,7 +2608,7 @@ def __init__(self, api_client=None): ], 'required': [ 'id', - 'invoice_item', + 'accounting_department', ], 'nullable': [ ], @@ -2608,8 +2625,8 @@ def __init__(self, api_client=None): 'openapi_types': { 'id': (str,), - 'invoice_item': - (InvoiceItem,), + 'accounting_department': + (AccountingDepartment,), 'consumer_id': (str,), 'app_id': @@ -2628,7 +2645,7 @@ def __init__(self, api_client=None): }, 'location_map': { 'id': 'path', - 'invoice_item': 'body', + 'accounting_department': 'body', 'consumer_id': 'header', 'app_id': 'header', 'service_id': 'header', @@ -2647,27 +2664,27 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.invoices_add_endpoint = _Endpoint( + self.expenses_add_endpoint = _Endpoint( settings={ - 'response_type': (CreateInvoiceResponse,), + 'response_type': (CreateExpenseResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/invoices', - 'operation_id': 'invoices_add', + 'endpoint_path': '/accounting/expenses', + 'operation_id': 'expenses_add', 'http_method': 'POST', 'servers': None, }, params_map={ 'all': [ - 'invoice', + 'expense', 'raw', 'consumer_id', 'app_id', 'service_id', ], 'required': [ - 'invoice', + 'expense', ], 'nullable': [ ], @@ -2682,8 +2699,8 @@ def __init__(self, api_client=None): 'allowed_values': { }, 'openapi_types': { - 'invoice': - (Invoice,), + 'expense': + (Expense,), 'raw': (bool,), 'consumer_id': @@ -2700,7 +2717,7 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', }, 'location_map': { - 'invoice': 'body', + 'expense': 'body', 'raw': 'query', 'consumer_id': 'header', 'app_id': 'header', @@ -2719,14 +2736,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.invoices_all_endpoint = _Endpoint( + self.expenses_all_endpoint = _Endpoint( settings={ - 'response_type': (GetInvoicesResponse,), + 'response_type': (GetExpensesResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/invoices', - 'operation_id': 'invoices_all', + 'endpoint_path': '/accounting/expenses', + 'operation_id': 'expenses_all', 'http_method': 'GET', 'servers': None, }, @@ -2738,15 +2755,10 @@ def __init__(self, api_client=None): 'service_id', 'cursor', 'limit', - 'filter', - 'sort', - 'pass_through', - 'fields', ], 'required': [], 'nullable': [ 'cursor', - 'fields', ], 'enum': [ ], @@ -2777,14 +2789,6 @@ def __init__(self, api_client=None): (str, none_type,), 'limit': (int,), - 'filter': - (InvoicesFilter,), - 'sort': - (InvoicesSort,), - 'pass_through': - (PassThroughQuery,), - 'fields': - (str, none_type,), }, 'attribute_map': { 'raw': 'raw', @@ -2793,10 +2797,6 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', 'cursor': 'cursor', 'limit': 'limit', - 'filter': 'filter', - 'sort': 'sort', - 'pass_through': 'pass_through', - 'fields': 'fields', }, 'location_map': { 'raw': 'query', @@ -2805,10 +2805,6 @@ def __init__(self, api_client=None): 'service_id': 'header', 'cursor': 'query', 'limit': 'query', - 'filter': 'query', - 'sort': 'query', - 'pass_through': 'query', - 'fields': 'query', }, 'collection_format_map': { } @@ -2821,14 +2817,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.invoices_delete_endpoint = _Endpoint( + self.expenses_delete_endpoint = _Endpoint( settings={ - 'response_type': (DeleteInvoiceResponse,), + 'response_type': (DeleteExpenseResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/invoices/{id}', - 'operation_id': 'invoices_delete', + 'endpoint_path': '/accounting/expenses/{id}', + 'operation_id': 'expenses_delete', 'http_method': 'DELETE', 'servers': None, }, @@ -2892,14 +2888,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.invoices_one_endpoint = _Endpoint( + self.expenses_one_endpoint = _Endpoint( settings={ - 'response_type': (GetInvoiceResponse,), + 'response_type': (GetExpenseResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/invoices/{id}', - 'operation_id': 'invoices_one', + 'endpoint_path': '/accounting/expenses/{id}', + 'operation_id': 'expenses_one', 'http_method': 'GET', 'servers': None, }, @@ -2910,13 +2906,11 @@ def __init__(self, api_client=None): 'app_id', 'service_id', 'raw', - 'fields', ], 'required': [ 'id', ], 'nullable': [ - 'fields', ], 'enum': [ ], @@ -2939,8 +2933,6 @@ def __init__(self, api_client=None): (str,), 'raw': (bool,), - 'fields': - (str, none_type,), }, 'attribute_map': { 'id': 'id', @@ -2948,7 +2940,6 @@ def __init__(self, api_client=None): 'app_id': 'x-apideck-app-id', 'service_id': 'x-apideck-service-id', 'raw': 'raw', - 'fields': 'fields', }, 'location_map': { 'id': 'path', @@ -2956,7 +2947,6 @@ def __init__(self, api_client=None): 'app_id': 'header', 'service_id': 'header', 'raw': 'query', - 'fields': 'query', }, 'collection_format_map': { } @@ -2969,21 +2959,21 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.invoices_update_endpoint = _Endpoint( + self.expenses_update_endpoint = _Endpoint( settings={ - 'response_type': (UpdateInvoiceResponse,), + 'response_type': (UpdateExpenseResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/invoices/{id}', - 'operation_id': 'invoices_update', + 'endpoint_path': '/accounting/expenses/{id}', + 'operation_id': 'expenses_update', 'http_method': 'PATCH', 'servers': None, }, params_map={ 'all': [ 'id', - 'invoice', + 'expense', 'consumer_id', 'app_id', 'service_id', @@ -2991,7 +2981,7 @@ def __init__(self, api_client=None): ], 'required': [ 'id', - 'invoice', + 'expense', ], 'nullable': [ ], @@ -3008,8 +2998,8 @@ def __init__(self, api_client=None): 'openapi_types': { 'id': (str,), - 'invoice': - (Invoice,), + 'expense': + (Expense,), 'consumer_id': (str,), 'app_id': @@ -3028,7 +3018,7 @@ def __init__(self, api_client=None): }, 'location_map': { 'id': 'path', - 'invoice': 'body', + 'expense': 'body', 'consumer_id': 'header', 'app_id': 'header', 'service_id': 'header', @@ -3047,27 +3037,27 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.journal_entries_add_endpoint = _Endpoint( + self.invoice_items_add_endpoint = _Endpoint( settings={ - 'response_type': (CreateJournalEntryResponse,), + 'response_type': (CreateInvoiceItemResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/journal-entries', - 'operation_id': 'journal_entries_add', + 'endpoint_path': '/accounting/invoice-items', + 'operation_id': 'invoice_items_add', 'http_method': 'POST', 'servers': None, }, params_map={ 'all': [ - 'journal_entry', + 'invoice_item', 'raw', 'consumer_id', 'app_id', 'service_id', ], 'required': [ - 'journal_entry', + 'invoice_item', ], 'nullable': [ ], @@ -3082,8 +3072,8 @@ def __init__(self, api_client=None): 'allowed_values': { }, 'openapi_types': { - 'journal_entry': - (JournalEntry,), + 'invoice_item': + (InvoiceItem,), 'raw': (bool,), 'consumer_id': @@ -3100,7 +3090,7 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', }, 'location_map': { - 'journal_entry': 'body', + 'invoice_item': 'body', 'raw': 'query', 'consumer_id': 'header', 'app_id': 'header', @@ -3119,14 +3109,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.journal_entries_all_endpoint = _Endpoint( + self.invoice_items_all_endpoint = _Endpoint( settings={ - 'response_type': (GetJournalEntriesResponse,), + 'response_type': (GetInvoiceItemsResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/journal-entries', - 'operation_id': 'journal_entries_all', + 'endpoint_path': '/accounting/invoice-items', + 'operation_id': 'invoice_items_all', 'http_method': 'GET', 'servers': None, }, @@ -3139,7 +3129,6 @@ def __init__(self, api_client=None): 'cursor', 'limit', 'filter', - 'sort', 'pass_through', 'fields', ], @@ -3178,9 +3167,7 @@ def __init__(self, api_client=None): 'limit': (int,), 'filter': - (JournalEntriesFilter,), - 'sort': - (JournalEntriesSort,), + (InvoiceItemsFilter,), 'pass_through': (PassThroughQuery,), 'fields': @@ -3194,7 +3181,6 @@ def __init__(self, api_client=None): 'cursor': 'cursor', 'limit': 'limit', 'filter': 'filter', - 'sort': 'sort', 'pass_through': 'pass_through', 'fields': 'fields', }, @@ -3206,7 +3192,6 @@ def __init__(self, api_client=None): 'cursor': 'query', 'limit': 'query', 'filter': 'query', - 'sort': 'query', 'pass_through': 'query', 'fields': 'query', }, @@ -3221,14 +3206,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.journal_entries_delete_endpoint = _Endpoint( + self.invoice_items_delete_endpoint = _Endpoint( settings={ - 'response_type': (DeleteJournalEntryResponse,), + 'response_type': (DeleteTaxRateResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/journal-entries/{id}', - 'operation_id': 'journal_entries_delete', + 'endpoint_path': '/accounting/invoice-items/{id}', + 'operation_id': 'invoice_items_delete', 'http_method': 'DELETE', 'servers': None, }, @@ -3292,14 +3277,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.journal_entries_one_endpoint = _Endpoint( + self.invoice_items_one_endpoint = _Endpoint( settings={ - 'response_type': (GetJournalEntryResponse,), + 'response_type': (GetInvoiceItemResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/journal-entries/{id}', - 'operation_id': 'journal_entries_one', + 'endpoint_path': '/accounting/invoice-items/{id}', + 'operation_id': 'invoice_items_one', 'http_method': 'GET', 'servers': None, }, @@ -3369,21 +3354,21 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.journal_entries_update_endpoint = _Endpoint( + self.invoice_items_update_endpoint = _Endpoint( settings={ - 'response_type': (UpdateJournalEntryResponse,), + 'response_type': (UpdateInvoiceItemsResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/journal-entries/{id}', - 'operation_id': 'journal_entries_update', + 'endpoint_path': '/accounting/invoice-items/{id}', + 'operation_id': 'invoice_items_update', 'http_method': 'PATCH', 'servers': None, }, params_map={ 'all': [ 'id', - 'journal_entry', + 'invoice_item', 'consumer_id', 'app_id', 'service_id', @@ -3391,7 +3376,7 @@ def __init__(self, api_client=None): ], 'required': [ 'id', - 'journal_entry', + 'invoice_item', ], 'nullable': [ ], @@ -3408,8 +3393,8 @@ def __init__(self, api_client=None): 'openapi_types': { 'id': (str,), - 'journal_entry': - (JournalEntry,), + 'invoice_item': + (InvoiceItem,), 'consumer_id': (str,), 'app_id': @@ -3428,7 +3413,7 @@ def __init__(self, api_client=None): }, 'location_map': { 'id': 'path', - 'journal_entry': 'body', + 'invoice_item': 'body', 'consumer_id': 'header', 'app_id': 'header', 'service_id': 'header', @@ -3447,27 +3432,27 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.ledger_accounts_add_endpoint = _Endpoint( + self.invoices_add_endpoint = _Endpoint( settings={ - 'response_type': (CreateLedgerAccountResponse,), + 'response_type': (CreateInvoiceResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/ledger-accounts', - 'operation_id': 'ledger_accounts_add', + 'endpoint_path': '/accounting/invoices', + 'operation_id': 'invoices_add', 'http_method': 'POST', 'servers': None, }, params_map={ 'all': [ - 'ledger_account', + 'invoice', 'raw', 'consumer_id', 'app_id', 'service_id', ], 'required': [ - 'ledger_account', + 'invoice', ], 'nullable': [ ], @@ -3482,8 +3467,8 @@ def __init__(self, api_client=None): 'allowed_values': { }, 'openapi_types': { - 'ledger_account': - (LedgerAccount,), + 'invoice': + (Invoice,), 'raw': (bool,), 'consumer_id': @@ -3500,7 +3485,7 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', }, 'location_map': { - 'ledger_account': 'body', + 'invoice': 'body', 'raw': 'query', 'consumer_id': 'header', 'app_id': 'header', @@ -3519,14 +3504,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.ledger_accounts_all_endpoint = _Endpoint( + self.invoices_all_endpoint = _Endpoint( settings={ - 'response_type': (GetLedgerAccountsResponse,), + 'response_type': (GetInvoicesResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/ledger-accounts', - 'operation_id': 'ledger_accounts_all', + 'endpoint_path': '/accounting/invoices', + 'operation_id': 'invoices_all', 'http_method': 'GET', 'servers': None, }, @@ -3578,9 +3563,9 @@ def __init__(self, api_client=None): 'limit': (int,), 'filter': - (LedgerAccountsFilter,), + (InvoicesFilter,), 'sort': - (LedgerAccountsSort,), + (InvoicesSort,), 'pass_through': (PassThroughQuery,), 'fields': @@ -3621,14 +3606,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.ledger_accounts_delete_endpoint = _Endpoint( + self.invoices_delete_endpoint = _Endpoint( settings={ - 'response_type': (DeleteLedgerAccountResponse,), + 'response_type': (DeleteInvoiceResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/ledger-accounts/{id}', - 'operation_id': 'ledger_accounts_delete', + 'endpoint_path': '/accounting/invoices/{id}', + 'operation_id': 'invoices_delete', 'http_method': 'DELETE', 'servers': None, }, @@ -3692,14 +3677,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.ledger_accounts_one_endpoint = _Endpoint( + self.invoices_one_endpoint = _Endpoint( settings={ - 'response_type': (GetLedgerAccountResponse,), + 'response_type': (GetInvoiceResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/ledger-accounts/{id}', - 'operation_id': 'ledger_accounts_one', + 'endpoint_path': '/accounting/invoices/{id}', + 'operation_id': 'invoices_one', 'http_method': 'GET', 'servers': None, }, @@ -3769,21 +3754,21 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.ledger_accounts_update_endpoint = _Endpoint( + self.invoices_update_endpoint = _Endpoint( settings={ - 'response_type': (UpdateLedgerAccountResponse,), + 'response_type': (UpdateInvoiceResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/ledger-accounts/{id}', - 'operation_id': 'ledger_accounts_update', + 'endpoint_path': '/accounting/invoices/{id}', + 'operation_id': 'invoices_update', 'http_method': 'PATCH', 'servers': None, }, params_map={ 'all': [ 'id', - 'ledger_account', + 'invoice', 'consumer_id', 'app_id', 'service_id', @@ -3791,7 +3776,7 @@ def __init__(self, api_client=None): ], 'required': [ 'id', - 'ledger_account', + 'invoice', ], 'nullable': [ ], @@ -3808,8 +3793,8 @@ def __init__(self, api_client=None): 'openapi_types': { 'id': (str,), - 'ledger_account': - (LedgerAccount,), + 'invoice': + (Invoice,), 'consumer_id': (str,), 'app_id': @@ -3828,7 +3813,7 @@ def __init__(self, api_client=None): }, 'location_map': { 'id': 'path', - 'ledger_account': 'body', + 'invoice': 'body', 'consumer_id': 'header', 'app_id': 'header', 'service_id': 'header', @@ -3847,27 +3832,27 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.locations_add_endpoint = _Endpoint( + self.journal_entries_add_endpoint = _Endpoint( settings={ - 'response_type': (CreateAccountingLocationResponse,), + 'response_type': (CreateJournalEntryResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/locations', - 'operation_id': 'locations_add', + 'endpoint_path': '/accounting/journal-entries', + 'operation_id': 'journal_entries_add', 'http_method': 'POST', 'servers': None, }, params_map={ 'all': [ - 'accounting_location', + 'journal_entry', 'raw', 'consumer_id', 'app_id', 'service_id', ], 'required': [ - 'accounting_location', + 'journal_entry', ], 'nullable': [ ], @@ -3882,8 +3867,8 @@ def __init__(self, api_client=None): 'allowed_values': { }, 'openapi_types': { - 'accounting_location': - (AccountingLocation,), + 'journal_entry': + (JournalEntry,), 'raw': (bool,), 'consumer_id': @@ -3900,7 +3885,7 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', }, 'location_map': { - 'accounting_location': 'body', + 'journal_entry': 'body', 'raw': 'query', 'consumer_id': 'header', 'app_id': 'header', @@ -3919,14 +3904,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.locations_all_endpoint = _Endpoint( + self.journal_entries_all_endpoint = _Endpoint( settings={ - 'response_type': (GetAccountingLocationsResponse,), + 'response_type': (GetJournalEntriesResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/locations', - 'operation_id': 'locations_all', + 'endpoint_path': '/accounting/journal-entries', + 'operation_id': 'journal_entries_all', 'http_method': 'GET', 'servers': None, }, @@ -3938,8 +3923,10 @@ def __init__(self, api_client=None): 'service_id', 'cursor', 'limit', - 'fields', 'filter', + 'sort', + 'pass_through', + 'fields', ], 'required': [], 'nullable': [ @@ -3975,10 +3962,14 @@ def __init__(self, api_client=None): (str, none_type,), 'limit': (int,), - 'fields': - (str, none_type,), 'filter': - (AccountingLocationsFilter,), + (JournalEntriesFilter,), + 'sort': + (JournalEntriesSort,), + 'pass_through': + (PassThroughQuery,), + 'fields': + (str, none_type,), }, 'attribute_map': { 'raw': 'raw', @@ -3987,8 +3978,10 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', 'cursor': 'cursor', 'limit': 'limit', - 'fields': 'fields', 'filter': 'filter', + 'sort': 'sort', + 'pass_through': 'pass_through', + 'fields': 'fields', }, 'location_map': { 'raw': 'query', @@ -3997,8 +3990,10 @@ def __init__(self, api_client=None): 'service_id': 'header', 'cursor': 'query', 'limit': 'query', - 'fields': 'query', 'filter': 'query', + 'sort': 'query', + 'pass_through': 'query', + 'fields': 'query', }, 'collection_format_map': { } @@ -4011,14 +4006,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.locations_delete_endpoint = _Endpoint( + self.journal_entries_delete_endpoint = _Endpoint( settings={ - 'response_type': (DeleteAccountingLocationResponse,), + 'response_type': (DeleteJournalEntryResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/locations/{id}', - 'operation_id': 'locations_delete', + 'endpoint_path': '/accounting/journal-entries/{id}', + 'operation_id': 'journal_entries_delete', 'http_method': 'DELETE', 'servers': None, }, @@ -4082,14 +4077,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.locations_one_endpoint = _Endpoint( + self.journal_entries_one_endpoint = _Endpoint( settings={ - 'response_type': (GetAccountingLocationResponse,), + 'response_type': (GetJournalEntryResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/locations/{id}', - 'operation_id': 'locations_one', + 'endpoint_path': '/accounting/journal-entries/{id}', + 'operation_id': 'journal_entries_one', 'http_method': 'GET', 'servers': None, }, @@ -4159,21 +4154,21 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.locations_update_endpoint = _Endpoint( + self.journal_entries_update_endpoint = _Endpoint( settings={ - 'response_type': (UpdateAccountingLocationResponse,), + 'response_type': (UpdateJournalEntryResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/locations/{id}', - 'operation_id': 'locations_update', + 'endpoint_path': '/accounting/journal-entries/{id}', + 'operation_id': 'journal_entries_update', 'http_method': 'PATCH', 'servers': None, }, params_map={ 'all': [ 'id', - 'accounting_location', + 'journal_entry', 'consumer_id', 'app_id', 'service_id', @@ -4181,7 +4176,7 @@ def __init__(self, api_client=None): ], 'required': [ 'id', - 'accounting_location', + 'journal_entry', ], 'nullable': [ ], @@ -4198,8 +4193,8 @@ def __init__(self, api_client=None): 'openapi_types': { 'id': (str,), - 'accounting_location': - (AccountingLocation,), + 'journal_entry': + (JournalEntry,), 'consumer_id': (str,), 'app_id': @@ -4218,7 +4213,7 @@ def __init__(self, api_client=None): }, 'location_map': { 'id': 'path', - 'accounting_location': 'body', + 'journal_entry': 'body', 'consumer_id': 'header', 'app_id': 'header', 'service_id': 'header', @@ -4237,27 +4232,27 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.payments_add_endpoint = _Endpoint( + self.ledger_accounts_add_endpoint = _Endpoint( settings={ - 'response_type': (CreatePaymentResponse,), + 'response_type': (CreateLedgerAccountResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/payments', - 'operation_id': 'payments_add', + 'endpoint_path': '/accounting/ledger-accounts', + 'operation_id': 'ledger_accounts_add', 'http_method': 'POST', 'servers': None, }, params_map={ 'all': [ - 'payment', + 'ledger_account', 'raw', 'consumer_id', 'app_id', 'service_id', ], 'required': [ - 'payment', + 'ledger_account', ], 'nullable': [ ], @@ -4272,8 +4267,8 @@ def __init__(self, api_client=None): 'allowed_values': { }, 'openapi_types': { - 'payment': - (Payment,), + 'ledger_account': + (LedgerAccount,), 'raw': (bool,), 'consumer_id': @@ -4290,7 +4285,7 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', }, 'location_map': { - 'payment': 'body', + 'ledger_account': 'body', 'raw': 'query', 'consumer_id': 'header', 'app_id': 'header', @@ -4309,14 +4304,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.payments_all_endpoint = _Endpoint( + self.ledger_accounts_all_endpoint = _Endpoint( settings={ - 'response_type': (GetPaymentsResponse,), + 'response_type': (GetLedgerAccountsResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/payments', - 'operation_id': 'payments_all', + 'endpoint_path': '/accounting/ledger-accounts', + 'operation_id': 'ledger_accounts_all', 'http_method': 'GET', 'servers': None, }, @@ -4368,9 +4363,9 @@ def __init__(self, api_client=None): 'limit': (int,), 'filter': - (PaymentsFilter,), + (LedgerAccountsFilter,), 'sort': - (PaymentsSort,), + (LedgerAccountsSort,), 'pass_through': (PassThroughQuery,), 'fields': @@ -4411,14 +4406,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.payments_delete_endpoint = _Endpoint( + self.ledger_accounts_delete_endpoint = _Endpoint( settings={ - 'response_type': (DeletePaymentResponse,), + 'response_type': (DeleteLedgerAccountResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/payments/{id}', - 'operation_id': 'payments_delete', + 'endpoint_path': '/accounting/ledger-accounts/{id}', + 'operation_id': 'ledger_accounts_delete', 'http_method': 'DELETE', 'servers': None, }, @@ -4482,14 +4477,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.payments_one_endpoint = _Endpoint( + self.ledger_accounts_one_endpoint = _Endpoint( settings={ - 'response_type': (GetPaymentResponse,), + 'response_type': (GetLedgerAccountResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/payments/{id}', - 'operation_id': 'payments_one', + 'endpoint_path': '/accounting/ledger-accounts/{id}', + 'operation_id': 'ledger_accounts_one', 'http_method': 'GET', 'servers': None, }, @@ -4559,21 +4554,21 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.payments_update_endpoint = _Endpoint( + self.ledger_accounts_update_endpoint = _Endpoint( settings={ - 'response_type': (UpdatePaymentResponse,), + 'response_type': (UpdateLedgerAccountResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/payments/{id}', - 'operation_id': 'payments_update', + 'endpoint_path': '/accounting/ledger-accounts/{id}', + 'operation_id': 'ledger_accounts_update', 'http_method': 'PATCH', 'servers': None, }, params_map={ 'all': [ 'id', - 'payment', + 'ledger_account', 'consumer_id', 'app_id', 'service_id', @@ -4581,7 +4576,7 @@ def __init__(self, api_client=None): ], 'required': [ 'id', - 'payment', + 'ledger_account', ], 'nullable': [ ], @@ -4598,8 +4593,8 @@ def __init__(self, api_client=None): 'openapi_types': { 'id': (str,), - 'payment': - (Payment,), + 'ledger_account': + (LedgerAccount,), 'consumer_id': (str,), 'app_id': @@ -4618,7 +4613,7 @@ def __init__(self, api_client=None): }, 'location_map': { 'id': 'path', - 'payment': 'body', + 'ledger_account': 'body', 'consumer_id': 'header', 'app_id': 'header', 'service_id': 'header', @@ -4637,107 +4632,27 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.profit_and_loss_one_endpoint = _Endpoint( - settings={ - 'response_type': (GetProfitAndLossResponse,), - 'auth': [ - 'apiKey' - ], - 'endpoint_path': '/accounting/profit-and-loss', - 'operation_id': 'profit_and_loss_one', - 'http_method': 'GET', - 'servers': None, - }, - params_map={ - 'all': [ - 'raw', - 'consumer_id', - 'app_id', - 'service_id', - 'filter', - 'pass_through', - 'fields', - ], - 'required': [], - 'nullable': [ - 'fields', - ], - 'enum': [ - ], - 'validation': [ - ] - }, - root_map={ - 'validations': { - }, - 'allowed_values': { - }, - 'openapi_types': { - 'raw': - (bool,), - 'consumer_id': - (str,), - 'app_id': - (str,), - 'service_id': - (str,), - 'filter': - (ProfitAndLossFilter,), - 'pass_through': - (PassThroughQuery,), - 'fields': - (str, none_type,), - }, - 'attribute_map': { - 'raw': 'raw', - 'consumer_id': 'x-apideck-consumer-id', - 'app_id': 'x-apideck-app-id', - 'service_id': 'x-apideck-service-id', - 'filter': 'filter', - 'pass_through': 'pass_through', - 'fields': 'fields', - }, - 'location_map': { - 'raw': 'query', - 'consumer_id': 'header', - 'app_id': 'header', - 'service_id': 'header', - 'filter': 'query', - 'pass_through': 'query', - 'fields': 'query', - }, - 'collection_format_map': { - } - }, - headers_map={ - 'accept': [ - 'application/json' - ], - 'content_type': [], - }, - api_client=api_client - ) - self.purchase_orders_add_endpoint = _Endpoint( + self.locations_add_endpoint = _Endpoint( settings={ - 'response_type': (CreatePurchaseOrderResponse,), + 'response_type': (CreateAccountingLocationResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/purchase-orders', - 'operation_id': 'purchase_orders_add', + 'endpoint_path': '/accounting/locations', + 'operation_id': 'locations_add', 'http_method': 'POST', 'servers': None, }, params_map={ 'all': [ - 'purchase_order', + 'accounting_location', 'raw', 'consumer_id', 'app_id', 'service_id', ], 'required': [ - 'purchase_order', + 'accounting_location', ], 'nullable': [ ], @@ -4752,8 +4667,8 @@ def __init__(self, api_client=None): 'allowed_values': { }, 'openapi_types': { - 'purchase_order': - (PurchaseOrder,), + 'accounting_location': + (AccountingLocation,), 'raw': (bool,), 'consumer_id': @@ -4770,7 +4685,7 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', }, 'location_map': { - 'purchase_order': 'body', + 'accounting_location': 'body', 'raw': 'query', 'consumer_id': 'header', 'app_id': 'header', @@ -4789,14 +4704,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.purchase_orders_all_endpoint = _Endpoint( + self.locations_all_endpoint = _Endpoint( settings={ - 'response_type': (GetPurchaseOrdersResponse,), + 'response_type': (GetAccountingLocationsResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/purchase-orders', - 'operation_id': 'purchase_orders_all', + 'endpoint_path': '/accounting/locations', + 'operation_id': 'locations_all', 'http_method': 'GET', 'servers': None, }, @@ -4807,14 +4722,14 @@ def __init__(self, api_client=None): 'app_id', 'service_id', 'cursor', - 'pass_through', 'limit', + 'fields', 'filter', - 'sort', ], 'required': [], 'nullable': [ 'cursor', + 'fields', ], 'enum': [ ], @@ -4843,14 +4758,12 @@ def __init__(self, api_client=None): (str,), 'cursor': (str, none_type,), - 'pass_through': - (PassThroughQuery,), 'limit': (int,), + 'fields': + (str, none_type,), 'filter': - (PurchaseOrdersFilter,), - 'sort': - (PurchaseOrdersSort,), + (AccountingLocationsFilter,), }, 'attribute_map': { 'raw': 'raw', @@ -4858,10 +4771,9 @@ def __init__(self, api_client=None): 'app_id': 'x-apideck-app-id', 'service_id': 'x-apideck-service-id', 'cursor': 'cursor', - 'pass_through': 'pass_through', 'limit': 'limit', + 'fields': 'fields', 'filter': 'filter', - 'sort': 'sort', }, 'location_map': { 'raw': 'query', @@ -4869,10 +4781,9 @@ def __init__(self, api_client=None): 'app_id': 'header', 'service_id': 'header', 'cursor': 'query', - 'pass_through': 'query', 'limit': 'query', + 'fields': 'query', 'filter': 'query', - 'sort': 'query', }, 'collection_format_map': { } @@ -4885,14 +4796,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.purchase_orders_delete_endpoint = _Endpoint( + self.locations_delete_endpoint = _Endpoint( settings={ - 'response_type': (DeletePurchaseOrderResponse,), + 'response_type': (DeleteAccountingLocationResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/purchase-orders/{id}', - 'operation_id': 'purchase_orders_delete', + 'endpoint_path': '/accounting/locations/{id}', + 'operation_id': 'locations_delete', 'http_method': 'DELETE', 'servers': None, }, @@ -4956,14 +4867,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.purchase_orders_one_endpoint = _Endpoint( + self.locations_one_endpoint = _Endpoint( settings={ - 'response_type': (GetPurchaseOrderResponse,), + 'response_type': (GetAccountingLocationResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/purchase-orders/{id}', - 'operation_id': 'purchase_orders_one', + 'endpoint_path': '/accounting/locations/{id}', + 'operation_id': 'locations_one', 'http_method': 'GET', 'servers': None, }, @@ -4974,11 +4885,13 @@ def __init__(self, api_client=None): 'app_id', 'service_id', 'raw', + 'fields', ], 'required': [ 'id', ], 'nullable': [ + 'fields', ], 'enum': [ ], @@ -5001,13 +4914,16 @@ def __init__(self, api_client=None): (str,), 'raw': (bool,), - }, + 'fields': + (str, none_type,), + }, 'attribute_map': { 'id': 'id', 'consumer_id': 'x-apideck-consumer-id', 'app_id': 'x-apideck-app-id', 'service_id': 'x-apideck-service-id', 'raw': 'raw', + 'fields': 'fields', }, 'location_map': { 'id': 'path', @@ -5015,6 +4931,7 @@ def __init__(self, api_client=None): 'app_id': 'header', 'service_id': 'header', 'raw': 'query', + 'fields': 'query', }, 'collection_format_map': { } @@ -5027,21 +4944,21 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.purchase_orders_update_endpoint = _Endpoint( + self.locations_update_endpoint = _Endpoint( settings={ - 'response_type': (UpdatePurchaseOrderResponse,), + 'response_type': (UpdateAccountingLocationResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/purchase-orders/{id}', - 'operation_id': 'purchase_orders_update', + 'endpoint_path': '/accounting/locations/{id}', + 'operation_id': 'locations_update', 'http_method': 'PATCH', 'servers': None, }, params_map={ 'all': [ 'id', - 'purchase_order', + 'accounting_location', 'consumer_id', 'app_id', 'service_id', @@ -5049,7 +4966,7 @@ def __init__(self, api_client=None): ], 'required': [ 'id', - 'purchase_order', + 'accounting_location', ], 'nullable': [ ], @@ -5066,8 +4983,8 @@ def __init__(self, api_client=None): 'openapi_types': { 'id': (str,), - 'purchase_order': - (PurchaseOrder,), + 'accounting_location': + (AccountingLocation,), 'consumer_id': (str,), 'app_id': @@ -5086,7 +5003,7 @@ def __init__(self, api_client=None): }, 'location_map': { 'id': 'path', - 'purchase_order': 'body', + 'accounting_location': 'body', 'consumer_id': 'header', 'app_id': 'header', 'service_id': 'header', @@ -5105,27 +5022,27 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.subsidiaries_add_endpoint = _Endpoint( + self.payments_add_endpoint = _Endpoint( settings={ - 'response_type': (CreateSubsidiaryResponse,), + 'response_type': (CreatePaymentResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/subsidiaries', - 'operation_id': 'subsidiaries_add', + 'endpoint_path': '/accounting/payments', + 'operation_id': 'payments_add', 'http_method': 'POST', 'servers': None, }, params_map={ 'all': [ - 'subsidiary', + 'payment', 'raw', 'consumer_id', 'app_id', 'service_id', ], 'required': [ - 'subsidiary', + 'payment', ], 'nullable': [ ], @@ -5140,8 +5057,8 @@ def __init__(self, api_client=None): 'allowed_values': { }, 'openapi_types': { - 'subsidiary': - (Subsidiary,), + 'payment': + (Payment,), 'raw': (bool,), 'consumer_id': @@ -5158,7 +5075,7 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', }, 'location_map': { - 'subsidiary': 'body', + 'payment': 'body', 'raw': 'query', 'consumer_id': 'header', 'app_id': 'header', @@ -5177,14 +5094,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.subsidiaries_all_endpoint = _Endpoint( + self.payments_all_endpoint = _Endpoint( settings={ - 'response_type': (GetSubsidiariesResponse,), + 'response_type': (GetPaymentsResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/subsidiaries', - 'operation_id': 'subsidiaries_all', + 'endpoint_path': '/accounting/payments', + 'operation_id': 'payments_all', 'http_method': 'GET', 'servers': None, }, @@ -5196,6 +5113,9 @@ def __init__(self, api_client=None): 'service_id', 'cursor', 'limit', + 'filter', + 'sort', + 'pass_through', 'fields', ], 'required': [], @@ -5232,6 +5152,12 @@ def __init__(self, api_client=None): (str, none_type,), 'limit': (int,), + 'filter': + (PaymentsFilter,), + 'sort': + (PaymentsSort,), + 'pass_through': + (PassThroughQuery,), 'fields': (str, none_type,), }, @@ -5242,6 +5168,9 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', 'cursor': 'cursor', 'limit': 'limit', + 'filter': 'filter', + 'sort': 'sort', + 'pass_through': 'pass_through', 'fields': 'fields', }, 'location_map': { @@ -5251,6 +5180,9 @@ def __init__(self, api_client=None): 'service_id': 'header', 'cursor': 'query', 'limit': 'query', + 'filter': 'query', + 'sort': 'query', + 'pass_through': 'query', 'fields': 'query', }, 'collection_format_map': { @@ -5264,14 +5196,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.subsidiaries_delete_endpoint = _Endpoint( + self.payments_delete_endpoint = _Endpoint( settings={ - 'response_type': (DeleteSubsidiaryResponse,), + 'response_type': (DeletePaymentResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/subsidiaries/{id}', - 'operation_id': 'subsidiaries_delete', + 'endpoint_path': '/accounting/payments/{id}', + 'operation_id': 'payments_delete', 'http_method': 'DELETE', 'servers': None, }, @@ -5335,14 +5267,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.subsidiaries_one_endpoint = _Endpoint( + self.payments_one_endpoint = _Endpoint( settings={ - 'response_type': (GetSubsidiaryResponse,), + 'response_type': (GetPaymentResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/subsidiaries/{id}', - 'operation_id': 'subsidiaries_one', + 'endpoint_path': '/accounting/payments/{id}', + 'operation_id': 'payments_one', 'http_method': 'GET', 'servers': None, }, @@ -5412,21 +5344,21 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.subsidiaries_update_endpoint = _Endpoint( + self.payments_update_endpoint = _Endpoint( settings={ - 'response_type': (UpdateSubsidiaryResponse,), + 'response_type': (UpdatePaymentResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/subsidiaries/{id}', - 'operation_id': 'subsidiaries_update', + 'endpoint_path': '/accounting/payments/{id}', + 'operation_id': 'payments_update', 'http_method': 'PATCH', 'servers': None, }, params_map={ 'all': [ 'id', - 'subsidiary', + 'payment', 'consumer_id', 'app_id', 'service_id', @@ -5434,7 +5366,7 @@ def __init__(self, api_client=None): ], 'required': [ 'id', - 'subsidiary', + 'payment', ], 'nullable': [ ], @@ -5451,8 +5383,8 @@ def __init__(self, api_client=None): 'openapi_types': { 'id': (str,), - 'subsidiary': - (Subsidiary,), + 'payment': + (Payment,), 'consumer_id': (str,), 'app_id': @@ -5471,7 +5403,7 @@ def __init__(self, api_client=None): }, 'location_map': { 'id': 'path', - 'subsidiary': 'body', + 'payment': 'body', 'consumer_id': 'header', 'app_id': 'header', 'service_id': 'header', @@ -5490,27 +5422,107 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.suppliers_add_endpoint = _Endpoint( + self.profit_and_loss_one_endpoint = _Endpoint( settings={ - 'response_type': (CreateSupplierResponse,), + 'response_type': (GetProfitAndLossResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/suppliers', - 'operation_id': 'suppliers_add', + 'endpoint_path': '/accounting/profit-and-loss', + 'operation_id': 'profit_and_loss_one', + 'http_method': 'GET', + 'servers': None, + }, + params_map={ + 'all': [ + 'raw', + 'consumer_id', + 'app_id', + 'service_id', + 'filter', + 'pass_through', + 'fields', + ], + 'required': [], + 'nullable': [ + 'fields', + ], + 'enum': [ + ], + 'validation': [ + ] + }, + root_map={ + 'validations': { + }, + 'allowed_values': { + }, + 'openapi_types': { + 'raw': + (bool,), + 'consumer_id': + (str,), + 'app_id': + (str,), + 'service_id': + (str,), + 'filter': + (ProfitAndLossFilter,), + 'pass_through': + (PassThroughQuery,), + 'fields': + (str, none_type,), + }, + 'attribute_map': { + 'raw': 'raw', + 'consumer_id': 'x-apideck-consumer-id', + 'app_id': 'x-apideck-app-id', + 'service_id': 'x-apideck-service-id', + 'filter': 'filter', + 'pass_through': 'pass_through', + 'fields': 'fields', + }, + 'location_map': { + 'raw': 'query', + 'consumer_id': 'header', + 'app_id': 'header', + 'service_id': 'header', + 'filter': 'query', + 'pass_through': 'query', + 'fields': 'query', + }, + 'collection_format_map': { + } + }, + headers_map={ + 'accept': [ + 'application/json' + ], + 'content_type': [], + }, + api_client=api_client + ) + self.purchase_orders_add_endpoint = _Endpoint( + settings={ + 'response_type': (CreatePurchaseOrderResponse,), + 'auth': [ + 'apiKey' + ], + 'endpoint_path': '/accounting/purchase-orders', + 'operation_id': 'purchase_orders_add', 'http_method': 'POST', 'servers': None, }, params_map={ 'all': [ - 'supplier', + 'purchase_order', 'raw', 'consumer_id', 'app_id', 'service_id', ], 'required': [ - 'supplier', + 'purchase_order', ], 'nullable': [ ], @@ -5525,8 +5537,8 @@ def __init__(self, api_client=None): 'allowed_values': { }, 'openapi_types': { - 'supplier': - (Supplier,), + 'purchase_order': + (PurchaseOrder,), 'raw': (bool,), 'consumer_id': @@ -5543,7 +5555,7 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', }, 'location_map': { - 'supplier': 'body', + 'purchase_order': 'body', 'raw': 'query', 'consumer_id': 'header', 'app_id': 'header', @@ -5562,14 +5574,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.suppliers_all_endpoint = _Endpoint( + self.purchase_orders_all_endpoint = _Endpoint( settings={ - 'response_type': (GetSuppliersResponse,), + 'response_type': (GetPurchaseOrdersResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/suppliers', - 'operation_id': 'suppliers_all', + 'endpoint_path': '/accounting/purchase-orders', + 'operation_id': 'purchase_orders_all', 'http_method': 'GET', 'servers': None, }, @@ -5580,16 +5592,14 @@ def __init__(self, api_client=None): 'app_id', 'service_id', 'cursor', + 'pass_through', 'limit', 'filter', 'sort', - 'pass_through', - 'fields', ], 'required': [], 'nullable': [ 'cursor', - 'fields', ], 'enum': [ ], @@ -5618,16 +5628,14 @@ def __init__(self, api_client=None): (str,), 'cursor': (str, none_type,), + 'pass_through': + (PassThroughQuery,), 'limit': (int,), 'filter': - (SuppliersFilter,), + (PurchaseOrdersFilter,), 'sort': - (SuppliersSort,), - 'pass_through': - (PassThroughQuery,), - 'fields': - (str, none_type,), + (PurchaseOrdersSort,), }, 'attribute_map': { 'raw': 'raw', @@ -5635,11 +5643,10 @@ def __init__(self, api_client=None): 'app_id': 'x-apideck-app-id', 'service_id': 'x-apideck-service-id', 'cursor': 'cursor', + 'pass_through': 'pass_through', 'limit': 'limit', 'filter': 'filter', 'sort': 'sort', - 'pass_through': 'pass_through', - 'fields': 'fields', }, 'location_map': { 'raw': 'query', @@ -5647,11 +5654,10 @@ def __init__(self, api_client=None): 'app_id': 'header', 'service_id': 'header', 'cursor': 'query', + 'pass_through': 'query', 'limit': 'query', 'filter': 'query', 'sort': 'query', - 'pass_through': 'query', - 'fields': 'query', }, 'collection_format_map': { } @@ -5664,14 +5670,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.suppliers_delete_endpoint = _Endpoint( + self.purchase_orders_delete_endpoint = _Endpoint( settings={ - 'response_type': (DeleteSupplierResponse,), + 'response_type': (DeletePurchaseOrderResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/suppliers/{id}', - 'operation_id': 'suppliers_delete', + 'endpoint_path': '/accounting/purchase-orders/{id}', + 'operation_id': 'purchase_orders_delete', 'http_method': 'DELETE', 'servers': None, }, @@ -5735,14 +5741,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.suppliers_one_endpoint = _Endpoint( + self.purchase_orders_one_endpoint = _Endpoint( settings={ - 'response_type': (GetSupplierResponse,), + 'response_type': (GetPurchaseOrderResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/suppliers/{id}', - 'operation_id': 'suppliers_one', + 'endpoint_path': '/accounting/purchase-orders/{id}', + 'operation_id': 'purchase_orders_one', 'http_method': 'GET', 'servers': None, }, @@ -5753,13 +5759,11 @@ def __init__(self, api_client=None): 'app_id', 'service_id', 'raw', - 'fields', ], 'required': [ 'id', ], 'nullable': [ - 'fields', ], 'enum': [ ], @@ -5782,8 +5786,6 @@ def __init__(self, api_client=None): (str,), 'raw': (bool,), - 'fields': - (str, none_type,), }, 'attribute_map': { 'id': 'id', @@ -5791,7 +5793,6 @@ def __init__(self, api_client=None): 'app_id': 'x-apideck-app-id', 'service_id': 'x-apideck-service-id', 'raw': 'raw', - 'fields': 'fields', }, 'location_map': { 'id': 'path', @@ -5799,7 +5800,6 @@ def __init__(self, api_client=None): 'app_id': 'header', 'service_id': 'header', 'raw': 'query', - 'fields': 'query', }, 'collection_format_map': { } @@ -5812,21 +5812,21 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.suppliers_update_endpoint = _Endpoint( + self.purchase_orders_update_endpoint = _Endpoint( settings={ - 'response_type': (UpdateSupplierResponse,), + 'response_type': (UpdatePurchaseOrderResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/suppliers/{id}', - 'operation_id': 'suppliers_update', + 'endpoint_path': '/accounting/purchase-orders/{id}', + 'operation_id': 'purchase_orders_update', 'http_method': 'PATCH', 'servers': None, }, params_map={ 'all': [ 'id', - 'supplier', + 'purchase_order', 'consumer_id', 'app_id', 'service_id', @@ -5834,7 +5834,7 @@ def __init__(self, api_client=None): ], 'required': [ 'id', - 'supplier', + 'purchase_order', ], 'nullable': [ ], @@ -5851,8 +5851,8 @@ def __init__(self, api_client=None): 'openapi_types': { 'id': (str,), - 'supplier': - (Supplier,), + 'purchase_order': + (PurchaseOrder,), 'consumer_id': (str,), 'app_id': @@ -5871,7 +5871,7 @@ def __init__(self, api_client=None): }, 'location_map': { 'id': 'path', - 'supplier': 'body', + 'purchase_order': 'body', 'consumer_id': 'header', 'app_id': 'header', 'service_id': 'header', @@ -5890,27 +5890,27 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.tax_rates_add_endpoint = _Endpoint( + self.subsidiaries_add_endpoint = _Endpoint( settings={ - 'response_type': (CreateTaxRateResponse,), + 'response_type': (CreateSubsidiaryResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/tax-rates', - 'operation_id': 'tax_rates_add', + 'endpoint_path': '/accounting/subsidiaries', + 'operation_id': 'subsidiaries_add', 'http_method': 'POST', 'servers': None, }, params_map={ 'all': [ - 'tax_rate', + 'subsidiary', 'raw', 'consumer_id', 'app_id', 'service_id', ], 'required': [ - 'tax_rate', + 'subsidiary', ], 'nullable': [ ], @@ -5925,8 +5925,8 @@ def __init__(self, api_client=None): 'allowed_values': { }, 'openapi_types': { - 'tax_rate': - (TaxRate,), + 'subsidiary': + (Subsidiary,), 'raw': (bool,), 'consumer_id': @@ -5943,7 +5943,7 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', }, 'location_map': { - 'tax_rate': 'body', + 'subsidiary': 'body', 'raw': 'query', 'consumer_id': 'header', 'app_id': 'header', @@ -5962,14 +5962,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.tax_rates_all_endpoint = _Endpoint( + self.subsidiaries_all_endpoint = _Endpoint( settings={ - 'response_type': (GetTaxRatesResponse,), + 'response_type': (GetSubsidiariesResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/tax-rates', - 'operation_id': 'tax_rates_all', + 'endpoint_path': '/accounting/subsidiaries', + 'operation_id': 'subsidiaries_all', 'http_method': 'GET', 'servers': None, }, @@ -5981,8 +5981,6 @@ def __init__(self, api_client=None): 'service_id', 'cursor', 'limit', - 'filter', - 'pass_through', 'fields', ], 'required': [], @@ -6019,10 +6017,6 @@ def __init__(self, api_client=None): (str, none_type,), 'limit': (int,), - 'filter': - (TaxRatesFilter,), - 'pass_through': - (PassThroughQuery,), 'fields': (str, none_type,), }, @@ -6033,8 +6027,6 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', 'cursor': 'cursor', 'limit': 'limit', - 'filter': 'filter', - 'pass_through': 'pass_through', 'fields': 'fields', }, 'location_map': { @@ -6044,8 +6036,6 @@ def __init__(self, api_client=None): 'service_id': 'header', 'cursor': 'query', 'limit': 'query', - 'filter': 'query', - 'pass_through': 'query', 'fields': 'query', }, 'collection_format_map': { @@ -6059,14 +6049,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.tax_rates_delete_endpoint = _Endpoint( + self.subsidiaries_delete_endpoint = _Endpoint( settings={ - 'response_type': (DeleteTaxRateResponse,), + 'response_type': (DeleteSubsidiaryResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/tax-rates/{id}', - 'operation_id': 'tax_rates_delete', + 'endpoint_path': '/accounting/subsidiaries/{id}', + 'operation_id': 'subsidiaries_delete', 'http_method': 'DELETE', 'servers': None, }, @@ -6130,14 +6120,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.tax_rates_one_endpoint = _Endpoint( + self.subsidiaries_one_endpoint = _Endpoint( settings={ - 'response_type': (GetTaxRateResponse,), + 'response_type': (GetSubsidiaryResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/tax-rates/{id}', - 'operation_id': 'tax_rates_one', + 'endpoint_path': '/accounting/subsidiaries/{id}', + 'operation_id': 'subsidiaries_one', 'http_method': 'GET', 'servers': None, }, @@ -6207,21 +6197,21 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.tax_rates_update_endpoint = _Endpoint( + self.subsidiaries_update_endpoint = _Endpoint( settings={ - 'response_type': (UpdateTaxRateResponse,), + 'response_type': (UpdateSubsidiaryResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/tax-rates/{id}', - 'operation_id': 'tax_rates_update', + 'endpoint_path': '/accounting/subsidiaries/{id}', + 'operation_id': 'subsidiaries_update', 'http_method': 'PATCH', 'servers': None, }, params_map={ 'all': [ 'id', - 'tax_rate', + 'subsidiary', 'consumer_id', 'app_id', 'service_id', @@ -6229,7 +6219,7 @@ def __init__(self, api_client=None): ], 'required': [ 'id', - 'tax_rate', + 'subsidiary', ], 'nullable': [ ], @@ -6246,8 +6236,8 @@ def __init__(self, api_client=None): 'openapi_types': { 'id': (str,), - 'tax_rate': - (TaxRate,), + 'subsidiary': + (Subsidiary,), 'consumer_id': (str,), 'app_id': @@ -6266,7 +6256,7 @@ def __init__(self, api_client=None): }, 'location_map': { 'id': 'path', - 'tax_rate': 'body', + 'subsidiary': 'body', 'consumer_id': 'header', 'app_id': 'header', 'service_id': 'header', @@ -6285,27 +6275,27 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.tracking_categories_add_endpoint = _Endpoint( + self.suppliers_add_endpoint = _Endpoint( settings={ - 'response_type': (CreateTrackingCategoryResponse,), + 'response_type': (CreateSupplierResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/tracking-categories', - 'operation_id': 'tracking_categories_add', + 'endpoint_path': '/accounting/suppliers', + 'operation_id': 'suppliers_add', 'http_method': 'POST', 'servers': None, }, params_map={ 'all': [ - 'tracking_category', + 'supplier', 'raw', 'consumer_id', 'app_id', 'service_id', ], 'required': [ - 'tracking_category', + 'supplier', ], 'nullable': [ ], @@ -6320,8 +6310,8 @@ def __init__(self, api_client=None): 'allowed_values': { }, 'openapi_types': { - 'tracking_category': - (TrackingCategory,), + 'supplier': + (Supplier,), 'raw': (bool,), 'consumer_id': @@ -6338,7 +6328,7 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', }, 'location_map': { - 'tracking_category': 'body', + 'supplier': 'body', 'raw': 'query', 'consumer_id': 'header', 'app_id': 'header', @@ -6357,14 +6347,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.tracking_categories_all_endpoint = _Endpoint( + self.suppliers_all_endpoint = _Endpoint( settings={ - 'response_type': (GetTrackingCategoriesResponse,), + 'response_type': (GetSuppliersResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/tracking-categories', - 'operation_id': 'tracking_categories_all', + 'endpoint_path': '/accounting/suppliers', + 'operation_id': 'suppliers_all', 'http_method': 'GET', 'servers': None, }, @@ -6376,6 +6366,8 @@ def __init__(self, api_client=None): 'service_id', 'cursor', 'limit', + 'filter', + 'sort', 'pass_through', 'fields', ], @@ -6413,6 +6405,10 @@ def __init__(self, api_client=None): (str, none_type,), 'limit': (int,), + 'filter': + (SuppliersFilter,), + 'sort': + (SuppliersSort,), 'pass_through': (PassThroughQuery,), 'fields': @@ -6425,6 +6421,8 @@ def __init__(self, api_client=None): 'service_id': 'x-apideck-service-id', 'cursor': 'cursor', 'limit': 'limit', + 'filter': 'filter', + 'sort': 'sort', 'pass_through': 'pass_through', 'fields': 'fields', }, @@ -6435,6 +6433,8 @@ def __init__(self, api_client=None): 'service_id': 'header', 'cursor': 'query', 'limit': 'query', + 'filter': 'query', + 'sort': 'query', 'pass_through': 'query', 'fields': 'query', }, @@ -6449,14 +6449,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.tracking_categories_delete_endpoint = _Endpoint( + self.suppliers_delete_endpoint = _Endpoint( settings={ - 'response_type': (DeleteTrackingCategoryResponse,), + 'response_type': (DeleteSupplierResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/tracking-categories/{id}', - 'operation_id': 'tracking_categories_delete', + 'endpoint_path': '/accounting/suppliers/{id}', + 'operation_id': 'suppliers_delete', 'http_method': 'DELETE', 'servers': None, }, @@ -6520,14 +6520,14 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.tracking_categories_one_endpoint = _Endpoint( + self.suppliers_one_endpoint = _Endpoint( settings={ - 'response_type': (GetTrackingCategoryResponse,), + 'response_type': (GetSupplierResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/tracking-categories/{id}', - 'operation_id': 'tracking_categories_one', + 'endpoint_path': '/accounting/suppliers/{id}', + 'operation_id': 'suppliers_one', 'http_method': 'GET', 'servers': None, }, @@ -6597,21 +6597,21 @@ def __init__(self, api_client=None): }, api_client=api_client ) - self.tracking_categories_update_endpoint = _Endpoint( + self.suppliers_update_endpoint = _Endpoint( settings={ - 'response_type': (UpdateTrackingCategoryResponse,), + 'response_type': (UpdateSupplierResponse,), 'auth': [ 'apiKey' ], - 'endpoint_path': '/accounting/tracking-categories/{id}', - 'operation_id': 'tracking_categories_update', + 'endpoint_path': '/accounting/suppliers/{id}', + 'operation_id': 'suppliers_update', 'http_method': 'PATCH', 'servers': None, }, params_map={ 'all': [ 'id', - 'tracking_category', + 'supplier', 'consumer_id', 'app_id', 'service_id', @@ -6619,7 +6619,7 @@ def __init__(self, api_client=None): ], 'required': [ 'id', - 'tracking_category', + 'supplier', ], 'nullable': [ ], @@ -6636,8 +6636,8 @@ def __init__(self, api_client=None): 'openapi_types': { 'id': (str,), - 'tracking_category': - (TrackingCategory,), + 'supplier': + (Supplier,), 'consumer_id': (str,), 'app_id': @@ -6656,7 +6656,7 @@ def __init__(self, api_client=None): }, 'location_map': { 'id': 'path', - 'tracking_category': 'body', + 'supplier': 'body', 'consumer_id': 'header', 'app_id': 'header', 'service_id': 'header', @@ -6675,114 +6675,1079 @@ def __init__(self, api_client=None): }, api_client=api_client ) - - def attachments_all( - self, - reference_type, - reference_id, - **kwargs - ): - """List Attachments # noqa: E501 - - List Attachments # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - - >>> thread = api.attachments_all(reference_type, reference_id, async_req=True) - >>> result = thread.get() - - Args: - reference_type (AttachmentReferenceType): The reference type of the document. - reference_id (str): The reference id of the object to retrieve. - - Keyword Args: - raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False - consumer_id (str): ID of the consumer which you want to get or push data from. [optional] - app_id (str): The ID of your Unify application. [optional] - service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] - cursor (str, none_type): Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response.. [optional] - limit (int): Number of results to return. Minimum 1, Maximum 200, Default 20. [optional] if omitted the server will use the default value of 20 - fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [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 - 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. - async_req (bool): execute request asynchronously - - Returns: - GetAttachmentsResponse - 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['reference_type'] = \ - reference_type - kwargs['reference_id'] = \ - reference_id - return self.attachments_all_endpoint.call_with_http_info(**kwargs) - - def attachments_delete( - self, - reference_type, - reference_id, - id, - **kwargs - ): - """Delete Attachment # noqa: E501 - - Delete Attachment # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - - >>> thread = api.attachments_delete(reference_type, reference_id, id, async_req=True) - >>> result = thread.get() - - Args: - reference_type (AttachmentReferenceType): The reference type of the document. + self.tax_rates_add_endpoint = _Endpoint( + settings={ + 'response_type': (CreateTaxRateResponse,), + 'auth': [ + 'apiKey' + ], + 'endpoint_path': '/accounting/tax-rates', + 'operation_id': 'tax_rates_add', + 'http_method': 'POST', + 'servers': None, + }, + params_map={ + 'all': [ + 'tax_rate', + 'raw', + 'consumer_id', + 'app_id', + 'service_id', + ], + 'required': [ + 'tax_rate', + ], + 'nullable': [ + ], + 'enum': [ + ], + 'validation': [ + ] + }, + root_map={ + 'validations': { + }, + 'allowed_values': { + }, + 'openapi_types': { + 'tax_rate': + (TaxRate,), + 'raw': + (bool,), + 'consumer_id': + (str,), + 'app_id': + (str,), + 'service_id': + (str,), + }, + 'attribute_map': { + 'raw': 'raw', + 'consumer_id': 'x-apideck-consumer-id', + 'app_id': 'x-apideck-app-id', + 'service_id': 'x-apideck-service-id', + }, + 'location_map': { + 'tax_rate': 'body', + 'raw': 'query', + 'consumer_id': 'header', + 'app_id': 'header', + 'service_id': 'header', + }, + 'collection_format_map': { + } + }, + headers_map={ + 'accept': [ + 'application/json' + ], + 'content_type': [ + 'application/json' + ] + }, + api_client=api_client + ) + self.tax_rates_all_endpoint = _Endpoint( + settings={ + 'response_type': (GetTaxRatesResponse,), + 'auth': [ + 'apiKey' + ], + 'endpoint_path': '/accounting/tax-rates', + 'operation_id': 'tax_rates_all', + 'http_method': 'GET', + 'servers': None, + }, + params_map={ + 'all': [ + 'raw', + 'consumer_id', + 'app_id', + 'service_id', + 'cursor', + 'limit', + 'filter', + 'pass_through', + 'fields', + ], + 'required': [], + 'nullable': [ + 'cursor', + 'fields', + ], + 'enum': [ + ], + 'validation': [ + 'limit', + ] + }, + root_map={ + 'validations': { + ('limit',): { + + 'inclusive_maximum': 200, + 'inclusive_minimum': 1, + }, + }, + 'allowed_values': { + }, + 'openapi_types': { + 'raw': + (bool,), + 'consumer_id': + (str,), + 'app_id': + (str,), + 'service_id': + (str,), + 'cursor': + (str, none_type,), + 'limit': + (int,), + 'filter': + (TaxRatesFilter,), + 'pass_through': + (PassThroughQuery,), + 'fields': + (str, none_type,), + }, + 'attribute_map': { + 'raw': 'raw', + 'consumer_id': 'x-apideck-consumer-id', + 'app_id': 'x-apideck-app-id', + 'service_id': 'x-apideck-service-id', + 'cursor': 'cursor', + 'limit': 'limit', + 'filter': 'filter', + 'pass_through': 'pass_through', + 'fields': 'fields', + }, + 'location_map': { + 'raw': 'query', + 'consumer_id': 'header', + 'app_id': 'header', + 'service_id': 'header', + 'cursor': 'query', + 'limit': 'query', + 'filter': 'query', + 'pass_through': 'query', + 'fields': 'query', + }, + 'collection_format_map': { + } + }, + headers_map={ + 'accept': [ + 'application/json' + ], + 'content_type': [], + }, + api_client=api_client + ) + self.tax_rates_delete_endpoint = _Endpoint( + settings={ + 'response_type': (DeleteTaxRateResponse,), + 'auth': [ + 'apiKey' + ], + 'endpoint_path': '/accounting/tax-rates/{id}', + 'operation_id': 'tax_rates_delete', + 'http_method': 'DELETE', + 'servers': None, + }, + params_map={ + 'all': [ + 'id', + 'consumer_id', + 'app_id', + 'service_id', + 'raw', + ], + 'required': [ + 'id', + ], + 'nullable': [ + ], + 'enum': [ + ], + 'validation': [ + ] + }, + root_map={ + 'validations': { + }, + 'allowed_values': { + }, + 'openapi_types': { + 'id': + (str,), + 'consumer_id': + (str,), + 'app_id': + (str,), + 'service_id': + (str,), + 'raw': + (bool,), + }, + 'attribute_map': { + 'id': 'id', + 'consumer_id': 'x-apideck-consumer-id', + 'app_id': 'x-apideck-app-id', + 'service_id': 'x-apideck-service-id', + 'raw': 'raw', + }, + 'location_map': { + 'id': 'path', + 'consumer_id': 'header', + 'app_id': 'header', + 'service_id': 'header', + 'raw': 'query', + }, + 'collection_format_map': { + } + }, + headers_map={ + 'accept': [ + 'application/json' + ], + 'content_type': [], + }, + api_client=api_client + ) + self.tax_rates_one_endpoint = _Endpoint( + settings={ + 'response_type': (GetTaxRateResponse,), + 'auth': [ + 'apiKey' + ], + 'endpoint_path': '/accounting/tax-rates/{id}', + 'operation_id': 'tax_rates_one', + 'http_method': 'GET', + 'servers': None, + }, + params_map={ + 'all': [ + 'id', + 'consumer_id', + 'app_id', + 'service_id', + 'raw', + 'fields', + ], + 'required': [ + 'id', + ], + 'nullable': [ + 'fields', + ], + 'enum': [ + ], + 'validation': [ + ] + }, + root_map={ + 'validations': { + }, + 'allowed_values': { + }, + 'openapi_types': { + 'id': + (str,), + 'consumer_id': + (str,), + 'app_id': + (str,), + 'service_id': + (str,), + 'raw': + (bool,), + 'fields': + (str, none_type,), + }, + 'attribute_map': { + 'id': 'id', + 'consumer_id': 'x-apideck-consumer-id', + 'app_id': 'x-apideck-app-id', + 'service_id': 'x-apideck-service-id', + 'raw': 'raw', + 'fields': 'fields', + }, + 'location_map': { + 'id': 'path', + 'consumer_id': 'header', + 'app_id': 'header', + 'service_id': 'header', + 'raw': 'query', + 'fields': 'query', + }, + 'collection_format_map': { + } + }, + headers_map={ + 'accept': [ + 'application/json' + ], + 'content_type': [], + }, + api_client=api_client + ) + self.tax_rates_update_endpoint = _Endpoint( + settings={ + 'response_type': (UpdateTaxRateResponse,), + 'auth': [ + 'apiKey' + ], + 'endpoint_path': '/accounting/tax-rates/{id}', + 'operation_id': 'tax_rates_update', + 'http_method': 'PATCH', + 'servers': None, + }, + params_map={ + 'all': [ + 'id', + 'tax_rate', + 'consumer_id', + 'app_id', + 'service_id', + 'raw', + ], + 'required': [ + 'id', + 'tax_rate', + ], + 'nullable': [ + ], + 'enum': [ + ], + 'validation': [ + ] + }, + root_map={ + 'validations': { + }, + 'allowed_values': { + }, + 'openapi_types': { + 'id': + (str,), + 'tax_rate': + (TaxRate,), + 'consumer_id': + (str,), + 'app_id': + (str,), + 'service_id': + (str,), + 'raw': + (bool,), + }, + 'attribute_map': { + 'id': 'id', + 'consumer_id': 'x-apideck-consumer-id', + 'app_id': 'x-apideck-app-id', + 'service_id': 'x-apideck-service-id', + 'raw': 'raw', + }, + 'location_map': { + 'id': 'path', + 'tax_rate': 'body', + 'consumer_id': 'header', + 'app_id': 'header', + 'service_id': 'header', + 'raw': 'query', + }, + 'collection_format_map': { + } + }, + headers_map={ + 'accept': [ + 'application/json' + ], + 'content_type': [ + 'application/json' + ] + }, + api_client=api_client + ) + self.tracking_categories_add_endpoint = _Endpoint( + settings={ + 'response_type': (CreateTrackingCategoryResponse,), + 'auth': [ + 'apiKey' + ], + 'endpoint_path': '/accounting/tracking-categories', + 'operation_id': 'tracking_categories_add', + 'http_method': 'POST', + 'servers': None, + }, + params_map={ + 'all': [ + 'tracking_category', + 'raw', + 'consumer_id', + 'app_id', + 'service_id', + ], + 'required': [ + 'tracking_category', + ], + 'nullable': [ + ], + 'enum': [ + ], + 'validation': [ + ] + }, + root_map={ + 'validations': { + }, + 'allowed_values': { + }, + 'openapi_types': { + 'tracking_category': + (TrackingCategory,), + 'raw': + (bool,), + 'consumer_id': + (str,), + 'app_id': + (str,), + 'service_id': + (str,), + }, + 'attribute_map': { + 'raw': 'raw', + 'consumer_id': 'x-apideck-consumer-id', + 'app_id': 'x-apideck-app-id', + 'service_id': 'x-apideck-service-id', + }, + 'location_map': { + 'tracking_category': 'body', + 'raw': 'query', + 'consumer_id': 'header', + 'app_id': 'header', + 'service_id': 'header', + }, + 'collection_format_map': { + } + }, + headers_map={ + 'accept': [ + 'application/json' + ], + 'content_type': [ + 'application/json' + ] + }, + api_client=api_client + ) + self.tracking_categories_all_endpoint = _Endpoint( + settings={ + 'response_type': (GetTrackingCategoriesResponse,), + 'auth': [ + 'apiKey' + ], + 'endpoint_path': '/accounting/tracking-categories', + 'operation_id': 'tracking_categories_all', + 'http_method': 'GET', + 'servers': None, + }, + params_map={ + 'all': [ + 'raw', + 'consumer_id', + 'app_id', + 'service_id', + 'cursor', + 'limit', + 'pass_through', + 'fields', + ], + 'required': [], + 'nullable': [ + 'cursor', + 'fields', + ], + 'enum': [ + ], + 'validation': [ + 'limit', + ] + }, + root_map={ + 'validations': { + ('limit',): { + + 'inclusive_maximum': 200, + 'inclusive_minimum': 1, + }, + }, + 'allowed_values': { + }, + 'openapi_types': { + 'raw': + (bool,), + 'consumer_id': + (str,), + 'app_id': + (str,), + 'service_id': + (str,), + 'cursor': + (str, none_type,), + 'limit': + (int,), + 'pass_through': + (PassThroughQuery,), + 'fields': + (str, none_type,), + }, + 'attribute_map': { + 'raw': 'raw', + 'consumer_id': 'x-apideck-consumer-id', + 'app_id': 'x-apideck-app-id', + 'service_id': 'x-apideck-service-id', + 'cursor': 'cursor', + 'limit': 'limit', + 'pass_through': 'pass_through', + 'fields': 'fields', + }, + 'location_map': { + 'raw': 'query', + 'consumer_id': 'header', + 'app_id': 'header', + 'service_id': 'header', + 'cursor': 'query', + 'limit': 'query', + 'pass_through': 'query', + 'fields': 'query', + }, + 'collection_format_map': { + } + }, + headers_map={ + 'accept': [ + 'application/json' + ], + 'content_type': [], + }, + api_client=api_client + ) + self.tracking_categories_delete_endpoint = _Endpoint( + settings={ + 'response_type': (DeleteTrackingCategoryResponse,), + 'auth': [ + 'apiKey' + ], + 'endpoint_path': '/accounting/tracking-categories/{id}', + 'operation_id': 'tracking_categories_delete', + 'http_method': 'DELETE', + 'servers': None, + }, + params_map={ + 'all': [ + 'id', + 'consumer_id', + 'app_id', + 'service_id', + 'raw', + ], + 'required': [ + 'id', + ], + 'nullable': [ + ], + 'enum': [ + ], + 'validation': [ + ] + }, + root_map={ + 'validations': { + }, + 'allowed_values': { + }, + 'openapi_types': { + 'id': + (str,), + 'consumer_id': + (str,), + 'app_id': + (str,), + 'service_id': + (str,), + 'raw': + (bool,), + }, + 'attribute_map': { + 'id': 'id', + 'consumer_id': 'x-apideck-consumer-id', + 'app_id': 'x-apideck-app-id', + 'service_id': 'x-apideck-service-id', + 'raw': 'raw', + }, + 'location_map': { + 'id': 'path', + 'consumer_id': 'header', + 'app_id': 'header', + 'service_id': 'header', + 'raw': 'query', + }, + 'collection_format_map': { + } + }, + headers_map={ + 'accept': [ + 'application/json' + ], + 'content_type': [], + }, + api_client=api_client + ) + self.tracking_categories_one_endpoint = _Endpoint( + settings={ + 'response_type': (GetTrackingCategoryResponse,), + 'auth': [ + 'apiKey' + ], + 'endpoint_path': '/accounting/tracking-categories/{id}', + 'operation_id': 'tracking_categories_one', + 'http_method': 'GET', + 'servers': None, + }, + params_map={ + 'all': [ + 'id', + 'consumer_id', + 'app_id', + 'service_id', + 'raw', + 'fields', + ], + 'required': [ + 'id', + ], + 'nullable': [ + 'fields', + ], + 'enum': [ + ], + 'validation': [ + ] + }, + root_map={ + 'validations': { + }, + 'allowed_values': { + }, + 'openapi_types': { + 'id': + (str,), + 'consumer_id': + (str,), + 'app_id': + (str,), + 'service_id': + (str,), + 'raw': + (bool,), + 'fields': + (str, none_type,), + }, + 'attribute_map': { + 'id': 'id', + 'consumer_id': 'x-apideck-consumer-id', + 'app_id': 'x-apideck-app-id', + 'service_id': 'x-apideck-service-id', + 'raw': 'raw', + 'fields': 'fields', + }, + 'location_map': { + 'id': 'path', + 'consumer_id': 'header', + 'app_id': 'header', + 'service_id': 'header', + 'raw': 'query', + 'fields': 'query', + }, + 'collection_format_map': { + } + }, + headers_map={ + 'accept': [ + 'application/json' + ], + 'content_type': [], + }, + api_client=api_client + ) + self.tracking_categories_update_endpoint = _Endpoint( + settings={ + 'response_type': (UpdateTrackingCategoryResponse,), + 'auth': [ + 'apiKey' + ], + 'endpoint_path': '/accounting/tracking-categories/{id}', + 'operation_id': 'tracking_categories_update', + 'http_method': 'PATCH', + 'servers': None, + }, + params_map={ + 'all': [ + 'id', + 'tracking_category', + 'consumer_id', + 'app_id', + 'service_id', + 'raw', + ], + 'required': [ + 'id', + 'tracking_category', + ], + 'nullable': [ + ], + 'enum': [ + ], + 'validation': [ + ] + }, + root_map={ + 'validations': { + }, + 'allowed_values': { + }, + 'openapi_types': { + 'id': + (str,), + 'tracking_category': + (TrackingCategory,), + 'consumer_id': + (str,), + 'app_id': + (str,), + 'service_id': + (str,), + 'raw': + (bool,), + }, + 'attribute_map': { + 'id': 'id', + 'consumer_id': 'x-apideck-consumer-id', + 'app_id': 'x-apideck-app-id', + 'service_id': 'x-apideck-service-id', + 'raw': 'raw', + }, + 'location_map': { + 'id': 'path', + 'tracking_category': 'body', + 'consumer_id': 'header', + 'app_id': 'header', + 'service_id': 'header', + 'raw': 'query', + }, + 'collection_format_map': { + } + }, + headers_map={ + 'accept': [ + 'application/json' + ], + 'content_type': [ + 'application/json' + ] + }, + api_client=api_client + ) + + def attachments_all( + self, + reference_type, + reference_id, + **kwargs + ): + """List Attachments # noqa: E501 + + List Attachments # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.attachments_all(reference_type, reference_id, async_req=True) + >>> result = thread.get() + + Args: + reference_type (AttachmentReferenceType): The reference type of the document. + reference_id (str): The reference id of the object to retrieve. + + Keyword Args: + raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False + consumer_id (str): ID of the consumer which you want to get or push data from. [optional] + app_id (str): The ID of your Unify application. [optional] + service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] + cursor (str, none_type): Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response.. [optional] + limit (int): Number of results to return. Minimum 1, Maximum 200, Default 20. [optional] if omitted the server will use the default value of 20 + fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [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 + 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. + async_req (bool): execute request asynchronously + + Returns: + GetAttachmentsResponse + 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['reference_type'] = \ + reference_type + kwargs['reference_id'] = \ + reference_id + return self.attachments_all_endpoint.call_with_http_info(**kwargs) + + def attachments_delete( + self, + reference_type, + reference_id, + id, + **kwargs + ): + """Delete Attachment # noqa: E501 + + Delete Attachment # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.attachments_delete(reference_type, reference_id, id, async_req=True) + >>> result = thread.get() + + Args: + reference_type (AttachmentReferenceType): The reference type of the document. + reference_id (str): The reference id of the object to retrieve. + id (str): ID of the record you are acting upon. + + Keyword Args: + consumer_id (str): ID of the consumer which you want to get or push data from. [optional] + app_id (str): The ID of your Unify application. [optional] + service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] + raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False + _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. + async_req (bool): execute request asynchronously + + Returns: + DeleteAttachmentResponse + 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['reference_type'] = \ + reference_type + kwargs['reference_id'] = \ + reference_id + kwargs['id'] = \ + id + return self.attachments_delete_endpoint.call_with_http_info(**kwargs) + + def attachments_download( + self, + reference_type, + reference_id, + id, + **kwargs + ): + """Download Attachment # noqa: E501 + + Download Attachment # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.attachments_download(reference_type, reference_id, id, async_req=True) + >>> result = thread.get() + + Args: + reference_type (AttachmentReferenceType): The reference type of the document. + reference_id (str): The reference id of the object to retrieve. + id (str): ID of the record you are acting upon. + + Keyword Args: + consumer_id (str): ID of the consumer which you want to get or push data from. [optional] + app_id (str): The ID of your Unify application. [optional] + service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] + fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [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 + 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. + async_req (bool): execute request asynchronously + + Returns: + file_type + If the method is called asynchronously, returns the request + thread. + """ + kwargs['async_req'] = kwargs.get( + 'async_req', False + ) + kwargs['_return_http_data_only'] = kwargs.get( + '_return_http_data_only', True + ) + kwargs['_preload_content'] = kwargs.get( + '_preload_content', True + ) + kwargs['_request_timeout'] = kwargs.get( + '_request_timeout', None + ) + kwargs['_check_input_type'] = kwargs.get( + '_check_input_type', True + ) + kwargs['_check_return_type'] = kwargs.get( + '_check_return_type', True + ) + kwargs['_spec_property_naming'] = kwargs.get( + '_spec_property_naming', False + ) + kwargs['_content_type'] = kwargs.get( + '_content_type') + kwargs['_host_index'] = kwargs.get('_host_index') + kwargs['reference_type'] = \ + reference_type + kwargs['reference_id'] = \ + reference_id + kwargs['id'] = \ + id + return self.attachments_download_endpoint.call_with_http_info(**kwargs) + + def attachments_one( + self, + reference_type, + reference_id, + id, + **kwargs + ): + """Get Attachment # noqa: E501 + + Get Attachment # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.attachments_one(reference_type, reference_id, id, async_req=True) + >>> result = thread.get() + + Args: + reference_type (AttachmentReferenceType): The reference type of the document. reference_id (str): The reference id of the object to retrieve. id (str): ID of the record you are acting upon. @@ -6790,7 +7755,589 @@ def attachments_delete( consumer_id (str): ID of the consumer which you want to get or push data from. [optional] app_id (str): The ID of your Unify application. [optional] service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] - raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False + raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False + fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [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 + 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. + async_req (bool): execute request asynchronously + + Returns: + GetAttachmentResponse + 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['reference_type'] = \ + reference_type + kwargs['reference_id'] = \ + reference_id + kwargs['id'] = \ + id + return self.attachments_one_endpoint.call_with_http_info(**kwargs) + + def balance_sheet_one( + self, + **kwargs + ): + """Get BalanceSheet # noqa: E501 + + Get BalanceSheet # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.balance_sheet_one(async_req=True) + >>> result = thread.get() + + + Keyword Args: + consumer_id (str): ID of the consumer which you want to get or push data from. [optional] + app_id (str): The ID of your Unify application. [optional] + service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] + pass_through (PassThroughQuery): Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads. [optional] + filter (BalanceSheetFilter): Apply filters. [optional] + raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False + _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. + async_req (bool): execute request asynchronously + + Returns: + GetBalanceSheetResponse + 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') + return self.balance_sheet_one_endpoint.call_with_http_info(**kwargs) + + def bill_payments_add( + self, + bill_payment, + **kwargs + ): + """Create Bill Payment # noqa: E501 + + Create Bill Payment # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.bill_payments_add(bill_payment, async_req=True) + >>> result = thread.get() + + Args: + bill_payment (BillPayment): + + Keyword Args: + raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False + consumer_id (str): ID of the consumer which you want to get or push data from. [optional] + app_id (str): The ID of your Unify application. [optional] + service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [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 + 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. + async_req (bool): execute request asynchronously + + Returns: + CreateBillPaymentResponse + 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['bill_payment'] = \ + bill_payment + return self.bill_payments_add_endpoint.call_with_http_info(**kwargs) + + def bill_payments_all( + self, + **kwargs + ): + """List Bill Payments # noqa: E501 + + List Bill Payments # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.bill_payments_all(async_req=True) + >>> result = thread.get() + + + Keyword Args: + raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False + consumer_id (str): ID of the consumer which you want to get or push data from. [optional] + app_id (str): The ID of your Unify application. [optional] + service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] + cursor (str, none_type): Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response.. [optional] + limit (int): Number of results to return. Minimum 1, Maximum 200, Default 20. [optional] if omitted the server will use the default value of 20 + filter (PaymentsFilter): Apply filters. [optional] + sort (PaymentsSort): Apply sorting. [optional] + pass_through (PassThroughQuery): Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads. [optional] + fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [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 + 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. + async_req (bool): execute request asynchronously + + Returns: + GetBillPaymentsResponse + 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') + return self.bill_payments_all_endpoint.call_with_http_info(**kwargs) + + def bill_payments_delete( + self, + id, + **kwargs + ): + """Delete Bill Payment # noqa: E501 + + Delete Bill Payment # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.bill_payments_delete(id, async_req=True) + >>> result = thread.get() + + Args: + id (str): ID of the record you are acting upon. + + Keyword Args: + consumer_id (str): ID of the consumer which you want to get or push data from. [optional] + app_id (str): The ID of your Unify application. [optional] + service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] + raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False + _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. + async_req (bool): execute request asynchronously + + Returns: + DeleteBillPaymentResponse + 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['id'] = \ + id + return self.bill_payments_delete_endpoint.call_with_http_info(**kwargs) + + def bill_payments_one( + self, + id, + **kwargs + ): + """Get Bill Payment # noqa: E501 + + Get Bill Payment # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.bill_payments_one(id, async_req=True) + >>> result = thread.get() + + Args: + id (str): ID of the record you are acting upon. + + Keyword Args: + consumer_id (str): ID of the consumer which you want to get or push data from. [optional] + app_id (str): The ID of your Unify application. [optional] + service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] + raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False + fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [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 + 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. + async_req (bool): execute request asynchronously + + Returns: + GetBillPaymentResponse + 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['id'] = \ + id + return self.bill_payments_one_endpoint.call_with_http_info(**kwargs) + + def bill_payments_update( + self, + id, + bill_payment, + **kwargs + ): + """Update Bill Payment # noqa: E501 + + Update Bill Payment # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.bill_payments_update(id, bill_payment, async_req=True) + >>> result = thread.get() + + Args: + id (str): ID of the record you are acting upon. + bill_payment (BillPayment): + + Keyword Args: + consumer_id (str): ID of the consumer which you want to get or push data from. [optional] + app_id (str): The ID of your Unify application. [optional] + service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] + raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False + _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. + async_req (bool): execute request asynchronously + + Returns: + UpdateBillPaymentResponse + 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['id'] = \ + id + kwargs['bill_payment'] = \ + bill_payment + return self.bill_payments_update_endpoint.call_with_http_info(**kwargs) + + def bills_add( + self, + bill, + **kwargs + ): + """Create Bill # noqa: E501 + + Create Bill # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.bills_add(bill, async_req=True) + >>> result = thread.get() + + Args: + bill (Bill): + + Keyword Args: + raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False + consumer_id (str): ID of the consumer which you want to get or push data from. [optional] + app_id (str): The ID of your Unify application. [optional] + service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [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 @@ -6819,7 +8366,7 @@ def attachments_delete( async_req (bool): execute request asynchronously Returns: - DeleteAttachmentResponse + CreateBillResponse If the method is called asynchronously, returns the request thread. """ @@ -6847,39 +8394,34 @@ def attachments_delete( kwargs['_content_type'] = kwargs.get( '_content_type') kwargs['_host_index'] = kwargs.get('_host_index') - kwargs['reference_type'] = \ - reference_type - kwargs['reference_id'] = \ - reference_id - kwargs['id'] = \ - id - return self.attachments_delete_endpoint.call_with_http_info(**kwargs) + kwargs['bill'] = \ + bill + return self.bills_add_endpoint.call_with_http_info(**kwargs) - def attachments_download( + def bills_all( self, - reference_type, - reference_id, - id, **kwargs ): - """Download Attachment # noqa: E501 + """List Bills # noqa: E501 - Download Attachment # noqa: E501 + List Bills # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.attachments_download(reference_type, reference_id, id, async_req=True) + >>> thread = api.bills_all(async_req=True) >>> result = thread.get() - Args: - reference_type (AttachmentReferenceType): The reference type of the document. - reference_id (str): The reference id of the object to retrieve. - id (str): ID of the record you are acting upon. Keyword Args: + raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False consumer_id (str): ID of the consumer which you want to get or push data from. [optional] app_id (str): The ID of your Unify application. [optional] service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] + cursor (str, none_type): Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response.. [optional] + limit (int): Number of results to return. Minimum 1, Maximum 200, Default 20. [optional] if omitted the server will use the default value of 20 + filter (BillsFilter): Apply filters. [optional] + sort (BillsSort): Apply sorting. [optional] + pass_through (PassThroughQuery): Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads. [optional] fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [optional] _return_http_data_only (bool): response data without head status code and headers. Default is True. @@ -6909,7 +8451,7 @@ def attachments_download( async_req (bool): execute request asynchronously Returns: - file_type + GetBillsResponse If the method is called asynchronously, returns the request thread. """ @@ -6937,33 +8479,23 @@ def attachments_download( kwargs['_content_type'] = kwargs.get( '_content_type') kwargs['_host_index'] = kwargs.get('_host_index') - kwargs['reference_type'] = \ - reference_type - kwargs['reference_id'] = \ - reference_id - kwargs['id'] = \ - id - return self.attachments_download_endpoint.call_with_http_info(**kwargs) + return self.bills_all_endpoint.call_with_http_info(**kwargs) - def attachments_one( + def bills_delete( self, - reference_type, - reference_id, id, **kwargs ): - """Get Attachment # noqa: E501 + """Delete Bill # noqa: E501 - Get Attachment # noqa: E501 + Delete Bill # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.attachments_one(reference_type, reference_id, id, async_req=True) + >>> thread = api.bills_delete(id, async_req=True) >>> result = thread.get() Args: - reference_type (AttachmentReferenceType): The reference type of the document. - reference_id (str): The reference id of the object to retrieve. id (str): ID of the record you are acting upon. Keyword Args: @@ -6971,7 +8503,6 @@ def attachments_one( app_id (str): The ID of your Unify application. [optional] service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False - fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [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 @@ -7000,7 +8531,7 @@ def attachments_one( async_req (bool): execute request asynchronously Returns: - GetAttachmentResponse + DeleteBillResponse If the method is called asynchronously, returns the request thread. """ @@ -7028,35 +8559,33 @@ def attachments_one( kwargs['_content_type'] = kwargs.get( '_content_type') kwargs['_host_index'] = kwargs.get('_host_index') - kwargs['reference_type'] = \ - reference_type - kwargs['reference_id'] = \ - reference_id kwargs['id'] = \ id - return self.attachments_one_endpoint.call_with_http_info(**kwargs) + return self.bills_delete_endpoint.call_with_http_info(**kwargs) - def balance_sheet_one( + def bills_one( self, + id, **kwargs ): - """Get BalanceSheet # noqa: E501 + """Get Bill # noqa: E501 - Get BalanceSheet # noqa: E501 + Get Bill # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.balance_sheet_one(async_req=True) + >>> thread = api.bills_one(id, async_req=True) >>> result = thread.get() + Args: + id (str): ID of the record you are acting upon. Keyword Args: consumer_id (str): ID of the consumer which you want to get or push data from. [optional] app_id (str): The ID of your Unify application. [optional] service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] - pass_through (PassThroughQuery): Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads. [optional] - filter (BalanceSheetFilter): Apply filters. [optional] raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False + fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [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 @@ -7085,7 +8614,7 @@ def balance_sheet_one( async_req (bool): execute request asynchronously Returns: - GetBalanceSheetResponse + GetBillResponse If the method is called asynchronously, returns the request thread. """ @@ -7113,30 +8642,34 @@ def balance_sheet_one( kwargs['_content_type'] = kwargs.get( '_content_type') kwargs['_host_index'] = kwargs.get('_host_index') - return self.balance_sheet_one_endpoint.call_with_http_info(**kwargs) + kwargs['id'] = \ + id + return self.bills_one_endpoint.call_with_http_info(**kwargs) - def bills_add( + def bills_update( self, + id, bill, **kwargs ): - """Create Bill # noqa: E501 + """Update Bill # noqa: E501 - Create Bill # noqa: E501 + Update Bill # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.bills_add(bill, async_req=True) + >>> thread = api.bills_update(id, bill, async_req=True) >>> result = thread.get() Args: + id (str): ID of the record you are acting upon. bill (Bill): Keyword Args: - raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False consumer_id (str): ID of the consumer which you want to get or push data from. [optional] app_id (str): The ID of your Unify application. [optional] service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] + raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False _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 @@ -7165,7 +8698,7 @@ def bills_add( async_req (bool): execute request asynchronously Returns: - CreateBillResponse + UpdateBillResponse If the method is called asynchronously, returns the request thread. """ @@ -7193,21 +8726,23 @@ def bills_add( kwargs['_content_type'] = kwargs.get( '_content_type') kwargs['_host_index'] = kwargs.get('_host_index') + kwargs['id'] = \ + id kwargs['bill'] = \ bill - return self.bills_add_endpoint.call_with_http_info(**kwargs) + return self.bills_update_endpoint.call_with_http_info(**kwargs) - def bills_all( + def company_info_one( self, **kwargs ): - """List Bills # noqa: E501 + """Get company info # noqa: E501 - List Bills # noqa: E501 + Get company info # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.bills_all(async_req=True) + >>> thread = api.company_info_one(async_req=True) >>> result = thread.get() @@ -7216,11 +8751,6 @@ def bills_all( consumer_id (str): ID of the consumer which you want to get or push data from. [optional] app_id (str): The ID of your Unify application. [optional] service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] - cursor (str, none_type): Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response.. [optional] - limit (int): Number of results to return. Minimum 1, Maximum 200, Default 20. [optional] if omitted the server will use the default value of 20 - filter (BillsFilter): Apply filters. [optional] - sort (BillsSort): Apply sorting. [optional] - pass_through (PassThroughQuery): Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads. [optional] fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [optional] _return_http_data_only (bool): response data without head status code and headers. Default is True. @@ -7250,7 +8780,7 @@ def bills_all( async_req (bool): execute request asynchronously Returns: - GetBillsResponse + GetCompanyInfoResponse If the method is called asynchronously, returns the request thread. """ @@ -7278,30 +8808,115 @@ def bills_all( kwargs['_content_type'] = kwargs.get( '_content_type') kwargs['_host_index'] = kwargs.get('_host_index') - return self.bills_all_endpoint.call_with_http_info(**kwargs) + return self.company_info_one_endpoint.call_with_http_info(**kwargs) - def bills_delete( + def credit_notes_add( self, - id, + credit_note, **kwargs ): - """Delete Bill # noqa: E501 + """Create Credit Note # noqa: E501 - Delete Bill # noqa: E501 + Create Credit Note # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.bills_delete(id, async_req=True) + >>> thread = api.credit_notes_add(credit_note, async_req=True) >>> result = thread.get() Args: - id (str): ID of the record you are acting upon. + credit_note (CreditNote): Keyword Args: + raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False consumer_id (str): ID of the consumer which you want to get or push data from. [optional] app_id (str): The ID of your Unify application. [optional] service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [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 + 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. + async_req (bool): execute request asynchronously + + Returns: + CreateCreditNoteResponse + 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['credit_note'] = \ + credit_note + return self.credit_notes_add_endpoint.call_with_http_info(**kwargs) + + def credit_notes_all( + self, + **kwargs + ): + """List Credit Notes # noqa: E501 + + List Credit Notes # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.credit_notes_all(async_req=True) + >>> result = thread.get() + + + Keyword Args: raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False + consumer_id (str): ID of the consumer which you want to get or push data from. [optional] + app_id (str): The ID of your Unify application. [optional] + service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] + cursor (str, none_type): Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response.. [optional] + limit (int): Number of results to return. Minimum 1, Maximum 200, Default 20. [optional] if omitted the server will use the default value of 20 + filter (CreditNotesFilter): Apply filters. [optional] + sort (CreditNotesSort): Apply sorting. [optional] + pass_through (PassThroughQuery): Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads. [optional] + fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [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 @@ -7330,7 +8945,7 @@ def bills_delete( async_req (bool): execute request asynchronously Returns: - DeleteBillResponse + GetCreditNotesResponse If the method is called asynchronously, returns the request thread. """ @@ -7358,22 +8973,20 @@ def bills_delete( kwargs['_content_type'] = kwargs.get( '_content_type') kwargs['_host_index'] = kwargs.get('_host_index') - kwargs['id'] = \ - id - return self.bills_delete_endpoint.call_with_http_info(**kwargs) + return self.credit_notes_all_endpoint.call_with_http_info(**kwargs) - def bills_one( + def credit_notes_delete( self, id, **kwargs ): - """Get Bill # noqa: E501 + """Delete Credit Note # noqa: E501 - Get Bill # noqa: E501 + Delete Credit Note # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.bills_one(id, async_req=True) + >>> thread = api.credit_notes_delete(id, async_req=True) >>> result = thread.get() Args: @@ -7384,7 +8997,6 @@ def bills_one( app_id (str): The ID of your Unify application. [optional] service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False - fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [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 @@ -7413,7 +9025,7 @@ def bills_one( async_req (bool): execute request asynchronously Returns: - GetBillResponse + DeleteCreditNoteResponse If the method is called asynchronously, returns the request thread. """ @@ -7443,32 +9055,31 @@ def bills_one( kwargs['_host_index'] = kwargs.get('_host_index') kwargs['id'] = \ id - return self.bills_one_endpoint.call_with_http_info(**kwargs) + return self.credit_notes_delete_endpoint.call_with_http_info(**kwargs) - def bills_update( + def credit_notes_one( self, id, - bill, **kwargs ): - """Update Bill # noqa: E501 + """Get Credit Note # noqa: E501 - Update Bill # noqa: E501 + Get Credit Note # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.bills_update(id, bill, async_req=True) + >>> thread = api.credit_notes_one(id, async_req=True) >>> result = thread.get() Args: id (str): ID of the record you are acting upon. - bill (Bill): Keyword Args: consumer_id (str): ID of the consumer which you want to get or push data from. [optional] app_id (str): The ID of your Unify application. [optional] service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False + fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [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 @@ -7497,7 +9108,7 @@ def bills_update( async_req (bool): execute request asynchronously Returns: - UpdateBillResponse + GetCreditNoteResponse If the method is called asynchronously, returns the request thread. """ @@ -7527,30 +9138,32 @@ def bills_update( kwargs['_host_index'] = kwargs.get('_host_index') kwargs['id'] = \ id - kwargs['bill'] = \ - bill - return self.bills_update_endpoint.call_with_http_info(**kwargs) + return self.credit_notes_one_endpoint.call_with_http_info(**kwargs) - def company_info_one( + def credit_notes_update( self, + id, + credit_note, **kwargs ): - """Get company info # noqa: E501 + """Update Credit Note # noqa: E501 - Get company info # noqa: E501 + Update Credit Note # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.company_info_one(async_req=True) + >>> thread = api.credit_notes_update(id, credit_note, async_req=True) >>> result = thread.get() + Args: + id (str): ID of the record you are acting upon. + credit_note (CreditNote): Keyword Args: - raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False consumer_id (str): ID of the consumer which you want to get or push data from. [optional] app_id (str): The ID of your Unify application. [optional] service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] - fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [optional] + raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False _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 @@ -7579,7 +9192,7 @@ def company_info_one( async_req (bool): execute request asynchronously Returns: - GetCompanyInfoResponse + UpdateCreditNoteResponse If the method is called asynchronously, returns the request thread. """ @@ -7607,24 +9220,28 @@ def company_info_one( kwargs['_content_type'] = kwargs.get( '_content_type') kwargs['_host_index'] = kwargs.get('_host_index') - return self.company_info_one_endpoint.call_with_http_info(**kwargs) + kwargs['id'] = \ + id + kwargs['credit_note'] = \ + credit_note + return self.credit_notes_update_endpoint.call_with_http_info(**kwargs) - def credit_notes_add( + def customers_add( self, - credit_note, + customer, **kwargs ): - """Create Credit Note # noqa: E501 + """Create Customer # noqa: E501 - Create Credit Note # noqa: E501 + Create Customer # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.credit_notes_add(credit_note, async_req=True) + >>> thread = api.customers_add(customer, async_req=True) >>> result = thread.get() Args: - credit_note (CreditNote): + customer (Customer): Keyword Args: raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False @@ -7659,7 +9276,7 @@ def credit_notes_add( async_req (bool): execute request asynchronously Returns: - CreateCreditNoteResponse + CreateCustomerResponse If the method is called asynchronously, returns the request thread. """ @@ -7687,21 +9304,21 @@ def credit_notes_add( kwargs['_content_type'] = kwargs.get( '_content_type') kwargs['_host_index'] = kwargs.get('_host_index') - kwargs['credit_note'] = \ - credit_note - return self.credit_notes_add_endpoint.call_with_http_info(**kwargs) + kwargs['customer'] = \ + customer + return self.customers_add_endpoint.call_with_http_info(**kwargs) - def credit_notes_all( + def customers_all( self, **kwargs ): - """List Credit Notes # noqa: E501 + """List Customers # noqa: E501 - List Credit Notes # noqa: E501 + List Customers # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.credit_notes_all(async_req=True) + >>> thread = api.customers_all(async_req=True) >>> result = thread.get() @@ -7712,8 +9329,8 @@ def credit_notes_all( service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] cursor (str, none_type): Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response.. [optional] limit (int): Number of results to return. Minimum 1, Maximum 200, Default 20. [optional] if omitted the server will use the default value of 20 - filter (CreditNotesFilter): Apply filters. [optional] - sort (CreditNotesSort): Apply sorting. [optional] + filter (CustomersFilter): Apply filters. [optional] + sort (CustomersSort): Apply sorting. [optional] pass_through (PassThroughQuery): Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads. [optional] fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [optional] _return_http_data_only (bool): response data without head status @@ -7744,7 +9361,7 @@ def credit_notes_all( async_req (bool): execute request asynchronously Returns: - GetCreditNotesResponse + GetCustomersResponse If the method is called asynchronously, returns the request thread. """ @@ -7772,20 +9389,20 @@ def credit_notes_all( kwargs['_content_type'] = kwargs.get( '_content_type') kwargs['_host_index'] = kwargs.get('_host_index') - return self.credit_notes_all_endpoint.call_with_http_info(**kwargs) + return self.customers_all_endpoint.call_with_http_info(**kwargs) - def credit_notes_delete( + def customers_delete( self, id, **kwargs ): - """Delete Credit Note # noqa: E501 + """Delete Customer # noqa: E501 - Delete Credit Note # noqa: E501 + Delete Customer # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.credit_notes_delete(id, async_req=True) + >>> thread = api.customers_delete(id, async_req=True) >>> result = thread.get() Args: @@ -7824,7 +9441,7 @@ def credit_notes_delete( async_req (bool): execute request asynchronously Returns: - DeleteCreditNoteResponse + DeleteCustomerResponse If the method is called asynchronously, returns the request thread. """ @@ -7854,20 +9471,20 @@ def credit_notes_delete( kwargs['_host_index'] = kwargs.get('_host_index') kwargs['id'] = \ id - return self.credit_notes_delete_endpoint.call_with_http_info(**kwargs) + return self.customers_delete_endpoint.call_with_http_info(**kwargs) - def credit_notes_one( + def customers_one( self, id, **kwargs ): - """Get Credit Note # noqa: E501 + """Get Customer # noqa: E501 - Get Credit Note # noqa: E501 + Get Customer # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.credit_notes_one(id, async_req=True) + >>> thread = api.customers_one(id, async_req=True) >>> result = thread.get() Args: @@ -7907,7 +9524,7 @@ def credit_notes_one( async_req (bool): execute request asynchronously Returns: - GetCreditNoteResponse + GetCustomerResponse If the method is called asynchronously, returns the request thread. """ @@ -7937,26 +9554,26 @@ def credit_notes_one( kwargs['_host_index'] = kwargs.get('_host_index') kwargs['id'] = \ id - return self.credit_notes_one_endpoint.call_with_http_info(**kwargs) + return self.customers_one_endpoint.call_with_http_info(**kwargs) - def credit_notes_update( + def customers_update( self, id, - credit_note, + customer, **kwargs ): - """Update Credit Note # noqa: E501 + """Update Customer # noqa: E501 - Update Credit Note # noqa: E501 + Update Customer # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.credit_notes_update(id, credit_note, async_req=True) + >>> thread = api.customers_update(id, customer, async_req=True) >>> result = thread.get() Args: id (str): ID of the record you are acting upon. - credit_note (CreditNote): + customer (Customer): Keyword Args: consumer_id (str): ID of the consumer which you want to get or push data from. [optional] @@ -7991,7 +9608,7 @@ def credit_notes_update( async_req (bool): execute request asynchronously Returns: - UpdateCreditNoteResponse + UpdateCustomerResponse If the method is called asynchronously, returns the request thread. """ @@ -8021,26 +9638,26 @@ def credit_notes_update( kwargs['_host_index'] = kwargs.get('_host_index') kwargs['id'] = \ id - kwargs['credit_note'] = \ - credit_note - return self.credit_notes_update_endpoint.call_with_http_info(**kwargs) + kwargs['customer'] = \ + customer + return self.customers_update_endpoint.call_with_http_info(**kwargs) - def customers_add( + def departments_add( self, - customer, + accounting_department, **kwargs ): - """Create Customer # noqa: E501 + """Create Department # noqa: E501 - Create Customer # noqa: E501 + Create Department # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.customers_add(customer, async_req=True) + >>> thread = api.departments_add(accounting_department, async_req=True) >>> result = thread.get() Args: - customer (Customer): + accounting_department (AccountingDepartment): Keyword Args: raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False @@ -8075,7 +9692,7 @@ def customers_add( async_req (bool): execute request asynchronously Returns: - CreateCustomerResponse + CreateAccountingDepartmentResponse If the method is called asynchronously, returns the request thread. """ @@ -8103,21 +9720,21 @@ def customers_add( kwargs['_content_type'] = kwargs.get( '_content_type') kwargs['_host_index'] = kwargs.get('_host_index') - kwargs['customer'] = \ - customer - return self.customers_add_endpoint.call_with_http_info(**kwargs) + kwargs['accounting_department'] = \ + accounting_department + return self.departments_add_endpoint.call_with_http_info(**kwargs) - def customers_all( + def departments_all( self, **kwargs ): - """List Customers # noqa: E501 + """List Departments # noqa: E501 - List Customers # noqa: E501 + List Departments # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.customers_all(async_req=True) + >>> thread = api.departments_all(async_req=True) >>> result = thread.get() @@ -8128,10 +9745,8 @@ def customers_all( service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] cursor (str, none_type): Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response.. [optional] limit (int): Number of results to return. Minimum 1, Maximum 200, Default 20. [optional] if omitted the server will use the default value of 20 - filter (CustomersFilter): Apply filters. [optional] - sort (CustomersSort): Apply sorting. [optional] - pass_through (PassThroughQuery): Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads. [optional] fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [optional] + filter (AccountingDepartmentsFilter): Apply filters. [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 @@ -8160,7 +9775,7 @@ def customers_all( async_req (bool): execute request asynchronously Returns: - GetCustomersResponse + GetAccountingDepartmentsResponse If the method is called asynchronously, returns the request thread. """ @@ -8188,20 +9803,20 @@ def customers_all( kwargs['_content_type'] = kwargs.get( '_content_type') kwargs['_host_index'] = kwargs.get('_host_index') - return self.customers_all_endpoint.call_with_http_info(**kwargs) + return self.departments_all_endpoint.call_with_http_info(**kwargs) - def customers_delete( + def departments_delete( self, id, **kwargs ): - """Delete Customer # noqa: E501 + """Delete Department # noqa: E501 - Delete Customer # noqa: E501 + Delete Department # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.customers_delete(id, async_req=True) + >>> thread = api.departments_delete(id, async_req=True) >>> result = thread.get() Args: @@ -8240,7 +9855,7 @@ def customers_delete( async_req (bool): execute request asynchronously Returns: - DeleteCustomerResponse + DeleteAccountingDepartmentResponse If the method is called asynchronously, returns the request thread. """ @@ -8270,20 +9885,20 @@ def customers_delete( kwargs['_host_index'] = kwargs.get('_host_index') kwargs['id'] = \ id - return self.customers_delete_endpoint.call_with_http_info(**kwargs) + return self.departments_delete_endpoint.call_with_http_info(**kwargs) - def customers_one( + def departments_one( self, id, **kwargs ): - """Get Customer # noqa: E501 + """Get Department # noqa: E501 - Get Customer # noqa: E501 + Get Department # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.customers_one(id, async_req=True) + >>> thread = api.departments_one(id, async_req=True) >>> result = thread.get() Args: @@ -8323,7 +9938,7 @@ def customers_one( async_req (bool): execute request asynchronously Returns: - GetCustomerResponse + GetAccountingDepartmentResponse If the method is called asynchronously, returns the request thread. """ @@ -8353,26 +9968,26 @@ def customers_one( kwargs['_host_index'] = kwargs.get('_host_index') kwargs['id'] = \ id - return self.customers_one_endpoint.call_with_http_info(**kwargs) + return self.departments_one_endpoint.call_with_http_info(**kwargs) - def customers_update( + def departments_update( self, id, - customer, + accounting_department, **kwargs ): - """Update Customer # noqa: E501 + """Update Department # noqa: E501 - Update Customer # noqa: E501 + Update Department # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.customers_update(id, customer, async_req=True) + >>> thread = api.departments_update(id, accounting_department, async_req=True) >>> result = thread.get() Args: id (str): ID of the record you are acting upon. - customer (Customer): + accounting_department (AccountingDepartment): Keyword Args: consumer_id (str): ID of the consumer which you want to get or push data from. [optional] @@ -8407,7 +10022,7 @@ def customers_update( async_req (bool): execute request asynchronously Returns: - UpdateCustomerResponse + UpdateAccountingDepartmentResponse If the method is called asynchronously, returns the request thread. """ @@ -8437,26 +10052,26 @@ def customers_update( kwargs['_host_index'] = kwargs.get('_host_index') kwargs['id'] = \ id - kwargs['customer'] = \ - customer - return self.customers_update_endpoint.call_with_http_info(**kwargs) + kwargs['accounting_department'] = \ + accounting_department + return self.departments_update_endpoint.call_with_http_info(**kwargs) - def departments_add( + def expenses_add( self, - accounting_department, + expense, **kwargs ): - """Create Department # noqa: E501 + """Create Expense # noqa: E501 - Create Department # noqa: E501 + Create Expense # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.departments_add(accounting_department, async_req=True) + >>> thread = api.expenses_add(expense, async_req=True) >>> result = thread.get() Args: - accounting_department (AccountingDepartment): + expense (Expense): Keyword Args: raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False @@ -8491,7 +10106,7 @@ def departments_add( async_req (bool): execute request asynchronously Returns: - CreateAccountingDepartmentResponse + CreateExpenseResponse If the method is called asynchronously, returns the request thread. """ @@ -8519,21 +10134,21 @@ def departments_add( kwargs['_content_type'] = kwargs.get( '_content_type') kwargs['_host_index'] = kwargs.get('_host_index') - kwargs['accounting_department'] = \ - accounting_department - return self.departments_add_endpoint.call_with_http_info(**kwargs) + kwargs['expense'] = \ + expense + return self.expenses_add_endpoint.call_with_http_info(**kwargs) - def departments_all( + def expenses_all( self, **kwargs ): - """List Departments # noqa: E501 + """List Expenses # noqa: E501 - List Departments # noqa: E501 + List Expenses # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.departments_all(async_req=True) + >>> thread = api.expenses_all(async_req=True) >>> result = thread.get() @@ -8544,8 +10159,6 @@ def departments_all( service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] cursor (str, none_type): Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response.. [optional] limit (int): Number of results to return. Minimum 1, Maximum 200, Default 20. [optional] if omitted the server will use the default value of 20 - fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [optional] - filter (AccountingDepartmentsFilter): Apply filters. [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 @@ -8574,7 +10187,7 @@ def departments_all( async_req (bool): execute request asynchronously Returns: - GetAccountingDepartmentsResponse + GetExpensesResponse If the method is called asynchronously, returns the request thread. """ @@ -8602,20 +10215,20 @@ def departments_all( kwargs['_content_type'] = kwargs.get( '_content_type') kwargs['_host_index'] = kwargs.get('_host_index') - return self.departments_all_endpoint.call_with_http_info(**kwargs) + return self.expenses_all_endpoint.call_with_http_info(**kwargs) - def departments_delete( + def expenses_delete( self, id, **kwargs ): - """Delete Department # noqa: E501 + """Delete Expense # noqa: E501 - Delete Department # noqa: E501 + Delete Expense # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.departments_delete(id, async_req=True) + >>> thread = api.expenses_delete(id, async_req=True) >>> result = thread.get() Args: @@ -8654,7 +10267,7 @@ def departments_delete( async_req (bool): execute request asynchronously Returns: - DeleteAccountingDepartmentResponse + DeleteExpenseResponse If the method is called asynchronously, returns the request thread. """ @@ -8684,20 +10297,20 @@ def departments_delete( kwargs['_host_index'] = kwargs.get('_host_index') kwargs['id'] = \ id - return self.departments_delete_endpoint.call_with_http_info(**kwargs) + return self.expenses_delete_endpoint.call_with_http_info(**kwargs) - def departments_one( + def expenses_one( self, id, **kwargs ): - """Get Department # noqa: E501 + """Get Expense # noqa: E501 - Get Department # noqa: E501 + Get Expense # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.departments_one(id, async_req=True) + >>> thread = api.expenses_one(id, async_req=True) >>> result = thread.get() Args: @@ -8708,7 +10321,6 @@ def departments_one( app_id (str): The ID of your Unify application. [optional] service_id (str): Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.. [optional] raw (bool): Include raw response. Mostly used for debugging purposes. [optional] if omitted the server will use the default value of False - fields (str, none_type): The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: `fields=name,email,addresses.city`

In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded.. [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 @@ -8737,7 +10349,7 @@ def departments_one( async_req (bool): execute request asynchronously Returns: - GetAccountingDepartmentResponse + GetExpenseResponse If the method is called asynchronously, returns the request thread. """ @@ -8767,26 +10379,26 @@ def departments_one( kwargs['_host_index'] = kwargs.get('_host_index') kwargs['id'] = \ id - return self.departments_one_endpoint.call_with_http_info(**kwargs) + return self.expenses_one_endpoint.call_with_http_info(**kwargs) - def departments_update( + def expenses_update( self, id, - accounting_department, + expense, **kwargs ): - """Update Department # noqa: E501 + """Update Expense # noqa: E501 - Update Department # noqa: E501 + Update Expense # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.departments_update(id, accounting_department, async_req=True) + >>> thread = api.expenses_update(id, expense, async_req=True) >>> result = thread.get() Args: id (str): ID of the record you are acting upon. - accounting_department (AccountingDepartment): + expense (Expense): Keyword Args: consumer_id (str): ID of the consumer which you want to get or push data from. [optional] @@ -8821,7 +10433,7 @@ def departments_update( async_req (bool): execute request asynchronously Returns: - UpdateAccountingDepartmentResponse + UpdateExpenseResponse If the method is called asynchronously, returns the request thread. """ @@ -8851,9 +10463,9 @@ def departments_update( kwargs['_host_index'] = kwargs.get('_host_index') kwargs['id'] = \ id - kwargs['accounting_department'] = \ - accounting_department - return self.departments_update_endpoint.call_with_http_info(**kwargs) + kwargs['expense'] = \ + expense + return self.expenses_update_endpoint.call_with_http_info(**kwargs) def invoice_items_add( self, diff --git a/src/apideck/api/ats_api.py b/src/apideck/api/ats_api.py index aa61c40fa8..eb60ae7d93 100644 --- a/src/apideck/api/ats_api.py +++ b/src/apideck/api/ats_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/api/connector_api.py b/src/apideck/api/connector_api.py index 42298d74cd..ad2b30efdf 100644 --- a/src/apideck/api/connector_api.py +++ b/src/apideck/api/connector_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/api/crm_api.py b/src/apideck/api/crm_api.py index efed04be34..484bb4b3ec 100644 --- a/src/apideck/api/crm_api.py +++ b/src/apideck/api/crm_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/api/ecommerce_api.py b/src/apideck/api/ecommerce_api.py index c989929fcd..8a5515f8f2 100644 --- a/src/apideck/api/ecommerce_api.py +++ b/src/apideck/api/ecommerce_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/api/file_storage_api.py b/src/apideck/api/file_storage_api.py index f99f2e75a2..4469e269e4 100644 --- a/src/apideck/api/file_storage_api.py +++ b/src/apideck/api/file_storage_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/api/hris_api.py b/src/apideck/api/hris_api.py index 9d93d3a0f0..b8d21f3539 100644 --- a/src/apideck/api/hris_api.py +++ b/src/apideck/api/hris_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/api/issue_tracking_api.py b/src/apideck/api/issue_tracking_api.py index 46392cf1ad..0bf054611b 100644 --- a/src/apideck/api/issue_tracking_api.py +++ b/src/apideck/api/issue_tracking_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/api/lead_api.py b/src/apideck/api/lead_api.py index 184e24142b..f172bf0c65 100644 --- a/src/apideck/api/lead_api.py +++ b/src/apideck/api/lead_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/api/pos_api.py b/src/apideck/api/pos_api.py index 09f6889070..39ca5579ea 100644 --- a/src/apideck/api/pos_api.py +++ b/src/apideck/api/pos_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/api/sms_api.py b/src/apideck/api/sms_api.py index ef6ad4c6dd..7da129bcf9 100644 --- a/src/apideck/api/sms_api.py +++ b/src/apideck/api/sms_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/api/vault_api.py b/src/apideck/api/vault_api.py index dca67626cd..657ba81e43 100644 --- a/src/apideck/api/vault_api.py +++ b/src/apideck/api/vault_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/api/webhook_api.py b/src/apideck/api/webhook_api.py index 2fb30a8bbd..5e24ce262f 100644 --- a/src/apideck/api/webhook_api.py +++ b/src/apideck/api/webhook_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/api_client.py b/src/apideck/api_client.py index c5a6fdfdbe..a847f27634 100644 --- a/src/apideck/api_client.py +++ b/src/apideck/api_client.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.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 = 'OpenAPI-Generator/1.4.3/python' + self.user_agent = 'Apideck-python-sdk/1.4.4 Unify-spec/10.7.3' def __enter__(self): return self diff --git a/src/apideck/configuration.py b/src/apideck/configuration.py index ececd1cb39..0a5554d12e 100644 --- a/src/apideck/configuration.py +++ b/src/apideck/configuration.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -426,8 +426,8 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 10.7.1\n"\ - "SDK Package Version: 1.4.3".\ + "Version of the API: 10.7.3\n"\ + "SDK Package Version: 1.4.4".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/src/apideck/exceptions.py b/src/apideck/exceptions.py index 6c346afc10..d89267f6a6 100644 --- a/src/apideck/exceptions.py +++ b/src/apideck/exceptions.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/accounting_customer.py b/src/apideck/model/accounting_customer.py index d816864b69..a4ca017f07 100644 --- a/src/apideck/model/accounting_customer.py +++ b/src/apideck/model/accounting_customer.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/accounting_department.py b/src/apideck/model/accounting_department.py index b8ed972397..9c53ec532c 100644 --- a/src/apideck/model/accounting_department.py +++ b/src/apideck/model/accounting_department.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/accounting_departments_filter.py b/src/apideck/model/accounting_departments_filter.py index c3c2e72e18..38a097803a 100644 --- a/src/apideck/model/accounting_departments_filter.py +++ b/src/apideck/model/accounting_departments_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/accounting_event_type.py b/src/apideck/model/accounting_event_type.py index 12f8669ec3..2133b47768 100644 --- a/src/apideck/model/accounting_event_type.py +++ b/src/apideck/model/accounting_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -80,6 +80,9 @@ class AccountingEventType(ModelSimple): 'ACCOUNTING.PURCHASE-ORDER.CREATED': "accounting.purchase-order.created", 'ACCOUNTING.PURCHASE-ORDER.UPDATED': "accounting.purchase-order.updated", 'ACCOUNTING.PURCHASE-ORDER.DELETED': "accounting.purchase-order.deleted", + 'ACCOUNTING.EXPENSE.CREATED': "accounting.expense.created", + 'ACCOUNTING.EXPENSE.UPDATED': "accounting.expense.updated", + 'ACCOUNTING.EXPENSE.DELETED': "accounting.expense.deleted", }, } @@ -131,10 +134,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):, must be one of ["*", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", ] # noqa: E501 + args[0] (str):, must be one of ["*", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", "accounting.expense.created", "accounting.expense.updated", "accounting.expense.deleted", ] # noqa: E501 Keyword Args: - value (str):, must be one of ["*", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", ] # noqa: E501 + value (str):, must be one of ["*", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", "accounting.expense.created", "accounting.expense.updated", "accounting.expense.deleted", ] # 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. @@ -221,10 +224,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):, must be one of ["*", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", ] # noqa: E501 + args[0] (str):, must be one of ["*", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", "accounting.expense.created", "accounting.expense.updated", "accounting.expense.deleted", ] # noqa: E501 Keyword Args: - value (str):, must be one of ["*", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", ] # noqa: E501 + value (str):, must be one of ["*", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", "accounting.expense.created", "accounting.expense.updated", "accounting.expense.deleted", ] # 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/src/apideck/model/accounting_location.py b/src/apideck/model/accounting_location.py index 01bf757ac3..0649ff7f2e 100644 --- a/src/apideck/model/accounting_location.py +++ b/src/apideck/model/accounting_location.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/accounting_locations_filter.py b/src/apideck/model/accounting_locations_filter.py index 16d69c4d21..901a1a4a88 100644 --- a/src/apideck/model/accounting_locations_filter.py +++ b/src/apideck/model/accounting_locations_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/activities_filter.py b/src/apideck/model/activities_filter.py index cf4ad81b6a..f6ba92e4b6 100644 --- a/src/apideck/model/activities_filter.py +++ b/src/apideck/model/activities_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/activities_sort.py b/src/apideck/model/activities_sort.py index 88928d52de..2d1ebb10fc 100644 --- a/src/apideck/model/activities_sort.py +++ b/src/apideck/model/activities_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/activity.py b/src/apideck/model/activity.py index 702d54b8de..6ee874c88d 100644 --- a/src/apideck/model/activity.py +++ b/src/apideck/model/activity.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/activity_attendee.py b/src/apideck/model/activity_attendee.py index f8e5a892a4..ebd3d0c77f 100644 --- a/src/apideck/model/activity_attendee.py +++ b/src/apideck/model/activity_attendee.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/address.py b/src/apideck/model/address.py index 208598eb44..417de82613 100644 --- a/src/apideck/model/address.py +++ b/src/apideck/model/address.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/allocation.py b/src/apideck/model/allocation.py index 29ee02ff20..ee8bd8801e 100644 --- a/src/apideck/model/allocation.py +++ b/src/apideck/model/allocation.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -64,6 +64,7 @@ class Allocation(ModelNormal): 'PRE_PAYMENT': "pre_payment", 'JOURNAL_ENTRY': "journal_entry", 'OTHER': "other", + 'BILL': "bill", }, } diff --git a/src/apideck/model/api.py b/src/apideck/model/api.py index 22eff2c924..640e938e13 100644 --- a/src/apideck/model/api.py +++ b/src/apideck/model/api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/api_resource.py b/src/apideck/model/api_resource.py index 85f26dd5c7..8323f4a96a 100644 --- a/src/apideck/model/api_resource.py +++ b/src/apideck/model/api_resource.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/api_resource_coverage.py b/src/apideck/model/api_resource_coverage.py index 243bf46e44..65464f701c 100644 --- a/src/apideck/model/api_resource_coverage.py +++ b/src/apideck/model/api_resource_coverage.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/api_resource_coverage_coverage.py b/src/apideck/model/api_resource_coverage_coverage.py index 35206e684e..ffbcf64331 100644 --- a/src/apideck/model/api_resource_coverage_coverage.py +++ b/src/apideck/model/api_resource_coverage_coverage.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/api_resource_linked_resources.py b/src/apideck/model/api_resource_linked_resources.py index 0c83d80bfe..15debfb44b 100644 --- a/src/apideck/model/api_resource_linked_resources.py +++ b/src/apideck/model/api_resource_linked_resources.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/api_resources.py b/src/apideck/model/api_resources.py index 0c67056a97..7d5a4f7c0e 100644 --- a/src/apideck/model/api_resources.py +++ b/src/apideck/model/api_resources.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/api_status.py b/src/apideck/model/api_status.py index 24f7d10772..ba06347475 100644 --- a/src/apideck/model/api_status.py +++ b/src/apideck/model/api_status.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/apis_filter.py b/src/apideck/model/apis_filter.py index b4186797dd..d337788183 100644 --- a/src/apideck/model/apis_filter.py +++ b/src/apideck/model/apis_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/applicant.py b/src/apideck/model/applicant.py index 0d07257594..43b05276db 100644 --- a/src/apideck/model/applicant.py +++ b/src/apideck/model/applicant.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/applicant_social_links.py b/src/apideck/model/applicant_social_links.py index 148e1ef408..139d0d5d5e 100644 --- a/src/apideck/model/applicant_social_links.py +++ b/src/apideck/model/applicant_social_links.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/applicant_websites.py b/src/apideck/model/applicant_websites.py index 3f86e0b91a..4cd2e6b0c7 100644 --- a/src/apideck/model/applicant_websites.py +++ b/src/apideck/model/applicant_websites.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/applicants_filter.py b/src/apideck/model/applicants_filter.py index c48399a255..036b6826c3 100644 --- a/src/apideck/model/applicants_filter.py +++ b/src/apideck/model/applicants_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/application.py b/src/apideck/model/application.py index 92180c9279..5dd3425017 100644 --- a/src/apideck/model/application.py +++ b/src/apideck/model/application.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/application_stage.py b/src/apideck/model/application_stage.py index dbad7b246f..bdd03845b2 100644 --- a/src/apideck/model/application_stage.py +++ b/src/apideck/model/application_stage.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/assignee.py b/src/apideck/model/assignee.py index 6942ca246e..ee958c51f6 100644 --- a/src/apideck/model/assignee.py +++ b/src/apideck/model/assignee.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ats_activity.py b/src/apideck/model/ats_activity.py index 4f339c893f..91257eea76 100644 --- a/src/apideck/model/ats_activity.py +++ b/src/apideck/model/ats_activity.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ats_event_type.py b/src/apideck/model/ats_event_type.py index 7a1fb35bd2..788dd48188 100644 --- a/src/apideck/model/ats_event_type.py +++ b/src/apideck/model/ats_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/attachment.py b/src/apideck/model/attachment.py index f9098ced12..921090b94c 100644 --- a/src/apideck/model/attachment.py +++ b/src/apideck/model/attachment.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -89,6 +89,7 @@ def openapi_types(): 'size': (int, none_type,), # noqa: E501 'reference': (AttachmentReference,), # noqa: E501 'description': (str, none_type,), # noqa: E501 + 'parent_folder_id': (str, none_type,), # noqa: E501 'updated_by': (str, none_type,), # noqa: E501 'created_by': (str, none_type,), # noqa: E501 'updated_at': (datetime, none_type,), # noqa: E501 @@ -109,6 +110,7 @@ def discriminator(): 'size': 'size', # noqa: E501 'reference': 'reference', # noqa: E501 'description': 'description', # noqa: E501 + 'parent_folder_id': 'parent_folder_id', # noqa: E501 'updated_by': 'updated_by', # noqa: E501 'created_by': 'created_by', # noqa: E501 'updated_at': 'updated_at', # noqa: E501 @@ -169,6 +171,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 size (int, none_type): The size of the file in bytes. [optional] # noqa: E501 reference (AttachmentReference): [optional] # noqa: E501 description (str, none_type): Optional description of the file. [optional] # noqa: E501 + parent_folder_id (str, none_type): The folder id where this attachment belong to. [optional] # noqa: E501 updated_by (str, none_type): The user who last updated the object.. [optional] # noqa: E501 created_by (str, none_type): The user who created the object.. [optional] # noqa: E501 updated_at (datetime, none_type): The date and time when the object was last updated.. [optional] # noqa: E501 @@ -262,6 +265,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 size (int, none_type): The size of the file in bytes. [optional] # noqa: E501 reference (AttachmentReference): [optional] # noqa: E501 description (str, none_type): Optional description of the file. [optional] # noqa: E501 + parent_folder_id (str, none_type): The folder id where this attachment belong to. [optional] # noqa: E501 updated_by (str, none_type): The user who last updated the object.. [optional] # noqa: E501 created_by (str, none_type): The user who created the object.. [optional] # noqa: E501 updated_at (datetime, none_type): The date and time when the object was last updated.. [optional] # noqa: E501 diff --git a/src/apideck/model/attachment_reference.py b/src/apideck/model/attachment_reference.py index 141af5fe5f..fe45e486a7 100644 --- a/src/apideck/model/attachment_reference.py +++ b/src/apideck/model/attachment_reference.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/attachment_reference_type.py b/src/apideck/model/attachment_reference_type.py index 5d267d6a68..8ddd9fdc33 100644 --- a/src/apideck/model/attachment_reference_type.py +++ b/src/apideck/model/attachment_reference_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -54,6 +54,7 @@ class AttachmentReferenceType(ModelSimple): ('value',): { 'INVOICE': "invoice", 'BILL': "bill", + 'EXPENSE': "expense", }, } @@ -105,10 +106,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):, must be one of ["invoice", "bill", ] # noqa: E501 + args[0] (str):, must be one of ["invoice", "bill", "expense", ] # noqa: E501 Keyword Args: - value (str):, must be one of ["invoice", "bill", ] # noqa: E501 + value (str):, must be one of ["invoice", "bill", "expense", ] # 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. @@ -195,10 +196,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):, must be one of ["invoice", "bill", ] # noqa: E501 + args[0] (str):, must be one of ["invoice", "bill", "expense", ] # noqa: E501 Keyword Args: - value (str):, must be one of ["invoice", "bill", ] # noqa: E501 + value (str):, must be one of ["invoice", "bill", "expense", ] # 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/src/apideck/model/auth_type.py b/src/apideck/model/auth_type.py index b97a4b39b1..bd4e257024 100644 --- a/src/apideck/model/auth_type.py +++ b/src/apideck/model/auth_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/bad_request_response.py b/src/apideck/model/bad_request_response.py index aaeb73d247..131658be29 100644 --- a/src/apideck/model/bad_request_response.py +++ b/src/apideck/model/bad_request_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/balance_sheet.py b/src/apideck/model/balance_sheet.py index 13c766ae08..6ba954f8c5 100644 --- a/src/apideck/model/balance_sheet.py +++ b/src/apideck/model/balance_sheet.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/balance_sheet_account.py b/src/apideck/model/balance_sheet_account.py index e68315ebaf..469fd1ca91 100644 --- a/src/apideck/model/balance_sheet_account.py +++ b/src/apideck/model/balance_sheet_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/balance_sheet_account_record.py b/src/apideck/model/balance_sheet_account_record.py index 4e648b0292..8896740f89 100644 --- a/src/apideck/model/balance_sheet_account_record.py +++ b/src/apideck/model/balance_sheet_account_record.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/balance_sheet_accounts.py b/src/apideck/model/balance_sheet_accounts.py index 0887fcd842..46100d44dd 100644 --- a/src/apideck/model/balance_sheet_accounts.py +++ b/src/apideck/model/balance_sheet_accounts.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/balance_sheet_filter.py b/src/apideck/model/balance_sheet_filter.py index 27b7baa2e8..d98106366c 100644 --- a/src/apideck/model/balance_sheet_filter.py +++ b/src/apideck/model/balance_sheet_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/balance_sheet_reports.py b/src/apideck/model/balance_sheet_reports.py index b75f342a6b..9a53f38c57 100644 --- a/src/apideck/model/balance_sheet_reports.py +++ b/src/apideck/model/balance_sheet_reports.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/bank_account.py b/src/apideck/model/bank_account.py index 5250567f4b..82f8163c5e 100644 --- a/src/apideck/model/bank_account.py +++ b/src/apideck/model/bank_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/benefit.py b/src/apideck/model/benefit.py index 53d4eec3fb..27a58785c1 100644 --- a/src/apideck/model/benefit.py +++ b/src/apideck/model/benefit.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/bill.py b/src/apideck/model/bill.py index dd5c627adc..863d81f576 100644 --- a/src/apideck/model/bill.py +++ b/src/apideck/model/bill.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/bill_line_item.py b/src/apideck/model/bill_line_item.py index 0785d39ec0..39980a5a3c 100644 --- a/src/apideck/model/bill_line_item.py +++ b/src/apideck/model/bill_line_item.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/bill_payment.py b/src/apideck/model/bill_payment.py new file mode 100644 index 0000000000..b3aa5f051f --- /dev/null +++ b/src/apideck/model/bill_payment.py @@ -0,0 +1,396 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from apideck.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 apideck.exceptions import ApiAttributeError + + +def lazy_import(): + from apideck.model.allocation import Allocation + from apideck.model.currency import Currency + from apideck.model.custom_field import CustomField + from apideck.model.linked_ledger_account import LinkedLedgerAccount + from apideck.model.linked_supplier import LinkedSupplier + from apideck.model.linked_tracking_categories import LinkedTrackingCategories + from apideck.model.pass_through_body import PassThroughBody + from apideck.model.payment_status import PaymentStatus + from apideck.model.payment_type import PaymentType + globals()['Allocation'] = Allocation + globals()['Currency'] = Currency + globals()['CustomField'] = CustomField + globals()['LinkedLedgerAccount'] = LinkedLedgerAccount + globals()['LinkedSupplier'] = LinkedSupplier + globals()['LinkedTrackingCategories'] = LinkedTrackingCategories + globals()['PassThroughBody'] = PassThroughBody + globals()['PaymentStatus'] = PaymentStatus + globals()['PaymentType'] = PaymentType + + +class BillPayment(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 = { + } + + additional_properties_type = None + + _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 + 'total_amount': (float, none_type,), # noqa: E501 + 'transaction_date': (datetime, none_type,), # noqa: E501 + 'downstream_id': (str, none_type,), # noqa: E501 + 'currency': (Currency,), # noqa: E501 + 'currency_rate': (float, none_type,), # noqa: E501 + 'reference': (str, none_type,), # noqa: E501 + 'payment_method': (str, none_type,), # noqa: E501 + 'payment_method_reference': (str, none_type,), # noqa: E501 + 'payment_method_id': (str, none_type,), # noqa: E501 + 'account': (LinkedLedgerAccount,), # noqa: E501 + 'supplier': (LinkedSupplier,), # noqa: E501 + 'company_id': (str, none_type,), # noqa: E501 + 'reconciled': (bool, none_type,), # noqa: E501 + 'status': (PaymentStatus,), # noqa: E501 + 'type': (PaymentType,), # noqa: E501 + 'allocations': ([Allocation],), # noqa: E501 + 'note': (str, none_type,), # noqa: E501 + 'number': (str, none_type,), # noqa: E501 + 'tracking_categories': (LinkedTrackingCategories,), # noqa: E501 + 'custom_fields': ([CustomField],), # noqa: E501 + 'row_version': (str, none_type,), # noqa: E501 + 'display_id': (str, none_type,), # noqa: E501 + 'custom_mappings': ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type,), # noqa: E501 + 'updated_by': (str, none_type,), # noqa: E501 + 'created_by': (str, none_type,), # noqa: E501 + 'created_at': (datetime, none_type,), # noqa: E501 + 'updated_at': (datetime, none_type,), # noqa: E501 + 'pass_through': (PassThroughBody,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'id': 'id', # noqa: E501 + 'total_amount': 'total_amount', # noqa: E501 + 'transaction_date': 'transaction_date', # noqa: E501 + 'downstream_id': 'downstream_id', # noqa: E501 + 'currency': 'currency', # noqa: E501 + 'currency_rate': 'currency_rate', # noqa: E501 + 'reference': 'reference', # noqa: E501 + 'payment_method': 'payment_method', # noqa: E501 + 'payment_method_reference': 'payment_method_reference', # noqa: E501 + 'payment_method_id': 'payment_method_id', # noqa: E501 + 'account': 'account', # noqa: E501 + 'supplier': 'supplier', # noqa: E501 + 'company_id': 'company_id', # noqa: E501 + 'reconciled': 'reconciled', # noqa: E501 + 'status': 'status', # noqa: E501 + 'type': 'type', # noqa: E501 + 'allocations': 'allocations', # noqa: E501 + 'note': 'note', # noqa: E501 + 'number': 'number', # noqa: E501 + 'tracking_categories': 'tracking_categories', # noqa: E501 + 'custom_fields': 'custom_fields', # noqa: E501 + 'row_version': 'row_version', # noqa: E501 + 'display_id': 'display_id', # noqa: E501 + 'custom_mappings': 'custom_mappings', # noqa: E501 + 'updated_by': 'updated_by', # noqa: E501 + 'created_by': 'created_by', # noqa: E501 + 'created_at': 'created_at', # noqa: E501 + 'updated_at': 'updated_at', # noqa: E501 + 'pass_through': 'pass_through', # noqa: E501 + } + + read_only_vars = { + 'id', # noqa: E501 + 'downstream_id', # noqa: E501 + 'custom_mappings', # noqa: E501 + 'updated_by', # noqa: E501 + 'created_by', # noqa: E501 + 'created_at', # noqa: E501 + 'updated_at', # noqa: E501 + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, id, total_amount, transaction_date, *args, **kwargs): # noqa: E501 + """BillPayment - a model defined in OpenAPI + + Args: + id (str): A unique identifier for an object. + total_amount (float, none_type): The total amount of the transaction + transaction_date (datetime, none_type): The date of the transaction - YYYY:MM::DDThh:mm:ss.sTZD + + 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,) + downstream_id (str, none_type): The third-party API ID of original entity. [optional] # noqa: E501 + currency (Currency): [optional] # noqa: E501 + currency_rate (float, none_type): Currency Exchange Rate at the time entity was recorded/generated.. [optional] # noqa: E501 + reference (str, none_type): Optional transaction reference message ie: Debit remittance detail.. [optional] # noqa: E501 + payment_method (str, none_type): Payment method used for the transaction, such as cash, credit card, bank transfer, or check. [optional] # noqa: E501 + payment_method_reference (str, none_type): Optional reference message returned by payment method on processing. [optional] # noqa: E501 + payment_method_id (str, none_type): A unique identifier for an object.. [optional] # noqa: E501 + account (LinkedLedgerAccount): [optional] # noqa: E501 + supplier (LinkedSupplier): [optional] # noqa: E501 + company_id (str, none_type): The company or subsidiary id the transaction belongs to. [optional] # noqa: E501 + reconciled (bool, none_type): Indicates if the transaction has been reconciled.. [optional] # noqa: E501 + status (PaymentStatus): [optional] # noqa: E501 + type (PaymentType): [optional] # noqa: E501 + allocations ([Allocation]): [optional] # noqa: E501 + note (str, none_type): Note associated with the transaction. [optional] # noqa: E501 + number (str, none_type): Number associated with the transaction. [optional] # noqa: E501 + tracking_categories (LinkedTrackingCategories): [optional] # noqa: E501 + custom_fields ([CustomField]): [optional] # noqa: E501 + row_version (str, none_type): A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object.. [optional] # noqa: E501 + display_id (str, none_type): Id to be displayed.. [optional] # noqa: E501 + custom_mappings ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): When custom mappings are configured on the resource, the result is included here.. [optional] # noqa: E501 + updated_by (str, none_type): The user who last updated the object.. [optional] # noqa: E501 + created_by (str, none_type): The user who created the object.. [optional] # noqa: E501 + created_at (datetime, none_type): The date and time when the object was created.. [optional] # noqa: E501 + updated_at (datetime, none_type): The date and time when the object was last updated.. [optional] # noqa: E501 + pass_through (PassThroughBody): [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: + 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.total_amount = total_amount + self.transaction_date = transaction_date + 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, total_amount, transaction_date, *args, **kwargs): # noqa: E501 + """BillPayment - a model defined in OpenAPI + + total_amount (float, none_type): The total amount of the transaction + transaction_date (datetime, none_type): The date of the transaction - YYYY:MM::DDThh:mm:ss.sTZD + + 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,) + downstream_id (str, none_type): The third-party API ID of original entity. [optional] # noqa: E501 + currency (Currency): [optional] # noqa: E501 + currency_rate (float, none_type): Currency Exchange Rate at the time entity was recorded/generated.. [optional] # noqa: E501 + reference (str, none_type): Optional transaction reference message ie: Debit remittance detail.. [optional] # noqa: E501 + payment_method (str, none_type): Payment method used for the transaction, such as cash, credit card, bank transfer, or check. [optional] # noqa: E501 + payment_method_reference (str, none_type): Optional reference message returned by payment method on processing. [optional] # noqa: E501 + payment_method_id (str, none_type): A unique identifier for an object.. [optional] # noqa: E501 + account (LinkedLedgerAccount): [optional] # noqa: E501 + supplier (LinkedSupplier): [optional] # noqa: E501 + company_id (str, none_type): The company or subsidiary id the transaction belongs to. [optional] # noqa: E501 + reconciled (bool, none_type): Indicates if the transaction has been reconciled.. [optional] # noqa: E501 + status (PaymentStatus): [optional] # noqa: E501 + type (PaymentType): [optional] # noqa: E501 + allocations ([Allocation]): [optional] # noqa: E501 + note (str, none_type): Note associated with the transaction. [optional] # noqa: E501 + number (str, none_type): Number associated with the transaction. [optional] # noqa: E501 + tracking_categories (LinkedTrackingCategories): [optional] # noqa: E501 + custom_fields ([CustomField]): [optional] # noqa: E501 + row_version (str, none_type): A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object.. [optional] # noqa: E501 + display_id (str, none_type): Id to be displayed.. [optional] # noqa: E501 + custom_mappings ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): When custom mappings are configured on the resource, the result is included here.. [optional] # noqa: E501 + updated_by (str, none_type): The user who last updated the object.. [optional] # noqa: E501 + created_by (str, none_type): The user who created the object.. [optional] # noqa: E501 + created_at (datetime, none_type): The date and time when the object was created.. [optional] # noqa: E501 + updated_at (datetime, none_type): The date and time when the object was last updated.. [optional] # noqa: E501 + pass_through (PassThroughBody): [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: + 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.total_amount = total_amount + self.transaction_date = transaction_date + 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/src/apideck/model/bills_filter.py b/src/apideck/model/bills_filter.py index 47e969c262..fbcfcbda3d 100644 --- a/src/apideck/model/bills_filter.py +++ b/src/apideck/model/bills_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/bills_sort.py b/src/apideck/model/bills_sort.py index 30629012f2..4e6aa9dfa1 100644 --- a/src/apideck/model/bills_sort.py +++ b/src/apideck/model/bills_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/branch.py b/src/apideck/model/branch.py index bb0c0577ee..92542782a2 100644 --- a/src/apideck/model/branch.py +++ b/src/apideck/model/branch.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/cash_details.py b/src/apideck/model/cash_details.py index f9a0c1ae4c..538a74ebae 100644 --- a/src/apideck/model/cash_details.py +++ b/src/apideck/model/cash_details.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/collection.py b/src/apideck/model/collection.py index eed0778d86..b0907c976b 100644 --- a/src/apideck/model/collection.py +++ b/src/apideck/model/collection.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/collection_tag.py b/src/apideck/model/collection_tag.py index 8f40571282..8d0ef917af 100644 --- a/src/apideck/model/collection_tag.py +++ b/src/apideck/model/collection_tag.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/collection_ticket_comment.py b/src/apideck/model/collection_ticket_comment.py index abbffd72bf..b21c774a74 100644 --- a/src/apideck/model/collection_ticket_comment.py +++ b/src/apideck/model/collection_ticket_comment.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/collection_user.py b/src/apideck/model/collection_user.py index 271393919b..9905f2e5c0 100644 --- a/src/apideck/model/collection_user.py +++ b/src/apideck/model/collection_user.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/collections_sort.py b/src/apideck/model/collections_sort.py index ab5cb7086b..05d345bafc 100644 --- a/src/apideck/model/collections_sort.py +++ b/src/apideck/model/collections_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/comments_sort.py b/src/apideck/model/comments_sort.py index 5cabd4f60e..8b0b54551f 100644 --- a/src/apideck/model/comments_sort.py +++ b/src/apideck/model/comments_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/companies_filter.py b/src/apideck/model/companies_filter.py index f1230599ae..2bd6ff37ad 100644 --- a/src/apideck/model/companies_filter.py +++ b/src/apideck/model/companies_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/companies_sort.py b/src/apideck/model/companies_sort.py index 91e5a1bd15..421ac2f5ed 100644 --- a/src/apideck/model/companies_sort.py +++ b/src/apideck/model/companies_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/company.py b/src/apideck/model/company.py index a16f39570e..393d7e0149 100644 --- a/src/apideck/model/company.py +++ b/src/apideck/model/company.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/company_info.py b/src/apideck/model/company_info.py index 8242f797b4..ce1ef14083 100644 --- a/src/apideck/model/company_info.py +++ b/src/apideck/model/company_info.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/company_row_type.py b/src/apideck/model/company_row_type.py index 258d1fa273..3e1e20ef17 100644 --- a/src/apideck/model/company_row_type.py +++ b/src/apideck/model/company_row_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/compensation.py b/src/apideck/model/compensation.py index cbdfe08871..e16252901f 100644 --- a/src/apideck/model/compensation.py +++ b/src/apideck/model/compensation.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connection.py b/src/apideck/model/connection.py index ffa2435821..1e82a6c1a4 100644 --- a/src/apideck/model/connection.py +++ b/src/apideck/model/connection.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connection_configuration.py b/src/apideck/model/connection_configuration.py index 6b73c4a073..a91168c7a1 100644 --- a/src/apideck/model/connection_configuration.py +++ b/src/apideck/model/connection_configuration.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connection_defaults.py b/src/apideck/model/connection_defaults.py index ea0660b197..b2d65a1483 100644 --- a/src/apideck/model/connection_defaults.py +++ b/src/apideck/model/connection_defaults.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connection_import_data.py b/src/apideck/model/connection_import_data.py index a44ec3e858..75dd378b3b 100644 --- a/src/apideck/model/connection_import_data.py +++ b/src/apideck/model/connection_import_data.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connection_import_data_credentials.py b/src/apideck/model/connection_import_data_credentials.py index 6116b9f984..573844f61f 100644 --- a/src/apideck/model/connection_import_data_credentials.py +++ b/src/apideck/model/connection_import_data_credentials.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connection_metadata.py b/src/apideck/model/connection_metadata.py index f93178413e..16d0934dcb 100644 --- a/src/apideck/model/connection_metadata.py +++ b/src/apideck/model/connection_metadata.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connection_state.py b/src/apideck/model/connection_state.py index ef089a2fb7..947974b100 100644 --- a/src/apideck/model/connection_state.py +++ b/src/apideck/model/connection_state.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connection_webhook.py b/src/apideck/model/connection_webhook.py index a1713a66b8..2cb6320dfd 100644 --- a/src/apideck/model/connection_webhook.py +++ b/src/apideck/model/connection_webhook.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -166,6 +166,9 @@ class ConnectionWebhook(ModelNormal): 'ATS.APPLICATION.CREATED': "ats.application.created", 'ATS.APPLICATION.UPDATED': "ats.application.updated", 'ATS.APPLICATION.DELETED': "ats.application.deleted", + 'ACCOUNTING.EXPENSE.CREATED': "accounting.expense.created", + 'ACCOUNTING.EXPENSE.UPDATED': "accounting.expense.updated", + 'ACCOUNTING.EXPENSE.DELETED': "accounting.expense.deleted", }, ('disabled_reason',): { 'NONE': "none", diff --git a/src/apideck/model/connector.py b/src/apideck/model/connector.py index 9312e210a5..1035e2ec21 100644 --- a/src/apideck/model/connector.py +++ b/src/apideck/model/connector.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connector_doc.py b/src/apideck/model/connector_doc.py index 07ed102cfc..4d77b2b0ff 100644 --- a/src/apideck/model/connector_doc.py +++ b/src/apideck/model/connector_doc.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connector_event.py b/src/apideck/model/connector_event.py index 8e1a2573bf..4ff7429f60 100644 --- a/src/apideck/model/connector_event.py +++ b/src/apideck/model/connector_event.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connector_oauth_scopes.py b/src/apideck/model/connector_oauth_scopes.py index f426df896a..7dc3f157d9 100644 --- a/src/apideck/model/connector_oauth_scopes.py +++ b/src/apideck/model/connector_oauth_scopes.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connector_oauth_scopes1.py b/src/apideck/model/connector_oauth_scopes1.py index ec0b272d82..ecc892cbec 100644 --- a/src/apideck/model/connector_oauth_scopes1.py +++ b/src/apideck/model/connector_oauth_scopes1.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connector_resource.py b/src/apideck/model/connector_resource.py index 60c6b84e11..abc7fb9a73 100644 --- a/src/apideck/model/connector_resource.py +++ b/src/apideck/model/connector_resource.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connector_setting.py b/src/apideck/model/connector_setting.py index 369abb2335..a7e6959f0b 100644 --- a/src/apideck/model/connector_setting.py +++ b/src/apideck/model/connector_setting.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connector_status.py b/src/apideck/model/connector_status.py index 1b89fdc6b8..02504de3b2 100644 --- a/src/apideck/model/connector_status.py +++ b/src/apideck/model/connector_status.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connector_tls_support.py b/src/apideck/model/connector_tls_support.py index 1c6c76c315..2fb7f06cfa 100644 --- a/src/apideck/model/connector_tls_support.py +++ b/src/apideck/model/connector_tls_support.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connector_unified_apis.py b/src/apideck/model/connector_unified_apis.py index 356271813d..8a8f4d469d 100644 --- a/src/apideck/model/connector_unified_apis.py +++ b/src/apideck/model/connector_unified_apis.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/connectors_filter.py b/src/apideck/model/connectors_filter.py index 7ded04153e..832762d464 100644 --- a/src/apideck/model/connectors_filter.py +++ b/src/apideck/model/connectors_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/consumer.py b/src/apideck/model/consumer.py index aec57d9318..3e2075819c 100644 --- a/src/apideck/model/consumer.py +++ b/src/apideck/model/consumer.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/consumer_connection.py b/src/apideck/model/consumer_connection.py index 21fd719519..67013f5a27 100644 --- a/src/apideck/model/consumer_connection.py +++ b/src/apideck/model/consumer_connection.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/consumer_metadata.py b/src/apideck/model/consumer_metadata.py index b94656bee2..d76307da40 100644 --- a/src/apideck/model/consumer_metadata.py +++ b/src/apideck/model/consumer_metadata.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/consumer_request_counts_in_date_range_response.py b/src/apideck/model/consumer_request_counts_in_date_range_response.py index ef73f1ff24..4b96e83f72 100644 --- a/src/apideck/model/consumer_request_counts_in_date_range_response.py +++ b/src/apideck/model/consumer_request_counts_in_date_range_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/consumer_request_counts_in_date_range_response_data.py b/src/apideck/model/consumer_request_counts_in_date_range_response_data.py index 0a722c032c..eb1640d2b3 100644 --- a/src/apideck/model/consumer_request_counts_in_date_range_response_data.py +++ b/src/apideck/model/consumer_request_counts_in_date_range_response_data.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/contact.py b/src/apideck/model/contact.py index 2a3fab649f..6bc23b913d 100644 --- a/src/apideck/model/contact.py +++ b/src/apideck/model/contact.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/contacts_filter.py b/src/apideck/model/contacts_filter.py index 7eb57f8a91..d551bbb89e 100644 --- a/src/apideck/model/contacts_filter.py +++ b/src/apideck/model/contacts_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/contacts_sort.py b/src/apideck/model/contacts_sort.py index 582ca3e658..d7be7f8df8 100644 --- a/src/apideck/model/contacts_sort.py +++ b/src/apideck/model/contacts_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/copy_folder_request.py b/src/apideck/model/copy_folder_request.py index 80855e65a1..4f070da337 100644 --- a/src/apideck/model/copy_folder_request.py +++ b/src/apideck/model/copy_folder_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/country.py b/src/apideck/model/country.py index d696268ab9..ab0b76a02b 100644 --- a/src/apideck/model/country.py +++ b/src/apideck/model/country.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_accounting_department_response.py b/src/apideck/model/create_accounting_department_response.py index 5a438599d1..e9fb2543f9 100644 --- a/src/apideck/model/create_accounting_department_response.py +++ b/src/apideck/model/create_accounting_department_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_accounting_location_response.py b/src/apideck/model/create_accounting_location_response.py index 447cd393dc..f4e4b41524 100644 --- a/src/apideck/model/create_accounting_location_response.py +++ b/src/apideck/model/create_accounting_location_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_activity_response.py b/src/apideck/model/create_activity_response.py index 241cd8c13d..c1eae03281 100644 --- a/src/apideck/model/create_activity_response.py +++ b/src/apideck/model/create_activity_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_applicant_response.py b/src/apideck/model/create_applicant_response.py index 4c6e7b7bcf..1a7e1ecb15 100644 --- a/src/apideck/model/create_applicant_response.py +++ b/src/apideck/model/create_applicant_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_application_response.py b/src/apideck/model/create_application_response.py index fe76a60bab..ed4e47d31b 100644 --- a/src/apideck/model/create_application_response.py +++ b/src/apideck/model/create_application_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_attachment_request.py b/src/apideck/model/create_attachment_request.py index d25b276327..edd801eeed 100644 --- a/src/apideck/model/create_attachment_request.py +++ b/src/apideck/model/create_attachment_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -82,6 +82,7 @@ def openapi_types(): return { 'name': (str,), # noqa: E501 'description': (str,), # noqa: E501 + 'parent_folder_id': (str,), # noqa: E501 'pass_through': (PassThroughBody,), # noqa: E501 } @@ -93,6 +94,7 @@ def discriminator(): attribute_map = { 'name': 'name', # noqa: E501 'description': 'description', # noqa: E501 + 'parent_folder_id': 'parent_folder_id', # noqa: E501 'pass_through': 'pass_through', # noqa: E501 } @@ -141,6 +143,7 @@ def _from_openapi_data(cls, name, *args, **kwargs): # noqa: E501 through its discriminator because we passed in _visited_composed_classes = (Animal,) description (str): Optional description of the file.. [optional] # noqa: E501 + parent_folder_id (str): The folder id where this attachment belong to. [optional] # noqa: E501 pass_through (PassThroughBody): [optional] # noqa: E501 """ @@ -228,6 +231,7 @@ def __init__(self, name, *args, **kwargs): # noqa: E501 through its discriminator because we passed in _visited_composed_classes = (Animal,) description (str): Optional description of the file.. [optional] # noqa: E501 + parent_folder_id (str): The folder id where this attachment belong to. [optional] # noqa: E501 pass_through (PassThroughBody): [optional] # noqa: E501 """ diff --git a/src/apideck/model/create_attachment_response.py b/src/apideck/model/create_attachment_response.py index 092133f781..f644e2ce8b 100644 --- a/src/apideck/model/create_attachment_response.py +++ b/src/apideck/model/create_attachment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_bill_payment_response.py b/src/apideck/model/create_bill_payment_response.py new file mode 100644 index 0000000000..f38b3dc23e --- /dev/null +++ b/src/apideck/model/create_bill_payment_response.py @@ -0,0 +1,297 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from apideck.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 apideck.exceptions import ApiAttributeError + + +def lazy_import(): + from apideck.model.unified_id import UnifiedId + globals()['UnifiedId'] = UnifiedId + + +class CreateBillPaymentResponse(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + lazy_import() + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + lazy_import() + return { + 'status_code': (int,), # noqa: E501 + 'status': (str,), # noqa: E501 + 'service': (str,), # noqa: E501 + 'resource': (str,), # noqa: E501 + 'operation': (str,), # noqa: E501 + 'data': (UnifiedId,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'status_code': 'status_code', # noqa: E501 + 'status': 'status', # noqa: E501 + 'service': 'service', # noqa: E501 + 'resource': 'resource', # noqa: E501 + 'operation': 'operation', # noqa: E501 + 'data': 'data', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """CreateBillPaymentResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data (UnifiedId): + + 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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """CreateBillPaymentResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data (UnifiedId): + + 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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + 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/src/apideck/model/create_bill_response.py b/src/apideck/model/create_bill_response.py index c6d44240a0..4bf59ad769 100644 --- a/src/apideck/model/create_bill_response.py +++ b/src/apideck/model/create_bill_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_comment_response.py b/src/apideck/model/create_comment_response.py index 9f7466f779..effcd64b12 100644 --- a/src/apideck/model/create_comment_response.py +++ b/src/apideck/model/create_comment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_company_response.py b/src/apideck/model/create_company_response.py index e5426aaf29..458b770c5b 100644 --- a/src/apideck/model/create_company_response.py +++ b/src/apideck/model/create_company_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_connection_response.py b/src/apideck/model/create_connection_response.py index 3b30900e2e..dc653dc4d0 100644 --- a/src/apideck/model/create_connection_response.py +++ b/src/apideck/model/create_connection_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_consumer_response.py b/src/apideck/model/create_consumer_response.py index a273fbcbc5..576247b8ac 100644 --- a/src/apideck/model/create_consumer_response.py +++ b/src/apideck/model/create_consumer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_contact_response.py b/src/apideck/model/create_contact_response.py index 6bdfb401f2..3d7b655fad 100644 --- a/src/apideck/model/create_contact_response.py +++ b/src/apideck/model/create_contact_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_credit_note_response.py b/src/apideck/model/create_credit_note_response.py index 6a078d140e..c85b3a4c6c 100644 --- a/src/apideck/model/create_credit_note_response.py +++ b/src/apideck/model/create_credit_note_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_custom_mapping_request.py b/src/apideck/model/create_custom_mapping_request.py index d3f9dc86e6..42a8c98320 100644 --- a/src/apideck/model/create_custom_mapping_request.py +++ b/src/apideck/model/create_custom_mapping_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_custom_mapping_response.py b/src/apideck/model/create_custom_mapping_response.py index 7694270e66..6b6d26919f 100644 --- a/src/apideck/model/create_custom_mapping_response.py +++ b/src/apideck/model/create_custom_mapping_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_customer_response.py b/src/apideck/model/create_customer_response.py index 6581469d31..816ace1794 100644 --- a/src/apideck/model/create_customer_response.py +++ b/src/apideck/model/create_customer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_department_response.py b/src/apideck/model/create_department_response.py index 8bd19ec9ae..2b268c655a 100644 --- a/src/apideck/model/create_department_response.py +++ b/src/apideck/model/create_department_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_drive_group_response.py b/src/apideck/model/create_drive_group_response.py index 6f7a2cfa24..70431964a3 100644 --- a/src/apideck/model/create_drive_group_response.py +++ b/src/apideck/model/create_drive_group_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_drive_response.py b/src/apideck/model/create_drive_response.py index bae295bd48..f00f6f586b 100644 --- a/src/apideck/model/create_drive_response.py +++ b/src/apideck/model/create_drive_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_ecommerce_customer_response.py b/src/apideck/model/create_ecommerce_customer_response.py index 3b4a9bb501..b0756de440 100644 --- a/src/apideck/model/create_ecommerce_customer_response.py +++ b/src/apideck/model/create_ecommerce_customer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_ecommerce_order_response.py b/src/apideck/model/create_ecommerce_order_response.py index aebd244e81..0ab39db8d9 100644 --- a/src/apideck/model/create_ecommerce_order_response.py +++ b/src/apideck/model/create_ecommerce_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_employee_response.py b/src/apideck/model/create_employee_response.py index baa51a2d60..2092a136a3 100644 --- a/src/apideck/model/create_employee_response.py +++ b/src/apideck/model/create_employee_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_expense_response.py b/src/apideck/model/create_expense_response.py new file mode 100644 index 0000000000..77bcc8a90c --- /dev/null +++ b/src/apideck/model/create_expense_response.py @@ -0,0 +1,297 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from apideck.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 apideck.exceptions import ApiAttributeError + + +def lazy_import(): + from apideck.model.unified_id import UnifiedId + globals()['UnifiedId'] = UnifiedId + + +class CreateExpenseResponse(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + lazy_import() + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + lazy_import() + return { + 'status_code': (int,), # noqa: E501 + 'status': (str,), # noqa: E501 + 'service': (str,), # noqa: E501 + 'resource': (str,), # noqa: E501 + 'operation': (str,), # noqa: E501 + 'data': (UnifiedId,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'status_code': 'status_code', # noqa: E501 + 'status': 'status', # noqa: E501 + 'service': 'service', # noqa: E501 + 'resource': 'resource', # noqa: E501 + 'operation': 'operation', # noqa: E501 + 'data': 'data', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """CreateExpenseResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data (UnifiedId): + + 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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """CreateExpenseResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data (UnifiedId): + + 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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + 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/src/apideck/model/create_file_request.py b/src/apideck/model/create_file_request.py index f07f0fbb17..cc62c74b94 100644 --- a/src/apideck/model/create_file_request.py +++ b/src/apideck/model/create_file_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_file_response.py b/src/apideck/model/create_file_response.py index 08baddb718..21b3e1bc5f 100644 --- a/src/apideck/model/create_file_response.py +++ b/src/apideck/model/create_file_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_folder_request.py b/src/apideck/model/create_folder_request.py index 5c8df0fe1e..7749a8f952 100644 --- a/src/apideck/model/create_folder_request.py +++ b/src/apideck/model/create_folder_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_folder_response.py b/src/apideck/model/create_folder_response.py index b1cb8aac17..23bbdff2e5 100644 --- a/src/apideck/model/create_folder_response.py +++ b/src/apideck/model/create_folder_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_hris_company_response.py b/src/apideck/model/create_hris_company_response.py index 5a65a23a35..013ce01d87 100644 --- a/src/apideck/model/create_hris_company_response.py +++ b/src/apideck/model/create_hris_company_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_invoice_item_response.py b/src/apideck/model/create_invoice_item_response.py index 5f06d0d94c..6e0ecf39ef 100644 --- a/src/apideck/model/create_invoice_item_response.py +++ b/src/apideck/model/create_invoice_item_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_invoice_response.py b/src/apideck/model/create_invoice_response.py index e615435019..42b44383de 100644 --- a/src/apideck/model/create_invoice_response.py +++ b/src/apideck/model/create_invoice_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_item_response.py b/src/apideck/model/create_item_response.py index ba22f6b05c..93aa6ee122 100644 --- a/src/apideck/model/create_item_response.py +++ b/src/apideck/model/create_item_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_job_response.py b/src/apideck/model/create_job_response.py index 9fb9d5c760..f39b368dc0 100644 --- a/src/apideck/model/create_job_response.py +++ b/src/apideck/model/create_job_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_journal_entry_response.py b/src/apideck/model/create_journal_entry_response.py index 773057aa5d..911460b5a8 100644 --- a/src/apideck/model/create_journal_entry_response.py +++ b/src/apideck/model/create_journal_entry_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_lead_response.py b/src/apideck/model/create_lead_response.py index aa7fbcdca3..cbaab35556 100644 --- a/src/apideck/model/create_lead_response.py +++ b/src/apideck/model/create_lead_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_ledger_account_response.py b/src/apideck/model/create_ledger_account_response.py index 56bb3e5852..86d02f1e7b 100644 --- a/src/apideck/model/create_ledger_account_response.py +++ b/src/apideck/model/create_ledger_account_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_location_response.py b/src/apideck/model/create_location_response.py index 7dc211734a..3cb7f34c6e 100644 --- a/src/apideck/model/create_location_response.py +++ b/src/apideck/model/create_location_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_merchant_response.py b/src/apideck/model/create_merchant_response.py index 14f9810085..40053d7734 100644 --- a/src/apideck/model/create_merchant_response.py +++ b/src/apideck/model/create_merchant_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_message_response.py b/src/apideck/model/create_message_response.py index 5cce30d82e..0007b80346 100644 --- a/src/apideck/model/create_message_response.py +++ b/src/apideck/model/create_message_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_modifier_group_response.py b/src/apideck/model/create_modifier_group_response.py index 3ed45bb7bd..04b757732f 100644 --- a/src/apideck/model/create_modifier_group_response.py +++ b/src/apideck/model/create_modifier_group_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_modifier_response.py b/src/apideck/model/create_modifier_response.py index 4f918ee63b..6356bc2afd 100644 --- a/src/apideck/model/create_modifier_response.py +++ b/src/apideck/model/create_modifier_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_note_response.py b/src/apideck/model/create_note_response.py index dab7a2fd90..9b07ec421f 100644 --- a/src/apideck/model/create_note_response.py +++ b/src/apideck/model/create_note_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_opportunity_response.py b/src/apideck/model/create_opportunity_response.py index 4c6da04fac..a0285cd2ca 100644 --- a/src/apideck/model/create_opportunity_response.py +++ b/src/apideck/model/create_opportunity_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_order_response.py b/src/apideck/model/create_order_response.py index 8fe606e563..5beda63306 100644 --- a/src/apideck/model/create_order_response.py +++ b/src/apideck/model/create_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_order_type_response.py b/src/apideck/model/create_order_type_response.py index 9dbfbf5bb6..62520844cb 100644 --- a/src/apideck/model/create_order_type_response.py +++ b/src/apideck/model/create_order_type_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_payment_response.py b/src/apideck/model/create_payment_response.py index 4d866ed5de..2ad4c4cacf 100644 --- a/src/apideck/model/create_payment_response.py +++ b/src/apideck/model/create_payment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_pipeline_response.py b/src/apideck/model/create_pipeline_response.py index 25e9ccd968..e88522d80c 100644 --- a/src/apideck/model/create_pipeline_response.py +++ b/src/apideck/model/create_pipeline_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_pos_payment_response.py b/src/apideck/model/create_pos_payment_response.py index 8880c91bfa..766f8930d0 100644 --- a/src/apideck/model/create_pos_payment_response.py +++ b/src/apideck/model/create_pos_payment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_product_response.py b/src/apideck/model/create_product_response.py index a2b4c1755f..e242bdcb81 100644 --- a/src/apideck/model/create_product_response.py +++ b/src/apideck/model/create_product_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_purchase_order_response.py b/src/apideck/model/create_purchase_order_response.py index 8e5eba48fc..a5224bdc68 100644 --- a/src/apideck/model/create_purchase_order_response.py +++ b/src/apideck/model/create_purchase_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_session_response.py b/src/apideck/model/create_session_response.py index 1ea4bc3767..f6b92ea94c 100644 --- a/src/apideck/model/create_session_response.py +++ b/src/apideck/model/create_session_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_session_response_data.py b/src/apideck/model/create_session_response_data.py index 03c79737c2..e448553129 100644 --- a/src/apideck/model/create_session_response_data.py +++ b/src/apideck/model/create_session_response_data.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_shared_link_response.py b/src/apideck/model/create_shared_link_response.py index f52cdd5cae..0c96b6f111 100644 --- a/src/apideck/model/create_shared_link_response.py +++ b/src/apideck/model/create_shared_link_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_subsidiary_response.py b/src/apideck/model/create_subsidiary_response.py index a45a1f3fc8..15cdbba712 100644 --- a/src/apideck/model/create_subsidiary_response.py +++ b/src/apideck/model/create_subsidiary_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_supplier_response.py b/src/apideck/model/create_supplier_response.py index a7e74e5111..5dc0ef2850 100644 --- a/src/apideck/model/create_supplier_response.py +++ b/src/apideck/model/create_supplier_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_tax_rate_response.py b/src/apideck/model/create_tax_rate_response.py index bdd9614928..8acd829c6c 100644 --- a/src/apideck/model/create_tax_rate_response.py +++ b/src/apideck/model/create_tax_rate_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_tender_response.py b/src/apideck/model/create_tender_response.py index 84a8797189..c8b8e8ab11 100644 --- a/src/apideck/model/create_tender_response.py +++ b/src/apideck/model/create_tender_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_ticket_response.py b/src/apideck/model/create_ticket_response.py index 5acdc8f068..84050c1d64 100644 --- a/src/apideck/model/create_ticket_response.py +++ b/src/apideck/model/create_ticket_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_time_off_request_response.py b/src/apideck/model/create_time_off_request_response.py index d398243046..21b0f4041f 100644 --- a/src/apideck/model/create_time_off_request_response.py +++ b/src/apideck/model/create_time_off_request_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_tracking_category_response.py b/src/apideck/model/create_tracking_category_response.py index 3b487a798c..f181153161 100644 --- a/src/apideck/model/create_tracking_category_response.py +++ b/src/apideck/model/create_tracking_category_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_upload_session_request.py b/src/apideck/model/create_upload_session_request.py index fe7ffc3ef1..dbcd07ebe5 100644 --- a/src/apideck/model/create_upload_session_request.py +++ b/src/apideck/model/create_upload_session_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_upload_session_response.py b/src/apideck/model/create_upload_session_response.py index 76a18519ca..b8c51d1873 100644 --- a/src/apideck/model/create_upload_session_response.py +++ b/src/apideck/model/create_upload_session_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_user_response.py b/src/apideck/model/create_user_response.py index 647ebaad0c..ce8fadf132 100644 --- a/src/apideck/model/create_user_response.py +++ b/src/apideck/model/create_user_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_webhook_request.py b/src/apideck/model/create_webhook_request.py index 547b7dbdca..0a639a1b6f 100644 --- a/src/apideck/model/create_webhook_request.py +++ b/src/apideck/model/create_webhook_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/create_webhook_response.py b/src/apideck/model/create_webhook_response.py index 6e9f310b38..d6982caff3 100644 --- a/src/apideck/model/create_webhook_response.py +++ b/src/apideck/model/create_webhook_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/credit_note.py b/src/apideck/model/credit_note.py index 46e24bcafc..9f6242f41c 100644 --- a/src/apideck/model/credit_note.py +++ b/src/apideck/model/credit_note.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/credit_notes_filter.py b/src/apideck/model/credit_notes_filter.py index 20df38de85..7e8159b666 100644 --- a/src/apideck/model/credit_notes_filter.py +++ b/src/apideck/model/credit_notes_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/credit_notes_sort.py b/src/apideck/model/credit_notes_sort.py index 7c0df8c0ca..4b817e136b 100644 --- a/src/apideck/model/credit_notes_sort.py +++ b/src/apideck/model/credit_notes_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/crm_event_type.py b/src/apideck/model/crm_event_type.py index 894e4f59e3..32746834d8 100644 --- a/src/apideck/model/crm_event_type.py +++ b/src/apideck/model/crm_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/currency.py b/src/apideck/model/currency.py index 1da908c524..2c45a9404e 100644 --- a/src/apideck/model/currency.py +++ b/src/apideck/model/currency.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/custom_field.py b/src/apideck/model/custom_field.py index 180e3c2fd6..38dd3e5c55 100644 --- a/src/apideck/model/custom_field.py +++ b/src/apideck/model/custom_field.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/custom_field_finder.py b/src/apideck/model/custom_field_finder.py index d3a4ec098a..0cc16b3a83 100644 --- a/src/apideck/model/custom_field_finder.py +++ b/src/apideck/model/custom_field_finder.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/custom_mapping.py b/src/apideck/model/custom_mapping.py index c12b116d32..2f3c0b38ee 100644 --- a/src/apideck/model/custom_mapping.py +++ b/src/apideck/model/custom_mapping.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/customer.py b/src/apideck/model/customer.py index fdba9fb9f2..327b0f091a 100644 --- a/src/apideck/model/customer.py +++ b/src/apideck/model/customer.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/customers_filter.py b/src/apideck/model/customers_filter.py index 0409a95452..c4b4839078 100644 --- a/src/apideck/model/customers_filter.py +++ b/src/apideck/model/customers_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/customers_sort.py b/src/apideck/model/customers_sort.py index 657b86a600..ac85dea77d 100644 --- a/src/apideck/model/customers_sort.py +++ b/src/apideck/model/customers_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/deduction.py b/src/apideck/model/deduction.py index 1be4653e85..ceb479c938 100644 --- a/src/apideck/model/deduction.py +++ b/src/apideck/model/deduction.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_accounting_department_response.py b/src/apideck/model/delete_accounting_department_response.py index cc5ee748df..6c716570d8 100644 --- a/src/apideck/model/delete_accounting_department_response.py +++ b/src/apideck/model/delete_accounting_department_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_accounting_location_response.py b/src/apideck/model/delete_accounting_location_response.py index ffed8261fa..3b7a0650d1 100644 --- a/src/apideck/model/delete_accounting_location_response.py +++ b/src/apideck/model/delete_accounting_location_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_activity_response.py b/src/apideck/model/delete_activity_response.py index 0fefb81387..fcd785455e 100644 --- a/src/apideck/model/delete_activity_response.py +++ b/src/apideck/model/delete_activity_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_applicant_response.py b/src/apideck/model/delete_applicant_response.py index 8a000f04b9..4137c263a2 100644 --- a/src/apideck/model/delete_applicant_response.py +++ b/src/apideck/model/delete_applicant_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_application_response.py b/src/apideck/model/delete_application_response.py index 8bedb65f65..7861f829c5 100644 --- a/src/apideck/model/delete_application_response.py +++ b/src/apideck/model/delete_application_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_attachment_response.py b/src/apideck/model/delete_attachment_response.py index fa5c00ec1c..e5ddd11510 100644 --- a/src/apideck/model/delete_attachment_response.py +++ b/src/apideck/model/delete_attachment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_bill_payment_response.py b/src/apideck/model/delete_bill_payment_response.py new file mode 100644 index 0000000000..8e0829e062 --- /dev/null +++ b/src/apideck/model/delete_bill_payment_response.py @@ -0,0 +1,297 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from apideck.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 apideck.exceptions import ApiAttributeError + + +def lazy_import(): + from apideck.model.unified_id import UnifiedId + globals()['UnifiedId'] = UnifiedId + + +class DeleteBillPaymentResponse(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + lazy_import() + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + lazy_import() + return { + 'status_code': (int,), # noqa: E501 + 'status': (str,), # noqa: E501 + 'service': (str,), # noqa: E501 + 'resource': (str,), # noqa: E501 + 'operation': (str,), # noqa: E501 + 'data': (UnifiedId,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'status_code': 'status_code', # noqa: E501 + 'status': 'status', # noqa: E501 + 'service': 'service', # noqa: E501 + 'resource': 'resource', # noqa: E501 + 'operation': 'operation', # noqa: E501 + 'data': 'data', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """DeleteBillPaymentResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data (UnifiedId): + + 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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """DeleteBillPaymentResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data (UnifiedId): + + 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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + 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/src/apideck/model/delete_bill_response.py b/src/apideck/model/delete_bill_response.py index 9b49845195..de79241537 100644 --- a/src/apideck/model/delete_bill_response.py +++ b/src/apideck/model/delete_bill_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_comment_response.py b/src/apideck/model/delete_comment_response.py index 8df0eb779b..7298c78fd1 100644 --- a/src/apideck/model/delete_comment_response.py +++ b/src/apideck/model/delete_comment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_company_response.py b/src/apideck/model/delete_company_response.py index 0ed57cf520..2b8798c79c 100644 --- a/src/apideck/model/delete_company_response.py +++ b/src/apideck/model/delete_company_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_consumer_response.py b/src/apideck/model/delete_consumer_response.py index ba06abab5a..40911b1be5 100644 --- a/src/apideck/model/delete_consumer_response.py +++ b/src/apideck/model/delete_consumer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_contact_response.py b/src/apideck/model/delete_contact_response.py index 369b841b56..53da6e9821 100644 --- a/src/apideck/model/delete_contact_response.py +++ b/src/apideck/model/delete_contact_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_credit_note_response.py b/src/apideck/model/delete_credit_note_response.py index 648fd42d1d..d248f46000 100644 --- a/src/apideck/model/delete_credit_note_response.py +++ b/src/apideck/model/delete_credit_note_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_customer_response.py b/src/apideck/model/delete_customer_response.py index a40c889b1a..a7912c9fb0 100644 --- a/src/apideck/model/delete_customer_response.py +++ b/src/apideck/model/delete_customer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_department_response.py b/src/apideck/model/delete_department_response.py index 779e89a964..5a69b4d360 100644 --- a/src/apideck/model/delete_department_response.py +++ b/src/apideck/model/delete_department_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_drive_group_response.py b/src/apideck/model/delete_drive_group_response.py index ef46b32d0e..4a25909a49 100644 --- a/src/apideck/model/delete_drive_group_response.py +++ b/src/apideck/model/delete_drive_group_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_drive_response.py b/src/apideck/model/delete_drive_response.py index 9a27af7ca7..d57204f2cf 100644 --- a/src/apideck/model/delete_drive_response.py +++ b/src/apideck/model/delete_drive_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_ecommerce_customer_response.py b/src/apideck/model/delete_ecommerce_customer_response.py index f650ea1a5c..40069dafeb 100644 --- a/src/apideck/model/delete_ecommerce_customer_response.py +++ b/src/apideck/model/delete_ecommerce_customer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_ecommerce_order_response.py b/src/apideck/model/delete_ecommerce_order_response.py index 7558eaf91e..e8640816b7 100644 --- a/src/apideck/model/delete_ecommerce_order_response.py +++ b/src/apideck/model/delete_ecommerce_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_employee_response.py b/src/apideck/model/delete_employee_response.py index b39a3c57a8..973016b107 100644 --- a/src/apideck/model/delete_employee_response.py +++ b/src/apideck/model/delete_employee_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_expense_response.py b/src/apideck/model/delete_expense_response.py new file mode 100644 index 0000000000..f5f516f40e --- /dev/null +++ b/src/apideck/model/delete_expense_response.py @@ -0,0 +1,297 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from apideck.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 apideck.exceptions import ApiAttributeError + + +def lazy_import(): + from apideck.model.unified_id import UnifiedId + globals()['UnifiedId'] = UnifiedId + + +class DeleteExpenseResponse(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + lazy_import() + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + lazy_import() + return { + 'status_code': (int,), # noqa: E501 + 'status': (str,), # noqa: E501 + 'service': (str,), # noqa: E501 + 'resource': (str,), # noqa: E501 + 'operation': (str,), # noqa: E501 + 'data': (UnifiedId,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'status_code': 'status_code', # noqa: E501 + 'status': 'status', # noqa: E501 + 'service': 'service', # noqa: E501 + 'resource': 'resource', # noqa: E501 + 'operation': 'operation', # noqa: E501 + 'data': 'data', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """DeleteExpenseResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data (UnifiedId): + + 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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """DeleteExpenseResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data (UnifiedId): + + 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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + 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/src/apideck/model/delete_file_response.py b/src/apideck/model/delete_file_response.py index 481d8bd6be..ba78581f36 100644 --- a/src/apideck/model/delete_file_response.py +++ b/src/apideck/model/delete_file_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_folder_response.py b/src/apideck/model/delete_folder_response.py index 904cdbe451..66140e8094 100644 --- a/src/apideck/model/delete_folder_response.py +++ b/src/apideck/model/delete_folder_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_hris_company_response.py b/src/apideck/model/delete_hris_company_response.py index 1e6195d694..47321dd042 100644 --- a/src/apideck/model/delete_hris_company_response.py +++ b/src/apideck/model/delete_hris_company_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_invoice_item_response.py b/src/apideck/model/delete_invoice_item_response.py index 7f0846acc5..7ffce58dd5 100644 --- a/src/apideck/model/delete_invoice_item_response.py +++ b/src/apideck/model/delete_invoice_item_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_invoice_response.py b/src/apideck/model/delete_invoice_response.py index 48d13fde95..841ce55df4 100644 --- a/src/apideck/model/delete_invoice_response.py +++ b/src/apideck/model/delete_invoice_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_item_response.py b/src/apideck/model/delete_item_response.py index cf34243aa8..9730bc3af5 100644 --- a/src/apideck/model/delete_item_response.py +++ b/src/apideck/model/delete_item_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_job_response.py b/src/apideck/model/delete_job_response.py index d3784ec2f4..de0897f7fa 100644 --- a/src/apideck/model/delete_job_response.py +++ b/src/apideck/model/delete_job_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_journal_entry_response.py b/src/apideck/model/delete_journal_entry_response.py index fc8f9a5280..42c4ed2012 100644 --- a/src/apideck/model/delete_journal_entry_response.py +++ b/src/apideck/model/delete_journal_entry_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_lead_response.py b/src/apideck/model/delete_lead_response.py index b897108cdd..f09c97ea26 100644 --- a/src/apideck/model/delete_lead_response.py +++ b/src/apideck/model/delete_lead_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_ledger_account_response.py b/src/apideck/model/delete_ledger_account_response.py index b4a7e3aec1..e2a49ef3cf 100644 --- a/src/apideck/model/delete_ledger_account_response.py +++ b/src/apideck/model/delete_ledger_account_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_location_response.py b/src/apideck/model/delete_location_response.py index 1c6b952993..82d17b08a9 100644 --- a/src/apideck/model/delete_location_response.py +++ b/src/apideck/model/delete_location_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_merchant_response.py b/src/apideck/model/delete_merchant_response.py index 5e6fc10ebb..62d0af6328 100644 --- a/src/apideck/model/delete_merchant_response.py +++ b/src/apideck/model/delete_merchant_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_message_response.py b/src/apideck/model/delete_message_response.py index a9bd377706..839deb44ad 100644 --- a/src/apideck/model/delete_message_response.py +++ b/src/apideck/model/delete_message_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_modifier_group_response.py b/src/apideck/model/delete_modifier_group_response.py index 331d0fe9d4..b569d95a6f 100644 --- a/src/apideck/model/delete_modifier_group_response.py +++ b/src/apideck/model/delete_modifier_group_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_modifier_response.py b/src/apideck/model/delete_modifier_response.py index 78fe6dc0a7..25365bcfc8 100644 --- a/src/apideck/model/delete_modifier_response.py +++ b/src/apideck/model/delete_modifier_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_note_response.py b/src/apideck/model/delete_note_response.py index 5695a9bb13..98e4b04dc7 100644 --- a/src/apideck/model/delete_note_response.py +++ b/src/apideck/model/delete_note_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_opportunity_response.py b/src/apideck/model/delete_opportunity_response.py index 0d1b1da5eb..07128a0bff 100644 --- a/src/apideck/model/delete_opportunity_response.py +++ b/src/apideck/model/delete_opportunity_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_order_response.py b/src/apideck/model/delete_order_response.py index 8904757289..d10189f71c 100644 --- a/src/apideck/model/delete_order_response.py +++ b/src/apideck/model/delete_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_order_type_response.py b/src/apideck/model/delete_order_type_response.py index 247692606e..49209e3235 100644 --- a/src/apideck/model/delete_order_type_response.py +++ b/src/apideck/model/delete_order_type_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_payment_response.py b/src/apideck/model/delete_payment_response.py index feb91beb8d..c199ab660e 100644 --- a/src/apideck/model/delete_payment_response.py +++ b/src/apideck/model/delete_payment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_pipeline_response.py b/src/apideck/model/delete_pipeline_response.py index a512ee5fb5..2ff3e50fa8 100644 --- a/src/apideck/model/delete_pipeline_response.py +++ b/src/apideck/model/delete_pipeline_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_pos_payment_response.py b/src/apideck/model/delete_pos_payment_response.py index bfddd933ba..aff432716b 100644 --- a/src/apideck/model/delete_pos_payment_response.py +++ b/src/apideck/model/delete_pos_payment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_product_response.py b/src/apideck/model/delete_product_response.py index abaa12efac..ab064bd74f 100644 --- a/src/apideck/model/delete_product_response.py +++ b/src/apideck/model/delete_product_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_purchase_order_response.py b/src/apideck/model/delete_purchase_order_response.py index ad90b92054..3318045fc0 100644 --- a/src/apideck/model/delete_purchase_order_response.py +++ b/src/apideck/model/delete_purchase_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_shared_link_response.py b/src/apideck/model/delete_shared_link_response.py index 989d4dc84c..9068e45279 100644 --- a/src/apideck/model/delete_shared_link_response.py +++ b/src/apideck/model/delete_shared_link_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_subsidiary_response.py b/src/apideck/model/delete_subsidiary_response.py index b6d1a508bc..57a23f4f8a 100644 --- a/src/apideck/model/delete_subsidiary_response.py +++ b/src/apideck/model/delete_subsidiary_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_supplier_response.py b/src/apideck/model/delete_supplier_response.py index 65438c7296..7e8a5e83cd 100644 --- a/src/apideck/model/delete_supplier_response.py +++ b/src/apideck/model/delete_supplier_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_tax_rate_response.py b/src/apideck/model/delete_tax_rate_response.py index d55b2c0245..49238cb279 100644 --- a/src/apideck/model/delete_tax_rate_response.py +++ b/src/apideck/model/delete_tax_rate_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_tender_response.py b/src/apideck/model/delete_tender_response.py index bc013747ab..5f809b734b 100644 --- a/src/apideck/model/delete_tender_response.py +++ b/src/apideck/model/delete_tender_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_ticket_response.py b/src/apideck/model/delete_ticket_response.py index a8e0b642d3..d1b2a34edb 100644 --- a/src/apideck/model/delete_ticket_response.py +++ b/src/apideck/model/delete_ticket_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_time_off_request_response.py b/src/apideck/model/delete_time_off_request_response.py index ee8e979b46..d4a07b546b 100644 --- a/src/apideck/model/delete_time_off_request_response.py +++ b/src/apideck/model/delete_time_off_request_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_tracking_category_response.py b/src/apideck/model/delete_tracking_category_response.py index da326a5355..a1fddddf9a 100644 --- a/src/apideck/model/delete_tracking_category_response.py +++ b/src/apideck/model/delete_tracking_category_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_upload_session_response.py b/src/apideck/model/delete_upload_session_response.py index 28a0e7bcc9..cff8c1ecb5 100644 --- a/src/apideck/model/delete_upload_session_response.py +++ b/src/apideck/model/delete_upload_session_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_user_response.py b/src/apideck/model/delete_user_response.py index ae698c67b1..05b527b968 100644 --- a/src/apideck/model/delete_user_response.py +++ b/src/apideck/model/delete_user_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delete_webhook_response.py b/src/apideck/model/delete_webhook_response.py index fcfb9db395..ecc3ba6cd3 100644 --- a/src/apideck/model/delete_webhook_response.py +++ b/src/apideck/model/delete_webhook_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/delivery_url.py b/src/apideck/model/delivery_url.py index 8efc4e7e37..f4e30933d6 100644 --- a/src/apideck/model/delivery_url.py +++ b/src/apideck/model/delivery_url.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/department.py b/src/apideck/model/department.py index b4f0a48463..2f364eabfa 100644 --- a/src/apideck/model/department.py +++ b/src/apideck/model/department.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/deprecated_linked_supplier.py b/src/apideck/model/deprecated_linked_supplier.py new file mode 100644 index 0000000000..0997a9b868 --- /dev/null +++ b/src/apideck/model/deprecated_linked_supplier.py @@ -0,0 +1,280 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from apideck.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 apideck.exceptions import ApiAttributeError + + +def lazy_import(): + from apideck.model.address import Address + globals()['Address'] = Address + + +class DeprecatedLinkedSupplier(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + lazy_import() + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = True + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + lazy_import() + return { + 'id': (str,), # noqa: E501 + 'display_id': (str, none_type,), # noqa: E501 + 'display_name': (str, none_type,), # noqa: E501 + 'company_name': (str, none_type,), # noqa: E501 + 'address': (Address,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'id': 'id', # noqa: E501 + 'display_id': 'display_id', # noqa: E501 + 'display_name': 'display_name', # noqa: E501 + 'company_name': 'company_name', # noqa: E501 + 'address': 'address', # noqa: E501 + } + + read_only_vars = { + 'id', # noqa: E501 + 'display_id', # noqa: E501 + 'company_name', # noqa: E501 + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 + """DeprecatedLinkedSupplier - a model defined in OpenAPI + + 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,) + id (str): A unique identifier for an object.. [optional] # noqa: E501 + display_id (str, none_type): The display ID of the supplier.. [optional] # noqa: E501 + display_name (str, none_type): The display name of the supplier.. [optional] # noqa: E501 + company_name (str, none_type): The company name of the supplier.. [optional] # noqa: E501 + address (Address): [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: + 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__,) + + 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, *args, **kwargs): # noqa: E501 + """DeprecatedLinkedSupplier - a model defined in OpenAPI + + 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,) + id (str): A unique identifier for an object.. [optional] # noqa: E501 + display_id (str, none_type): The display ID of the supplier.. [optional] # noqa: E501 + display_name (str, none_type): The display name of the supplier.. [optional] # noqa: E501 + company_name (str, none_type): The company name of the supplier.. [optional] # noqa: E501 + address (Address): [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: + 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__,) + + 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/src/apideck/model/deprecated_linked_tracking_category.py b/src/apideck/model/deprecated_linked_tracking_category.py index 45c6d4ff8d..11ee83e257 100644 --- a/src/apideck/model/deprecated_linked_tracking_category.py +++ b/src/apideck/model/deprecated_linked_tracking_category.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/drive.py b/src/apideck/model/drive.py index 697e6dfd43..6d4f0ca59e 100644 --- a/src/apideck/model/drive.py +++ b/src/apideck/model/drive.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/drive_group.py b/src/apideck/model/drive_group.py index 0a6e903170..9bf87deb3e 100644 --- a/src/apideck/model/drive_group.py +++ b/src/apideck/model/drive_group.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/drive_groups_filter.py b/src/apideck/model/drive_groups_filter.py index 778b91f732..bee488c6ba 100644 --- a/src/apideck/model/drive_groups_filter.py +++ b/src/apideck/model/drive_groups_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/drives_filter.py b/src/apideck/model/drives_filter.py index 4b6b05f16e..81279027e4 100644 --- a/src/apideck/model/drives_filter.py +++ b/src/apideck/model/drives_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ecommerce_address.py b/src/apideck/model/ecommerce_address.py index 20079501e9..f5b1833255 100644 --- a/src/apideck/model/ecommerce_address.py +++ b/src/apideck/model/ecommerce_address.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ecommerce_customer.py b/src/apideck/model/ecommerce_customer.py index 9b39a4e5c0..d9109b3f4f 100644 --- a/src/apideck/model/ecommerce_customer.py +++ b/src/apideck/model/ecommerce_customer.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ecommerce_customer_addresses.py b/src/apideck/model/ecommerce_customer_addresses.py index 96046ff358..b9c20a022a 100644 --- a/src/apideck/model/ecommerce_customer_addresses.py +++ b/src/apideck/model/ecommerce_customer_addresses.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ecommerce_customers_filter.py b/src/apideck/model/ecommerce_customers_filter.py index 7896e1ba49..72bba779e5 100644 --- a/src/apideck/model/ecommerce_customers_filter.py +++ b/src/apideck/model/ecommerce_customers_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ecommerce_discount.py b/src/apideck/model/ecommerce_discount.py index f13b582ee2..c1646a2526 100644 --- a/src/apideck/model/ecommerce_discount.py +++ b/src/apideck/model/ecommerce_discount.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ecommerce_order.py b/src/apideck/model/ecommerce_order.py index 6421611d08..e7b219baa3 100644 --- a/src/apideck/model/ecommerce_order.py +++ b/src/apideck/model/ecommerce_order.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ecommerce_order_line_item.py b/src/apideck/model/ecommerce_order_line_item.py index d32050d5da..eb29a80ddf 100644 --- a/src/apideck/model/ecommerce_order_line_item.py +++ b/src/apideck/model/ecommerce_order_line_item.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ecommerce_order_status.py b/src/apideck/model/ecommerce_order_status.py index f7a39a7a1c..c1449765d6 100644 --- a/src/apideck/model/ecommerce_order_status.py +++ b/src/apideck/model/ecommerce_order_status.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ecommerce_orders_filter.py b/src/apideck/model/ecommerce_orders_filter.py index 793bd9c5a2..13db40d16f 100644 --- a/src/apideck/model/ecommerce_orders_filter.py +++ b/src/apideck/model/ecommerce_orders_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ecommerce_product.py b/src/apideck/model/ecommerce_product.py index 0c569da4ef..6e096f435c 100644 --- a/src/apideck/model/ecommerce_product.py +++ b/src/apideck/model/ecommerce_product.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ecommerce_product_categories.py b/src/apideck/model/ecommerce_product_categories.py index 4b004c88aa..63bc89859e 100644 --- a/src/apideck/model/ecommerce_product_categories.py +++ b/src/apideck/model/ecommerce_product_categories.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ecommerce_product_images.py b/src/apideck/model/ecommerce_product_images.py index 2bb66ff3c9..59afee9ceb 100644 --- a/src/apideck/model/ecommerce_product_images.py +++ b/src/apideck/model/ecommerce_product_images.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ecommerce_product_images1.py b/src/apideck/model/ecommerce_product_images1.py index bd74e42158..80a155ee3d 100644 --- a/src/apideck/model/ecommerce_product_images1.py +++ b/src/apideck/model/ecommerce_product_images1.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ecommerce_product_options.py b/src/apideck/model/ecommerce_product_options.py index 3b313500df..2868b926ae 100644 --- a/src/apideck/model/ecommerce_product_options.py +++ b/src/apideck/model/ecommerce_product_options.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ecommerce_product_options1.py b/src/apideck/model/ecommerce_product_options1.py index a0f7a54532..2e9b21ed9f 100644 --- a/src/apideck/model/ecommerce_product_options1.py +++ b/src/apideck/model/ecommerce_product_options1.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ecommerce_product_variants.py b/src/apideck/model/ecommerce_product_variants.py index d0a03c4c31..c85f5a7cde 100644 --- a/src/apideck/model/ecommerce_product_variants.py +++ b/src/apideck/model/ecommerce_product_variants.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ecommerce_store.py b/src/apideck/model/ecommerce_store.py index 699015a527..22f3f6957d 100644 --- a/src/apideck/model/ecommerce_store.py +++ b/src/apideck/model/ecommerce_store.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/email.py b/src/apideck/model/email.py index 5f72e5111e..aad2e5feef 100644 --- a/src/apideck/model/email.py +++ b/src/apideck/model/email.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/employee.py b/src/apideck/model/employee.py index 8e4c243eeb..c4b8121e6e 100644 --- a/src/apideck/model/employee.py +++ b/src/apideck/model/employee.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -422,12 +422,9 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 ]) @convert_js_args_to_python_args - def __init__(self, id, *args, **kwargs): # noqa: E501 + def __init__(self, *args, **kwargs): # noqa: E501 """Employee - a model defined in OpenAPI - Args: - id (str, none_type): A unique identifier for an object. - Keyword Args: _check_type (bool): if True, values for parameters in openapi_types will be type checked and a TypeError will be @@ -550,7 +547,6 @@ def __init__(self, id, *args, **kwargs): # noqa: E501 self._configuration = _configuration self._visited_composed_classes = _visited_composed_classes + (self.__class__,) - self.id = id for var_name, var_value in kwargs.items(): if var_name not in self.attribute_map and \ self._configuration is not None and \ diff --git a/src/apideck/model/employee_compensation.py b/src/apideck/model/employee_compensation.py index 930110da29..a950553c67 100644 --- a/src/apideck/model/employee_compensation.py +++ b/src/apideck/model/employee_compensation.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/employee_employment_role.py b/src/apideck/model/employee_employment_role.py index b96e8becfc..4fba9eb67a 100644 --- a/src/apideck/model/employee_employment_role.py +++ b/src/apideck/model/employee_employment_role.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/employee_job.py b/src/apideck/model/employee_job.py index 903b7564a1..9f77dbb644 100644 --- a/src/apideck/model/employee_job.py +++ b/src/apideck/model/employee_job.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/employee_list.py b/src/apideck/model/employee_list.py index 82c71bce70..abd5e7f418 100644 --- a/src/apideck/model/employee_list.py +++ b/src/apideck/model/employee_list.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/employee_manager.py b/src/apideck/model/employee_manager.py index dda12c3765..2f51494e7d 100644 --- a/src/apideck/model/employee_manager.py +++ b/src/apideck/model/employee_manager.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/employee_payroll.py b/src/apideck/model/employee_payroll.py index 1e2cb91524..560b46df14 100644 --- a/src/apideck/model/employee_payroll.py +++ b/src/apideck/model/employee_payroll.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/employee_schedules.py b/src/apideck/model/employee_schedules.py index d095dc4944..b050b647fa 100644 --- a/src/apideck/model/employee_schedules.py +++ b/src/apideck/model/employee_schedules.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/employees_filter.py b/src/apideck/model/employees_filter.py index 0b33ad593c..7da00de805 100644 --- a/src/apideck/model/employees_filter.py +++ b/src/apideck/model/employees_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/employees_one_filter.py b/src/apideck/model/employees_one_filter.py index fba7ee11df..cd2e81bc91 100644 --- a/src/apideck/model/employees_one_filter.py +++ b/src/apideck/model/employees_one_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/employees_sort.py b/src/apideck/model/employees_sort.py index ff77cff9f1..c346d2c71e 100644 --- a/src/apideck/model/employees_sort.py +++ b/src/apideck/model/employees_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/employment_status.py b/src/apideck/model/employment_status.py index 27b4beb6a8..d834d13368 100644 --- a/src/apideck/model/employment_status.py +++ b/src/apideck/model/employment_status.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/error.py b/src/apideck/model/error.py index baf533965c..ec62bb253e 100644 --- a/src/apideck/model/error.py +++ b/src/apideck/model/error.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/execute_base_url.py b/src/apideck/model/execute_base_url.py index d8c19dd5d7..9e99eb6c2b 100644 --- a/src/apideck/model/execute_base_url.py +++ b/src/apideck/model/execute_base_url.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/execute_webhook_event_request.py b/src/apideck/model/execute_webhook_event_request.py index 71b6092075..90da44a25d 100644 --- a/src/apideck/model/execute_webhook_event_request.py +++ b/src/apideck/model/execute_webhook_event_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/execute_webhook_events_request.py b/src/apideck/model/execute_webhook_events_request.py index 0caa6b80ea..95d1f454fa 100644 --- a/src/apideck/model/execute_webhook_events_request.py +++ b/src/apideck/model/execute_webhook_events_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/execute_webhook_response.py b/src/apideck/model/execute_webhook_response.py index 140dcf8797..0d6942e427 100644 --- a/src/apideck/model/execute_webhook_response.py +++ b/src/apideck/model/execute_webhook_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/expense.py b/src/apideck/model/expense.py new file mode 100644 index 0000000000..f14805e2d5 --- /dev/null +++ b/src/apideck/model/expense.py @@ -0,0 +1,364 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from apideck.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 apideck.exceptions import ApiAttributeError + + +def lazy_import(): + from apideck.model.currency import Currency + from apideck.model.custom_field import CustomField + from apideck.model.expense_line_item import ExpenseLineItem + from apideck.model.linked_tax_rate import LinkedTaxRate + from apideck.model.pass_through_body import PassThroughBody + globals()['Currency'] = Currency + globals()['CustomField'] = CustomField + globals()['ExpenseLineItem'] = ExpenseLineItem + globals()['LinkedTaxRate'] = LinkedTaxRate + globals()['PassThroughBody'] = PassThroughBody + + +class Expense(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 = { + ('type',): { + 'None': None, + 'EXPENSE': "expense", + 'REFUND': "refund", + }, + } + + validations = { + ('line_items',): { + 'min_items': 1, + }, + } + + additional_properties_type = None + + _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 { + 'transaction_date': (datetime, none_type,), # noqa: E501 + 'account_id': (str,), # noqa: E501 + 'line_items': ([ExpenseLineItem],), # noqa: E501 + 'id': (str,), # noqa: E501 + 'number': (str, none_type,), # noqa: E501 + 'customer_id': (str,), # noqa: E501 + 'supplier_id': (str,), # noqa: E501 + 'company_id': (str, none_type,), # noqa: E501 + 'department_id': (str,), # noqa: E501 + 'currency': (Currency,), # noqa: E501 + 'currency_rate': (float, none_type,), # noqa: E501 + 'type': (str, none_type,), # noqa: E501 + 'memo': (str, none_type,), # noqa: E501 + 'tax_rate': (LinkedTaxRate,), # noqa: E501 + 'total_amount': (float, none_type,), # noqa: E501 + 'custom_fields': ([CustomField],), # noqa: E501 + 'custom_mappings': ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type,), # noqa: E501 + 'updated_at': (datetime, none_type,), # noqa: E501 + 'created_at': (datetime, none_type,), # noqa: E501 + 'row_version': (str, none_type,), # noqa: E501 + 'pass_through': (PassThroughBody,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'transaction_date': 'transaction_date', # noqa: E501 + 'account_id': 'account_id', # noqa: E501 + 'line_items': 'line_items', # noqa: E501 + 'id': 'id', # noqa: E501 + 'number': 'number', # noqa: E501 + 'customer_id': 'customer_id', # noqa: E501 + 'supplier_id': 'supplier_id', # noqa: E501 + 'company_id': 'company_id', # noqa: E501 + 'department_id': 'department_id', # noqa: E501 + 'currency': 'currency', # noqa: E501 + 'currency_rate': 'currency_rate', # noqa: E501 + 'type': 'type', # noqa: E501 + 'memo': 'memo', # noqa: E501 + 'tax_rate': 'tax_rate', # noqa: E501 + 'total_amount': 'total_amount', # noqa: E501 + 'custom_fields': 'custom_fields', # noqa: E501 + 'custom_mappings': 'custom_mappings', # noqa: E501 + 'updated_at': 'updated_at', # noqa: E501 + 'created_at': 'created_at', # noqa: E501 + 'row_version': 'row_version', # noqa: E501 + 'pass_through': 'pass_through', # noqa: E501 + } + + read_only_vars = { + 'id', # noqa: E501 + 'custom_mappings', # noqa: E501 + 'updated_at', # noqa: E501 + 'created_at', # noqa: E501 + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, transaction_date, account_id, line_items, *args, **kwargs): # noqa: E501 + """Expense - a model defined in OpenAPI + + Args: + transaction_date (datetime, none_type): The date of the transaction - YYYY:MM::DDThh:mm:ss.sTZD + account_id (str): The unique identifier for the ledger account that this expense should be credited to. + line_items ([ExpenseLineItem]): Expense line items linked to this expense. + + 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,) + id (str): A unique identifier for an object.. [optional] # noqa: E501 + number (str, none_type): Number.. [optional] # noqa: E501 + customer_id (str): The ID of the customer this entity is linked to. Used for expenses that should be marked as billable to customers.. [optional] # noqa: E501 + supplier_id (str): The ID of the supplier this entity is linked to.. [optional] # noqa: E501 + company_id (str, none_type): The company or subsidiary id the transaction belongs to. [optional] # noqa: E501 + department_id (str): The ID of the department this expense is linked to.. [optional] # noqa: E501 + currency (Currency): [optional] # noqa: E501 + currency_rate (float, none_type): Currency Exchange Rate at the time entity was recorded/generated.. [optional] # noqa: E501 + type (str, none_type): The type of expense.. [optional] # noqa: E501 + memo (str, none_type): The memo of the expense.. [optional] # noqa: E501 + tax_rate (LinkedTaxRate): [optional] # noqa: E501 + total_amount (float, none_type): The total amount of the expense line item.. [optional] # noqa: E501 + custom_fields ([CustomField]): [optional] # noqa: E501 + custom_mappings ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): When custom mappings are configured on the resource, the result is included here.. [optional] # noqa: E501 + updated_at (datetime, none_type): The date and time when the object was last updated.. [optional] # noqa: E501 + created_at (datetime, none_type): The date and time when the object was created.. [optional] # noqa: E501 + row_version (str, none_type): A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object.. [optional] # noqa: E501 + pass_through (PassThroughBody): [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: + 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.transaction_date = transaction_date + self.account_id = account_id + self.line_items = line_items + 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, transaction_date, account_id, line_items, *args, **kwargs): # noqa: E501 + """Expense - a model defined in OpenAPI + + Args: + transaction_date (datetime, none_type): The date of the transaction - YYYY:MM::DDThh:mm:ss.sTZD + account_id (str): The unique identifier for the ledger account that this expense should be credited to. + line_items ([ExpenseLineItem]): Expense line items linked to this expense. + + 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,) + id (str): A unique identifier for an object.. [optional] # noqa: E501 + number (str, none_type): Number.. [optional] # noqa: E501 + customer_id (str): The ID of the customer this entity is linked to. Used for expenses that should be marked as billable to customers.. [optional] # noqa: E501 + supplier_id (str): The ID of the supplier this entity is linked to.. [optional] # noqa: E501 + company_id (str, none_type): The company or subsidiary id the transaction belongs to. [optional] # noqa: E501 + department_id (str): The ID of the department this expense is linked to.. [optional] # noqa: E501 + currency (Currency): [optional] # noqa: E501 + currency_rate (float, none_type): Currency Exchange Rate at the time entity was recorded/generated.. [optional] # noqa: E501 + type (str, none_type): The type of expense.. [optional] # noqa: E501 + memo (str, none_type): The memo of the expense.. [optional] # noqa: E501 + tax_rate (LinkedTaxRate): [optional] # noqa: E501 + total_amount (float, none_type): The total amount of the expense line item.. [optional] # noqa: E501 + custom_fields ([CustomField]): [optional] # noqa: E501 + custom_mappings ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): When custom mappings are configured on the resource, the result is included here.. [optional] # noqa: E501 + updated_at (datetime, none_type): The date and time when the object was last updated.. [optional] # noqa: E501 + created_at (datetime, none_type): The date and time when the object was created.. [optional] # noqa: E501 + row_version (str, none_type): A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object.. [optional] # noqa: E501 + pass_through (PassThroughBody): [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: + 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.transaction_date = transaction_date + self.account_id = account_id + self.line_items = line_items + 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/src/apideck/model/expense_line_item.py b/src/apideck/model/expense_line_item.py new file mode 100644 index 0000000000..75ce8a412b --- /dev/null +++ b/src/apideck/model/expense_line_item.py @@ -0,0 +1,299 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from apideck.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 apideck.exceptions import ApiAttributeError + + +def lazy_import(): + from apideck.model.linked_tax_rate import LinkedTaxRate + from apideck.model.linked_tracking_categories import LinkedTrackingCategories + globals()['LinkedTaxRate'] = LinkedTaxRate + globals()['LinkedTrackingCategories'] = LinkedTrackingCategories + + +class ExpenseLineItem(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 = { + } + + additional_properties_type = None + + _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 { + 'total_amount': (float, none_type,), # noqa: E501 + 'id': (str,), # noqa: E501 + 'tracking_categories': (LinkedTrackingCategories,), # noqa: E501 + 'account_id': (str,), # noqa: E501 + 'customer_id': (str,), # noqa: E501 + 'department_id': (str,), # noqa: E501 + 'location_id': (str,), # noqa: E501 + 'tax_rate': (LinkedTaxRate,), # noqa: E501 + 'description': (str, none_type,), # noqa: E501 + 'billable': (bool,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'total_amount': 'total_amount', # noqa: E501 + 'id': 'id', # noqa: E501 + 'tracking_categories': 'tracking_categories', # noqa: E501 + 'account_id': 'account_id', # noqa: E501 + 'customer_id': 'customer_id', # noqa: E501 + 'department_id': 'department_id', # noqa: E501 + 'location_id': 'location_id', # noqa: E501 + 'tax_rate': 'tax_rate', # noqa: E501 + 'description': 'description', # noqa: E501 + 'billable': 'billable', # noqa: E501 + } + + read_only_vars = { + 'id', # noqa: E501 + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, total_amount, *args, **kwargs): # noqa: E501 + """ExpenseLineItem - a model defined in OpenAPI + + Args: + total_amount (float, none_type): The total amount of the expense line item. + + 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,) + id (str): A unique identifier for an object.. [optional] # noqa: E501 + tracking_categories (LinkedTrackingCategories): [optional] # noqa: E501 + account_id (str): The unique identifier for the ledger account.. [optional] # noqa: E501 + customer_id (str): The ID of the customer this expense item is linked to.. [optional] # noqa: E501 + department_id (str): The ID of the department this expense item is linked to.. [optional] # noqa: E501 + location_id (str): The ID of the location this expense item is linked to.. [optional] # noqa: E501 + tax_rate (LinkedTaxRate): [optional] # noqa: E501 + description (str, none_type): The expense line item description. [optional] # noqa: E501 + billable (bool): Boolean that indicates if the line item is billable or not.. [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: + 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.total_amount = total_amount + 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, total_amount, *args, **kwargs): # noqa: E501 + """ExpenseLineItem - a model defined in OpenAPI + + Args: + total_amount (float, none_type): The total amount of the expense line item. + + 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,) + id (str): A unique identifier for an object.. [optional] # noqa: E501 + tracking_categories (LinkedTrackingCategories): [optional] # noqa: E501 + account_id (str): The unique identifier for the ledger account.. [optional] # noqa: E501 + customer_id (str): The ID of the customer this expense item is linked to.. [optional] # noqa: E501 + department_id (str): The ID of the department this expense item is linked to.. [optional] # noqa: E501 + location_id (str): The ID of the location this expense item is linked to.. [optional] # noqa: E501 + tax_rate (LinkedTaxRate): [optional] # noqa: E501 + description (str, none_type): The expense line item description. [optional] # noqa: E501 + billable (bool): Boolean that indicates if the line item is billable or not.. [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: + 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.total_amount = total_amount + 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/src/apideck/model/file_storage_event_type.py b/src/apideck/model/file_storage_event_type.py index 968c1b4fdf..e22b7297ab 100644 --- a/src/apideck/model/file_storage_event_type.py +++ b/src/apideck/model/file_storage_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/file_type.py b/src/apideck/model/file_type.py index 1d9afe5693..65ab5ef26e 100644 --- a/src/apideck/model/file_type.py +++ b/src/apideck/model/file_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/files_filter.py b/src/apideck/model/files_filter.py index c13688b70f..ed22e2c322 100644 --- a/src/apideck/model/files_filter.py +++ b/src/apideck/model/files_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/files_search.py b/src/apideck/model/files_search.py index afbdb58d96..e7627df9ec 100644 --- a/src/apideck/model/files_search.py +++ b/src/apideck/model/files_search.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/files_sort.py b/src/apideck/model/files_sort.py index f460526194..124bb524fa 100644 --- a/src/apideck/model/files_sort.py +++ b/src/apideck/model/files_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/folder.py b/src/apideck/model/folder.py index f44fc05474..a03b1c1312 100644 --- a/src/apideck/model/folder.py +++ b/src/apideck/model/folder.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/form_field.py b/src/apideck/model/form_field.py index 85b316f69f..d2d40e11e8 100644 --- a/src/apideck/model/form_field.py +++ b/src/apideck/model/form_field.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/form_field_option.py b/src/apideck/model/form_field_option.py index 89a19a1d70..aeade1ac6c 100644 --- a/src/apideck/model/form_field_option.py +++ b/src/apideck/model/form_field_option.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/form_field_option_group.py b/src/apideck/model/form_field_option_group.py index 2ddae104ac..9686ae0a21 100644 --- a/src/apideck/model/form_field_option_group.py +++ b/src/apideck/model/form_field_option_group.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/gender.py b/src/apideck/model/gender.py index 2aad33ef0b..52f9393161 100644 --- a/src/apideck/model/gender.py +++ b/src/apideck/model/gender.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_accounting_department_response.py b/src/apideck/model/get_accounting_department_response.py index 57de2290f2..59191a6508 100644 --- a/src/apideck/model/get_accounting_department_response.py +++ b/src/apideck/model/get_accounting_department_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_accounting_departments_response.py b/src/apideck/model/get_accounting_departments_response.py index 7d307682d3..7321143ac1 100644 --- a/src/apideck/model/get_accounting_departments_response.py +++ b/src/apideck/model/get_accounting_departments_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_accounting_location_response.py b/src/apideck/model/get_accounting_location_response.py index dab597a322..374d82e295 100644 --- a/src/apideck/model/get_accounting_location_response.py +++ b/src/apideck/model/get_accounting_location_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_accounting_locations_response.py b/src/apideck/model/get_accounting_locations_response.py index 6a825280d8..d02ded623b 100644 --- a/src/apideck/model/get_accounting_locations_response.py +++ b/src/apideck/model/get_accounting_locations_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_activities_response.py b/src/apideck/model/get_activities_response.py index 695243279a..893edc405b 100644 --- a/src/apideck/model/get_activities_response.py +++ b/src/apideck/model/get_activities_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_activity_response.py b/src/apideck/model/get_activity_response.py index e17f1bb3f9..04511cfc08 100644 --- a/src/apideck/model/get_activity_response.py +++ b/src/apideck/model/get_activity_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_api_resource_coverage_response.py b/src/apideck/model/get_api_resource_coverage_response.py index 4735396815..a2072c0607 100644 --- a/src/apideck/model/get_api_resource_coverage_response.py +++ b/src/apideck/model/get_api_resource_coverage_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_api_resource_response.py b/src/apideck/model/get_api_resource_response.py index b2d598d61b..f254789faf 100644 --- a/src/apideck/model/get_api_resource_response.py +++ b/src/apideck/model/get_api_resource_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_api_response.py b/src/apideck/model/get_api_response.py index 1a8ab87ff3..9aba332fca 100644 --- a/src/apideck/model/get_api_response.py +++ b/src/apideck/model/get_api_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_apis_response.py b/src/apideck/model/get_apis_response.py index d51839115c..d0b99afa8d 100644 --- a/src/apideck/model/get_apis_response.py +++ b/src/apideck/model/get_apis_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_applicant_response.py b/src/apideck/model/get_applicant_response.py index 7191fc3c8e..05c3db1b01 100644 --- a/src/apideck/model/get_applicant_response.py +++ b/src/apideck/model/get_applicant_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_applicants_response.py b/src/apideck/model/get_applicants_response.py index 7db225881c..0a079c5e58 100644 --- a/src/apideck/model/get_applicants_response.py +++ b/src/apideck/model/get_applicants_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_application_response.py b/src/apideck/model/get_application_response.py index f439da0ba8..a8d070d206 100644 --- a/src/apideck/model/get_application_response.py +++ b/src/apideck/model/get_application_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_applications_response.py b/src/apideck/model/get_applications_response.py index f9899244bf..a18e9aa0ff 100644 --- a/src/apideck/model/get_applications_response.py +++ b/src/apideck/model/get_applications_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_attachment_response.py b/src/apideck/model/get_attachment_response.py index c645bd714b..eac6c80065 100644 --- a/src/apideck/model/get_attachment_response.py +++ b/src/apideck/model/get_attachment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_attachments_response.py b/src/apideck/model/get_attachments_response.py index c38a605664..f54b3e8070 100644 --- a/src/apideck/model/get_attachments_response.py +++ b/src/apideck/model/get_attachments_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_balance_sheet_response.py b/src/apideck/model/get_balance_sheet_response.py index 7aa7c79b7a..37c189e70b 100644 --- a/src/apideck/model/get_balance_sheet_response.py +++ b/src/apideck/model/get_balance_sheet_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_bill_payment_response.py b/src/apideck/model/get_bill_payment_response.py new file mode 100644 index 0000000000..d8efcbcaf6 --- /dev/null +++ b/src/apideck/model/get_bill_payment_response.py @@ -0,0 +1,297 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from apideck.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 apideck.exceptions import ApiAttributeError + + +def lazy_import(): + from apideck.model.bill_payment import BillPayment + globals()['BillPayment'] = BillPayment + + +class GetBillPaymentResponse(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + lazy_import() + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + lazy_import() + return { + 'status_code': (int,), # noqa: E501 + 'status': (str,), # noqa: E501 + 'service': (str,), # noqa: E501 + 'resource': (str,), # noqa: E501 + 'operation': (str,), # noqa: E501 + 'data': (BillPayment,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'status_code': 'status_code', # noqa: E501 + 'status': 'status', # noqa: E501 + 'service': 'service', # noqa: E501 + 'resource': 'resource', # noqa: E501 + 'operation': 'operation', # noqa: E501 + 'data': 'data', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """GetBillPaymentResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data (BillPayment): + + 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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """GetBillPaymentResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data (BillPayment): + + 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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + 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/src/apideck/model/get_bill_payments_response.py b/src/apideck/model/get_bill_payments_response.py new file mode 100644 index 0000000000..af6c277402 --- /dev/null +++ b/src/apideck/model/get_bill_payments_response.py @@ -0,0 +1,309 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from apideck.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 apideck.exceptions import ApiAttributeError + + +def lazy_import(): + from apideck.model.bill_payment import BillPayment + from apideck.model.links import Links + from apideck.model.meta import Meta + globals()['BillPayment'] = BillPayment + globals()['Links'] = Links + globals()['Meta'] = Meta + + +class GetBillPaymentsResponse(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + lazy_import() + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + lazy_import() + return { + 'status_code': (int,), # noqa: E501 + 'status': (str,), # noqa: E501 + 'service': (str,), # noqa: E501 + 'resource': (str,), # noqa: E501 + 'operation': (str,), # noqa: E501 + 'data': ([BillPayment],), # noqa: E501 + 'meta': (Meta,), # noqa: E501 + 'links': (Links,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'status_code': 'status_code', # noqa: E501 + 'status': 'status', # noqa: E501 + 'service': 'service', # noqa: E501 + 'resource': 'resource', # noqa: E501 + 'operation': 'operation', # noqa: E501 + 'data': 'data', # noqa: E501 + 'meta': 'meta', # noqa: E501 + 'links': 'links', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """GetBillPaymentsResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data ([BillPayment]): + + 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,) + meta (Meta): [optional] # noqa: E501 + links (Links): [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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """GetBillPaymentsResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data ([BillPayment]): + + 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,) + meta (Meta): [optional] # noqa: E501 + links (Links): [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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + 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/src/apideck/model/get_bill_response.py b/src/apideck/model/get_bill_response.py index b3fa9c7116..5479e0420c 100644 --- a/src/apideck/model/get_bill_response.py +++ b/src/apideck/model/get_bill_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_bills_response.py b/src/apideck/model/get_bills_response.py index 3f45b0ce6f..a3210ea47e 100644 --- a/src/apideck/model/get_bills_response.py +++ b/src/apideck/model/get_bills_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_collection_response.py b/src/apideck/model/get_collection_response.py index 209bdccb94..9de122bd94 100644 --- a/src/apideck/model/get_collection_response.py +++ b/src/apideck/model/get_collection_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_collection_tags_response.py b/src/apideck/model/get_collection_tags_response.py index 7390f3a38b..eb13050f84 100644 --- a/src/apideck/model/get_collection_tags_response.py +++ b/src/apideck/model/get_collection_tags_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_collection_user_response.py b/src/apideck/model/get_collection_user_response.py index e5575e6ce6..e210b056f9 100644 --- a/src/apideck/model/get_collection_user_response.py +++ b/src/apideck/model/get_collection_user_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_collection_users_response.py b/src/apideck/model/get_collection_users_response.py index bc4dcb0dae..430776e6f2 100644 --- a/src/apideck/model/get_collection_users_response.py +++ b/src/apideck/model/get_collection_users_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_collections_response.py b/src/apideck/model/get_collections_response.py index d5de43e461..df6a2651b2 100644 --- a/src/apideck/model/get_collections_response.py +++ b/src/apideck/model/get_collections_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_comment_response.py b/src/apideck/model/get_comment_response.py index d9b79c72be..fba037ff7d 100644 --- a/src/apideck/model/get_comment_response.py +++ b/src/apideck/model/get_comment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_comments_response.py b/src/apideck/model/get_comments_response.py index d13627a601..5d2a2004ba 100644 --- a/src/apideck/model/get_comments_response.py +++ b/src/apideck/model/get_comments_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_companies_response.py b/src/apideck/model/get_companies_response.py index b8b12b4def..2e50cbe120 100644 --- a/src/apideck/model/get_companies_response.py +++ b/src/apideck/model/get_companies_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_company_info_response.py b/src/apideck/model/get_company_info_response.py index 664498eb09..edaf7dffe4 100644 --- a/src/apideck/model/get_company_info_response.py +++ b/src/apideck/model/get_company_info_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_company_response.py b/src/apideck/model/get_company_response.py index c6f09f55b2..6ef624d21f 100644 --- a/src/apideck/model/get_company_response.py +++ b/src/apideck/model/get_company_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_connection_response.py b/src/apideck/model/get_connection_response.py index 20423a9e36..4184754a6c 100644 --- a/src/apideck/model/get_connection_response.py +++ b/src/apideck/model/get_connection_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_connections_response.py b/src/apideck/model/get_connections_response.py index e391d32a3a..e99087e75a 100644 --- a/src/apideck/model/get_connections_response.py +++ b/src/apideck/model/get_connections_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_connector_resource_example_response.py b/src/apideck/model/get_connector_resource_example_response.py index 329a841663..550c570c6b 100644 --- a/src/apideck/model/get_connector_resource_example_response.py +++ b/src/apideck/model/get_connector_resource_example_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_connector_resource_example_response_data.py b/src/apideck/model/get_connector_resource_example_response_data.py index 0ed533cd14..0d44478ea0 100644 --- a/src/apideck/model/get_connector_resource_example_response_data.py +++ b/src/apideck/model/get_connector_resource_example_response_data.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_connector_resource_response.py b/src/apideck/model/get_connector_resource_response.py index fa6a5bf27c..623612d823 100644 --- a/src/apideck/model/get_connector_resource_response.py +++ b/src/apideck/model/get_connector_resource_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_connector_resource_schema_response.py b/src/apideck/model/get_connector_resource_schema_response.py index 131a117af5..9aac033157 100644 --- a/src/apideck/model/get_connector_resource_schema_response.py +++ b/src/apideck/model/get_connector_resource_schema_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_connector_response.py b/src/apideck/model/get_connector_response.py index 50e053787f..4abe4d704d 100644 --- a/src/apideck/model/get_connector_response.py +++ b/src/apideck/model/get_connector_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_connectors_response.py b/src/apideck/model/get_connectors_response.py index 91e99d7b64..d1f4e159a3 100644 --- a/src/apideck/model/get_connectors_response.py +++ b/src/apideck/model/get_connectors_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_consumer_response.py b/src/apideck/model/get_consumer_response.py index 647764a280..f08a4b9802 100644 --- a/src/apideck/model/get_consumer_response.py +++ b/src/apideck/model/get_consumer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_consumers_response.py b/src/apideck/model/get_consumers_response.py index 64e9c949ff..8811818d8c 100644 --- a/src/apideck/model/get_consumers_response.py +++ b/src/apideck/model/get_consumers_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_consumers_response_data.py b/src/apideck/model/get_consumers_response_data.py index 6216a9e80b..f4e407d125 100644 --- a/src/apideck/model/get_consumers_response_data.py +++ b/src/apideck/model/get_consumers_response_data.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_contact_response.py b/src/apideck/model/get_contact_response.py index 4fbd4567b9..f40bd3c76e 100644 --- a/src/apideck/model/get_contact_response.py +++ b/src/apideck/model/get_contact_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_contacts_response.py b/src/apideck/model/get_contacts_response.py index 264cf849a5..0b1edecd6c 100644 --- a/src/apideck/model/get_contacts_response.py +++ b/src/apideck/model/get_contacts_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_credit_note_response.py b/src/apideck/model/get_credit_note_response.py index ee1a4555b9..91c10dc307 100644 --- a/src/apideck/model/get_credit_note_response.py +++ b/src/apideck/model/get_credit_note_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_credit_notes_response.py b/src/apideck/model/get_credit_notes_response.py index 34e86d609b..b8589da39c 100644 --- a/src/apideck/model/get_credit_notes_response.py +++ b/src/apideck/model/get_credit_notes_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_custom_fields_response.py b/src/apideck/model/get_custom_fields_response.py index 0902d12a83..cc569f3ca8 100644 --- a/src/apideck/model/get_custom_fields_response.py +++ b/src/apideck/model/get_custom_fields_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_custom_mapping_response.py b/src/apideck/model/get_custom_mapping_response.py index a4adb15c61..d6a66268a8 100644 --- a/src/apideck/model/get_custom_mapping_response.py +++ b/src/apideck/model/get_custom_mapping_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_customer_response.py b/src/apideck/model/get_customer_response.py index 6233b3eb3f..6e18f89913 100644 --- a/src/apideck/model/get_customer_response.py +++ b/src/apideck/model/get_customer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_customers_response.py b/src/apideck/model/get_customers_response.py index 3602a746e3..abe7a04070 100644 --- a/src/apideck/model/get_customers_response.py +++ b/src/apideck/model/get_customers_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_department_response.py b/src/apideck/model/get_department_response.py index a56389c877..ca18b58a99 100644 --- a/src/apideck/model/get_department_response.py +++ b/src/apideck/model/get_department_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_departments_response.py b/src/apideck/model/get_departments_response.py index 84753b07b5..b5d86e409b 100644 --- a/src/apideck/model/get_departments_response.py +++ b/src/apideck/model/get_departments_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_drive_group_response.py b/src/apideck/model/get_drive_group_response.py index fbd9dd2b18..5becedd72c 100644 --- a/src/apideck/model/get_drive_group_response.py +++ b/src/apideck/model/get_drive_group_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_drive_groups_response.py b/src/apideck/model/get_drive_groups_response.py index 0780ff2287..25512fd1dd 100644 --- a/src/apideck/model/get_drive_groups_response.py +++ b/src/apideck/model/get_drive_groups_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_drive_response.py b/src/apideck/model/get_drive_response.py index ea76ee1321..f4026eb52e 100644 --- a/src/apideck/model/get_drive_response.py +++ b/src/apideck/model/get_drive_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_drives_response.py b/src/apideck/model/get_drives_response.py index f8b9c29693..691c76e444 100644 --- a/src/apideck/model/get_drives_response.py +++ b/src/apideck/model/get_drives_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_ecommerce_customer_response.py b/src/apideck/model/get_ecommerce_customer_response.py index b574dd6709..7b161c4fb1 100644 --- a/src/apideck/model/get_ecommerce_customer_response.py +++ b/src/apideck/model/get_ecommerce_customer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_ecommerce_customers_response.py b/src/apideck/model/get_ecommerce_customers_response.py index 46c993277c..eb76b24bf1 100644 --- a/src/apideck/model/get_ecommerce_customers_response.py +++ b/src/apideck/model/get_ecommerce_customers_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_ecommerce_order_response.py b/src/apideck/model/get_ecommerce_order_response.py index e853a6495f..71327e3e93 100644 --- a/src/apideck/model/get_ecommerce_order_response.py +++ b/src/apideck/model/get_ecommerce_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_ecommerce_orders_response.py b/src/apideck/model/get_ecommerce_orders_response.py index e1251a2fda..d6fe336a47 100644 --- a/src/apideck/model/get_ecommerce_orders_response.py +++ b/src/apideck/model/get_ecommerce_orders_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_employee_payroll_response.py b/src/apideck/model/get_employee_payroll_response.py index 4085ef22a4..3d9bd5fcfc 100644 --- a/src/apideck/model/get_employee_payroll_response.py +++ b/src/apideck/model/get_employee_payroll_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_employee_payrolls_response.py b/src/apideck/model/get_employee_payrolls_response.py index 4f58b301ea..64f1f7d1c3 100644 --- a/src/apideck/model/get_employee_payrolls_response.py +++ b/src/apideck/model/get_employee_payrolls_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_employee_response.py b/src/apideck/model/get_employee_response.py index c01e1284b5..b7d10751b5 100644 --- a/src/apideck/model/get_employee_response.py +++ b/src/apideck/model/get_employee_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_employee_schedules_response.py b/src/apideck/model/get_employee_schedules_response.py index d87e626daa..75f5736577 100644 --- a/src/apideck/model/get_employee_schedules_response.py +++ b/src/apideck/model/get_employee_schedules_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_employees_response.py b/src/apideck/model/get_employees_response.py index 6232567991..51a83fda24 100644 --- a/src/apideck/model/get_employees_response.py +++ b/src/apideck/model/get_employees_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_expense_response.py b/src/apideck/model/get_expense_response.py new file mode 100644 index 0000000000..fdfb31c51c --- /dev/null +++ b/src/apideck/model/get_expense_response.py @@ -0,0 +1,297 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from apideck.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 apideck.exceptions import ApiAttributeError + + +def lazy_import(): + from apideck.model.expense import Expense + globals()['Expense'] = Expense + + +class GetExpenseResponse(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + lazy_import() + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + lazy_import() + return { + 'status_code': (int,), # noqa: E501 + 'status': (str,), # noqa: E501 + 'service': (str,), # noqa: E501 + 'resource': (str,), # noqa: E501 + 'operation': (str,), # noqa: E501 + 'data': (Expense,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'status_code': 'status_code', # noqa: E501 + 'status': 'status', # noqa: E501 + 'service': 'service', # noqa: E501 + 'resource': 'resource', # noqa: E501 + 'operation': 'operation', # noqa: E501 + 'data': 'data', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """GetExpenseResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data (Expense): + + 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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """GetExpenseResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data (Expense): + + 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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + 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/src/apideck/model/get_expenses_response.py b/src/apideck/model/get_expenses_response.py new file mode 100644 index 0000000000..d0775599a8 --- /dev/null +++ b/src/apideck/model/get_expenses_response.py @@ -0,0 +1,309 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from apideck.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 apideck.exceptions import ApiAttributeError + + +def lazy_import(): + from apideck.model.expense import Expense + from apideck.model.links import Links + from apideck.model.meta import Meta + globals()['Expense'] = Expense + globals()['Links'] = Links + globals()['Meta'] = Meta + + +class GetExpensesResponse(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + lazy_import() + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + lazy_import() + return { + 'status_code': (int,), # noqa: E501 + 'status': (str,), # noqa: E501 + 'service': (str,), # noqa: E501 + 'resource': (str,), # noqa: E501 + 'operation': (str,), # noqa: E501 + 'data': ([Expense],), # noqa: E501 + 'meta': (Meta,), # noqa: E501 + 'links': (Links,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'status_code': 'status_code', # noqa: E501 + 'status': 'status', # noqa: E501 + 'service': 'service', # noqa: E501 + 'resource': 'resource', # noqa: E501 + 'operation': 'operation', # noqa: E501 + 'data': 'data', # noqa: E501 + 'meta': 'meta', # noqa: E501 + 'links': 'links', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """GetExpensesResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data ([Expense]): + + 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,) + meta (Meta): [optional] # noqa: E501 + links (Links): [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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """GetExpensesResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data ([Expense]): + + 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,) + meta (Meta): [optional] # noqa: E501 + links (Links): [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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + 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/src/apideck/model/get_file_response.py b/src/apideck/model/get_file_response.py index 2d5aaa4904..482435e159 100644 --- a/src/apideck/model/get_file_response.py +++ b/src/apideck/model/get_file_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_files_response.py b/src/apideck/model/get_files_response.py index 68a087b0da..658903439a 100644 --- a/src/apideck/model/get_files_response.py +++ b/src/apideck/model/get_files_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_folder_response.py b/src/apideck/model/get_folder_response.py index 2a7c8c9727..41fa3f6e2c 100644 --- a/src/apideck/model/get_folder_response.py +++ b/src/apideck/model/get_folder_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_folders_response.py b/src/apideck/model/get_folders_response.py index a9b5c8be71..252e6c21a1 100644 --- a/src/apideck/model/get_folders_response.py +++ b/src/apideck/model/get_folders_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_hris_companies_response.py b/src/apideck/model/get_hris_companies_response.py index 1eaf218140..48c6953f09 100644 --- a/src/apideck/model/get_hris_companies_response.py +++ b/src/apideck/model/get_hris_companies_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_hris_company_response.py b/src/apideck/model/get_hris_company_response.py index e8d51241df..0818f2b0ec 100644 --- a/src/apideck/model/get_hris_company_response.py +++ b/src/apideck/model/get_hris_company_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_hris_job_response.py b/src/apideck/model/get_hris_job_response.py index 921122f211..0baa03207a 100644 --- a/src/apideck/model/get_hris_job_response.py +++ b/src/apideck/model/get_hris_job_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_hris_jobs_response.py b/src/apideck/model/get_hris_jobs_response.py index 20b5019da4..42f98b3f72 100644 --- a/src/apideck/model/get_hris_jobs_response.py +++ b/src/apideck/model/get_hris_jobs_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_invoice_item_response.py b/src/apideck/model/get_invoice_item_response.py index 1232b3f685..e21450a5fe 100644 --- a/src/apideck/model/get_invoice_item_response.py +++ b/src/apideck/model/get_invoice_item_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_invoice_items_response.py b/src/apideck/model/get_invoice_items_response.py index 679d7543ac..2047dbc9a0 100644 --- a/src/apideck/model/get_invoice_items_response.py +++ b/src/apideck/model/get_invoice_items_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_invoice_response.py b/src/apideck/model/get_invoice_response.py index 18223c8991..29f13743bf 100644 --- a/src/apideck/model/get_invoice_response.py +++ b/src/apideck/model/get_invoice_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_invoices_response.py b/src/apideck/model/get_invoices_response.py index 5fe8bf03f5..63f036e50f 100644 --- a/src/apideck/model/get_invoices_response.py +++ b/src/apideck/model/get_invoices_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_item_response.py b/src/apideck/model/get_item_response.py index b0513f12e9..5c8b334208 100644 --- a/src/apideck/model/get_item_response.py +++ b/src/apideck/model/get_item_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_items_response.py b/src/apideck/model/get_items_response.py index c7cecd5a62..28945759c8 100644 --- a/src/apideck/model/get_items_response.py +++ b/src/apideck/model/get_items_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_job_response.py b/src/apideck/model/get_job_response.py index 8bb6481340..695f2e27b5 100644 --- a/src/apideck/model/get_job_response.py +++ b/src/apideck/model/get_job_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_jobs_response.py b/src/apideck/model/get_jobs_response.py index 66064a784c..f0ba507363 100644 --- a/src/apideck/model/get_jobs_response.py +++ b/src/apideck/model/get_jobs_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_journal_entries_response.py b/src/apideck/model/get_journal_entries_response.py index 99661f1ec0..616572d6c0 100644 --- a/src/apideck/model/get_journal_entries_response.py +++ b/src/apideck/model/get_journal_entries_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_journal_entry_response.py b/src/apideck/model/get_journal_entry_response.py index a5dc7bb68f..1414b99b33 100644 --- a/src/apideck/model/get_journal_entry_response.py +++ b/src/apideck/model/get_journal_entry_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_lead_response.py b/src/apideck/model/get_lead_response.py index dc8d2c9c31..f081cbb64e 100644 --- a/src/apideck/model/get_lead_response.py +++ b/src/apideck/model/get_lead_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_leads_response.py b/src/apideck/model/get_leads_response.py index c59fc012e2..81b00d44f5 100644 --- a/src/apideck/model/get_leads_response.py +++ b/src/apideck/model/get_leads_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_ledger_account_response.py b/src/apideck/model/get_ledger_account_response.py index c10b5b2917..e522a65644 100644 --- a/src/apideck/model/get_ledger_account_response.py +++ b/src/apideck/model/get_ledger_account_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_ledger_accounts_response.py b/src/apideck/model/get_ledger_accounts_response.py index 7bc0786dd0..032ddb05eb 100644 --- a/src/apideck/model/get_ledger_accounts_response.py +++ b/src/apideck/model/get_ledger_accounts_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_location_response.py b/src/apideck/model/get_location_response.py index d25921acd0..80634ee9de 100644 --- a/src/apideck/model/get_location_response.py +++ b/src/apideck/model/get_location_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_locations_response.py b/src/apideck/model/get_locations_response.py index 0fd77a094c..34a4b42e58 100644 --- a/src/apideck/model/get_locations_response.py +++ b/src/apideck/model/get_locations_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_logs_response.py b/src/apideck/model/get_logs_response.py index 7f1ac39dfa..0bf0eb468f 100644 --- a/src/apideck/model/get_logs_response.py +++ b/src/apideck/model/get_logs_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_merchant_response.py b/src/apideck/model/get_merchant_response.py index f27d9a13c8..6cee31af8f 100644 --- a/src/apideck/model/get_merchant_response.py +++ b/src/apideck/model/get_merchant_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_merchants_response.py b/src/apideck/model/get_merchants_response.py index beb4278100..d7e3efbb12 100644 --- a/src/apideck/model/get_merchants_response.py +++ b/src/apideck/model/get_merchants_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_message_response.py b/src/apideck/model/get_message_response.py index d0b80488db..bf04648482 100644 --- a/src/apideck/model/get_message_response.py +++ b/src/apideck/model/get_message_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_messages_response.py b/src/apideck/model/get_messages_response.py index d4e8051d18..d8c3d0d01a 100644 --- a/src/apideck/model/get_messages_response.py +++ b/src/apideck/model/get_messages_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_modifier_group_response.py b/src/apideck/model/get_modifier_group_response.py index fbf3a34b0d..5c55cb15c7 100644 --- a/src/apideck/model/get_modifier_group_response.py +++ b/src/apideck/model/get_modifier_group_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_modifier_groups_response.py b/src/apideck/model/get_modifier_groups_response.py index 50f5dc6976..bd73076f8e 100644 --- a/src/apideck/model/get_modifier_groups_response.py +++ b/src/apideck/model/get_modifier_groups_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_modifier_response.py b/src/apideck/model/get_modifier_response.py index a1b3cda8c8..00f1a24adb 100644 --- a/src/apideck/model/get_modifier_response.py +++ b/src/apideck/model/get_modifier_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_modifiers_response.py b/src/apideck/model/get_modifiers_response.py index 88d92ebe37..ac8710bee7 100644 --- a/src/apideck/model/get_modifiers_response.py +++ b/src/apideck/model/get_modifiers_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_note_response.py b/src/apideck/model/get_note_response.py index 9c1999690a..11b3d5149d 100644 --- a/src/apideck/model/get_note_response.py +++ b/src/apideck/model/get_note_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_notes_response.py b/src/apideck/model/get_notes_response.py index 2b10843637..6d448f3ff3 100644 --- a/src/apideck/model/get_notes_response.py +++ b/src/apideck/model/get_notes_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_opportunities_response.py b/src/apideck/model/get_opportunities_response.py index 347c50a32f..f243d8c0eb 100644 --- a/src/apideck/model/get_opportunities_response.py +++ b/src/apideck/model/get_opportunities_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_opportunity_response.py b/src/apideck/model/get_opportunity_response.py index 1eb16db1cb..8036736ab6 100644 --- a/src/apideck/model/get_opportunity_response.py +++ b/src/apideck/model/get_opportunity_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_order_response.py b/src/apideck/model/get_order_response.py index 7bbd04afba..787bc15340 100644 --- a/src/apideck/model/get_order_response.py +++ b/src/apideck/model/get_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_order_type_response.py b/src/apideck/model/get_order_type_response.py index 9f1dc0ea41..67cacdcd9e 100644 --- a/src/apideck/model/get_order_type_response.py +++ b/src/apideck/model/get_order_type_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_order_types_response.py b/src/apideck/model/get_order_types_response.py index a81357b9b5..c5c857f8f0 100644 --- a/src/apideck/model/get_order_types_response.py +++ b/src/apideck/model/get_order_types_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_orders_response.py b/src/apideck/model/get_orders_response.py index 8c66561974..949ec4e97e 100644 --- a/src/apideck/model/get_orders_response.py +++ b/src/apideck/model/get_orders_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_payment_response.py b/src/apideck/model/get_payment_response.py index 0a648c7a00..8f76e009cd 100644 --- a/src/apideck/model/get_payment_response.py +++ b/src/apideck/model/get_payment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_payments_response.py b/src/apideck/model/get_payments_response.py index e05deb5d76..35ce75d77c 100644 --- a/src/apideck/model/get_payments_response.py +++ b/src/apideck/model/get_payments_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_payroll_response.py b/src/apideck/model/get_payroll_response.py index aa71e56cce..a42f2c9920 100644 --- a/src/apideck/model/get_payroll_response.py +++ b/src/apideck/model/get_payroll_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_payrolls_response.py b/src/apideck/model/get_payrolls_response.py index 76496e7c95..61bfe50bbf 100644 --- a/src/apideck/model/get_payrolls_response.py +++ b/src/apideck/model/get_payrolls_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_pipeline_response.py b/src/apideck/model/get_pipeline_response.py index f12609142f..4e24fb6fab 100644 --- a/src/apideck/model/get_pipeline_response.py +++ b/src/apideck/model/get_pipeline_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_pipelines_response.py b/src/apideck/model/get_pipelines_response.py index 1a7ea7c75b..40c52224e4 100644 --- a/src/apideck/model/get_pipelines_response.py +++ b/src/apideck/model/get_pipelines_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_pos_payment_response.py b/src/apideck/model/get_pos_payment_response.py index e4d478982a..dd0cd1fa88 100644 --- a/src/apideck/model/get_pos_payment_response.py +++ b/src/apideck/model/get_pos_payment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_pos_payments_response.py b/src/apideck/model/get_pos_payments_response.py index 0910ac627e..bdb1e61816 100644 --- a/src/apideck/model/get_pos_payments_response.py +++ b/src/apideck/model/get_pos_payments_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_product_response.py b/src/apideck/model/get_product_response.py index 2ce47f2b47..1576bcafff 100644 --- a/src/apideck/model/get_product_response.py +++ b/src/apideck/model/get_product_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_products_response.py b/src/apideck/model/get_products_response.py index b04707db2f..77a86904db 100644 --- a/src/apideck/model/get_products_response.py +++ b/src/apideck/model/get_products_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_profit_and_loss_response.py b/src/apideck/model/get_profit_and_loss_response.py index 9fa181a54c..add78a5ab4 100644 --- a/src/apideck/model/get_profit_and_loss_response.py +++ b/src/apideck/model/get_profit_and_loss_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_purchase_order_response.py b/src/apideck/model/get_purchase_order_response.py index 7ae64c8557..8c0ac8a48b 100644 --- a/src/apideck/model/get_purchase_order_response.py +++ b/src/apideck/model/get_purchase_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_purchase_orders_response.py b/src/apideck/model/get_purchase_orders_response.py index 1e4ede355e..e406ae79a5 100644 --- a/src/apideck/model/get_purchase_orders_response.py +++ b/src/apideck/model/get_purchase_orders_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_resource_example_response.py b/src/apideck/model/get_resource_example_response.py index 98f6fbaaf2..806a4fb141 100644 --- a/src/apideck/model/get_resource_example_response.py +++ b/src/apideck/model/get_resource_example_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_resource_schema_response.py b/src/apideck/model/get_resource_schema_response.py index 099f85d782..f1eae83d33 100644 --- a/src/apideck/model/get_resource_schema_response.py +++ b/src/apideck/model/get_resource_schema_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_shared_link_response.py b/src/apideck/model/get_shared_link_response.py index 7ab8db9028..c933459ce4 100644 --- a/src/apideck/model/get_shared_link_response.py +++ b/src/apideck/model/get_shared_link_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_shared_links_response.py b/src/apideck/model/get_shared_links_response.py index 22ca5cde23..4ebd0daa11 100644 --- a/src/apideck/model/get_shared_links_response.py +++ b/src/apideck/model/get_shared_links_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_store_response.py b/src/apideck/model/get_store_response.py index 1a0bb290ad..cc75dfab36 100644 --- a/src/apideck/model/get_store_response.py +++ b/src/apideck/model/get_store_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_stores_response.py b/src/apideck/model/get_stores_response.py index 02b585c817..972dd68db3 100644 --- a/src/apideck/model/get_stores_response.py +++ b/src/apideck/model/get_stores_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_subsidiaries_response.py b/src/apideck/model/get_subsidiaries_response.py index 73365e08d6..b91e33b8af 100644 --- a/src/apideck/model/get_subsidiaries_response.py +++ b/src/apideck/model/get_subsidiaries_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_subsidiary_response.py b/src/apideck/model/get_subsidiary_response.py index 6de19d673f..a060213834 100644 --- a/src/apideck/model/get_subsidiary_response.py +++ b/src/apideck/model/get_subsidiary_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_supplier_response.py b/src/apideck/model/get_supplier_response.py index 9d8f83588c..ee74e702fd 100644 --- a/src/apideck/model/get_supplier_response.py +++ b/src/apideck/model/get_supplier_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_suppliers_response.py b/src/apideck/model/get_suppliers_response.py index 1bd7059ab8..bb3cee3e3d 100644 --- a/src/apideck/model/get_suppliers_response.py +++ b/src/apideck/model/get_suppliers_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_tax_rate_response.py b/src/apideck/model/get_tax_rate_response.py index 7aaeb78a06..59d7451f9d 100644 --- a/src/apideck/model/get_tax_rate_response.py +++ b/src/apideck/model/get_tax_rate_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_tax_rates_response.py b/src/apideck/model/get_tax_rates_response.py index 6bef0d660c..82e3643a9e 100644 --- a/src/apideck/model/get_tax_rates_response.py +++ b/src/apideck/model/get_tax_rates_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_tender_response.py b/src/apideck/model/get_tender_response.py index 7c7d8dc6d0..ea7fcd6886 100644 --- a/src/apideck/model/get_tender_response.py +++ b/src/apideck/model/get_tender_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_tenders_response.py b/src/apideck/model/get_tenders_response.py index 90f7b27d8d..83e5939c83 100644 --- a/src/apideck/model/get_tenders_response.py +++ b/src/apideck/model/get_tenders_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_ticket_response.py b/src/apideck/model/get_ticket_response.py index d559266a70..c375d7640e 100644 --- a/src/apideck/model/get_ticket_response.py +++ b/src/apideck/model/get_ticket_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_tickets_response.py b/src/apideck/model/get_tickets_response.py index dfee3d923a..a8f377447c 100644 --- a/src/apideck/model/get_tickets_response.py +++ b/src/apideck/model/get_tickets_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_time_off_request_response.py b/src/apideck/model/get_time_off_request_response.py index c160fb7845..9d36d8d649 100644 --- a/src/apideck/model/get_time_off_request_response.py +++ b/src/apideck/model/get_time_off_request_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_time_off_requests_response.py b/src/apideck/model/get_time_off_requests_response.py index edd8ff14e7..e7b6e9ca28 100644 --- a/src/apideck/model/get_time_off_requests_response.py +++ b/src/apideck/model/get_time_off_requests_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_tracking_categories_response.py b/src/apideck/model/get_tracking_categories_response.py index 5d44d23f07..75ae3e3eac 100644 --- a/src/apideck/model/get_tracking_categories_response.py +++ b/src/apideck/model/get_tracking_categories_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_tracking_category_response.py b/src/apideck/model/get_tracking_category_response.py index cbdaacb8c3..2aa70fb22c 100644 --- a/src/apideck/model/get_tracking_category_response.py +++ b/src/apideck/model/get_tracking_category_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_upload_session_response.py b/src/apideck/model/get_upload_session_response.py index c60447e008..6cf75fc85a 100644 --- a/src/apideck/model/get_upload_session_response.py +++ b/src/apideck/model/get_upload_session_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_user_response.py b/src/apideck/model/get_user_response.py index 6fa99d010d..9258e36b87 100644 --- a/src/apideck/model/get_user_response.py +++ b/src/apideck/model/get_user_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_users_response.py b/src/apideck/model/get_users_response.py index 7ee11af6f9..59ce1c8192 100644 --- a/src/apideck/model/get_users_response.py +++ b/src/apideck/model/get_users_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_webhook_event_logs_response.py b/src/apideck/model/get_webhook_event_logs_response.py index 8e31393f1e..a37e9cf7f5 100644 --- a/src/apideck/model/get_webhook_event_logs_response.py +++ b/src/apideck/model/get_webhook_event_logs_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_webhook_response.py b/src/apideck/model/get_webhook_response.py index 6c99a5e308..cb91049566 100644 --- a/src/apideck/model/get_webhook_response.py +++ b/src/apideck/model/get_webhook_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/get_webhooks_response.py b/src/apideck/model/get_webhooks_response.py index a4bb07edda..bd4eb5d69b 100644 --- a/src/apideck/model/get_webhooks_response.py +++ b/src/apideck/model/get_webhooks_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/hris_company.py b/src/apideck/model/hris_company.py index 36688ec43a..9d4d161563 100644 --- a/src/apideck/model/hris_company.py +++ b/src/apideck/model/hris_company.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/hris_event_type.py b/src/apideck/model/hris_event_type.py index 08296d77a2..c0d4e77cab 100644 --- a/src/apideck/model/hris_event_type.py +++ b/src/apideck/model/hris_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/hris_job.py b/src/apideck/model/hris_job.py index 46e5830ceb..72e1f1790b 100644 --- a/src/apideck/model/hris_job.py +++ b/src/apideck/model/hris_job.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/hris_job_location.py b/src/apideck/model/hris_job_location.py index 5f101f308e..6a0a765d9b 100644 --- a/src/apideck/model/hris_job_location.py +++ b/src/apideck/model/hris_job_location.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/hris_jobs.py b/src/apideck/model/hris_jobs.py index e989ef1200..9dbe6a5848 100644 --- a/src/apideck/model/hris_jobs.py +++ b/src/apideck/model/hris_jobs.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/idempotency_key.py b/src/apideck/model/idempotency_key.py index 6757732bc0..5a47c62409 100644 --- a/src/apideck/model/idempotency_key.py +++ b/src/apideck/model/idempotency_key.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/integration_state.py b/src/apideck/model/integration_state.py index b08e41aade..a160355c86 100644 --- a/src/apideck/model/integration_state.py +++ b/src/apideck/model/integration_state.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/invoice.py b/src/apideck/model/invoice.py index 8279cf4510..6123fb5877 100644 --- a/src/apideck/model/invoice.py +++ b/src/apideck/model/invoice.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/invoice_item.py b/src/apideck/model/invoice_item.py index a82962ecb6..512d60c838 100644 --- a/src/apideck/model/invoice_item.py +++ b/src/apideck/model/invoice_item.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/invoice_item_asset_account.py b/src/apideck/model/invoice_item_asset_account.py index c4e39a9506..2d706220c9 100644 --- a/src/apideck/model/invoice_item_asset_account.py +++ b/src/apideck/model/invoice_item_asset_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/invoice_item_expense_account.py b/src/apideck/model/invoice_item_expense_account.py index 66b3cc1444..225ec4fd2f 100644 --- a/src/apideck/model/invoice_item_expense_account.py +++ b/src/apideck/model/invoice_item_expense_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/invoice_item_income_account.py b/src/apideck/model/invoice_item_income_account.py index dc1453ab61..84da17d6f4 100644 --- a/src/apideck/model/invoice_item_income_account.py +++ b/src/apideck/model/invoice_item_income_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/invoice_item_sales_details.py b/src/apideck/model/invoice_item_sales_details.py index cacd962a8f..3af96b3614 100644 --- a/src/apideck/model/invoice_item_sales_details.py +++ b/src/apideck/model/invoice_item_sales_details.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/invoice_items_filter.py b/src/apideck/model/invoice_items_filter.py index cc474f33b6..345bbb50ac 100644 --- a/src/apideck/model/invoice_items_filter.py +++ b/src/apideck/model/invoice_items_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/invoice_line_item.py b/src/apideck/model/invoice_line_item.py index d969c5ef21..e79375a15a 100644 --- a/src/apideck/model/invoice_line_item.py +++ b/src/apideck/model/invoice_line_item.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/invoice_response.py b/src/apideck/model/invoice_response.py index 9e9eea2529..883881780b 100644 --- a/src/apideck/model/invoice_response.py +++ b/src/apideck/model/invoice_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/invoices_filter.py b/src/apideck/model/invoices_filter.py index dfec29ad56..bf6b33c9ad 100644 --- a/src/apideck/model/invoices_filter.py +++ b/src/apideck/model/invoices_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -77,6 +77,7 @@ def openapi_types(): return { 'updated_since': (datetime,), # noqa: E501 'created_since': (datetime,), # noqa: E501 + 'number': (str,), # noqa: E501 } @cached_property @@ -87,6 +88,7 @@ def discriminator(): attribute_map = { 'updated_since': 'updated_since', # noqa: E501 'created_since': 'created_since', # noqa: E501 + 'number': 'number', # noqa: E501 } read_only_vars = { @@ -132,6 +134,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 _visited_composed_classes = (Animal,) updated_since (datetime): [optional] # noqa: E501 created_since (datetime): [optional] # noqa: E501 + number (str): Invoice number to search for. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -215,6 +218,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 _visited_composed_classes = (Animal,) updated_since (datetime): [optional] # noqa: E501 created_since (datetime): [optional] # noqa: E501 + number (str): Invoice number to search for. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/src/apideck/model/invoices_sort.py b/src/apideck/model/invoices_sort.py index 681a92e0a8..dda9cb286d 100644 --- a/src/apideck/model/invoices_sort.py +++ b/src/apideck/model/invoices_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/issue_tracking_event_type.py b/src/apideck/model/issue_tracking_event_type.py index 3d7d4787ef..301afb1fb4 100644 --- a/src/apideck/model/issue_tracking_event_type.py +++ b/src/apideck/model/issue_tracking_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/issues_filter.py b/src/apideck/model/issues_filter.py index 80934cdeb0..c3b242950b 100644 --- a/src/apideck/model/issues_filter.py +++ b/src/apideck/model/issues_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/item.py b/src/apideck/model/item.py index ae10d16281..8022f1df04 100644 --- a/src/apideck/model/item.py +++ b/src/apideck/model/item.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/job.py b/src/apideck/model/job.py index 0bc076e78b..ec09094cbd 100644 --- a/src/apideck/model/job.py +++ b/src/apideck/model/job.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/job_links.py b/src/apideck/model/job_links.py index c0487b56ea..a348dacaf4 100644 --- a/src/apideck/model/job_links.py +++ b/src/apideck/model/job_links.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/job_salary.py b/src/apideck/model/job_salary.py index f246c5988b..1f04856859 100644 --- a/src/apideck/model/job_salary.py +++ b/src/apideck/model/job_salary.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/job_status.py b/src/apideck/model/job_status.py index 2733fc0c0b..b5817252d8 100644 --- a/src/apideck/model/job_status.py +++ b/src/apideck/model/job_status.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/journal_entries_filter.py b/src/apideck/model/journal_entries_filter.py index ad3fec592b..2cae714214 100644 --- a/src/apideck/model/journal_entries_filter.py +++ b/src/apideck/model/journal_entries_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/journal_entries_sort.py b/src/apideck/model/journal_entries_sort.py index eb325cc5e4..e7ea936b14 100644 --- a/src/apideck/model/journal_entries_sort.py +++ b/src/apideck/model/journal_entries_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/journal_entry.py b/src/apideck/model/journal_entry.py index 28259c305e..9279b64080 100644 --- a/src/apideck/model/journal_entry.py +++ b/src/apideck/model/journal_entry.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/journal_entry_line_item.py b/src/apideck/model/journal_entry_line_item.py index 8a0b9d34be..120ccdbc8a 100644 --- a/src/apideck/model/journal_entry_line_item.py +++ b/src/apideck/model/journal_entry_line_item.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/lead.py b/src/apideck/model/lead.py index e891a28a1e..ff9c98bd0a 100644 --- a/src/apideck/model/lead.py +++ b/src/apideck/model/lead.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/lead_event_type.py b/src/apideck/model/lead_event_type.py index 15f38aab1c..31458931db 100644 --- a/src/apideck/model/lead_event_type.py +++ b/src/apideck/model/lead_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/leads_filter.py b/src/apideck/model/leads_filter.py index fb0d3614b9..b9a35ca1f6 100644 --- a/src/apideck/model/leads_filter.py +++ b/src/apideck/model/leads_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -79,6 +79,7 @@ def openapi_types(): 'first_name': (str,), # noqa: E501 'last_name': (str,), # noqa: E501 'email': (str,), # noqa: E501 + 'phone_number': (str,), # noqa: E501 } @cached_property @@ -91,6 +92,7 @@ def discriminator(): 'first_name': 'first_name', # noqa: E501 'last_name': 'last_name', # noqa: E501 'email': 'email', # noqa: E501 + 'phone_number': 'phone_number', # noqa: E501 } read_only_vars = { @@ -138,6 +140,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 first_name (str): First name of the lead to filter on. [optional] # noqa: E501 last_name (str): Last name of the lead to filter on. [optional] # noqa: E501 email (str): E-mail of the lead to filter on. [optional] # noqa: E501 + phone_number (str): Phone number of the lead to filter on. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -223,6 +226,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 first_name (str): First name of the lead to filter on. [optional] # noqa: E501 last_name (str): Last name of the lead to filter on. [optional] # noqa: E501 email (str): E-mail of the lead to filter on. [optional] # noqa: E501 + phone_number (str): Phone number of the lead to filter on. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/src/apideck/model/leads_sort.py b/src/apideck/model/leads_sort.py index 0bc170e86f..cea8877bf6 100644 --- a/src/apideck/model/leads_sort.py +++ b/src/apideck/model/leads_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ledger_account.py b/src/apideck/model/ledger_account.py index 5d90d91a8f..a2c809ab0f 100644 --- a/src/apideck/model/ledger_account.py +++ b/src/apideck/model/ledger_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ledger_account_categories.py b/src/apideck/model/ledger_account_categories.py index cd642b5b8e..87f44cdaff 100644 --- a/src/apideck/model/ledger_account_categories.py +++ b/src/apideck/model/ledger_account_categories.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ledger_account_parent_account.py b/src/apideck/model/ledger_account_parent_account.py index 16c65e25e4..019a730083 100644 --- a/src/apideck/model/ledger_account_parent_account.py +++ b/src/apideck/model/ledger_account_parent_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ledger_accounts.py b/src/apideck/model/ledger_accounts.py index a27799f54e..71f621a644 100644 --- a/src/apideck/model/ledger_accounts.py +++ b/src/apideck/model/ledger_accounts.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ledger_accounts_filter.py b/src/apideck/model/ledger_accounts_filter.py index 1597ffaddd..ff649717fd 100644 --- a/src/apideck/model/ledger_accounts_filter.py +++ b/src/apideck/model/ledger_accounts_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ledger_accounts_sort.py b/src/apideck/model/ledger_accounts_sort.py index 16ca9064c0..7e70898f5a 100644 --- a/src/apideck/model/ledger_accounts_sort.py +++ b/src/apideck/model/ledger_accounts_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/linked_connector_resource.py b/src/apideck/model/linked_connector_resource.py index 1d80643600..3d752614df 100644 --- a/src/apideck/model/linked_connector_resource.py +++ b/src/apideck/model/linked_connector_resource.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/linked_customer.py b/src/apideck/model/linked_customer.py index c39cd53278..97ebf1a498 100644 --- a/src/apideck/model/linked_customer.py +++ b/src/apideck/model/linked_customer.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/linked_ecommerce_customer.py b/src/apideck/model/linked_ecommerce_customer.py index 92e908fa58..4b5e2b0b75 100644 --- a/src/apideck/model/linked_ecommerce_customer.py +++ b/src/apideck/model/linked_ecommerce_customer.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/linked_ecommerce_order.py b/src/apideck/model/linked_ecommerce_order.py index b88d1301c1..8d62b78952 100644 --- a/src/apideck/model/linked_ecommerce_order.py +++ b/src/apideck/model/linked_ecommerce_order.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/linked_folder.py b/src/apideck/model/linked_folder.py index 0262bb5055..c385927ddf 100644 --- a/src/apideck/model/linked_folder.py +++ b/src/apideck/model/linked_folder.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/linked_invoice_item.py b/src/apideck/model/linked_invoice_item.py index 888bb80ecb..808ddb9650 100644 --- a/src/apideck/model/linked_invoice_item.py +++ b/src/apideck/model/linked_invoice_item.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/linked_ledger_account.py b/src/apideck/model/linked_ledger_account.py index 1d8b99ac5f..08096c8773 100644 --- a/src/apideck/model/linked_ledger_account.py +++ b/src/apideck/model/linked_ledger_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/linked_parent_customer.py b/src/apideck/model/linked_parent_customer.py index ed72eed345..c279f9bcf4 100644 --- a/src/apideck/model/linked_parent_customer.py +++ b/src/apideck/model/linked_parent_customer.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/linked_supplier.py b/src/apideck/model/linked_supplier.py index 1f84cc1957..e4d2c3e3d1 100644 --- a/src/apideck/model/linked_supplier.py +++ b/src/apideck/model/linked_supplier.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/linked_tax_rate.py b/src/apideck/model/linked_tax_rate.py index b5c7951d27..91e68d0a46 100644 --- a/src/apideck/model/linked_tax_rate.py +++ b/src/apideck/model/linked_tax_rate.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/linked_tracking_categories.py b/src/apideck/model/linked_tracking_categories.py index f34048ddc3..0f50a38c88 100644 --- a/src/apideck/model/linked_tracking_categories.py +++ b/src/apideck/model/linked_tracking_categories.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/linked_tracking_category.py b/src/apideck/model/linked_tracking_category.py index 5aefa1acce..96a3b46611 100644 --- a/src/apideck/model/linked_tracking_category.py +++ b/src/apideck/model/linked_tracking_category.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/links.py b/src/apideck/model/links.py index 2c29ae7541..5eae63443d 100644 --- a/src/apideck/model/links.py +++ b/src/apideck/model/links.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/location.py b/src/apideck/model/location.py index 32dd7d31f7..c74fc0da69 100644 --- a/src/apideck/model/location.py +++ b/src/apideck/model/location.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/log.py b/src/apideck/model/log.py index ae69a9fbcb..3aced0f3d6 100644 --- a/src/apideck/model/log.py +++ b/src/apideck/model/log.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/log_operation.py b/src/apideck/model/log_operation.py index 815ccd16c1..05cc12629a 100644 --- a/src/apideck/model/log_operation.py +++ b/src/apideck/model/log_operation.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/log_service.py b/src/apideck/model/log_service.py index 7e79d3a882..fd718a56c5 100644 --- a/src/apideck/model/log_service.py +++ b/src/apideck/model/log_service.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/logs_filter.py b/src/apideck/model/logs_filter.py index e4c821b41b..b2f960ae1a 100644 --- a/src/apideck/model/logs_filter.py +++ b/src/apideck/model/logs_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/merchant.py b/src/apideck/model/merchant.py index 80bdfef929..d8307b1d28 100644 --- a/src/apideck/model/merchant.py +++ b/src/apideck/model/merchant.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/message.py b/src/apideck/model/message.py index 9026a2b3be..9fa9b91dbf 100644 --- a/src/apideck/model/message.py +++ b/src/apideck/model/message.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/meta.py b/src/apideck/model/meta.py index 1f0f479f91..9ef46876ba 100644 --- a/src/apideck/model/meta.py +++ b/src/apideck/model/meta.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/meta_cursors.py b/src/apideck/model/meta_cursors.py index ef0ed162ad..dda99708c6 100644 --- a/src/apideck/model/meta_cursors.py +++ b/src/apideck/model/meta_cursors.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/modifier.py b/src/apideck/model/modifier.py index 99c5d78c2a..026bf11ba4 100644 --- a/src/apideck/model/modifier.py +++ b/src/apideck/model/modifier.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/modifier_group.py b/src/apideck/model/modifier_group.py index 1bb89ff0d7..c37beb367b 100644 --- a/src/apideck/model/modifier_group.py +++ b/src/apideck/model/modifier_group.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/modifier_group_filter.py b/src/apideck/model/modifier_group_filter.py index 0b6e833d22..978c152fe3 100644 --- a/src/apideck/model/modifier_group_filter.py +++ b/src/apideck/model/modifier_group_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/not_found_response.py b/src/apideck/model/not_found_response.py index 9df1050db3..35755f403f 100644 --- a/src/apideck/model/not_found_response.py +++ b/src/apideck/model/not_found_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/not_implemented_response.py b/src/apideck/model/not_implemented_response.py index d4aa9a6fa4..46b2369a1d 100644 --- a/src/apideck/model/not_implemented_response.py +++ b/src/apideck/model/not_implemented_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/note.py b/src/apideck/model/note.py index f18bee3c69..377ff34a8e 100644 --- a/src/apideck/model/note.py +++ b/src/apideck/model/note.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/o_auth_grant_type.py b/src/apideck/model/o_auth_grant_type.py index ba63c28c88..fda4c092a7 100644 --- a/src/apideck/model/o_auth_grant_type.py +++ b/src/apideck/model/o_auth_grant_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/offer.py b/src/apideck/model/offer.py index 1867ace569..5ba44cc4d5 100644 --- a/src/apideck/model/offer.py +++ b/src/apideck/model/offer.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/opportunities_filter.py b/src/apideck/model/opportunities_filter.py index cd56b004ec..3962fa590a 100644 --- a/src/apideck/model/opportunities_filter.py +++ b/src/apideck/model/opportunities_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/opportunities_sort.py b/src/apideck/model/opportunities_sort.py index 84baab3208..e78ff8a642 100644 --- a/src/apideck/model/opportunities_sort.py +++ b/src/apideck/model/opportunities_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/opportunity.py b/src/apideck/model/opportunity.py index c6c93bfacf..1e30cfb7dd 100644 --- a/src/apideck/model/opportunity.py +++ b/src/apideck/model/opportunity.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/order.py b/src/apideck/model/order.py index c1b4a8b641..8f26aacd7a 100644 --- a/src/apideck/model/order.py +++ b/src/apideck/model/order.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/order_customers.py b/src/apideck/model/order_customers.py index abeaa5588a..28c8d1fe46 100644 --- a/src/apideck/model/order_customers.py +++ b/src/apideck/model/order_customers.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/order_discounts.py b/src/apideck/model/order_discounts.py index 47d183092a..3e52635a61 100644 --- a/src/apideck/model/order_discounts.py +++ b/src/apideck/model/order_discounts.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/order_fulfillments.py b/src/apideck/model/order_fulfillments.py index c0d5ae79ba..a9e5fa61fe 100644 --- a/src/apideck/model/order_fulfillments.py +++ b/src/apideck/model/order_fulfillments.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/order_line_items.py b/src/apideck/model/order_line_items.py index 2bafeac54f..359832d328 100644 --- a/src/apideck/model/order_line_items.py +++ b/src/apideck/model/order_line_items.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/order_payments.py b/src/apideck/model/order_payments.py index e64a33bb0f..9a0d7a4216 100644 --- a/src/apideck/model/order_payments.py +++ b/src/apideck/model/order_payments.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/order_pickup_details.py b/src/apideck/model/order_pickup_details.py index a742d99608..095dfd24f6 100644 --- a/src/apideck/model/order_pickup_details.py +++ b/src/apideck/model/order_pickup_details.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/order_pickup_details_curbside_pickup_details.py b/src/apideck/model/order_pickup_details_curbside_pickup_details.py index ae10fccbb8..605220c91f 100644 --- a/src/apideck/model/order_pickup_details_curbside_pickup_details.py +++ b/src/apideck/model/order_pickup_details_curbside_pickup_details.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/order_pickup_details_recipient.py b/src/apideck/model/order_pickup_details_recipient.py index f705de0b44..6416419a2e 100644 --- a/src/apideck/model/order_pickup_details_recipient.py +++ b/src/apideck/model/order_pickup_details_recipient.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/order_refunds.py b/src/apideck/model/order_refunds.py index 0e5f5001b7..d8145290be 100644 --- a/src/apideck/model/order_refunds.py +++ b/src/apideck/model/order_refunds.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/order_tenders.py b/src/apideck/model/order_tenders.py index 654ed2679f..ed75848597 100644 --- a/src/apideck/model/order_tenders.py +++ b/src/apideck/model/order_tenders.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/order_type.py b/src/apideck/model/order_type.py index a49a147fd3..ed97f5e2f6 100644 --- a/src/apideck/model/order_type.py +++ b/src/apideck/model/order_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/orders_sort.py b/src/apideck/model/orders_sort.py index 73ccfff123..b5543eeb8a 100644 --- a/src/apideck/model/orders_sort.py +++ b/src/apideck/model/orders_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/owner.py b/src/apideck/model/owner.py index 1312a27982..de2cb66c7b 100644 --- a/src/apideck/model/owner.py +++ b/src/apideck/model/owner.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/pagination_coverage.py b/src/apideck/model/pagination_coverage.py index 6713deaafb..616f84e6ab 100644 --- a/src/apideck/model/pagination_coverage.py +++ b/src/apideck/model/pagination_coverage.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/pass_through_body.py b/src/apideck/model/pass_through_body.py index 6f10ddc4eb..4a87d0198d 100644 --- a/src/apideck/model/pass_through_body.py +++ b/src/apideck/model/pass_through_body.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/pass_through_query.py b/src/apideck/model/pass_through_query.py index 490ea40409..ab753d3443 100644 --- a/src/apideck/model/pass_through_query.py +++ b/src/apideck/model/pass_through_query.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/payment.py b/src/apideck/model/payment.py index 4bd23021a6..0ebcf8767a 100644 --- a/src/apideck/model/payment.py +++ b/src/apideck/model/payment.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -33,19 +33,23 @@ def lazy_import(): from apideck.model.allocation import Allocation from apideck.model.currency import Currency from apideck.model.custom_field import CustomField + from apideck.model.deprecated_linked_supplier import DeprecatedLinkedSupplier from apideck.model.linked_customer import LinkedCustomer from apideck.model.linked_ledger_account import LinkedLedgerAccount - from apideck.model.linked_supplier import LinkedSupplier from apideck.model.linked_tracking_categories import LinkedTrackingCategories from apideck.model.pass_through_body import PassThroughBody + from apideck.model.payment_status import PaymentStatus + from apideck.model.payment_type import PaymentType globals()['Allocation'] = Allocation globals()['Currency'] = Currency globals()['CustomField'] = CustomField + globals()['DeprecatedLinkedSupplier'] = DeprecatedLinkedSupplier globals()['LinkedCustomer'] = LinkedCustomer globals()['LinkedLedgerAccount'] = LinkedLedgerAccount - globals()['LinkedSupplier'] = LinkedSupplier globals()['LinkedTrackingCategories'] = LinkedTrackingCategories globals()['PassThroughBody'] = PassThroughBody + globals()['PaymentStatus'] = PaymentStatus + globals()['PaymentType'] = PaymentType class Payment(ModelNormal): @@ -73,22 +77,6 @@ class Payment(ModelNormal): """ allowed_values = { - ('status',): { - 'AUTHORISED': "authorised", - 'PAID': "paid", - 'VOIDED': "voided", - 'DELETED': "deleted", - }, - ('type',): { - 'RECEIVABLE': "accounts_receivable", - 'PAYABLE': "accounts_payable", - 'RECEIVABLE_CREDIT': "accounts_receivable_credit", - 'PAYABLE_CREDIT': "accounts_payable_credit", - 'RECEIVABLE_OVERPAYMENT': "accounts_receivable_overpayment", - 'PAYABLE_OVERPAYMENT': "accounts_payable_overpayment", - 'RECEIVABLE_PREPAYMENT': "accounts_receivable_prepayment", - 'PAYABLE_PREPAYMENT': "accounts_payable_prepayment", - }, } validations = { @@ -111,8 +99,8 @@ def openapi_types(): lazy_import() return { 'id': (str,), # noqa: E501 - 'total_amount': (float,), # noqa: E501 - 'transaction_date': (datetime,), # noqa: E501 + 'total_amount': (float, none_type,), # noqa: E501 + 'transaction_date': (datetime, none_type,), # noqa: E501 'downstream_id': (str, none_type,), # noqa: E501 'currency': (Currency,), # noqa: E501 'currency_rate': (float, none_type,), # noqa: E501 @@ -124,11 +112,11 @@ def openapi_types(): 'accounts_receivable_account_id': (str, none_type,), # noqa: E501 'account': (LinkedLedgerAccount,), # noqa: E501 'customer': (LinkedCustomer,), # noqa: E501 - 'supplier': (LinkedSupplier,), # noqa: E501 + 'supplier': (DeprecatedLinkedSupplier,), # noqa: E501 'company_id': (str, none_type,), # noqa: E501 - 'reconciled': (bool,), # noqa: E501 - 'status': (str,), # noqa: E501 - 'type': (str,), # noqa: E501 + 'reconciled': (bool, none_type,), # noqa: E501 + 'status': (PaymentStatus,), # noqa: E501 + 'type': (PaymentType,), # noqa: E501 'allocations': ([Allocation],), # noqa: E501 'note': (str, none_type,), # noqa: E501 'number': (str, none_type,), # noqa: E501 @@ -202,9 +190,9 @@ def _from_openapi_data(cls, id, total_amount, transaction_date, *args, **kwargs) """Payment - a model defined in OpenAPI Args: - id (str): Unique identifier representing the entity - total_amount (float): Amount of payment - transaction_date (datetime): Date transaction was entered - YYYY:MM::DDThh:mm:ss.sTZD + id (str): A unique identifier for an object. + total_amount (float, none_type): The total amount of the transaction + transaction_date (datetime, none_type): The date of the transaction - YYYY:MM::DDThh:mm:ss.sTZD Keyword Args: _check_type (bool): if True, values for parameters in openapi_types @@ -240,26 +228,26 @@ def _from_openapi_data(cls, id, total_amount, transaction_date, *args, **kwargs) downstream_id (str, none_type): The third-party API ID of original entity. [optional] # noqa: E501 currency (Currency): [optional] # noqa: E501 currency_rate (float, none_type): Currency Exchange Rate at the time entity was recorded/generated.. [optional] # noqa: E501 - reference (str, none_type): Optional payment reference message ie: Debit remittance detail.. [optional] # noqa: E501 - payment_method (str, none_type): Payment method name. [optional] # noqa: E501 + reference (str, none_type): Optional transaction reference message ie: Debit remittance detail.. [optional] # noqa: E501 + payment_method (str, none_type): Payment method used for the transaction, such as cash, credit card, bank transfer, or check. [optional] # noqa: E501 payment_method_reference (str, none_type): Optional reference message returned by payment method on processing. [optional] # noqa: E501 - payment_method_id (str, none_type): Unique identifier for the payment method.. [optional] # noqa: E501 + payment_method_id (str, none_type): A unique identifier for an object.. [optional] # noqa: E501 accounts_receivable_account_type (str, none_type): Type of accounts receivable account.. [optional] # noqa: E501 accounts_receivable_account_id (str, none_type): Unique identifier for the account to allocate payment to.. [optional] # noqa: E501 account (LinkedLedgerAccount): [optional] # noqa: E501 customer (LinkedCustomer): [optional] # noqa: E501 - supplier (LinkedSupplier): [optional] # noqa: E501 + supplier (DeprecatedLinkedSupplier): [optional] # noqa: E501 company_id (str, none_type): The company or subsidiary id the transaction belongs to. [optional] # noqa: E501 - reconciled (bool): Payment has been reconciled. [optional] # noqa: E501 - status (str): Status of payment. [optional] # noqa: E501 - type (str): Type of payment. [optional] # noqa: E501 + reconciled (bool, none_type): Indicates if the transaction has been reconciled.. [optional] # noqa: E501 + status (PaymentStatus): [optional] # noqa: E501 + type (PaymentType): [optional] # noqa: E501 allocations ([Allocation]): [optional] # noqa: E501 - note (str, none_type): Optional note to be associated with the payment.. [optional] # noqa: E501 - number (str, none_type): Payment number.. [optional] # noqa: E501 + note (str, none_type): Note associated with the transaction. [optional] # noqa: E501 + number (str, none_type): Number associated with the transaction. [optional] # noqa: E501 tracking_categories (LinkedTrackingCategories): [optional] # noqa: E501 custom_fields ([CustomField]): [optional] # noqa: E501 row_version (str, none_type): A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object.. [optional] # noqa: E501 - display_id (str, none_type): Payment id to be displayed.. [optional] # noqa: E501 + display_id (str, none_type): Id to be displayed.. [optional] # noqa: E501 custom_mappings ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): When custom mappings are configured on the resource, the result is included here.. [optional] # noqa: E501 updated_by (str, none_type): The user who last updated the object.. [optional] # noqa: E501 created_by (str, none_type): The user who created the object.. [optional] # noqa: E501 @@ -319,8 +307,8 @@ def _from_openapi_data(cls, id, total_amount, transaction_date, *args, **kwargs) def __init__(self, total_amount, transaction_date, *args, **kwargs): # noqa: E501 """Payment - a model defined in OpenAPI - total_amount (float): Amount of payment - transaction_date (datetime): Date transaction was entered - YYYY:MM::DDThh:mm:ss.sTZD + total_amount (float, none_type): The total amount of the transaction + transaction_date (datetime, none_type): The date of the transaction - YYYY:MM::DDThh:mm:ss.sTZD Keyword Args: _check_type (bool): if True, values for parameters in openapi_types @@ -356,26 +344,26 @@ def __init__(self, total_amount, transaction_date, *args, **kwargs): # noqa: E5 downstream_id (str, none_type): The third-party API ID of original entity. [optional] # noqa: E501 currency (Currency): [optional] # noqa: E501 currency_rate (float, none_type): Currency Exchange Rate at the time entity was recorded/generated.. [optional] # noqa: E501 - reference (str, none_type): Optional payment reference message ie: Debit remittance detail.. [optional] # noqa: E501 - payment_method (str, none_type): Payment method name. [optional] # noqa: E501 + reference (str, none_type): Optional transaction reference message ie: Debit remittance detail.. [optional] # noqa: E501 + payment_method (str, none_type): Payment method used for the transaction, such as cash, credit card, bank transfer, or check. [optional] # noqa: E501 payment_method_reference (str, none_type): Optional reference message returned by payment method on processing. [optional] # noqa: E501 - payment_method_id (str, none_type): Unique identifier for the payment method.. [optional] # noqa: E501 + payment_method_id (str, none_type): A unique identifier for an object.. [optional] # noqa: E501 accounts_receivable_account_type (str, none_type): Type of accounts receivable account.. [optional] # noqa: E501 accounts_receivable_account_id (str, none_type): Unique identifier for the account to allocate payment to.. [optional] # noqa: E501 account (LinkedLedgerAccount): [optional] # noqa: E501 customer (LinkedCustomer): [optional] # noqa: E501 - supplier (LinkedSupplier): [optional] # noqa: E501 + supplier (DeprecatedLinkedSupplier): [optional] # noqa: E501 company_id (str, none_type): The company or subsidiary id the transaction belongs to. [optional] # noqa: E501 - reconciled (bool): Payment has been reconciled. [optional] # noqa: E501 - status (str): Status of payment. [optional] # noqa: E501 - type (str): Type of payment. [optional] # noqa: E501 + reconciled (bool, none_type): Indicates if the transaction has been reconciled.. [optional] # noqa: E501 + status (PaymentStatus): [optional] # noqa: E501 + type (PaymentType): [optional] # noqa: E501 allocations ([Allocation]): [optional] # noqa: E501 - note (str, none_type): Optional note to be associated with the payment.. [optional] # noqa: E501 - number (str, none_type): Payment number.. [optional] # noqa: E501 + note (str, none_type): Note associated with the transaction. [optional] # noqa: E501 + number (str, none_type): Number associated with the transaction. [optional] # noqa: E501 tracking_categories (LinkedTrackingCategories): [optional] # noqa: E501 custom_fields ([CustomField]): [optional] # noqa: E501 row_version (str, none_type): A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object.. [optional] # noqa: E501 - display_id (str, none_type): Payment id to be displayed.. [optional] # noqa: E501 + display_id (str, none_type): Id to be displayed.. [optional] # noqa: E501 custom_mappings ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): When custom mappings are configured on the resource, the result is included here.. [optional] # noqa: E501 updated_by (str, none_type): The user who last updated the object.. [optional] # noqa: E501 created_by (str, none_type): The user who created the object.. [optional] # noqa: E501 diff --git a/src/apideck/model/payment_card.py b/src/apideck/model/payment_card.py index 564f714816..828dfdbe82 100644 --- a/src/apideck/model/payment_card.py +++ b/src/apideck/model/payment_card.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/payment_frequency.py b/src/apideck/model/payment_frequency.py index 96282d3101..de2c3c0445 100644 --- a/src/apideck/model/payment_frequency.py +++ b/src/apideck/model/payment_frequency.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/payment_required_response.py b/src/apideck/model/payment_required_response.py index 4c2dd08288..ee60893f02 100644 --- a/src/apideck/model/payment_required_response.py +++ b/src/apideck/model/payment_required_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/payment_status.py b/src/apideck/model/payment_status.py new file mode 100644 index 0000000000..ac2cfc9233 --- /dev/null +++ b/src/apideck/model/payment_status.py @@ -0,0 +1,284 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from apideck.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 apideck.exceptions import ApiAttributeError + + + +class PaymentStatus(ModelSimple): + """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. + 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 = { + ('value',): { + 'AUTHORISED': "authorised", + 'PAID': "paid", + 'VOIDED': "voided", + 'DELETED': "deleted", + }, + } + + validations = { + } + + additional_properties_type = None + + _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 { + 'value': (str,), + } + + @cached_property + def discriminator(): + return None + + + attribute_map = {} + + read_only_vars = set() + + _composed_schemas = None + + 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, *args, **kwargs): + """PaymentStatus - a model defined in OpenAPI + + Note that value can be passed either in args or in kwargs, but not in both. + + Args: + args[0] (str): Status of payment., must be one of ["authorised", "paid", "voided", "deleted", ] # noqa: E501 + + Keyword Args: + value (str): Status of payment., must be one of ["authorised", "paid", "voided", "deleted", ] # 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. + 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,) + """ + # required up here when default value is not given + _path_to_item = kwargs.pop('_path_to_item', ()) + + if 'value' in kwargs: + value = kwargs.pop('value') + elif args: + args = list(args) + value = args.pop(0) + else: + raise ApiTypeError( + "value is required, but not passed in args or kwargs and doesn't have default", + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + if args: + 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.value = value + if kwargs: + raise ApiTypeError( + "Invalid named arguments=%s passed to %s. Remove those invalid named arguments." % ( + kwargs, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, *args, **kwargs): + """PaymentStatus - a model defined in OpenAPI + + Note that value can be passed either in args or in kwargs, but not in both. + + Args: + args[0] (str): Status of payment., must be one of ["authorised", "paid", "voided", "deleted", ] # noqa: E501 + + Keyword Args: + value (str): Status of payment., must be one of ["authorised", "paid", "voided", "deleted", ] # 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. + 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,) + """ + # required up here when default value is not given + _path_to_item = kwargs.pop('_path_to_item', ()) + + self = super(OpenApiModel, cls).__new__(cls) + + if 'value' in kwargs: + value = kwargs.pop('value') + elif args: + args = list(args) + value = args.pop(0) + else: + raise ApiTypeError( + "value is required, but not passed in args or kwargs and doesn't have default", + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + if args: + 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.value = value + if kwargs: + raise ApiTypeError( + "Invalid named arguments=%s passed to %s. Remove those invalid named arguments." % ( + kwargs, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + return self diff --git a/src/apideck/model/payment_type.py b/src/apideck/model/payment_type.py new file mode 100644 index 0000000000..c79fb22418 --- /dev/null +++ b/src/apideck/model/payment_type.py @@ -0,0 +1,288 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from apideck.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 apideck.exceptions import ApiAttributeError + + + +class PaymentType(ModelSimple): + """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. + 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 = { + ('value',): { + 'RECEIVABLE': "accounts_receivable", + 'PAYABLE': "accounts_payable", + 'RECEIVABLE_CREDIT': "accounts_receivable_credit", + 'PAYABLE_CREDIT': "accounts_payable_credit", + 'RECEIVABLE_OVERPAYMENT': "accounts_receivable_overpayment", + 'PAYABLE_OVERPAYMENT': "accounts_payable_overpayment", + 'RECEIVABLE_PREPAYMENT': "accounts_receivable_prepayment", + 'PAYABLE_PREPAYMENT': "accounts_payable_prepayment", + }, + } + + validations = { + } + + additional_properties_type = None + + _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 { + 'value': (str,), + } + + @cached_property + def discriminator(): + return None + + + attribute_map = {} + + read_only_vars = set() + + _composed_schemas = None + + 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, *args, **kwargs): + """PaymentType - a model defined in OpenAPI + + Note that value can be passed either in args or in kwargs, but not in both. + + Args: + args[0] (str): Type of payment., must be one of ["accounts_receivable", "accounts_payable", "accounts_receivable_credit", "accounts_payable_credit", "accounts_receivable_overpayment", "accounts_payable_overpayment", "accounts_receivable_prepayment", "accounts_payable_prepayment", ] # noqa: E501 + + Keyword Args: + value (str): Type of payment., must be one of ["accounts_receivable", "accounts_payable", "accounts_receivable_credit", "accounts_payable_credit", "accounts_receivable_overpayment", "accounts_payable_overpayment", "accounts_receivable_prepayment", "accounts_payable_prepayment", ] # 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. + 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,) + """ + # required up here when default value is not given + _path_to_item = kwargs.pop('_path_to_item', ()) + + if 'value' in kwargs: + value = kwargs.pop('value') + elif args: + args = list(args) + value = args.pop(0) + else: + raise ApiTypeError( + "value is required, but not passed in args or kwargs and doesn't have default", + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + if args: + 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.value = value + if kwargs: + raise ApiTypeError( + "Invalid named arguments=%s passed to %s. Remove those invalid named arguments." % ( + kwargs, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, *args, **kwargs): + """PaymentType - a model defined in OpenAPI + + Note that value can be passed either in args or in kwargs, but not in both. + + Args: + args[0] (str): Type of payment., must be one of ["accounts_receivable", "accounts_payable", "accounts_receivable_credit", "accounts_payable_credit", "accounts_receivable_overpayment", "accounts_payable_overpayment", "accounts_receivable_prepayment", "accounts_payable_prepayment", ] # noqa: E501 + + Keyword Args: + value (str): Type of payment., must be one of ["accounts_receivable", "accounts_payable", "accounts_receivable_credit", "accounts_payable_credit", "accounts_receivable_overpayment", "accounts_payable_overpayment", "accounts_receivable_prepayment", "accounts_payable_prepayment", ] # 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. + 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,) + """ + # required up here when default value is not given + _path_to_item = kwargs.pop('_path_to_item', ()) + + self = super(OpenApiModel, cls).__new__(cls) + + if 'value' in kwargs: + value = kwargs.pop('value') + elif args: + args = list(args) + value = args.pop(0) + else: + raise ApiTypeError( + "value is required, but not passed in args or kwargs and doesn't have default", + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + _check_type = kwargs.pop('_check_type', True) + _spec_property_naming = kwargs.pop('_spec_property_naming', False) + _configuration = kwargs.pop('_configuration', None) + _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) + + if args: + 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.value = value + if kwargs: + raise ApiTypeError( + "Invalid named arguments=%s passed to %s. Remove those invalid named arguments." % ( + kwargs, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + return self diff --git a/src/apideck/model/payment_unit.py b/src/apideck/model/payment_unit.py index 88d41bf7bf..ddabdcd4da 100644 --- a/src/apideck/model/payment_unit.py +++ b/src/apideck/model/payment_unit.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/payments_filter.py b/src/apideck/model/payments_filter.py index 85373e6355..9db33aaae1 100644 --- a/src/apideck/model/payments_filter.py +++ b/src/apideck/model/payments_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/payments_sort.py b/src/apideck/model/payments_sort.py index 0e9195f317..c2c78fcdd2 100644 --- a/src/apideck/model/payments_sort.py +++ b/src/apideck/model/payments_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/payroll.py b/src/apideck/model/payroll.py index fb4a3e2613..73c114e483 100644 --- a/src/apideck/model/payroll.py +++ b/src/apideck/model/payroll.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/payroll_totals.py b/src/apideck/model/payroll_totals.py index f1044915e8..39530ad73c 100644 --- a/src/apideck/model/payroll_totals.py +++ b/src/apideck/model/payroll_totals.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/payrolls_filter.py b/src/apideck/model/payrolls_filter.py index d8e784414b..f75d4886b7 100644 --- a/src/apideck/model/payrolls_filter.py +++ b/src/apideck/model/payrolls_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/person.py b/src/apideck/model/person.py index 7b4f3a4b9f..50af377f61 100644 --- a/src/apideck/model/person.py +++ b/src/apideck/model/person.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/phone_number.py b/src/apideck/model/phone_number.py index c90d465bbd..8fb367a5ee 100644 --- a/src/apideck/model/phone_number.py +++ b/src/apideck/model/phone_number.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/pipeline.py b/src/apideck/model/pipeline.py index 234efe3d51..9d11021a18 100644 --- a/src/apideck/model/pipeline.py +++ b/src/apideck/model/pipeline.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/pipeline_stages.py b/src/apideck/model/pipeline_stages.py index 79ff7d4ac3..00a9337f8b 100644 --- a/src/apideck/model/pipeline_stages.py +++ b/src/apideck/model/pipeline_stages.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/pos_bank_account.py b/src/apideck/model/pos_bank_account.py index f210b89e18..6be9fa24f9 100644 --- a/src/apideck/model/pos_bank_account.py +++ b/src/apideck/model/pos_bank_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/pos_bank_account_ach_details.py b/src/apideck/model/pos_bank_account_ach_details.py index 8a52867bf1..c2fd5f2117 100644 --- a/src/apideck/model/pos_bank_account_ach_details.py +++ b/src/apideck/model/pos_bank_account_ach_details.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/pos_payment.py b/src/apideck/model/pos_payment.py index 616e074f71..6dfb5f2cf5 100644 --- a/src/apideck/model/pos_payment.py +++ b/src/apideck/model/pos_payment.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/pos_payment_card_details.py b/src/apideck/model/pos_payment_card_details.py index 34b5014707..c5e70f256d 100644 --- a/src/apideck/model/pos_payment_card_details.py +++ b/src/apideck/model/pos_payment_card_details.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/pos_payment_external_details.py b/src/apideck/model/pos_payment_external_details.py index 2a30ae7e15..446996782f 100644 --- a/src/apideck/model/pos_payment_external_details.py +++ b/src/apideck/model/pos_payment_external_details.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/price.py b/src/apideck/model/price.py index 10804b4f61..d2655e8e97 100644 --- a/src/apideck/model/price.py +++ b/src/apideck/model/price.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/probation_period.py b/src/apideck/model/probation_period.py index 308cca2a70..64e3d52c4e 100644 --- a/src/apideck/model/probation_period.py +++ b/src/apideck/model/probation_period.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/profit_and_loss.py b/src/apideck/model/profit_and_loss.py index 2ae608e4a5..e090ce4fcd 100644 --- a/src/apideck/model/profit_and_loss.py +++ b/src/apideck/model/profit_and_loss.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/profit_and_loss_expenses.py b/src/apideck/model/profit_and_loss_expenses.py index c7d24a677f..37e9f393a4 100644 --- a/src/apideck/model/profit_and_loss_expenses.py +++ b/src/apideck/model/profit_and_loss_expenses.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/profit_and_loss_filter.py b/src/apideck/model/profit_and_loss_filter.py index 9372bb4f5c..5954498a61 100644 --- a/src/apideck/model/profit_and_loss_filter.py +++ b/src/apideck/model/profit_and_loss_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/profit_and_loss_gross_profit.py b/src/apideck/model/profit_and_loss_gross_profit.py index 2f07e7f353..74ff5b71d1 100644 --- a/src/apideck/model/profit_and_loss_gross_profit.py +++ b/src/apideck/model/profit_and_loss_gross_profit.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/profit_and_loss_income.py b/src/apideck/model/profit_and_loss_income.py index d04f8b9895..92df2a83d2 100644 --- a/src/apideck/model/profit_and_loss_income.py +++ b/src/apideck/model/profit_and_loss_income.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/profit_and_loss_net_income.py b/src/apideck/model/profit_and_loss_net_income.py index a19ee0b1b5..bc1ac9b200 100644 --- a/src/apideck/model/profit_and_loss_net_income.py +++ b/src/apideck/model/profit_and_loss_net_income.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/profit_and_loss_net_operating_income.py b/src/apideck/model/profit_and_loss_net_operating_income.py index 16ba4dbbbf..e1c8805b57 100644 --- a/src/apideck/model/profit_and_loss_net_operating_income.py +++ b/src/apideck/model/profit_and_loss_net_operating_income.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/profit_and_loss_record.py b/src/apideck/model/profit_and_loss_record.py index c940aa00d5..1b94c0c395 100644 --- a/src/apideck/model/profit_and_loss_record.py +++ b/src/apideck/model/profit_and_loss_record.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/profit_and_loss_records.py b/src/apideck/model/profit_and_loss_records.py index 4eb9de2027..52e2d5bca6 100644 --- a/src/apideck/model/profit_and_loss_records.py +++ b/src/apideck/model/profit_and_loss_records.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/profit_and_loss_section.py b/src/apideck/model/profit_and_loss_section.py index e561b6138f..3b0c766b85 100644 --- a/src/apideck/model/profit_and_loss_section.py +++ b/src/apideck/model/profit_and_loss_section.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/purchase_order.py b/src/apideck/model/purchase_order.py index 175330298d..e2675971a1 100644 --- a/src/apideck/model/purchase_order.py +++ b/src/apideck/model/purchase_order.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/purchase_orders_filter.py b/src/apideck/model/purchase_orders_filter.py index fe6f4d7d64..405c20e35d 100644 --- a/src/apideck/model/purchase_orders_filter.py +++ b/src/apideck/model/purchase_orders_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/purchase_orders_sort.py b/src/apideck/model/purchase_orders_sort.py index 73905171c2..717bd67eab 100644 --- a/src/apideck/model/purchase_orders_sort.py +++ b/src/apideck/model/purchase_orders_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/request_count_allocation.py b/src/apideck/model/request_count_allocation.py index a44c6ecce6..36cdb8f1b0 100644 --- a/src/apideck/model/request_count_allocation.py +++ b/src/apideck/model/request_count_allocation.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/request_rate.py b/src/apideck/model/request_rate.py index d802400ddb..046d2002d8 100644 --- a/src/apideck/model/request_rate.py +++ b/src/apideck/model/request_rate.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/resolve_webhook_event_request.py b/src/apideck/model/resolve_webhook_event_request.py index 2c0d511b16..98298cf6b6 100644 --- a/src/apideck/model/resolve_webhook_event_request.py +++ b/src/apideck/model/resolve_webhook_event_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/resolve_webhook_events_request.py b/src/apideck/model/resolve_webhook_events_request.py index b77a247a58..0df68645f3 100644 --- a/src/apideck/model/resolve_webhook_events_request.py +++ b/src/apideck/model/resolve_webhook_events_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/resolve_webhook_response.py b/src/apideck/model/resolve_webhook_response.py index 535f8af5f7..f96194d03b 100644 --- a/src/apideck/model/resolve_webhook_response.py +++ b/src/apideck/model/resolve_webhook_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/resource_example.py b/src/apideck/model/resource_example.py index 22116520cb..7e324e52c4 100644 --- a/src/apideck/model/resource_example.py +++ b/src/apideck/model/resource_example.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/resource_status.py b/src/apideck/model/resource_status.py index a39e373909..a536161a0b 100644 --- a/src/apideck/model/resource_status.py +++ b/src/apideck/model/resource_status.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/schedule.py b/src/apideck/model/schedule.py index ac93b11b16..63ed9186e2 100644 --- a/src/apideck/model/schedule.py +++ b/src/apideck/model/schedule.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/schedule_work_pattern.py b/src/apideck/model/schedule_work_pattern.py index 8b8e7189ba..19c35de403 100644 --- a/src/apideck/model/schedule_work_pattern.py +++ b/src/apideck/model/schedule_work_pattern.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/schedule_work_pattern_odd_weeks.py b/src/apideck/model/schedule_work_pattern_odd_weeks.py index 2435e63039..a4e6078afb 100644 --- a/src/apideck/model/schedule_work_pattern_odd_weeks.py +++ b/src/apideck/model/schedule_work_pattern_odd_weeks.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/schema_support.py b/src/apideck/model/schema_support.py index 350246a133..69dc237e6a 100644 --- a/src/apideck/model/schema_support.py +++ b/src/apideck/model/schema_support.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/service_charge.py b/src/apideck/model/service_charge.py index b30819b7c7..88e5b61231 100644 --- a/src/apideck/model/service_charge.py +++ b/src/apideck/model/service_charge.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/service_charges.py b/src/apideck/model/service_charges.py index cca6ff5e81..e346064a0f 100644 --- a/src/apideck/model/service_charges.py +++ b/src/apideck/model/service_charges.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/session.py b/src/apideck/model/session.py index 68e34332e9..123fb8f454 100644 --- a/src/apideck/model/session.py +++ b/src/apideck/model/session.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/session_settings.py b/src/apideck/model/session_settings.py index 746f2a38cb..352c5d02b6 100644 --- a/src/apideck/model/session_settings.py +++ b/src/apideck/model/session_settings.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/session_theme.py b/src/apideck/model/session_theme.py index 3688533fea..4b7a89e436 100644 --- a/src/apideck/model/session_theme.py +++ b/src/apideck/model/session_theme.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/shared_link.py b/src/apideck/model/shared_link.py index 14721ca9cc..9190eb8864 100644 --- a/src/apideck/model/shared_link.py +++ b/src/apideck/model/shared_link.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/shared_link_target.py b/src/apideck/model/shared_link_target.py index f44f0bd0ad..f4012cddf5 100644 --- a/src/apideck/model/shared_link_target.py +++ b/src/apideck/model/shared_link_target.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/simple_form_field_option.py b/src/apideck/model/simple_form_field_option.py index f360534fcd..edc572b6ef 100644 --- a/src/apideck/model/simple_form_field_option.py +++ b/src/apideck/model/simple_form_field_option.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/social_link.py b/src/apideck/model/social_link.py index 5de4bb716a..e65ae78fc2 100644 --- a/src/apideck/model/social_link.py +++ b/src/apideck/model/social_link.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/sort_direction.py b/src/apideck/model/sort_direction.py index 20e80dd2ef..e986f70a96 100644 --- a/src/apideck/model/sort_direction.py +++ b/src/apideck/model/sort_direction.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/status.py b/src/apideck/model/status.py index a39adf0a5f..12cdffc14f 100644 --- a/src/apideck/model/status.py +++ b/src/apideck/model/status.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/subsidiary.py b/src/apideck/model/subsidiary.py index 4f6013d5e1..11197ea180 100644 --- a/src/apideck/model/subsidiary.py +++ b/src/apideck/model/subsidiary.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/subsidiary_reference.py b/src/apideck/model/subsidiary_reference.py index e567e6b1d4..3b0974221c 100644 --- a/src/apideck/model/subsidiary_reference.py +++ b/src/apideck/model/subsidiary_reference.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/supplier.py b/src/apideck/model/supplier.py index 2bc25e4714..a6f6e5e539 100644 --- a/src/apideck/model/supplier.py +++ b/src/apideck/model/supplier.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/suppliers_filter.py b/src/apideck/model/suppliers_filter.py index 39dfd281e9..af02260e89 100644 --- a/src/apideck/model/suppliers_filter.py +++ b/src/apideck/model/suppliers_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/suppliers_sort.py b/src/apideck/model/suppliers_sort.py index 271e175c0b..5234b92199 100644 --- a/src/apideck/model/suppliers_sort.py +++ b/src/apideck/model/suppliers_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/supported_property.py b/src/apideck/model/supported_property.py index fb5ddd2fe2..d52bf387dc 100644 --- a/src/apideck/model/supported_property.py +++ b/src/apideck/model/supported_property.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/tags.py b/src/apideck/model/tags.py index 16799535ff..7cc1b5dc25 100644 --- a/src/apideck/model/tags.py +++ b/src/apideck/model/tags.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/tax.py b/src/apideck/model/tax.py index 5f882f74ff..960b66a963 100644 --- a/src/apideck/model/tax.py +++ b/src/apideck/model/tax.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/tax_rate.py b/src/apideck/model/tax_rate.py index 1e58697fee..89be07b011 100644 --- a/src/apideck/model/tax_rate.py +++ b/src/apideck/model/tax_rate.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/tax_rates_filter.py b/src/apideck/model/tax_rates_filter.py index 1fcc4753aa..60afbf7840 100644 --- a/src/apideck/model/tax_rates_filter.py +++ b/src/apideck/model/tax_rates_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/team.py b/src/apideck/model/team.py index 80e230169d..3a34fe437f 100644 --- a/src/apideck/model/team.py +++ b/src/apideck/model/team.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/tender.py b/src/apideck/model/tender.py index ea1377ca42..09ccb41c0f 100644 --- a/src/apideck/model/tender.py +++ b/src/apideck/model/tender.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/ticket.py b/src/apideck/model/ticket.py index d3ee82d0cf..5c490a3705 100644 --- a/src/apideck/model/ticket.py +++ b/src/apideck/model/ticket.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/tickets_sort.py b/src/apideck/model/tickets_sort.py index 7c09081f22..910ed12d89 100644 --- a/src/apideck/model/tickets_sort.py +++ b/src/apideck/model/tickets_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/time_off_request.py b/src/apideck/model/time_off_request.py index 603e06fd39..b42034c790 100644 --- a/src/apideck/model/time_off_request.py +++ b/src/apideck/model/time_off_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -139,6 +139,7 @@ def openapi_types(): 'approval_date': (str, none_type,), # noqa: E501 'units': (str, none_type,), # noqa: E501 'amount': (float, none_type,), # noqa: E501 + 'day_part': (str, none_type,), # noqa: E501 'notes': (TimeOffRequestNotes,), # noqa: E501 'custom_mappings': ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type,), # noqa: E501 'updated_by': (str, none_type,), # noqa: E501 @@ -167,6 +168,7 @@ def discriminator(): 'approval_date': 'approval_date', # noqa: E501 'units': 'units', # noqa: E501 'amount': 'amount', # noqa: E501 + 'day_part': 'day_part', # noqa: E501 'notes': 'notes', # noqa: E501 'custom_mappings': 'custom_mappings', # noqa: E501 'updated_by': 'updated_by', # noqa: E501 @@ -236,6 +238,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 approval_date (str, none_type): The date the request was approved. [optional] # noqa: E501 units (str, none_type): The unit of time off requested. Possible values include: `hours`, `days`, or `other`.. [optional] # noqa: E501 amount (float, none_type): The amount of time off requested.. [optional] # noqa: E501 + day_part (str, none_type): The day part of the time off request.. [optional] # noqa: E501 notes (TimeOffRequestNotes): [optional] # noqa: E501 custom_mappings ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): When custom mappings are configured on the resource, the result is included here.. [optional] # noqa: E501 updated_by (str, none_type): The user who last updated the object.. [optional] # noqa: E501 @@ -337,6 +340,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 approval_date (str, none_type): The date the request was approved. [optional] # noqa: E501 units (str, none_type): The unit of time off requested. Possible values include: `hours`, `days`, or `other`.. [optional] # noqa: E501 amount (float, none_type): The amount of time off requested.. [optional] # noqa: E501 + day_part (str, none_type): The day part of the time off request.. [optional] # noqa: E501 notes (TimeOffRequestNotes): [optional] # noqa: E501 custom_mappings ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): When custom mappings are configured on the resource, the result is included here.. [optional] # noqa: E501 updated_by (str, none_type): The user who last updated the object.. [optional] # noqa: E501 diff --git a/src/apideck/model/time_off_request_notes.py b/src/apideck/model/time_off_request_notes.py index 902d86b9d9..a400e35834 100644 --- a/src/apideck/model/time_off_request_notes.py +++ b/src/apideck/model/time_off_request_notes.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/time_off_requests_filter.py b/src/apideck/model/time_off_requests_filter.py index e20eed5f6f..573f09c6ac 100644 --- a/src/apideck/model/time_off_requests_filter.py +++ b/src/apideck/model/time_off_requests_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -98,6 +98,7 @@ def openapi_types(): 'updated_since': (str,), # noqa: E501 'employee_id': (str,), # noqa: E501 'time_off_request_status': (str,), # noqa: E501 + 'company_id': (str,), # noqa: E501 } @cached_property @@ -111,6 +112,7 @@ def discriminator(): 'updated_since': 'updated_since', # noqa: E501 'employee_id': 'employee_id', # noqa: E501 'time_off_request_status': 'time_off_request_status', # noqa: E501 + 'company_id': 'company_id', # noqa: E501 } read_only_vars = { @@ -159,6 +161,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 updated_since (str): Minimum date the time off request was last created or modified. [optional] # noqa: E501 employee_id (str): Employee ID. [optional] # noqa: E501 time_off_request_status (str): Time off request status to filter on. [optional] # noqa: E501 + company_id (str): Company ID. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -245,6 +248,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 updated_since (str): Minimum date the time off request was last created or modified. [optional] # noqa: E501 employee_id (str): Employee ID. [optional] # noqa: E501 time_off_request_status (str): Time off request status to filter on. [optional] # noqa: E501 + company_id (str): Company ID. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/src/apideck/model/too_many_requests_response.py b/src/apideck/model/too_many_requests_response.py index c76d1b54cf..b524841cae 100644 --- a/src/apideck/model/too_many_requests_response.py +++ b/src/apideck/model/too_many_requests_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/too_many_requests_response_detail.py b/src/apideck/model/too_many_requests_response_detail.py index dac37e36b4..4e23fe8122 100644 --- a/src/apideck/model/too_many_requests_response_detail.py +++ b/src/apideck/model/too_many_requests_response_detail.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/tracking_category.py b/src/apideck/model/tracking_category.py index 36f17795df..c2854f3390 100644 --- a/src/apideck/model/tracking_category.py +++ b/src/apideck/model/tracking_category.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/tracking_item.py b/src/apideck/model/tracking_item.py index 4c8382c2f0..3b69a59cdd 100644 --- a/src/apideck/model/tracking_item.py +++ b/src/apideck/model/tracking_item.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/unauthorized_response.py b/src/apideck/model/unauthorized_response.py index c9a35b266e..88bc036170 100644 --- a/src/apideck/model/unauthorized_response.py +++ b/src/apideck/model/unauthorized_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/unexpected_error_response.py b/src/apideck/model/unexpected_error_response.py index 0286e05728..563c595ae8 100644 --- a/src/apideck/model/unexpected_error_response.py +++ b/src/apideck/model/unexpected_error_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/unified_api_id.py b/src/apideck/model/unified_api_id.py index 2f37bd1f39..c08e9815a1 100644 --- a/src/apideck/model/unified_api_id.py +++ b/src/apideck/model/unified_api_id.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/unified_file.py b/src/apideck/model/unified_file.py index c1c1777639..0c591cf95e 100644 --- a/src/apideck/model/unified_file.py +++ b/src/apideck/model/unified_file.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/unified_file_permissions.py b/src/apideck/model/unified_file_permissions.py index 031e286a01..20f62b9949 100644 --- a/src/apideck/model/unified_file_permissions.py +++ b/src/apideck/model/unified_file_permissions.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/unified_id.py b/src/apideck/model/unified_id.py index 6633160490..4c89ff95df 100644 --- a/src/apideck/model/unified_id.py +++ b/src/apideck/model/unified_id.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/unprocessable_response.py b/src/apideck/model/unprocessable_response.py index b1e7f997d7..0cf9c4c84d 100644 --- a/src/apideck/model/unprocessable_response.py +++ b/src/apideck/model/unprocessable_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_accounting_department_response.py b/src/apideck/model/update_accounting_department_response.py index dc373e01a0..e6565f1bd2 100644 --- a/src/apideck/model/update_accounting_department_response.py +++ b/src/apideck/model/update_accounting_department_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_accounting_location_response.py b/src/apideck/model/update_accounting_location_response.py index 46fc7c2569..62be5cf4cd 100644 --- a/src/apideck/model/update_accounting_location_response.py +++ b/src/apideck/model/update_accounting_location_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_activity_response.py b/src/apideck/model/update_activity_response.py index 38bf8071c2..099230d595 100644 --- a/src/apideck/model/update_activity_response.py +++ b/src/apideck/model/update_activity_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_applicant_response.py b/src/apideck/model/update_applicant_response.py index bda5913c87..f906375717 100644 --- a/src/apideck/model/update_applicant_response.py +++ b/src/apideck/model/update_applicant_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_application_response.py b/src/apideck/model/update_application_response.py index b184a106fa..ee17a6922e 100644 --- a/src/apideck/model/update_application_response.py +++ b/src/apideck/model/update_application_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_bill_payment_response.py b/src/apideck/model/update_bill_payment_response.py new file mode 100644 index 0000000000..0f0059b563 --- /dev/null +++ b/src/apideck/model/update_bill_payment_response.py @@ -0,0 +1,297 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from apideck.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 apideck.exceptions import ApiAttributeError + + +def lazy_import(): + from apideck.model.unified_id import UnifiedId + globals()['UnifiedId'] = UnifiedId + + +class UpdateBillPaymentResponse(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + lazy_import() + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + lazy_import() + return { + 'status_code': (int,), # noqa: E501 + 'status': (str,), # noqa: E501 + 'service': (str,), # noqa: E501 + 'resource': (str,), # noqa: E501 + 'operation': (str,), # noqa: E501 + 'data': (UnifiedId,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'status_code': 'status_code', # noqa: E501 + 'status': 'status', # noqa: E501 + 'service': 'service', # noqa: E501 + 'resource': 'resource', # noqa: E501 + 'operation': 'operation', # noqa: E501 + 'data': 'data', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """UpdateBillPaymentResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data (UnifiedId): + + 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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """UpdateBillPaymentResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data (UnifiedId): + + 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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + 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/src/apideck/model/update_bill_response.py b/src/apideck/model/update_bill_response.py index 71ab57394a..64a1ac7bc1 100644 --- a/src/apideck/model/update_bill_response.py +++ b/src/apideck/model/update_bill_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_comment_response.py b/src/apideck/model/update_comment_response.py index acfef17824..ac921ca311 100644 --- a/src/apideck/model/update_comment_response.py +++ b/src/apideck/model/update_comment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_company_response.py b/src/apideck/model/update_company_response.py index 484e60a539..a7e6d4181e 100644 --- a/src/apideck/model/update_company_response.py +++ b/src/apideck/model/update_company_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_connection_response.py b/src/apideck/model/update_connection_response.py index aebfaa62d2..4ce27a5873 100644 --- a/src/apideck/model/update_connection_response.py +++ b/src/apideck/model/update_connection_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_consumer_request.py b/src/apideck/model/update_consumer_request.py index 3ad061a728..6f5b7f496a 100644 --- a/src/apideck/model/update_consumer_request.py +++ b/src/apideck/model/update_consumer_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_consumer_response.py b/src/apideck/model/update_consumer_response.py index 7b93fab309..cb63e16033 100644 --- a/src/apideck/model/update_consumer_response.py +++ b/src/apideck/model/update_consumer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_contact_response.py b/src/apideck/model/update_contact_response.py index 84ae7ad001..c4b0931c78 100644 --- a/src/apideck/model/update_contact_response.py +++ b/src/apideck/model/update_contact_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_credit_note_response.py b/src/apideck/model/update_credit_note_response.py index 955cf593bc..7f6d8b0377 100644 --- a/src/apideck/model/update_credit_note_response.py +++ b/src/apideck/model/update_credit_note_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_custom_mapping_request.py b/src/apideck/model/update_custom_mapping_request.py index 00cd0e70e3..edef9d233c 100644 --- a/src/apideck/model/update_custom_mapping_request.py +++ b/src/apideck/model/update_custom_mapping_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_custom_mapping_response.py b/src/apideck/model/update_custom_mapping_response.py index 97a9942955..6c6fce9ddd 100644 --- a/src/apideck/model/update_custom_mapping_response.py +++ b/src/apideck/model/update_custom_mapping_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_customer_response.py b/src/apideck/model/update_customer_response.py index a8c82fbd76..bba17e8942 100644 --- a/src/apideck/model/update_customer_response.py +++ b/src/apideck/model/update_customer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_department_response.py b/src/apideck/model/update_department_response.py index 0aaf654858..d768c91190 100644 --- a/src/apideck/model/update_department_response.py +++ b/src/apideck/model/update_department_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_drive_group_response.py b/src/apideck/model/update_drive_group_response.py index 80d8bc8640..51432a0997 100644 --- a/src/apideck/model/update_drive_group_response.py +++ b/src/apideck/model/update_drive_group_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_drive_response.py b/src/apideck/model/update_drive_response.py index b999f22a79..123249ae00 100644 --- a/src/apideck/model/update_drive_response.py +++ b/src/apideck/model/update_drive_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_ecommerce_customer_response.py b/src/apideck/model/update_ecommerce_customer_response.py index c59fd95511..68f6f9b902 100644 --- a/src/apideck/model/update_ecommerce_customer_response.py +++ b/src/apideck/model/update_ecommerce_customer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_ecommerce_order_response.py b/src/apideck/model/update_ecommerce_order_response.py index e98b92d644..e06e86d5d2 100644 --- a/src/apideck/model/update_ecommerce_order_response.py +++ b/src/apideck/model/update_ecommerce_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_employee_response.py b/src/apideck/model/update_employee_response.py index 0b5aa70f6f..48597c3840 100644 --- a/src/apideck/model/update_employee_response.py +++ b/src/apideck/model/update_employee_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_expense_response.py b/src/apideck/model/update_expense_response.py new file mode 100644 index 0000000000..e2596f7458 --- /dev/null +++ b/src/apideck/model/update_expense_response.py @@ -0,0 +1,297 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import re # noqa: F401 +import sys # noqa: F401 + +from apideck.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 apideck.exceptions import ApiAttributeError + + +def lazy_import(): + from apideck.model.unified_id import UnifiedId + globals()['UnifiedId'] = UnifiedId + + +class UpdateExpenseResponse(ModelNormal): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + + Attributes: + allowed_values (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + with a capitalized key describing the allowed value and an allowed + value. These dicts store the allowed enum values. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + discriminator_value_class_map (dict): A dict to go from the discriminator + variable value to the discriminator class name. + validations (dict): The key is the tuple path to the attribute + and the for var_name this is (var_name,). The value is a dict + that stores validations for max_length, min_length, max_items, + min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, + inclusive_minimum, and regex. + additional_properties_type (tuple): A tuple of classes accepted + as additional properties values. + """ + + allowed_values = { + } + + validations = { + } + + @cached_property + def additional_properties_type(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + """ + lazy_import() + return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 + + _nullable = False + + @cached_property + def openapi_types(): + """ + This must be a method because a model may have properties that are + of type self, this must run after the class is loaded + + Returns + openapi_types (dict): The key is attribute name + and the value is attribute type. + """ + lazy_import() + return { + 'status_code': (int,), # noqa: E501 + 'status': (str,), # noqa: E501 + 'service': (str,), # noqa: E501 + 'resource': (str,), # noqa: E501 + 'operation': (str,), # noqa: E501 + 'data': (UnifiedId,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'status_code': 'status_code', # noqa: E501 + 'status': 'status', # noqa: E501 + 'service': 'service', # noqa: E501 + 'resource': 'resource', # noqa: E501 + 'operation': 'operation', # noqa: E501 + 'data': 'data', # noqa: E501 + } + + read_only_vars = { + } + + _composed_schemas = {} + + @classmethod + @convert_js_args_to_python_args + def _from_openapi_data(cls, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """UpdateExpenseResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data (UnifiedId): + + 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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + for var_name, var_value in kwargs.items(): + if var_name not in self.attribute_map and \ + self._configuration is not None and \ + self._configuration.discard_unknown_keys and \ + self.additional_properties_type is None: + # discard variable. + continue + setattr(self, var_name, var_value) + return self + + required_properties = set([ + '_data_store', + '_check_type', + '_spec_property_naming', + '_path_to_item', + '_configuration', + '_visited_composed_classes', + ]) + + @convert_js_args_to_python_args + def __init__(self, status_code, status, service, resource, operation, data, *args, **kwargs): # noqa: E501 + """UpdateExpenseResponse - a model defined in OpenAPI + + Args: + status_code (int): HTTP Response Status Code + status (str): HTTP Response Status + service (str): Apideck ID of service provider + resource (str): Unified API resource name + operation (str): Operation performed + data (UnifiedId): + + 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: + raise ApiTypeError( + "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( + args, + self.__class__.__name__, + ), + path_to_item=_path_to_item, + valid_classes=(self.__class__,), + ) + + self._data_store = {} + self._check_type = _check_type + self._spec_property_naming = _spec_property_naming + self._path_to_item = _path_to_item + self._configuration = _configuration + self._visited_composed_classes = _visited_composed_classes + (self.__class__,) + + self.status_code = status_code + self.status = status + self.service = service + self.resource = resource + self.operation = operation + self.data = data + 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/src/apideck/model/update_file_request.py b/src/apideck/model/update_file_request.py index af8a43f091..1dbba8756e 100644 --- a/src/apideck/model/update_file_request.py +++ b/src/apideck/model/update_file_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_file_response.py b/src/apideck/model/update_file_response.py index 7a206e8994..a9283727b4 100644 --- a/src/apideck/model/update_file_response.py +++ b/src/apideck/model/update_file_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_folder_request.py b/src/apideck/model/update_folder_request.py index 65d762fc1d..051a5a24d9 100644 --- a/src/apideck/model/update_folder_request.py +++ b/src/apideck/model/update_folder_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_folder_response.py b/src/apideck/model/update_folder_response.py index 666ddf95f4..7cef9c7dab 100644 --- a/src/apideck/model/update_folder_response.py +++ b/src/apideck/model/update_folder_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_hris_company_response.py b/src/apideck/model/update_hris_company_response.py index b050ccdb44..49724ece4f 100644 --- a/src/apideck/model/update_hris_company_response.py +++ b/src/apideck/model/update_hris_company_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_invoice_items_response.py b/src/apideck/model/update_invoice_items_response.py index 3505f44c18..00aaa46a59 100644 --- a/src/apideck/model/update_invoice_items_response.py +++ b/src/apideck/model/update_invoice_items_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_invoice_response.py b/src/apideck/model/update_invoice_response.py index 082d70ff69..10d6cef7bd 100644 --- a/src/apideck/model/update_invoice_response.py +++ b/src/apideck/model/update_invoice_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_item_response.py b/src/apideck/model/update_item_response.py index bcbf5a6f13..2c8ffa0640 100644 --- a/src/apideck/model/update_item_response.py +++ b/src/apideck/model/update_item_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_job_response.py b/src/apideck/model/update_job_response.py index ff025e320c..5900a46878 100644 --- a/src/apideck/model/update_job_response.py +++ b/src/apideck/model/update_job_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_journal_entry_response.py b/src/apideck/model/update_journal_entry_response.py index e9c70627bf..144848099d 100644 --- a/src/apideck/model/update_journal_entry_response.py +++ b/src/apideck/model/update_journal_entry_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_lead_response.py b/src/apideck/model/update_lead_response.py index 8f70fb3d34..54957d3b13 100644 --- a/src/apideck/model/update_lead_response.py +++ b/src/apideck/model/update_lead_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_ledger_account_response.py b/src/apideck/model/update_ledger_account_response.py index 106f9a54bc..2048360153 100644 --- a/src/apideck/model/update_ledger_account_response.py +++ b/src/apideck/model/update_ledger_account_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_location_response.py b/src/apideck/model/update_location_response.py index 5eca65f713..3c60a51b57 100644 --- a/src/apideck/model/update_location_response.py +++ b/src/apideck/model/update_location_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_merchant_response.py b/src/apideck/model/update_merchant_response.py index 7badcd10b4..cf39b04a2a 100644 --- a/src/apideck/model/update_merchant_response.py +++ b/src/apideck/model/update_merchant_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_message_response.py b/src/apideck/model/update_message_response.py index 8814d23ba3..4dc38a4b17 100644 --- a/src/apideck/model/update_message_response.py +++ b/src/apideck/model/update_message_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_modifier_group_response.py b/src/apideck/model/update_modifier_group_response.py index 09fa6ea548..b03b6309a8 100644 --- a/src/apideck/model/update_modifier_group_response.py +++ b/src/apideck/model/update_modifier_group_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_modifier_response.py b/src/apideck/model/update_modifier_response.py index 672bbc2b9d..3d2b61f2a2 100644 --- a/src/apideck/model/update_modifier_response.py +++ b/src/apideck/model/update_modifier_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_note_response.py b/src/apideck/model/update_note_response.py index ff743d20d5..52e6290269 100644 --- a/src/apideck/model/update_note_response.py +++ b/src/apideck/model/update_note_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_opportunity_response.py b/src/apideck/model/update_opportunity_response.py index 88dae6244f..d818a73e1d 100644 --- a/src/apideck/model/update_opportunity_response.py +++ b/src/apideck/model/update_opportunity_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_order_response.py b/src/apideck/model/update_order_response.py index fd9a5dc6fb..baaeb56513 100644 --- a/src/apideck/model/update_order_response.py +++ b/src/apideck/model/update_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_order_type_response.py b/src/apideck/model/update_order_type_response.py index 09625d4087..471c472c3c 100644 --- a/src/apideck/model/update_order_type_response.py +++ b/src/apideck/model/update_order_type_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_payment_response.py b/src/apideck/model/update_payment_response.py index 63b83278ca..40728f2a45 100644 --- a/src/apideck/model/update_payment_response.py +++ b/src/apideck/model/update_payment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_pipeline_response.py b/src/apideck/model/update_pipeline_response.py index c11e74ad91..478e5c2e86 100644 --- a/src/apideck/model/update_pipeline_response.py +++ b/src/apideck/model/update_pipeline_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_pos_payment_response.py b/src/apideck/model/update_pos_payment_response.py index b483fe3d2a..bdcb16d9a3 100644 --- a/src/apideck/model/update_pos_payment_response.py +++ b/src/apideck/model/update_pos_payment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_product_response.py b/src/apideck/model/update_product_response.py index 696ced778a..bd51943709 100644 --- a/src/apideck/model/update_product_response.py +++ b/src/apideck/model/update_product_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_purchase_order_response.py b/src/apideck/model/update_purchase_order_response.py index be274c2215..7064d63141 100644 --- a/src/apideck/model/update_purchase_order_response.py +++ b/src/apideck/model/update_purchase_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_shared_link_response.py b/src/apideck/model/update_shared_link_response.py index 5ea68be5e9..1a9ba6501c 100644 --- a/src/apideck/model/update_shared_link_response.py +++ b/src/apideck/model/update_shared_link_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_subsidiary_response.py b/src/apideck/model/update_subsidiary_response.py index a9d7f8e4ee..f24d77e22f 100644 --- a/src/apideck/model/update_subsidiary_response.py +++ b/src/apideck/model/update_subsidiary_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_supplier_response.py b/src/apideck/model/update_supplier_response.py index 59ba5ebc46..87c927df1e 100644 --- a/src/apideck/model/update_supplier_response.py +++ b/src/apideck/model/update_supplier_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_tax_rate_response.py b/src/apideck/model/update_tax_rate_response.py index f6f795dbcf..2f971f606a 100644 --- a/src/apideck/model/update_tax_rate_response.py +++ b/src/apideck/model/update_tax_rate_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_tender_response.py b/src/apideck/model/update_tender_response.py index e3fabbbb59..31a2337213 100644 --- a/src/apideck/model/update_tender_response.py +++ b/src/apideck/model/update_tender_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_ticket_response.py b/src/apideck/model/update_ticket_response.py index 8bcf841bfc..8327d4b8f5 100644 --- a/src/apideck/model/update_ticket_response.py +++ b/src/apideck/model/update_ticket_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_time_off_request_response.py b/src/apideck/model/update_time_off_request_response.py index cb1c8123d3..bbc4156ca4 100644 --- a/src/apideck/model/update_time_off_request_response.py +++ b/src/apideck/model/update_time_off_request_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_tracking_category_response.py b/src/apideck/model/update_tracking_category_response.py index 1c93f19d88..6c5673c4d3 100644 --- a/src/apideck/model/update_tracking_category_response.py +++ b/src/apideck/model/update_tracking_category_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_upload_session_response.py b/src/apideck/model/update_upload_session_response.py index 530398fdf3..85a6410372 100644 --- a/src/apideck/model/update_upload_session_response.py +++ b/src/apideck/model/update_upload_session_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_user_response.py b/src/apideck/model/update_user_response.py index 0fa2817393..91899304ae 100644 --- a/src/apideck/model/update_user_response.py +++ b/src/apideck/model/update_user_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_webhook_request.py b/src/apideck/model/update_webhook_request.py index d0bdb01eb3..bcea330d19 100644 --- a/src/apideck/model/update_webhook_request.py +++ b/src/apideck/model/update_webhook_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/update_webhook_response.py b/src/apideck/model/update_webhook_response.py index 68b240f3f3..62c515ad54 100644 --- a/src/apideck/model/update_webhook_response.py +++ b/src/apideck/model/update_webhook_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/upload_session.py b/src/apideck/model/upload_session.py index 7023890a89..bc001ea697 100644 --- a/src/apideck/model/upload_session.py +++ b/src/apideck/model/upload_session.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/url.py b/src/apideck/model/url.py index ff8301c2b1..e4e9449ec2 100644 --- a/src/apideck/model/url.py +++ b/src/apideck/model/url.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/user.py b/src/apideck/model/user.py index 79fece347f..ad39aaaa0e 100644 --- a/src/apideck/model/user.py +++ b/src/apideck/model/user.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/validate_connection_state_response.py b/src/apideck/model/validate_connection_state_response.py index 56dcbfc6cc..9362ec7467 100644 --- a/src/apideck/model/validate_connection_state_response.py +++ b/src/apideck/model/validate_connection_state_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/validate_connection_state_response_data.py b/src/apideck/model/validate_connection_state_response_data.py index b91fdbc23c..0a262dbc7b 100644 --- a/src/apideck/model/validate_connection_state_response_data.py +++ b/src/apideck/model/validate_connection_state_response_data.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/vault_event_type.py b/src/apideck/model/vault_event_type.py index 531faa2f5f..4a05e92f3d 100644 --- a/src/apideck/model/vault_event_type.py +++ b/src/apideck/model/vault_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/virtual_webhooks.py b/src/apideck/model/virtual_webhooks.py index a0c5461dbd..f79e1649f2 100644 --- a/src/apideck/model/virtual_webhooks.py +++ b/src/apideck/model/virtual_webhooks.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/wallet_details.py b/src/apideck/model/wallet_details.py index 74f0e22ad7..e5ca8934dc 100644 --- a/src/apideck/model/wallet_details.py +++ b/src/apideck/model/wallet_details.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/webhook.py b/src/apideck/model/webhook.py index 4aee177abd..76b9c9ccf9 100644 --- a/src/apideck/model/webhook.py +++ b/src/apideck/model/webhook.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/webhook_event.py b/src/apideck/model/webhook_event.py index b24bcd5ae2..e41f6f485a 100644 --- a/src/apideck/model/webhook_event.py +++ b/src/apideck/model/webhook_event.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/webhook_event_log.py b/src/apideck/model/webhook_event_log.py index ad8477f7f5..5aae53ac92 100644 --- a/src/apideck/model/webhook_event_log.py +++ b/src/apideck/model/webhook_event_log.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/webhook_event_log_attempts.py b/src/apideck/model/webhook_event_log_attempts.py index ed4cd5aceb..46d4533305 100644 --- a/src/apideck/model/webhook_event_log_attempts.py +++ b/src/apideck/model/webhook_event_log_attempts.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/webhook_event_log_service.py b/src/apideck/model/webhook_event_log_service.py index 66c135408c..4c2c0fae7f 100644 --- a/src/apideck/model/webhook_event_log_service.py +++ b/src/apideck/model/webhook_event_log_service.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/webhook_event_logs_filter.py b/src/apideck/model/webhook_event_logs_filter.py index 49977158d4..c01b3f437c 100644 --- a/src/apideck/model/webhook_event_logs_filter.py +++ b/src/apideck/model/webhook_event_logs_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/webhook_event_logs_filter_service.py b/src/apideck/model/webhook_event_logs_filter_service.py index f5ab634161..9b35617a42 100644 --- a/src/apideck/model/webhook_event_logs_filter_service.py +++ b/src/apideck/model/webhook_event_logs_filter_service.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/webhook_event_type.py b/src/apideck/model/webhook_event_type.py index 14772547d9..1426e62d0c 100644 --- a/src/apideck/model/webhook_event_type.py +++ b/src/apideck/model/webhook_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -154,6 +154,9 @@ class WebhookEventType(ModelSimple): 'ATS.APPLICATION.CREATED': "ats.application.created", 'ATS.APPLICATION.UPDATED': "ats.application.updated", 'ATS.APPLICATION.DELETED': "ats.application.deleted", + 'ACCOUNTING.EXPENSE.CREATED': "accounting.expense.created", + 'ACCOUNTING.EXPENSE.UPDATED': "accounting.expense.updated", + 'ACCOUNTING.EXPENSE.DELETED': "accounting.expense.deleted", }, } @@ -205,10 +208,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):, must be one of ["*", "crm.activity.created", "crm.activity.updated", "crm.activity.deleted", "crm.company.created", "crm.company.updated", "crm.company.deleted", "crm.contact.created", "crm.contact.updated", "crm.contact.deleted", "crm.lead.created", "crm.lead.updated", "crm.lead.deleted", "crm.note.created", "crm.notes.updated", "crm.notes.deleted", "crm.opportunity.created", "crm.opportunity.updated", "crm.opportunity.deleted", "lead.lead.created", "lead.lead.updated", "lead.lead.deleted", "vault.connection.created", "vault.connection.updated", "vault.connection.disabled", "vault.connection.deleted", "vault.connection.callable", "vault.connection.revoked", "vault.connection.token_refresh.failed", "ats.job.created", "ats.job.updated", "ats.job.deleted", "ats.applicant.created", "ats.applicant.updated", "ats.applicant.deleted", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", "pos.order.created", "pos.order.updated", "pos.order.deleted", "pos.product.created", "pos.product.updated", "pos.product.deleted", "pos.payment.created", "pos.payment.updated", "pos.payment.deleted", "pos.merchant.created", "pos.merchant.updated", "pos.merchant.deleted", "pos.location.created", "pos.location.updated", "pos.location.deleted", "pos.item.created", "pos.item.updated", "pos.item.deleted", "pos.modifier.created", "pos.modifier.updated", "pos.modifier.deleted", "pos.modifier-group.created", "pos.modifier-group.updated", "pos.modifier-group.deleted", "hris.employee.created", "hris.employee.updated", "hris.employee.deleted", "hris.employee.terminated", "hris.company.created", "hris.company.updated", "hris.company.deleted", "file-storage.file.created", "file-storage.file.updated", "file-storage.file.deleted", "issue-tracking.ticket.created", "issue-tracking.ticket.updated", "issue-tracking.ticket.deleted", "ats.application.created", "ats.application.updated", "ats.application.deleted", ] # noqa: E501 + args[0] (str):, must be one of ["*", "crm.activity.created", "crm.activity.updated", "crm.activity.deleted", "crm.company.created", "crm.company.updated", "crm.company.deleted", "crm.contact.created", "crm.contact.updated", "crm.contact.deleted", "crm.lead.created", "crm.lead.updated", "crm.lead.deleted", "crm.note.created", "crm.notes.updated", "crm.notes.deleted", "crm.opportunity.created", "crm.opportunity.updated", "crm.opportunity.deleted", "lead.lead.created", "lead.lead.updated", "lead.lead.deleted", "vault.connection.created", "vault.connection.updated", "vault.connection.disabled", "vault.connection.deleted", "vault.connection.callable", "vault.connection.revoked", "vault.connection.token_refresh.failed", "ats.job.created", "ats.job.updated", "ats.job.deleted", "ats.applicant.created", "ats.applicant.updated", "ats.applicant.deleted", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", "pos.order.created", "pos.order.updated", "pos.order.deleted", "pos.product.created", "pos.product.updated", "pos.product.deleted", "pos.payment.created", "pos.payment.updated", "pos.payment.deleted", "pos.merchant.created", "pos.merchant.updated", "pos.merchant.deleted", "pos.location.created", "pos.location.updated", "pos.location.deleted", "pos.item.created", "pos.item.updated", "pos.item.deleted", "pos.modifier.created", "pos.modifier.updated", "pos.modifier.deleted", "pos.modifier-group.created", "pos.modifier-group.updated", "pos.modifier-group.deleted", "hris.employee.created", "hris.employee.updated", "hris.employee.deleted", "hris.employee.terminated", "hris.company.created", "hris.company.updated", "hris.company.deleted", "file-storage.file.created", "file-storage.file.updated", "file-storage.file.deleted", "issue-tracking.ticket.created", "issue-tracking.ticket.updated", "issue-tracking.ticket.deleted", "ats.application.created", "ats.application.updated", "ats.application.deleted", "accounting.expense.created", "accounting.expense.updated", "accounting.expense.deleted", ] # noqa: E501 Keyword Args: - value (str):, must be one of ["*", "crm.activity.created", "crm.activity.updated", "crm.activity.deleted", "crm.company.created", "crm.company.updated", "crm.company.deleted", "crm.contact.created", "crm.contact.updated", "crm.contact.deleted", "crm.lead.created", "crm.lead.updated", "crm.lead.deleted", "crm.note.created", "crm.notes.updated", "crm.notes.deleted", "crm.opportunity.created", "crm.opportunity.updated", "crm.opportunity.deleted", "lead.lead.created", "lead.lead.updated", "lead.lead.deleted", "vault.connection.created", "vault.connection.updated", "vault.connection.disabled", "vault.connection.deleted", "vault.connection.callable", "vault.connection.revoked", "vault.connection.token_refresh.failed", "ats.job.created", "ats.job.updated", "ats.job.deleted", "ats.applicant.created", "ats.applicant.updated", "ats.applicant.deleted", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", "pos.order.created", "pos.order.updated", "pos.order.deleted", "pos.product.created", "pos.product.updated", "pos.product.deleted", "pos.payment.created", "pos.payment.updated", "pos.payment.deleted", "pos.merchant.created", "pos.merchant.updated", "pos.merchant.deleted", "pos.location.created", "pos.location.updated", "pos.location.deleted", "pos.item.created", "pos.item.updated", "pos.item.deleted", "pos.modifier.created", "pos.modifier.updated", "pos.modifier.deleted", "pos.modifier-group.created", "pos.modifier-group.updated", "pos.modifier-group.deleted", "hris.employee.created", "hris.employee.updated", "hris.employee.deleted", "hris.employee.terminated", "hris.company.created", "hris.company.updated", "hris.company.deleted", "file-storage.file.created", "file-storage.file.updated", "file-storage.file.deleted", "issue-tracking.ticket.created", "issue-tracking.ticket.updated", "issue-tracking.ticket.deleted", "ats.application.created", "ats.application.updated", "ats.application.deleted", ] # noqa: E501 + value (str):, must be one of ["*", "crm.activity.created", "crm.activity.updated", "crm.activity.deleted", "crm.company.created", "crm.company.updated", "crm.company.deleted", "crm.contact.created", "crm.contact.updated", "crm.contact.deleted", "crm.lead.created", "crm.lead.updated", "crm.lead.deleted", "crm.note.created", "crm.notes.updated", "crm.notes.deleted", "crm.opportunity.created", "crm.opportunity.updated", "crm.opportunity.deleted", "lead.lead.created", "lead.lead.updated", "lead.lead.deleted", "vault.connection.created", "vault.connection.updated", "vault.connection.disabled", "vault.connection.deleted", "vault.connection.callable", "vault.connection.revoked", "vault.connection.token_refresh.failed", "ats.job.created", "ats.job.updated", "ats.job.deleted", "ats.applicant.created", "ats.applicant.updated", "ats.applicant.deleted", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", "pos.order.created", "pos.order.updated", "pos.order.deleted", "pos.product.created", "pos.product.updated", "pos.product.deleted", "pos.payment.created", "pos.payment.updated", "pos.payment.deleted", "pos.merchant.created", "pos.merchant.updated", "pos.merchant.deleted", "pos.location.created", "pos.location.updated", "pos.location.deleted", "pos.item.created", "pos.item.updated", "pos.item.deleted", "pos.modifier.created", "pos.modifier.updated", "pos.modifier.deleted", "pos.modifier-group.created", "pos.modifier-group.updated", "pos.modifier-group.deleted", "hris.employee.created", "hris.employee.updated", "hris.employee.deleted", "hris.employee.terminated", "hris.company.created", "hris.company.updated", "hris.company.deleted", "file-storage.file.created", "file-storage.file.updated", "file-storage.file.deleted", "issue-tracking.ticket.created", "issue-tracking.ticket.updated", "issue-tracking.ticket.deleted", "ats.application.created", "ats.application.updated", "ats.application.deleted", "accounting.expense.created", "accounting.expense.updated", "accounting.expense.deleted", ] # 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. @@ -295,10 +298,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):, must be one of ["*", "crm.activity.created", "crm.activity.updated", "crm.activity.deleted", "crm.company.created", "crm.company.updated", "crm.company.deleted", "crm.contact.created", "crm.contact.updated", "crm.contact.deleted", "crm.lead.created", "crm.lead.updated", "crm.lead.deleted", "crm.note.created", "crm.notes.updated", "crm.notes.deleted", "crm.opportunity.created", "crm.opportunity.updated", "crm.opportunity.deleted", "lead.lead.created", "lead.lead.updated", "lead.lead.deleted", "vault.connection.created", "vault.connection.updated", "vault.connection.disabled", "vault.connection.deleted", "vault.connection.callable", "vault.connection.revoked", "vault.connection.token_refresh.failed", "ats.job.created", "ats.job.updated", "ats.job.deleted", "ats.applicant.created", "ats.applicant.updated", "ats.applicant.deleted", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", "pos.order.created", "pos.order.updated", "pos.order.deleted", "pos.product.created", "pos.product.updated", "pos.product.deleted", "pos.payment.created", "pos.payment.updated", "pos.payment.deleted", "pos.merchant.created", "pos.merchant.updated", "pos.merchant.deleted", "pos.location.created", "pos.location.updated", "pos.location.deleted", "pos.item.created", "pos.item.updated", "pos.item.deleted", "pos.modifier.created", "pos.modifier.updated", "pos.modifier.deleted", "pos.modifier-group.created", "pos.modifier-group.updated", "pos.modifier-group.deleted", "hris.employee.created", "hris.employee.updated", "hris.employee.deleted", "hris.employee.terminated", "hris.company.created", "hris.company.updated", "hris.company.deleted", "file-storage.file.created", "file-storage.file.updated", "file-storage.file.deleted", "issue-tracking.ticket.created", "issue-tracking.ticket.updated", "issue-tracking.ticket.deleted", "ats.application.created", "ats.application.updated", "ats.application.deleted", ] # noqa: E501 + args[0] (str):, must be one of ["*", "crm.activity.created", "crm.activity.updated", "crm.activity.deleted", "crm.company.created", "crm.company.updated", "crm.company.deleted", "crm.contact.created", "crm.contact.updated", "crm.contact.deleted", "crm.lead.created", "crm.lead.updated", "crm.lead.deleted", "crm.note.created", "crm.notes.updated", "crm.notes.deleted", "crm.opportunity.created", "crm.opportunity.updated", "crm.opportunity.deleted", "lead.lead.created", "lead.lead.updated", "lead.lead.deleted", "vault.connection.created", "vault.connection.updated", "vault.connection.disabled", "vault.connection.deleted", "vault.connection.callable", "vault.connection.revoked", "vault.connection.token_refresh.failed", "ats.job.created", "ats.job.updated", "ats.job.deleted", "ats.applicant.created", "ats.applicant.updated", "ats.applicant.deleted", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", "pos.order.created", "pos.order.updated", "pos.order.deleted", "pos.product.created", "pos.product.updated", "pos.product.deleted", "pos.payment.created", "pos.payment.updated", "pos.payment.deleted", "pos.merchant.created", "pos.merchant.updated", "pos.merchant.deleted", "pos.location.created", "pos.location.updated", "pos.location.deleted", "pos.item.created", "pos.item.updated", "pos.item.deleted", "pos.modifier.created", "pos.modifier.updated", "pos.modifier.deleted", "pos.modifier-group.created", "pos.modifier-group.updated", "pos.modifier-group.deleted", "hris.employee.created", "hris.employee.updated", "hris.employee.deleted", "hris.employee.terminated", "hris.company.created", "hris.company.updated", "hris.company.deleted", "file-storage.file.created", "file-storage.file.updated", "file-storage.file.deleted", "issue-tracking.ticket.created", "issue-tracking.ticket.updated", "issue-tracking.ticket.deleted", "ats.application.created", "ats.application.updated", "ats.application.deleted", "accounting.expense.created", "accounting.expense.updated", "accounting.expense.deleted", ] # noqa: E501 Keyword Args: - value (str):, must be one of ["*", "crm.activity.created", "crm.activity.updated", "crm.activity.deleted", "crm.company.created", "crm.company.updated", "crm.company.deleted", "crm.contact.created", "crm.contact.updated", "crm.contact.deleted", "crm.lead.created", "crm.lead.updated", "crm.lead.deleted", "crm.note.created", "crm.notes.updated", "crm.notes.deleted", "crm.opportunity.created", "crm.opportunity.updated", "crm.opportunity.deleted", "lead.lead.created", "lead.lead.updated", "lead.lead.deleted", "vault.connection.created", "vault.connection.updated", "vault.connection.disabled", "vault.connection.deleted", "vault.connection.callable", "vault.connection.revoked", "vault.connection.token_refresh.failed", "ats.job.created", "ats.job.updated", "ats.job.deleted", "ats.applicant.created", "ats.applicant.updated", "ats.applicant.deleted", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", "pos.order.created", "pos.order.updated", "pos.order.deleted", "pos.product.created", "pos.product.updated", "pos.product.deleted", "pos.payment.created", "pos.payment.updated", "pos.payment.deleted", "pos.merchant.created", "pos.merchant.updated", "pos.merchant.deleted", "pos.location.created", "pos.location.updated", "pos.location.deleted", "pos.item.created", "pos.item.updated", "pos.item.deleted", "pos.modifier.created", "pos.modifier.updated", "pos.modifier.deleted", "pos.modifier-group.created", "pos.modifier-group.updated", "pos.modifier-group.deleted", "hris.employee.created", "hris.employee.updated", "hris.employee.deleted", "hris.employee.terminated", "hris.company.created", "hris.company.updated", "hris.company.deleted", "file-storage.file.created", "file-storage.file.updated", "file-storage.file.deleted", "issue-tracking.ticket.created", "issue-tracking.ticket.updated", "issue-tracking.ticket.deleted", "ats.application.created", "ats.application.updated", "ats.application.deleted", ] # noqa: E501 + value (str):, must be one of ["*", "crm.activity.created", "crm.activity.updated", "crm.activity.deleted", "crm.company.created", "crm.company.updated", "crm.company.deleted", "crm.contact.created", "crm.contact.updated", "crm.contact.deleted", "crm.lead.created", "crm.lead.updated", "crm.lead.deleted", "crm.note.created", "crm.notes.updated", "crm.notes.deleted", "crm.opportunity.created", "crm.opportunity.updated", "crm.opportunity.deleted", "lead.lead.created", "lead.lead.updated", "lead.lead.deleted", "vault.connection.created", "vault.connection.updated", "vault.connection.disabled", "vault.connection.deleted", "vault.connection.callable", "vault.connection.revoked", "vault.connection.token_refresh.failed", "ats.job.created", "ats.job.updated", "ats.job.deleted", "ats.applicant.created", "ats.applicant.updated", "ats.applicant.deleted", "accounting.customer.created", "accounting.customer.updated", "accounting.customer.deleted", "accounting.invoice.created", "accounting.invoice.updated", "accounting.invoice.deleted", "accounting.invoice_item.created", "accounting.invoice_item.updated", "accounting.invoice_item.deleted", "accounting.ledger_account.created", "accounting.ledger_account.updated", "accounting.ledger_account.deleted", "accounting.tax_rate.created", "accounting.tax_rate.updated", "accounting.tax_rate.deleted", "accounting.bill.created", "accounting.bill.updated", "accounting.bill.deleted", "accounting.payment.created", "accounting.payment.updated", "accounting.payment.deleted", "accounting.supplier.created", "accounting.supplier.updated", "accounting.supplier.deleted", "accounting.purchase-order.created", "accounting.purchase-order.updated", "accounting.purchase-order.deleted", "pos.order.created", "pos.order.updated", "pos.order.deleted", "pos.product.created", "pos.product.updated", "pos.product.deleted", "pos.payment.created", "pos.payment.updated", "pos.payment.deleted", "pos.merchant.created", "pos.merchant.updated", "pos.merchant.deleted", "pos.location.created", "pos.location.updated", "pos.location.deleted", "pos.item.created", "pos.item.updated", "pos.item.deleted", "pos.modifier.created", "pos.modifier.updated", "pos.modifier.deleted", "pos.modifier-group.created", "pos.modifier-group.updated", "pos.modifier-group.deleted", "hris.employee.created", "hris.employee.updated", "hris.employee.deleted", "hris.employee.terminated", "hris.company.created", "hris.company.updated", "hris.company.deleted", "file-storage.file.created", "file-storage.file.updated", "file-storage.file.deleted", "issue-tracking.ticket.created", "issue-tracking.ticket.updated", "issue-tracking.ticket.deleted", "ats.application.created", "ats.application.updated", "ats.application.deleted", "accounting.expense.created", "accounting.expense.updated", "accounting.expense.deleted", ] # 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/src/apideck/model/webhook_subscription.py b/src/apideck/model/webhook_subscription.py index e071760829..bd3e64c840 100644 --- a/src/apideck/model/webhook_subscription.py +++ b/src/apideck/model/webhook_subscription.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/webhook_support.py b/src/apideck/model/webhook_support.py index 4fc61aa3ff..bd0628316b 100644 --- a/src/apideck/model/webhook_support.py +++ b/src/apideck/model/webhook_support.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model/website.py b/src/apideck/model/website.py index fde54c0427..69c8f0a7b0 100644 --- a/src/apideck/model/website.py +++ b/src/apideck/model/website.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/model_utils.py b/src/apideck/model_utils.py index e5f904fd5b..8120e749b7 100644 --- a/src/apideck/model_utils.py +++ b/src/apideck/model_utils.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/apideck/models/__init__.py b/src/apideck/models/__init__.py index 9787934f6a..0440db0efd 100644 --- a/src/apideck/models/__init__.py +++ b/src/apideck/models/__init__.py @@ -53,6 +53,7 @@ from apideck.model.benefit import Benefit from apideck.model.bill import Bill from apideck.model.bill_line_item import BillLineItem +from apideck.model.bill_payment import BillPayment from apideck.model.bills_filter import BillsFilter from apideck.model.bills_sort import BillsSort from apideck.model.branch import Branch @@ -105,6 +106,7 @@ from apideck.model.create_application_response import CreateApplicationResponse from apideck.model.create_attachment_request import CreateAttachmentRequest from apideck.model.create_attachment_response import CreateAttachmentResponse +from apideck.model.create_bill_payment_response import CreateBillPaymentResponse from apideck.model.create_bill_response import CreateBillResponse from apideck.model.create_comment_response import CreateCommentResponse from apideck.model.create_company_response import CreateCompanyResponse @@ -121,6 +123,7 @@ from apideck.model.create_ecommerce_customer_response import CreateEcommerceCustomerResponse from apideck.model.create_ecommerce_order_response import CreateEcommerceOrderResponse from apideck.model.create_employee_response import CreateEmployeeResponse +from apideck.model.create_expense_response import CreateExpenseResponse from apideck.model.create_file_request import CreateFileRequest from apideck.model.create_file_response import CreateFileResponse from apideck.model.create_folder_request import CreateFolderRequest @@ -180,6 +183,7 @@ from apideck.model.delete_applicant_response import DeleteApplicantResponse from apideck.model.delete_application_response import DeleteApplicationResponse from apideck.model.delete_attachment_response import DeleteAttachmentResponse +from apideck.model.delete_bill_payment_response import DeleteBillPaymentResponse from apideck.model.delete_bill_response import DeleteBillResponse from apideck.model.delete_comment_response import DeleteCommentResponse from apideck.model.delete_company_response import DeleteCompanyResponse @@ -193,6 +197,7 @@ from apideck.model.delete_ecommerce_customer_response import DeleteEcommerceCustomerResponse from apideck.model.delete_ecommerce_order_response import DeleteEcommerceOrderResponse from apideck.model.delete_employee_response import DeleteEmployeeResponse +from apideck.model.delete_expense_response import DeleteExpenseResponse from apideck.model.delete_file_response import DeleteFileResponse from apideck.model.delete_folder_response import DeleteFolderResponse from apideck.model.delete_hris_company_response import DeleteHrisCompanyResponse @@ -230,6 +235,7 @@ from apideck.model.delete_webhook_response import DeleteWebhookResponse from apideck.model.delivery_url import DeliveryUrl from apideck.model.department import Department +from apideck.model.deprecated_linked_supplier import DeprecatedLinkedSupplier from apideck.model.deprecated_linked_tracking_category import DeprecatedLinkedTrackingCategory from apideck.model.drive import Drive from apideck.model.drive_group import DriveGroup @@ -270,6 +276,8 @@ from apideck.model.execute_webhook_event_request import ExecuteWebhookEventRequest from apideck.model.execute_webhook_events_request import ExecuteWebhookEventsRequest from apideck.model.execute_webhook_response import ExecuteWebhookResponse +from apideck.model.expense import Expense +from apideck.model.expense_line_item import ExpenseLineItem from apideck.model.file_storage_event_type import FileStorageEventType from apideck.model.file_type import FileType from apideck.model.files_filter import FilesFilter @@ -297,6 +305,8 @@ from apideck.model.get_attachment_response import GetAttachmentResponse from apideck.model.get_attachments_response import GetAttachmentsResponse from apideck.model.get_balance_sheet_response import GetBalanceSheetResponse +from apideck.model.get_bill_payment_response import GetBillPaymentResponse +from apideck.model.get_bill_payments_response import GetBillPaymentsResponse from apideck.model.get_bill_response import GetBillResponse from apideck.model.get_bills_response import GetBillsResponse from apideck.model.get_collection_response import GetCollectionResponse @@ -343,6 +353,8 @@ from apideck.model.get_employee_response import GetEmployeeResponse from apideck.model.get_employee_schedules_response import GetEmployeeSchedulesResponse from apideck.model.get_employees_response import GetEmployeesResponse +from apideck.model.get_expense_response import GetExpenseResponse +from apideck.model.get_expenses_response import GetExpensesResponse from apideck.model.get_file_response import GetFileResponse from apideck.model.get_files_response import GetFilesResponse from apideck.model.get_folder_response import GetFolderResponse @@ -516,6 +528,8 @@ from apideck.model.payment_card import PaymentCard from apideck.model.payment_frequency import PaymentFrequency from apideck.model.payment_required_response import PaymentRequiredResponse +from apideck.model.payment_status import PaymentStatus +from apideck.model.payment_type import PaymentType from apideck.model.payment_unit import PaymentUnit from apideck.model.payments_filter import PaymentsFilter from apideck.model.payments_sort import PaymentsSort @@ -601,6 +615,7 @@ from apideck.model.update_activity_response import UpdateActivityResponse from apideck.model.update_applicant_response import UpdateApplicantResponse from apideck.model.update_application_response import UpdateApplicationResponse +from apideck.model.update_bill_payment_response import UpdateBillPaymentResponse from apideck.model.update_bill_response import UpdateBillResponse from apideck.model.update_comment_response import UpdateCommentResponse from apideck.model.update_company_response import UpdateCompanyResponse @@ -618,6 +633,7 @@ from apideck.model.update_ecommerce_customer_response import UpdateEcommerceCustomerResponse from apideck.model.update_ecommerce_order_response import UpdateEcommerceOrderResponse from apideck.model.update_employee_response import UpdateEmployeeResponse +from apideck.model.update_expense_response import UpdateExpenseResponse from apideck.model.update_file_request import UpdateFileRequest from apideck.model.update_file_response import UpdateFileResponse from apideck.model.update_folder_request import UpdateFolderRequest diff --git a/src/apideck/rest.py b/src/apideck/rest.py index b5cd850b4a..74882468fa 100644 --- a/src/apideck/rest.py +++ b/src/apideck/rest.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/setup.py b/src/setup.py index 529424b20a..b0587a35b5 100644 --- a/src/setup.py +++ b/src/setup.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -11,7 +11,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "apideck" -VERSION = "1.4.3" +VERSION = "1.4.4" # To install the library, run the following # # python setup.py install diff --git a/src/test/test_accounting_api.py b/src/test/test_accounting_api.py index 552ce07efc..0ade9f1cc1 100644 --- a/src/test/test_accounting_api.py +++ b/src/test/test_accounting_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -58,6 +58,41 @@ def test_balance_sheet_one(self): """ pass + def test_bill_payments_add(self): + """Test case for bill_payments_add + + Create Bill Payment # noqa: E501 + """ + pass + + def test_bill_payments_all(self): + """Test case for bill_payments_all + + List Bill Payments # noqa: E501 + """ + pass + + def test_bill_payments_delete(self): + """Test case for bill_payments_delete + + Delete Bill Payment # noqa: E501 + """ + pass + + def test_bill_payments_one(self): + """Test case for bill_payments_one + + Get Bill Payment # noqa: E501 + """ + pass + + def test_bill_payments_update(self): + """Test case for bill_payments_update + + Update Bill Payment # noqa: E501 + """ + pass + def test_bills_add(self): """Test case for bills_add @@ -205,6 +240,41 @@ def test_departments_update(self): """ pass + def test_expenses_add(self): + """Test case for expenses_add + + Create Expense # noqa: E501 + """ + pass + + def test_expenses_all(self): + """Test case for expenses_all + + List Expenses # noqa: E501 + """ + pass + + def test_expenses_delete(self): + """Test case for expenses_delete + + Delete Expense # noqa: E501 + """ + pass + + def test_expenses_one(self): + """Test case for expenses_one + + Get Expense # noqa: E501 + """ + pass + + def test_expenses_update(self): + """Test case for expenses_update + + Update Expense # noqa: E501 + """ + pass + def test_invoice_items_add(self): """Test case for invoice_items_add diff --git a/src/test/test_accounting_customer.py b/src/test/test_accounting_customer.py index 90536173cf..cf68d53f41 100644 --- a/src/test/test_accounting_customer.py +++ b/src/test/test_accounting_customer.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_accounting_department.py b/src/test/test_accounting_department.py index f0d46e4e1d..59a462d9e1 100644 --- a/src/test/test_accounting_department.py +++ b/src/test/test_accounting_department.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_accounting_departments_filter.py b/src/test/test_accounting_departments_filter.py index 1f45d0db98..b318f64c57 100644 --- a/src/test/test_accounting_departments_filter.py +++ b/src/test/test_accounting_departments_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_accounting_event_type.py b/src/test/test_accounting_event_type.py index c30ab988b1..1b114dd53b 100644 --- a/src/test/test_accounting_event_type.py +++ b/src/test/test_accounting_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_accounting_location.py b/src/test/test_accounting_location.py index abeaa924bf..5516c0834c 100644 --- a/src/test/test_accounting_location.py +++ b/src/test/test_accounting_location.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_accounting_locations_filter.py b/src/test/test_accounting_locations_filter.py index eb6087d397..dd667be6f7 100644 --- a/src/test/test_accounting_locations_filter.py +++ b/src/test/test_accounting_locations_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_activities_filter.py b/src/test/test_activities_filter.py index d8fba99631..75b4e603e7 100644 --- a/src/test/test_activities_filter.py +++ b/src/test/test_activities_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_activities_sort.py b/src/test/test_activities_sort.py index a394763ad5..8e5e9fe29c 100644 --- a/src/test/test_activities_sort.py +++ b/src/test/test_activities_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_activity.py b/src/test/test_activity.py index 6af56ba04a..2d223f7822 100644 --- a/src/test/test_activity.py +++ b/src/test/test_activity.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_activity_attendee.py b/src/test/test_activity_attendee.py index c6b1c62b41..fb3462a22b 100644 --- a/src/test/test_activity_attendee.py +++ b/src/test/test_activity_attendee.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_address.py b/src/test/test_address.py index 63f429f33e..cc028f51e6 100644 --- a/src/test/test_address.py +++ b/src/test/test_address.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_allocation.py b/src/test/test_allocation.py index 116f9ec666..5113238d6f 100644 --- a/src/test/test_allocation.py +++ b/src/test/test_allocation.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_api.py b/src/test/test_api.py index 5ca87d6013..df9ddccd00 100644 --- a/src/test/test_api.py +++ b/src/test/test_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_api_resource.py b/src/test/test_api_resource.py index 165f721079..39a9bf920c 100644 --- a/src/test/test_api_resource.py +++ b/src/test/test_api_resource.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_api_resource_coverage.py b/src/test/test_api_resource_coverage.py index 96aefa10ec..c058c19c75 100644 --- a/src/test/test_api_resource_coverage.py +++ b/src/test/test_api_resource_coverage.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_api_resource_coverage_coverage.py b/src/test/test_api_resource_coverage_coverage.py index e62d2e3087..2c5c608d40 100644 --- a/src/test/test_api_resource_coverage_coverage.py +++ b/src/test/test_api_resource_coverage_coverage.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_api_resource_linked_resources.py b/src/test/test_api_resource_linked_resources.py index ca4115ddad..df00d2a125 100644 --- a/src/test/test_api_resource_linked_resources.py +++ b/src/test/test_api_resource_linked_resources.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_api_resources.py b/src/test/test_api_resources.py index 5218db7472..df7241be97 100644 --- a/src/test/test_api_resources.py +++ b/src/test/test_api_resources.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_api_status.py b/src/test/test_api_status.py index e8182f5c76..e7c380db7d 100644 --- a/src/test/test_api_status.py +++ b/src/test/test_api_status.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_apis_filter.py b/src/test/test_apis_filter.py index 4b7dc36446..b6c52d8f67 100644 --- a/src/test/test_apis_filter.py +++ b/src/test/test_apis_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_applicant.py b/src/test/test_applicant.py index 7ed78c8fbf..9466cdb909 100644 --- a/src/test/test_applicant.py +++ b/src/test/test_applicant.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_applicant_social_links.py b/src/test/test_applicant_social_links.py index d9cb432856..829a8b358e 100644 --- a/src/test/test_applicant_social_links.py +++ b/src/test/test_applicant_social_links.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_applicant_websites.py b/src/test/test_applicant_websites.py index ea0e4aedc1..aa5437c4f4 100644 --- a/src/test/test_applicant_websites.py +++ b/src/test/test_applicant_websites.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_applicants_filter.py b/src/test/test_applicants_filter.py index 39e872a755..c2c64ab7f4 100644 --- a/src/test/test_applicants_filter.py +++ b/src/test/test_applicants_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_application.py b/src/test/test_application.py index fb8c2b7086..713abdd2d5 100644 --- a/src/test/test_application.py +++ b/src/test/test_application.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_application_stage.py b/src/test/test_application_stage.py index 07564765ab..748cbb3fe0 100644 --- a/src/test/test_application_stage.py +++ b/src/test/test_application_stage.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_assignee.py b/src/test/test_assignee.py index f8a14e2178..dfde825372 100644 --- a/src/test/test_assignee.py +++ b/src/test/test_assignee.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ats_activity.py b/src/test/test_ats_activity.py index f0aa2db870..57b21e69c3 100644 --- a/src/test/test_ats_activity.py +++ b/src/test/test_ats_activity.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ats_api.py b/src/test/test_ats_api.py index b23d031f71..650c22a0e9 100644 --- a/src/test/test_ats_api.py +++ b/src/test/test_ats_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ats_event_type.py b/src/test/test_ats_event_type.py index 5330de5990..2de7076a12 100644 --- a/src/test/test_ats_event_type.py +++ b/src/test/test_ats_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_attachment.py b/src/test/test_attachment.py index de70e03a00..c3d98d1e94 100644 --- a/src/test/test_attachment.py +++ b/src/test/test_attachment.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_attachment_reference.py b/src/test/test_attachment_reference.py index 64028e272b..01deaa85f1 100644 --- a/src/test/test_attachment_reference.py +++ b/src/test/test_attachment_reference.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_attachment_reference_type.py b/src/test/test_attachment_reference_type.py index d1be808005..1026ed66ab 100644 --- a/src/test/test_attachment_reference_type.py +++ b/src/test/test_attachment_reference_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_auth_type.py b/src/test/test_auth_type.py index 3b0e9252a4..f5819612d2 100644 --- a/src/test/test_auth_type.py +++ b/src/test/test_auth_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_bad_request_response.py b/src/test/test_bad_request_response.py index a10fb0ab70..6adc8b28fb 100644 --- a/src/test/test_bad_request_response.py +++ b/src/test/test_bad_request_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_balance_sheet.py b/src/test/test_balance_sheet.py index fc9db1d90b..64ebe9ece9 100644 --- a/src/test/test_balance_sheet.py +++ b/src/test/test_balance_sheet.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_balance_sheet_account.py b/src/test/test_balance_sheet_account.py index 3864326f26..9696733517 100644 --- a/src/test/test_balance_sheet_account.py +++ b/src/test/test_balance_sheet_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_balance_sheet_account_record.py b/src/test/test_balance_sheet_account_record.py index 929fac8b33..abf2737b5b 100644 --- a/src/test/test_balance_sheet_account_record.py +++ b/src/test/test_balance_sheet_account_record.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_balance_sheet_accounts.py b/src/test/test_balance_sheet_accounts.py index 12fa476ea0..b60ba7c884 100644 --- a/src/test/test_balance_sheet_accounts.py +++ b/src/test/test_balance_sheet_accounts.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_balance_sheet_filter.py b/src/test/test_balance_sheet_filter.py index e59996e9c6..10a1c6de90 100644 --- a/src/test/test_balance_sheet_filter.py +++ b/src/test/test_balance_sheet_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_balance_sheet_reports.py b/src/test/test_balance_sheet_reports.py index b3ae89bcc6..d4b85ad7cb 100644 --- a/src/test/test_balance_sheet_reports.py +++ b/src/test/test_balance_sheet_reports.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_bank_account.py b/src/test/test_bank_account.py index c0943601bc..4ae01ea62a 100644 --- a/src/test/test_bank_account.py +++ b/src/test/test_bank_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_benefit.py b/src/test/test_benefit.py index 2876bf34f5..9e0a6e1bb5 100644 --- a/src/test/test_benefit.py +++ b/src/test/test_benefit.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_bill.py b/src/test/test_bill.py index 2e0fbd59ee..84357ba164 100644 --- a/src/test/test_bill.py +++ b/src/test/test_bill.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_bill_line_item.py b/src/test/test_bill_line_item.py index b14016177d..8ba1f26309 100644 --- a/src/test/test_bill_line_item.py +++ b/src/test/test_bill_line_item.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_bill_payment.py b/src/test/test_bill_payment.py new file mode 100644 index 0000000000..0d0fca1eff --- /dev/null +++ b/src/test/test_bill_payment.py @@ -0,0 +1,53 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import sys +import unittest + +import apideck +from apideck.model.allocation import Allocation +from apideck.model.currency import Currency +from apideck.model.custom_field import CustomField +from apideck.model.linked_ledger_account import LinkedLedgerAccount +from apideck.model.linked_supplier import LinkedSupplier +from apideck.model.linked_tracking_categories import LinkedTrackingCategories +from apideck.model.pass_through_body import PassThroughBody +from apideck.model.payment_status import PaymentStatus +from apideck.model.payment_type import PaymentType +globals()['Allocation'] = Allocation +globals()['Currency'] = Currency +globals()['CustomField'] = CustomField +globals()['LinkedLedgerAccount'] = LinkedLedgerAccount +globals()['LinkedSupplier'] = LinkedSupplier +globals()['LinkedTrackingCategories'] = LinkedTrackingCategories +globals()['PassThroughBody'] = PassThroughBody +globals()['PaymentStatus'] = PaymentStatus +globals()['PaymentType'] = PaymentType +from apideck.model.bill_payment import BillPayment + + +class TestBillPayment(unittest.TestCase): + """BillPayment unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testBillPayment(self): + """Test BillPayment""" + # FIXME: construct object with mandatory attributes with example values + # model = BillPayment() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/src/test/test_bills_filter.py b/src/test/test_bills_filter.py index da26e038ae..22842181a8 100644 --- a/src/test/test_bills_filter.py +++ b/src/test/test_bills_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_bills_sort.py b/src/test/test_bills_sort.py index 1d947d2661..70e388e3da 100644 --- a/src/test/test_bills_sort.py +++ b/src/test/test_bills_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_branch.py b/src/test/test_branch.py index ad9f0ddf08..c79f069b6f 100644 --- a/src/test/test_branch.py +++ b/src/test/test_branch.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_cash_details.py b/src/test/test_cash_details.py index 349888bd32..4e313435b3 100644 --- a/src/test/test_cash_details.py +++ b/src/test/test_cash_details.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_collection.py b/src/test/test_collection.py index e696c983d0..117494c0eb 100644 --- a/src/test/test_collection.py +++ b/src/test/test_collection.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_collection_tag.py b/src/test/test_collection_tag.py index 2d23c0a1e1..85fde75937 100644 --- a/src/test/test_collection_tag.py +++ b/src/test/test_collection_tag.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_collection_ticket_comment.py b/src/test/test_collection_ticket_comment.py index b8c9eeb8d6..e903bb867d 100644 --- a/src/test/test_collection_ticket_comment.py +++ b/src/test/test_collection_ticket_comment.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_collection_user.py b/src/test/test_collection_user.py index 88fcde900f..a566120118 100644 --- a/src/test/test_collection_user.py +++ b/src/test/test_collection_user.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_collections_sort.py b/src/test/test_collections_sort.py index b621fa2bc5..576c8f027a 100644 --- a/src/test/test_collections_sort.py +++ b/src/test/test_collections_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_comments_sort.py b/src/test/test_comments_sort.py index 05c8123f7c..cce8062191 100644 --- a/src/test/test_comments_sort.py +++ b/src/test/test_comments_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_companies_filter.py b/src/test/test_companies_filter.py index 1c7ad6c834..1d01aa1d5d 100644 --- a/src/test/test_companies_filter.py +++ b/src/test/test_companies_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_companies_sort.py b/src/test/test_companies_sort.py index 2bc53d4c06..0680684451 100644 --- a/src/test/test_companies_sort.py +++ b/src/test/test_companies_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_company.py b/src/test/test_company.py index 1d1a1c1c9e..d32c8b1bb8 100644 --- a/src/test/test_company.py +++ b/src/test/test_company.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_company_info.py b/src/test/test_company_info.py index 7f013ee327..4b969534f7 100644 --- a/src/test/test_company_info.py +++ b/src/test/test_company_info.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_company_row_type.py b/src/test/test_company_row_type.py index 0ba2b926fd..0d97d86108 100644 --- a/src/test/test_company_row_type.py +++ b/src/test/test_company_row_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_compensation.py b/src/test/test_compensation.py index 04f8cee32b..d97012d6bd 100644 --- a/src/test/test_compensation.py +++ b/src/test/test_compensation.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connection.py b/src/test/test_connection.py index 51cb6480d4..fa427d1f80 100644 --- a/src/test/test_connection.py +++ b/src/test/test_connection.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connection_configuration.py b/src/test/test_connection_configuration.py index 01824c8b18..04f68f40b5 100644 --- a/src/test/test_connection_configuration.py +++ b/src/test/test_connection_configuration.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connection_defaults.py b/src/test/test_connection_defaults.py index 066c509ba9..8de52bba34 100644 --- a/src/test/test_connection_defaults.py +++ b/src/test/test_connection_defaults.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connection_import_data.py b/src/test/test_connection_import_data.py index 2fcea61e38..4c9bbb8964 100644 --- a/src/test/test_connection_import_data.py +++ b/src/test/test_connection_import_data.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connection_import_data_credentials.py b/src/test/test_connection_import_data_credentials.py index d1e225efe7..4a96edb147 100644 --- a/src/test/test_connection_import_data_credentials.py +++ b/src/test/test_connection_import_data_credentials.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connection_metadata.py b/src/test/test_connection_metadata.py index 701155177b..b3d8630927 100644 --- a/src/test/test_connection_metadata.py +++ b/src/test/test_connection_metadata.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connection_state.py b/src/test/test_connection_state.py index 1199fadc88..58acfca8ec 100644 --- a/src/test/test_connection_state.py +++ b/src/test/test_connection_state.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connection_webhook.py b/src/test/test_connection_webhook.py index 547f6b81c5..35d364f7c4 100644 --- a/src/test/test_connection_webhook.py +++ b/src/test/test_connection_webhook.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connector.py b/src/test/test_connector.py index 0e62a5f4ab..5cae9015d3 100644 --- a/src/test/test_connector.py +++ b/src/test/test_connector.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connector_api.py b/src/test/test_connector_api.py index 430a1c0de8..9da14a90b2 100644 --- a/src/test/test_connector_api.py +++ b/src/test/test_connector_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connector_doc.py b/src/test/test_connector_doc.py index 786657c422..f7fca19402 100644 --- a/src/test/test_connector_doc.py +++ b/src/test/test_connector_doc.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connector_event.py b/src/test/test_connector_event.py index 87bd97d294..02f3d30757 100644 --- a/src/test/test_connector_event.py +++ b/src/test/test_connector_event.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connector_oauth_scopes.py b/src/test/test_connector_oauth_scopes.py index a2d8e1556b..c6375ee6d3 100644 --- a/src/test/test_connector_oauth_scopes.py +++ b/src/test/test_connector_oauth_scopes.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connector_oauth_scopes1.py b/src/test/test_connector_oauth_scopes1.py index 7db2772aba..15e7ff78d7 100644 --- a/src/test/test_connector_oauth_scopes1.py +++ b/src/test/test_connector_oauth_scopes1.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connector_resource.py b/src/test/test_connector_resource.py index 2459b4ca4f..7ddcdefc58 100644 --- a/src/test/test_connector_resource.py +++ b/src/test/test_connector_resource.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connector_setting.py b/src/test/test_connector_setting.py index fea111ebe4..0f6686ce99 100644 --- a/src/test/test_connector_setting.py +++ b/src/test/test_connector_setting.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connector_status.py b/src/test/test_connector_status.py index 8fd2cee6b1..56175c5af3 100644 --- a/src/test/test_connector_status.py +++ b/src/test/test_connector_status.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connector_tls_support.py b/src/test/test_connector_tls_support.py index 43bcc28117..327ea29e00 100644 --- a/src/test/test_connector_tls_support.py +++ b/src/test/test_connector_tls_support.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connector_unified_apis.py b/src/test/test_connector_unified_apis.py index 07bed7786d..76110a88c0 100644 --- a/src/test/test_connector_unified_apis.py +++ b/src/test/test_connector_unified_apis.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_connectors_filter.py b/src/test/test_connectors_filter.py index e1f7d7082a..d6f3208c75 100644 --- a/src/test/test_connectors_filter.py +++ b/src/test/test_connectors_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_consumer.py b/src/test/test_consumer.py index 3bd21a358e..ccc08c50d9 100644 --- a/src/test/test_consumer.py +++ b/src/test/test_consumer.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_consumer_connection.py b/src/test/test_consumer_connection.py index 8ca089e31b..e290ba2059 100644 --- a/src/test/test_consumer_connection.py +++ b/src/test/test_consumer_connection.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_consumer_metadata.py b/src/test/test_consumer_metadata.py index d674351a76..a8f9e2d1a1 100644 --- a/src/test/test_consumer_metadata.py +++ b/src/test/test_consumer_metadata.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_consumer_request_counts_in_date_range_response.py b/src/test/test_consumer_request_counts_in_date_range_response.py index 2cafa1e4cc..fa4723aa86 100644 --- a/src/test/test_consumer_request_counts_in_date_range_response.py +++ b/src/test/test_consumer_request_counts_in_date_range_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_consumer_request_counts_in_date_range_response_data.py b/src/test/test_consumer_request_counts_in_date_range_response_data.py index 0862aee09d..1fa0a62d16 100644 --- a/src/test/test_consumer_request_counts_in_date_range_response_data.py +++ b/src/test/test_consumer_request_counts_in_date_range_response_data.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_contact.py b/src/test/test_contact.py index ac65b883c5..b514be7c79 100644 --- a/src/test/test_contact.py +++ b/src/test/test_contact.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_contacts_filter.py b/src/test/test_contacts_filter.py index 0c9a5424ac..6df9ac0124 100644 --- a/src/test/test_contacts_filter.py +++ b/src/test/test_contacts_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_contacts_sort.py b/src/test/test_contacts_sort.py index 70dd5fef31..d891c3918b 100644 --- a/src/test/test_contacts_sort.py +++ b/src/test/test_contacts_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_copy_folder_request.py b/src/test/test_copy_folder_request.py index 64e6634662..1cadefa5d2 100644 --- a/src/test/test_copy_folder_request.py +++ b/src/test/test_copy_folder_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_country.py b/src/test/test_country.py index beca076ed0..4229ba3ec1 100644 --- a/src/test/test_country.py +++ b/src/test/test_country.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_accounting_department_response.py b/src/test/test_create_accounting_department_response.py index bea2a5426c..3f84bca352 100644 --- a/src/test/test_create_accounting_department_response.py +++ b/src/test/test_create_accounting_department_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_accounting_location_response.py b/src/test/test_create_accounting_location_response.py index 3d85038070..9e62b28718 100644 --- a/src/test/test_create_accounting_location_response.py +++ b/src/test/test_create_accounting_location_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_activity_response.py b/src/test/test_create_activity_response.py index 2f52439096..57f77014b8 100644 --- a/src/test/test_create_activity_response.py +++ b/src/test/test_create_activity_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_applicant_response.py b/src/test/test_create_applicant_response.py index 99c76e12e4..a400d51d9b 100644 --- a/src/test/test_create_applicant_response.py +++ b/src/test/test_create_applicant_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_application_response.py b/src/test/test_create_application_response.py index b3d3e07b98..5a675e6af8 100644 --- a/src/test/test_create_application_response.py +++ b/src/test/test_create_application_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_attachment_request.py b/src/test/test_create_attachment_request.py index 709e384208..8860467044 100644 --- a/src/test/test_create_attachment_request.py +++ b/src/test/test_create_attachment_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_attachment_response.py b/src/test/test_create_attachment_response.py index 0ebc641b52..68f87a5763 100644 --- a/src/test/test_create_attachment_response.py +++ b/src/test/test_create_attachment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_bill_payment_response.py b/src/test/test_create_bill_payment_response.py new file mode 100644 index 0000000000..4dabc8950f --- /dev/null +++ b/src/test/test_create_bill_payment_response.py @@ -0,0 +1,37 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import sys +import unittest + +import apideck +from apideck.model.unified_id import UnifiedId +globals()['UnifiedId'] = UnifiedId +from apideck.model.create_bill_payment_response import CreateBillPaymentResponse + + +class TestCreateBillPaymentResponse(unittest.TestCase): + """CreateBillPaymentResponse unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testCreateBillPaymentResponse(self): + """Test CreateBillPaymentResponse""" + # FIXME: construct object with mandatory attributes with example values + # model = CreateBillPaymentResponse() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/src/test/test_create_bill_response.py b/src/test/test_create_bill_response.py index 1c680d4669..6f2eda2353 100644 --- a/src/test/test_create_bill_response.py +++ b/src/test/test_create_bill_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_comment_response.py b/src/test/test_create_comment_response.py index 3269745da6..676193bfc5 100644 --- a/src/test/test_create_comment_response.py +++ b/src/test/test_create_comment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_company_response.py b/src/test/test_create_company_response.py index 7fdf425b04..f40d90388b 100644 --- a/src/test/test_create_company_response.py +++ b/src/test/test_create_company_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_connection_response.py b/src/test/test_create_connection_response.py index 3f3cf95ff1..96ebf74ec7 100644 --- a/src/test/test_create_connection_response.py +++ b/src/test/test_create_connection_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_consumer_response.py b/src/test/test_create_consumer_response.py index 4e1fc98e95..f7f3ce4c2d 100644 --- a/src/test/test_create_consumer_response.py +++ b/src/test/test_create_consumer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_contact_response.py b/src/test/test_create_contact_response.py index d85bcde950..2efdfc0fb3 100644 --- a/src/test/test_create_contact_response.py +++ b/src/test/test_create_contact_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_credit_note_response.py b/src/test/test_create_credit_note_response.py index 3270841529..a6c05aee77 100644 --- a/src/test/test_create_credit_note_response.py +++ b/src/test/test_create_credit_note_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_custom_mapping_request.py b/src/test/test_create_custom_mapping_request.py index 466e7f7557..9fe9cda1a3 100644 --- a/src/test/test_create_custom_mapping_request.py +++ b/src/test/test_create_custom_mapping_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_custom_mapping_response.py b/src/test/test_create_custom_mapping_response.py index f1555bf483..109a4bd11d 100644 --- a/src/test/test_create_custom_mapping_response.py +++ b/src/test/test_create_custom_mapping_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_customer_response.py b/src/test/test_create_customer_response.py index 9e19cbf044..7894470da6 100644 --- a/src/test/test_create_customer_response.py +++ b/src/test/test_create_customer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_department_response.py b/src/test/test_create_department_response.py index f3e5787c57..02ce866a96 100644 --- a/src/test/test_create_department_response.py +++ b/src/test/test_create_department_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_drive_group_response.py b/src/test/test_create_drive_group_response.py index 37530c429c..fbbddac9d3 100644 --- a/src/test/test_create_drive_group_response.py +++ b/src/test/test_create_drive_group_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_drive_response.py b/src/test/test_create_drive_response.py index 85b5b4a266..1cb1646d25 100644 --- a/src/test/test_create_drive_response.py +++ b/src/test/test_create_drive_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_ecommerce_customer_response.py b/src/test/test_create_ecommerce_customer_response.py index 110f86f85c..d53a4528e6 100644 --- a/src/test/test_create_ecommerce_customer_response.py +++ b/src/test/test_create_ecommerce_customer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_ecommerce_order_response.py b/src/test/test_create_ecommerce_order_response.py index bd0acc4136..9afbfde6f3 100644 --- a/src/test/test_create_ecommerce_order_response.py +++ b/src/test/test_create_ecommerce_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_employee_response.py b/src/test/test_create_employee_response.py index 0a7d9ac5ba..a3ad448e32 100644 --- a/src/test/test_create_employee_response.py +++ b/src/test/test_create_employee_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_expense_response.py b/src/test/test_create_expense_response.py new file mode 100644 index 0000000000..13735b721b --- /dev/null +++ b/src/test/test_create_expense_response.py @@ -0,0 +1,37 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import sys +import unittest + +import apideck +from apideck.model.unified_id import UnifiedId +globals()['UnifiedId'] = UnifiedId +from apideck.model.create_expense_response import CreateExpenseResponse + + +class TestCreateExpenseResponse(unittest.TestCase): + """CreateExpenseResponse unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testCreateExpenseResponse(self): + """Test CreateExpenseResponse""" + # FIXME: construct object with mandatory attributes with example values + # model = CreateExpenseResponse() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/src/test/test_create_file_request.py b/src/test/test_create_file_request.py index 137654b6dc..10e5bae228 100644 --- a/src/test/test_create_file_request.py +++ b/src/test/test_create_file_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_file_response.py b/src/test/test_create_file_response.py index 77c3d818cb..5f930278a4 100644 --- a/src/test/test_create_file_response.py +++ b/src/test/test_create_file_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_folder_request.py b/src/test/test_create_folder_request.py index d117836b59..222f9b8c16 100644 --- a/src/test/test_create_folder_request.py +++ b/src/test/test_create_folder_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_folder_response.py b/src/test/test_create_folder_response.py index babf24caf8..d94418c3a1 100644 --- a/src/test/test_create_folder_response.py +++ b/src/test/test_create_folder_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_hris_company_response.py b/src/test/test_create_hris_company_response.py index f12ae3261e..a2e179cd00 100644 --- a/src/test/test_create_hris_company_response.py +++ b/src/test/test_create_hris_company_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_invoice_item_response.py b/src/test/test_create_invoice_item_response.py index aff16fd583..33cc2d109e 100644 --- a/src/test/test_create_invoice_item_response.py +++ b/src/test/test_create_invoice_item_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_invoice_response.py b/src/test/test_create_invoice_response.py index 3c53bbaa50..dfa00d33d1 100644 --- a/src/test/test_create_invoice_response.py +++ b/src/test/test_create_invoice_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_item_response.py b/src/test/test_create_item_response.py index 1fc8c8ac1a..481823b801 100644 --- a/src/test/test_create_item_response.py +++ b/src/test/test_create_item_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_job_response.py b/src/test/test_create_job_response.py index 96f3bb2636..aa0a7fc2a5 100644 --- a/src/test/test_create_job_response.py +++ b/src/test/test_create_job_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_journal_entry_response.py b/src/test/test_create_journal_entry_response.py index 98c48cffea..5438b0bfc1 100644 --- a/src/test/test_create_journal_entry_response.py +++ b/src/test/test_create_journal_entry_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_lead_response.py b/src/test/test_create_lead_response.py index 83c2a7107d..307bff36ff 100644 --- a/src/test/test_create_lead_response.py +++ b/src/test/test_create_lead_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_ledger_account_response.py b/src/test/test_create_ledger_account_response.py index 10dce97009..c764cf33fb 100644 --- a/src/test/test_create_ledger_account_response.py +++ b/src/test/test_create_ledger_account_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_location_response.py b/src/test/test_create_location_response.py index 5230c70524..5d670a0259 100644 --- a/src/test/test_create_location_response.py +++ b/src/test/test_create_location_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_merchant_response.py b/src/test/test_create_merchant_response.py index 777bb0b69a..236c608512 100644 --- a/src/test/test_create_merchant_response.py +++ b/src/test/test_create_merchant_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_message_response.py b/src/test/test_create_message_response.py index 7f29d70e03..a8cce5a6b4 100644 --- a/src/test/test_create_message_response.py +++ b/src/test/test_create_message_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_modifier_group_response.py b/src/test/test_create_modifier_group_response.py index 3dbf9a33cf..0efcf2cf34 100644 --- a/src/test/test_create_modifier_group_response.py +++ b/src/test/test_create_modifier_group_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_modifier_response.py b/src/test/test_create_modifier_response.py index cff8333211..69cab67077 100644 --- a/src/test/test_create_modifier_response.py +++ b/src/test/test_create_modifier_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_note_response.py b/src/test/test_create_note_response.py index 91b5825293..598b192de4 100644 --- a/src/test/test_create_note_response.py +++ b/src/test/test_create_note_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_opportunity_response.py b/src/test/test_create_opportunity_response.py index 0775d395cd..23bb62a832 100644 --- a/src/test/test_create_opportunity_response.py +++ b/src/test/test_create_opportunity_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_order_response.py b/src/test/test_create_order_response.py index 8f3bf2aa01..24f79294ac 100644 --- a/src/test/test_create_order_response.py +++ b/src/test/test_create_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_order_type_response.py b/src/test/test_create_order_type_response.py index b438c7f232..ab58d78015 100644 --- a/src/test/test_create_order_type_response.py +++ b/src/test/test_create_order_type_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_payment_response.py b/src/test/test_create_payment_response.py index c2f4592206..53696f521c 100644 --- a/src/test/test_create_payment_response.py +++ b/src/test/test_create_payment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_pipeline_response.py b/src/test/test_create_pipeline_response.py index 18a8fb112f..38e17302c2 100644 --- a/src/test/test_create_pipeline_response.py +++ b/src/test/test_create_pipeline_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_pos_payment_response.py b/src/test/test_create_pos_payment_response.py index 55e55f8328..32300a6a37 100644 --- a/src/test/test_create_pos_payment_response.py +++ b/src/test/test_create_pos_payment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_product_response.py b/src/test/test_create_product_response.py index a588dfc27e..d489bcfa27 100644 --- a/src/test/test_create_product_response.py +++ b/src/test/test_create_product_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_purchase_order_response.py b/src/test/test_create_purchase_order_response.py index d7cb217af2..e0e6753828 100644 --- a/src/test/test_create_purchase_order_response.py +++ b/src/test/test_create_purchase_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_session_response.py b/src/test/test_create_session_response.py index b48e8bc4aa..a411474d89 100644 --- a/src/test/test_create_session_response.py +++ b/src/test/test_create_session_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_session_response_data.py b/src/test/test_create_session_response_data.py index 6489e08e23..236e6c4028 100644 --- a/src/test/test_create_session_response_data.py +++ b/src/test/test_create_session_response_data.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_shared_link_response.py b/src/test/test_create_shared_link_response.py index dc8f50dde3..463ae24ed1 100644 --- a/src/test/test_create_shared_link_response.py +++ b/src/test/test_create_shared_link_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_subsidiary_response.py b/src/test/test_create_subsidiary_response.py index 68897d6e14..31afd7093b 100644 --- a/src/test/test_create_subsidiary_response.py +++ b/src/test/test_create_subsidiary_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_supplier_response.py b/src/test/test_create_supplier_response.py index 209f0914b0..5787afb35a 100644 --- a/src/test/test_create_supplier_response.py +++ b/src/test/test_create_supplier_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_tax_rate_response.py b/src/test/test_create_tax_rate_response.py index a809b776a5..e97c5af55a 100644 --- a/src/test/test_create_tax_rate_response.py +++ b/src/test/test_create_tax_rate_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_tender_response.py b/src/test/test_create_tender_response.py index 51f6b3d526..1beecdf28b 100644 --- a/src/test/test_create_tender_response.py +++ b/src/test/test_create_tender_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_ticket_response.py b/src/test/test_create_ticket_response.py index 9a5f2574e0..80510a351e 100644 --- a/src/test/test_create_ticket_response.py +++ b/src/test/test_create_ticket_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_time_off_request_response.py b/src/test/test_create_time_off_request_response.py index f38376f441..2dc733da7e 100644 --- a/src/test/test_create_time_off_request_response.py +++ b/src/test/test_create_time_off_request_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_tracking_category_response.py b/src/test/test_create_tracking_category_response.py index a510742489..919bc3a127 100644 --- a/src/test/test_create_tracking_category_response.py +++ b/src/test/test_create_tracking_category_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_upload_session_request.py b/src/test/test_create_upload_session_request.py index 021aabd84d..78ecaa1e08 100644 --- a/src/test/test_create_upload_session_request.py +++ b/src/test/test_create_upload_session_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_upload_session_response.py b/src/test/test_create_upload_session_response.py index c2f9d5148c..4847a2bb21 100644 --- a/src/test/test_create_upload_session_response.py +++ b/src/test/test_create_upload_session_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_user_response.py b/src/test/test_create_user_response.py index 4ac2af0bd8..7fa72fa195 100644 --- a/src/test/test_create_user_response.py +++ b/src/test/test_create_user_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_webhook_request.py b/src/test/test_create_webhook_request.py index 9d33ac91c9..e5f74838ae 100644 --- a/src/test/test_create_webhook_request.py +++ b/src/test/test_create_webhook_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_create_webhook_response.py b/src/test/test_create_webhook_response.py index 0c0d02304d..0f9c874a46 100644 --- a/src/test/test_create_webhook_response.py +++ b/src/test/test_create_webhook_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_credit_note.py b/src/test/test_credit_note.py index 77205c3419..f6824a18f8 100644 --- a/src/test/test_credit_note.py +++ b/src/test/test_credit_note.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_credit_notes_filter.py b/src/test/test_credit_notes_filter.py index 8d12090625..e64862e3f6 100644 --- a/src/test/test_credit_notes_filter.py +++ b/src/test/test_credit_notes_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_credit_notes_sort.py b/src/test/test_credit_notes_sort.py index e415c2633c..662c443230 100644 --- a/src/test/test_credit_notes_sort.py +++ b/src/test/test_credit_notes_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_crm_api.py b/src/test/test_crm_api.py index cf48e4f5e8..61070ebd60 100644 --- a/src/test/test_crm_api.py +++ b/src/test/test_crm_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_crm_event_type.py b/src/test/test_crm_event_type.py index f564809a77..7c1befa1c7 100644 --- a/src/test/test_crm_event_type.py +++ b/src/test/test_crm_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_currency.py b/src/test/test_currency.py index d6f4df9b0f..729993443f 100644 --- a/src/test/test_currency.py +++ b/src/test/test_currency.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_custom_field.py b/src/test/test_custom_field.py index 6f4b31ef86..221101cd24 100644 --- a/src/test/test_custom_field.py +++ b/src/test/test_custom_field.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_custom_field_finder.py b/src/test/test_custom_field_finder.py index 4ade04ec39..ba023f9e5d 100644 --- a/src/test/test_custom_field_finder.py +++ b/src/test/test_custom_field_finder.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_custom_mapping.py b/src/test/test_custom_mapping.py index fc54d7acea..e7fe736728 100644 --- a/src/test/test_custom_mapping.py +++ b/src/test/test_custom_mapping.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_customer.py b/src/test/test_customer.py index a52540020d..cc737c98e4 100644 --- a/src/test/test_customer.py +++ b/src/test/test_customer.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_customers_filter.py b/src/test/test_customers_filter.py index 68b544fd90..325514ebb8 100644 --- a/src/test/test_customers_filter.py +++ b/src/test/test_customers_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_customers_sort.py b/src/test/test_customers_sort.py index 397a070b15..4a1ea9befa 100644 --- a/src/test/test_customers_sort.py +++ b/src/test/test_customers_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_deduction.py b/src/test/test_deduction.py index c743460f37..89fb505f3e 100644 --- a/src/test/test_deduction.py +++ b/src/test/test_deduction.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_accounting_department_response.py b/src/test/test_delete_accounting_department_response.py index d7c0c9625c..a7073af036 100644 --- a/src/test/test_delete_accounting_department_response.py +++ b/src/test/test_delete_accounting_department_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_accounting_location_response.py b/src/test/test_delete_accounting_location_response.py index fd1e3159c5..98638f765b 100644 --- a/src/test/test_delete_accounting_location_response.py +++ b/src/test/test_delete_accounting_location_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_activity_response.py b/src/test/test_delete_activity_response.py index b0501af254..74b7a66618 100644 --- a/src/test/test_delete_activity_response.py +++ b/src/test/test_delete_activity_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_applicant_response.py b/src/test/test_delete_applicant_response.py index 4430d1ca1c..68eb641f26 100644 --- a/src/test/test_delete_applicant_response.py +++ b/src/test/test_delete_applicant_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_application_response.py b/src/test/test_delete_application_response.py index fd7f479c1d..5eb2104026 100644 --- a/src/test/test_delete_application_response.py +++ b/src/test/test_delete_application_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_attachment_response.py b/src/test/test_delete_attachment_response.py index 7156a13758..30dfca3acc 100644 --- a/src/test/test_delete_attachment_response.py +++ b/src/test/test_delete_attachment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_bill_payment_response.py b/src/test/test_delete_bill_payment_response.py new file mode 100644 index 0000000000..16c91df585 --- /dev/null +++ b/src/test/test_delete_bill_payment_response.py @@ -0,0 +1,37 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import sys +import unittest + +import apideck +from apideck.model.unified_id import UnifiedId +globals()['UnifiedId'] = UnifiedId +from apideck.model.delete_bill_payment_response import DeleteBillPaymentResponse + + +class TestDeleteBillPaymentResponse(unittest.TestCase): + """DeleteBillPaymentResponse unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testDeleteBillPaymentResponse(self): + """Test DeleteBillPaymentResponse""" + # FIXME: construct object with mandatory attributes with example values + # model = DeleteBillPaymentResponse() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/src/test/test_delete_bill_response.py b/src/test/test_delete_bill_response.py index f2c098e3f9..a22a046f2e 100644 --- a/src/test/test_delete_bill_response.py +++ b/src/test/test_delete_bill_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_comment_response.py b/src/test/test_delete_comment_response.py index 5cb88f6515..34f4d634ec 100644 --- a/src/test/test_delete_comment_response.py +++ b/src/test/test_delete_comment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_company_response.py b/src/test/test_delete_company_response.py index 241a5a7be2..1e185fa210 100644 --- a/src/test/test_delete_company_response.py +++ b/src/test/test_delete_company_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_consumer_response.py b/src/test/test_delete_consumer_response.py index 5d779651ec..cf22b1ef58 100644 --- a/src/test/test_delete_consumer_response.py +++ b/src/test/test_delete_consumer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_contact_response.py b/src/test/test_delete_contact_response.py index b88118a240..1910fbe7f1 100644 --- a/src/test/test_delete_contact_response.py +++ b/src/test/test_delete_contact_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_credit_note_response.py b/src/test/test_delete_credit_note_response.py index 1a039ba0ae..384c8c6151 100644 --- a/src/test/test_delete_credit_note_response.py +++ b/src/test/test_delete_credit_note_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_customer_response.py b/src/test/test_delete_customer_response.py index ba99cdfa53..41875e7b94 100644 --- a/src/test/test_delete_customer_response.py +++ b/src/test/test_delete_customer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_department_response.py b/src/test/test_delete_department_response.py index 61159a2b28..0d5085a205 100644 --- a/src/test/test_delete_department_response.py +++ b/src/test/test_delete_department_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_drive_group_response.py b/src/test/test_delete_drive_group_response.py index 801b2c876e..0d36e65c83 100644 --- a/src/test/test_delete_drive_group_response.py +++ b/src/test/test_delete_drive_group_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_drive_response.py b/src/test/test_delete_drive_response.py index 2497174405..614da2f665 100644 --- a/src/test/test_delete_drive_response.py +++ b/src/test/test_delete_drive_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_ecommerce_customer_response.py b/src/test/test_delete_ecommerce_customer_response.py index ee66565026..3282450851 100644 --- a/src/test/test_delete_ecommerce_customer_response.py +++ b/src/test/test_delete_ecommerce_customer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_ecommerce_order_response.py b/src/test/test_delete_ecommerce_order_response.py index 7c02125290..fe2276d8d9 100644 --- a/src/test/test_delete_ecommerce_order_response.py +++ b/src/test/test_delete_ecommerce_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_employee_response.py b/src/test/test_delete_employee_response.py index 6309144511..bf192b592f 100644 --- a/src/test/test_delete_employee_response.py +++ b/src/test/test_delete_employee_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_expense_response.py b/src/test/test_delete_expense_response.py new file mode 100644 index 0000000000..0b9f4f7533 --- /dev/null +++ b/src/test/test_delete_expense_response.py @@ -0,0 +1,37 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import sys +import unittest + +import apideck +from apideck.model.unified_id import UnifiedId +globals()['UnifiedId'] = UnifiedId +from apideck.model.delete_expense_response import DeleteExpenseResponse + + +class TestDeleteExpenseResponse(unittest.TestCase): + """DeleteExpenseResponse unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testDeleteExpenseResponse(self): + """Test DeleteExpenseResponse""" + # FIXME: construct object with mandatory attributes with example values + # model = DeleteExpenseResponse() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/src/test/test_delete_file_response.py b/src/test/test_delete_file_response.py index 0d7ba5be98..4cc31b5c4f 100644 --- a/src/test/test_delete_file_response.py +++ b/src/test/test_delete_file_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_folder_response.py b/src/test/test_delete_folder_response.py index 35bc1b2b31..c435200d2e 100644 --- a/src/test/test_delete_folder_response.py +++ b/src/test/test_delete_folder_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_hris_company_response.py b/src/test/test_delete_hris_company_response.py index 2e36037565..fd5d26d320 100644 --- a/src/test/test_delete_hris_company_response.py +++ b/src/test/test_delete_hris_company_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_invoice_item_response.py b/src/test/test_delete_invoice_item_response.py index edff5f7a50..b1a2b62e3f 100644 --- a/src/test/test_delete_invoice_item_response.py +++ b/src/test/test_delete_invoice_item_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_invoice_response.py b/src/test/test_delete_invoice_response.py index 06ec467bf1..29b0def25c 100644 --- a/src/test/test_delete_invoice_response.py +++ b/src/test/test_delete_invoice_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_item_response.py b/src/test/test_delete_item_response.py index dbcaaf776e..af9209516c 100644 --- a/src/test/test_delete_item_response.py +++ b/src/test/test_delete_item_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_job_response.py b/src/test/test_delete_job_response.py index 12201e9668..3a1b95b220 100644 --- a/src/test/test_delete_job_response.py +++ b/src/test/test_delete_job_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_journal_entry_response.py b/src/test/test_delete_journal_entry_response.py index 89d3f394e3..c73b809ab0 100644 --- a/src/test/test_delete_journal_entry_response.py +++ b/src/test/test_delete_journal_entry_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_lead_response.py b/src/test/test_delete_lead_response.py index 1550132028..28d91a2824 100644 --- a/src/test/test_delete_lead_response.py +++ b/src/test/test_delete_lead_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_ledger_account_response.py b/src/test/test_delete_ledger_account_response.py index 7099f58245..fe9f44c226 100644 --- a/src/test/test_delete_ledger_account_response.py +++ b/src/test/test_delete_ledger_account_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_location_response.py b/src/test/test_delete_location_response.py index d7fb0663c9..3fefef0d3e 100644 --- a/src/test/test_delete_location_response.py +++ b/src/test/test_delete_location_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_merchant_response.py b/src/test/test_delete_merchant_response.py index 61672ac6ad..e868d1d83f 100644 --- a/src/test/test_delete_merchant_response.py +++ b/src/test/test_delete_merchant_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_message_response.py b/src/test/test_delete_message_response.py index 66b278e503..6f7fb73af7 100644 --- a/src/test/test_delete_message_response.py +++ b/src/test/test_delete_message_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_modifier_group_response.py b/src/test/test_delete_modifier_group_response.py index 29d25200ff..352d395a67 100644 --- a/src/test/test_delete_modifier_group_response.py +++ b/src/test/test_delete_modifier_group_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_modifier_response.py b/src/test/test_delete_modifier_response.py index d88532fb68..679bddf262 100644 --- a/src/test/test_delete_modifier_response.py +++ b/src/test/test_delete_modifier_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_note_response.py b/src/test/test_delete_note_response.py index 1197cef76e..8c5fd29a58 100644 --- a/src/test/test_delete_note_response.py +++ b/src/test/test_delete_note_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_opportunity_response.py b/src/test/test_delete_opportunity_response.py index 41fc7839bc..9b92dbe50a 100644 --- a/src/test/test_delete_opportunity_response.py +++ b/src/test/test_delete_opportunity_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_order_response.py b/src/test/test_delete_order_response.py index 8b9491e09a..2ccc529bdf 100644 --- a/src/test/test_delete_order_response.py +++ b/src/test/test_delete_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_order_type_response.py b/src/test/test_delete_order_type_response.py index 2d374ddc0a..408fe9010c 100644 --- a/src/test/test_delete_order_type_response.py +++ b/src/test/test_delete_order_type_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_payment_response.py b/src/test/test_delete_payment_response.py index f709d4e666..d0ce2a26c6 100644 --- a/src/test/test_delete_payment_response.py +++ b/src/test/test_delete_payment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_pipeline_response.py b/src/test/test_delete_pipeline_response.py index 4e685110c1..a9aed42e19 100644 --- a/src/test/test_delete_pipeline_response.py +++ b/src/test/test_delete_pipeline_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_pos_payment_response.py b/src/test/test_delete_pos_payment_response.py index 34861c376a..71e55e711f 100644 --- a/src/test/test_delete_pos_payment_response.py +++ b/src/test/test_delete_pos_payment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_product_response.py b/src/test/test_delete_product_response.py index 7959ad5ccb..c6878c869e 100644 --- a/src/test/test_delete_product_response.py +++ b/src/test/test_delete_product_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_purchase_order_response.py b/src/test/test_delete_purchase_order_response.py index f47bc4a66f..9cde711308 100644 --- a/src/test/test_delete_purchase_order_response.py +++ b/src/test/test_delete_purchase_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_shared_link_response.py b/src/test/test_delete_shared_link_response.py index 4002153603..6f06493f38 100644 --- a/src/test/test_delete_shared_link_response.py +++ b/src/test/test_delete_shared_link_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_subsidiary_response.py b/src/test/test_delete_subsidiary_response.py index 42c29205f1..3be99ec6fb 100644 --- a/src/test/test_delete_subsidiary_response.py +++ b/src/test/test_delete_subsidiary_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_supplier_response.py b/src/test/test_delete_supplier_response.py index 89b062a594..6de1db3573 100644 --- a/src/test/test_delete_supplier_response.py +++ b/src/test/test_delete_supplier_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_tax_rate_response.py b/src/test/test_delete_tax_rate_response.py index 22d7068ee4..8c43632380 100644 --- a/src/test/test_delete_tax_rate_response.py +++ b/src/test/test_delete_tax_rate_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_tender_response.py b/src/test/test_delete_tender_response.py index 2cf31fbc3c..d599222fd4 100644 --- a/src/test/test_delete_tender_response.py +++ b/src/test/test_delete_tender_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_ticket_response.py b/src/test/test_delete_ticket_response.py index 783557f9a6..91350eb94a 100644 --- a/src/test/test_delete_ticket_response.py +++ b/src/test/test_delete_ticket_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_time_off_request_response.py b/src/test/test_delete_time_off_request_response.py index f71def6692..21c1bc29ce 100644 --- a/src/test/test_delete_time_off_request_response.py +++ b/src/test/test_delete_time_off_request_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_tracking_category_response.py b/src/test/test_delete_tracking_category_response.py index 419890e89d..9cab3576c8 100644 --- a/src/test/test_delete_tracking_category_response.py +++ b/src/test/test_delete_tracking_category_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_upload_session_response.py b/src/test/test_delete_upload_session_response.py index b4336bc6bc..8c87885cfd 100644 --- a/src/test/test_delete_upload_session_response.py +++ b/src/test/test_delete_upload_session_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_user_response.py b/src/test/test_delete_user_response.py index 28b54845be..80f7bb38aa 100644 --- a/src/test/test_delete_user_response.py +++ b/src/test/test_delete_user_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delete_webhook_response.py b/src/test/test_delete_webhook_response.py index 2b00c5688e..e1891f14fb 100644 --- a/src/test/test_delete_webhook_response.py +++ b/src/test/test_delete_webhook_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_delivery_url.py b/src/test/test_delivery_url.py index 4ca2369f6b..7f159f028b 100644 --- a/src/test/test_delivery_url.py +++ b/src/test/test_delivery_url.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_department.py b/src/test/test_department.py index 9e63c53840..fa1e44a509 100644 --- a/src/test/test_department.py +++ b/src/test/test_department.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_deprecated_linked_supplier.py b/src/test/test_deprecated_linked_supplier.py new file mode 100644 index 0000000000..83db95e0d2 --- /dev/null +++ b/src/test/test_deprecated_linked_supplier.py @@ -0,0 +1,37 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import sys +import unittest + +import apideck +from apideck.model.address import Address +globals()['Address'] = Address +from apideck.model.deprecated_linked_supplier import DeprecatedLinkedSupplier + + +class TestDeprecatedLinkedSupplier(unittest.TestCase): + """DeprecatedLinkedSupplier unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testDeprecatedLinkedSupplier(self): + """Test DeprecatedLinkedSupplier""" + # FIXME: construct object with mandatory attributes with example values + # model = DeprecatedLinkedSupplier() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/src/test/test_deprecated_linked_tracking_category.py b/src/test/test_deprecated_linked_tracking_category.py index 4018ffd206..0c94530f53 100644 --- a/src/test/test_deprecated_linked_tracking_category.py +++ b/src/test/test_deprecated_linked_tracking_category.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_drive.py b/src/test/test_drive.py index 15b8e67a75..9b40ad23d0 100644 --- a/src/test/test_drive.py +++ b/src/test/test_drive.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_drive_group.py b/src/test/test_drive_group.py index 1163bb0c79..979cff1eb3 100644 --- a/src/test/test_drive_group.py +++ b/src/test/test_drive_group.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_drive_groups_filter.py b/src/test/test_drive_groups_filter.py index a4805cfe76..23849be11f 100644 --- a/src/test/test_drive_groups_filter.py +++ b/src/test/test_drive_groups_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_drives_filter.py b/src/test/test_drives_filter.py index 77b8541380..5ca748d4b2 100644 --- a/src/test/test_drives_filter.py +++ b/src/test/test_drives_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_address.py b/src/test/test_ecommerce_address.py index 3a82db18d6..598145a93e 100644 --- a/src/test/test_ecommerce_address.py +++ b/src/test/test_ecommerce_address.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_api.py b/src/test/test_ecommerce_api.py index c59beb455b..dc59f71c36 100644 --- a/src/test/test_ecommerce_api.py +++ b/src/test/test_ecommerce_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_customer.py b/src/test/test_ecommerce_customer.py index 77957118b8..d25d0c967a 100644 --- a/src/test/test_ecommerce_customer.py +++ b/src/test/test_ecommerce_customer.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_customer_addresses.py b/src/test/test_ecommerce_customer_addresses.py index 2aa1e025ea..67254b8a5a 100644 --- a/src/test/test_ecommerce_customer_addresses.py +++ b/src/test/test_ecommerce_customer_addresses.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_customers_filter.py b/src/test/test_ecommerce_customers_filter.py index 7633ce37d3..b593720d51 100644 --- a/src/test/test_ecommerce_customers_filter.py +++ b/src/test/test_ecommerce_customers_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_discount.py b/src/test/test_ecommerce_discount.py index bf039823d9..fbf699d3e0 100644 --- a/src/test/test_ecommerce_discount.py +++ b/src/test/test_ecommerce_discount.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_order.py b/src/test/test_ecommerce_order.py index 6690fc6ea4..f58a4a5ccf 100644 --- a/src/test/test_ecommerce_order.py +++ b/src/test/test_ecommerce_order.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_order_line_item.py b/src/test/test_ecommerce_order_line_item.py index 7b3a4bccf8..3ecdaec26c 100644 --- a/src/test/test_ecommerce_order_line_item.py +++ b/src/test/test_ecommerce_order_line_item.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_order_status.py b/src/test/test_ecommerce_order_status.py index 5737e58461..149292439d 100644 --- a/src/test/test_ecommerce_order_status.py +++ b/src/test/test_ecommerce_order_status.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_orders_filter.py b/src/test/test_ecommerce_orders_filter.py index 7b84778152..1549726144 100644 --- a/src/test/test_ecommerce_orders_filter.py +++ b/src/test/test_ecommerce_orders_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_product.py b/src/test/test_ecommerce_product.py index dc09d80489..436003ef64 100644 --- a/src/test/test_ecommerce_product.py +++ b/src/test/test_ecommerce_product.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_product_categories.py b/src/test/test_ecommerce_product_categories.py index cb3c42e7c6..9b4fdf2b44 100644 --- a/src/test/test_ecommerce_product_categories.py +++ b/src/test/test_ecommerce_product_categories.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_product_images.py b/src/test/test_ecommerce_product_images.py index 3c2beb493b..632877f037 100644 --- a/src/test/test_ecommerce_product_images.py +++ b/src/test/test_ecommerce_product_images.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_product_images1.py b/src/test/test_ecommerce_product_images1.py index 501e936b02..6d91aca550 100644 --- a/src/test/test_ecommerce_product_images1.py +++ b/src/test/test_ecommerce_product_images1.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_product_options.py b/src/test/test_ecommerce_product_options.py index 33d60d73d1..221e17235a 100644 --- a/src/test/test_ecommerce_product_options.py +++ b/src/test/test_ecommerce_product_options.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_product_options1.py b/src/test/test_ecommerce_product_options1.py index 6bd015ee9f..ffa0f49874 100644 --- a/src/test/test_ecommerce_product_options1.py +++ b/src/test/test_ecommerce_product_options1.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_product_variants.py b/src/test/test_ecommerce_product_variants.py index 3211247255..1f21469d97 100644 --- a/src/test/test_ecommerce_product_variants.py +++ b/src/test/test_ecommerce_product_variants.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ecommerce_store.py b/src/test/test_ecommerce_store.py index dacc55b834..adc315e17d 100644 --- a/src/test/test_ecommerce_store.py +++ b/src/test/test_ecommerce_store.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_email.py b/src/test/test_email.py index 0c2427d116..654e600eb3 100644 --- a/src/test/test_email.py +++ b/src/test/test_email.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_employee.py b/src/test/test_employee.py index 6f86199520..e78cd34bd1 100644 --- a/src/test/test_employee.py +++ b/src/test/test_employee.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_employee_compensation.py b/src/test/test_employee_compensation.py index d0482899c1..bfd57c6541 100644 --- a/src/test/test_employee_compensation.py +++ b/src/test/test_employee_compensation.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_employee_employment_role.py b/src/test/test_employee_employment_role.py index fecfb063b6..93ede484f5 100644 --- a/src/test/test_employee_employment_role.py +++ b/src/test/test_employee_employment_role.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_employee_job.py b/src/test/test_employee_job.py index c09ae19363..b9ed5b4744 100644 --- a/src/test/test_employee_job.py +++ b/src/test/test_employee_job.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_employee_list.py b/src/test/test_employee_list.py index d63d6ae28b..16e79695cc 100644 --- a/src/test/test_employee_list.py +++ b/src/test/test_employee_list.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_employee_manager.py b/src/test/test_employee_manager.py index a96c779fe1..d97f15bd74 100644 --- a/src/test/test_employee_manager.py +++ b/src/test/test_employee_manager.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_employee_payroll.py b/src/test/test_employee_payroll.py index e3cc0976f3..600487180e 100644 --- a/src/test/test_employee_payroll.py +++ b/src/test/test_employee_payroll.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_employee_schedules.py b/src/test/test_employee_schedules.py index c81edebfce..99cf2e31fd 100644 --- a/src/test/test_employee_schedules.py +++ b/src/test/test_employee_schedules.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_employees_filter.py b/src/test/test_employees_filter.py index 43b6591d51..e55b8dd71d 100644 --- a/src/test/test_employees_filter.py +++ b/src/test/test_employees_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_employees_one_filter.py b/src/test/test_employees_one_filter.py index f7e09d1c54..bf4c15f547 100644 --- a/src/test/test_employees_one_filter.py +++ b/src/test/test_employees_one_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_employees_sort.py b/src/test/test_employees_sort.py index 5b19ae90ac..c8299c8cd4 100644 --- a/src/test/test_employees_sort.py +++ b/src/test/test_employees_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_employment_status.py b/src/test/test_employment_status.py index 52f1688a71..8ae20bf16a 100644 --- a/src/test/test_employment_status.py +++ b/src/test/test_employment_status.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_error.py b/src/test/test_error.py index fbe2ff8ef0..4be9f41d79 100644 --- a/src/test/test_error.py +++ b/src/test/test_error.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_execute_base_url.py b/src/test/test_execute_base_url.py index 54cc4eedd3..a4568828d4 100644 --- a/src/test/test_execute_base_url.py +++ b/src/test/test_execute_base_url.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_execute_webhook_event_request.py b/src/test/test_execute_webhook_event_request.py index 99b36826ec..4ba5f7c3fc 100644 --- a/src/test/test_execute_webhook_event_request.py +++ b/src/test/test_execute_webhook_event_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_execute_webhook_events_request.py b/src/test/test_execute_webhook_events_request.py index 5768b62932..f5e74fc7cc 100644 --- a/src/test/test_execute_webhook_events_request.py +++ b/src/test/test_execute_webhook_events_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_execute_webhook_response.py b/src/test/test_execute_webhook_response.py index c9ae6caba2..e9ec701766 100644 --- a/src/test/test_execute_webhook_response.py +++ b/src/test/test_execute_webhook_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_expense.py b/src/test/test_expense.py new file mode 100644 index 0000000000..99f7c063f6 --- /dev/null +++ b/src/test/test_expense.py @@ -0,0 +1,45 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import sys +import unittest + +import apideck +from apideck.model.currency import Currency +from apideck.model.custom_field import CustomField +from apideck.model.expense_line_item import ExpenseLineItem +from apideck.model.linked_tax_rate import LinkedTaxRate +from apideck.model.pass_through_body import PassThroughBody +globals()['Currency'] = Currency +globals()['CustomField'] = CustomField +globals()['ExpenseLineItem'] = ExpenseLineItem +globals()['LinkedTaxRate'] = LinkedTaxRate +globals()['PassThroughBody'] = PassThroughBody +from apideck.model.expense import Expense + + +class TestExpense(unittest.TestCase): + """Expense unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testExpense(self): + """Test Expense""" + # FIXME: construct object with mandatory attributes with example values + # model = Expense() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/src/test/test_expense_line_item.py b/src/test/test_expense_line_item.py new file mode 100644 index 0000000000..d11ce7af0d --- /dev/null +++ b/src/test/test_expense_line_item.py @@ -0,0 +1,39 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import sys +import unittest + +import apideck +from apideck.model.linked_tax_rate import LinkedTaxRate +from apideck.model.linked_tracking_categories import LinkedTrackingCategories +globals()['LinkedTaxRate'] = LinkedTaxRate +globals()['LinkedTrackingCategories'] = LinkedTrackingCategories +from apideck.model.expense_line_item import ExpenseLineItem + + +class TestExpenseLineItem(unittest.TestCase): + """ExpenseLineItem unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testExpenseLineItem(self): + """Test ExpenseLineItem""" + # FIXME: construct object with mandatory attributes with example values + # model = ExpenseLineItem() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/src/test/test_file_storage_api.py b/src/test/test_file_storage_api.py index 2d83a062e2..5753c1c479 100644 --- a/src/test/test_file_storage_api.py +++ b/src/test/test_file_storage_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_file_storage_event_type.py b/src/test/test_file_storage_event_type.py index a175d17c45..d84476035a 100644 --- a/src/test/test_file_storage_event_type.py +++ b/src/test/test_file_storage_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_file_type.py b/src/test/test_file_type.py index 7e30af3967..cea2ec4361 100644 --- a/src/test/test_file_type.py +++ b/src/test/test_file_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_files_filter.py b/src/test/test_files_filter.py index 20f4d92906..2a9a99d5e7 100644 --- a/src/test/test_files_filter.py +++ b/src/test/test_files_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_files_search.py b/src/test/test_files_search.py index 5af052f9b4..4f3b3b07c4 100644 --- a/src/test/test_files_search.py +++ b/src/test/test_files_search.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_files_sort.py b/src/test/test_files_sort.py index 036aaa7a6d..3b513fbe80 100644 --- a/src/test/test_files_sort.py +++ b/src/test/test_files_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_folder.py b/src/test/test_folder.py index c0e2cb5643..51814004b9 100644 --- a/src/test/test_folder.py +++ b/src/test/test_folder.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_form_field.py b/src/test/test_form_field.py index 82e737d136..3e192ab4ab 100644 --- a/src/test/test_form_field.py +++ b/src/test/test_form_field.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_form_field_option.py b/src/test/test_form_field_option.py index 3c027469e5..04bd6f6e5b 100644 --- a/src/test/test_form_field_option.py +++ b/src/test/test_form_field_option.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_form_field_option_group.py b/src/test/test_form_field_option_group.py index 8818d7d517..f369b91932 100644 --- a/src/test/test_form_field_option_group.py +++ b/src/test/test_form_field_option_group.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_gender.py b/src/test/test_gender.py index 7ca27de06d..c4bf2aea9b 100644 --- a/src/test/test_gender.py +++ b/src/test/test_gender.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_accounting_department_response.py b/src/test/test_get_accounting_department_response.py index 1a6ae2096e..a06afb1f31 100644 --- a/src/test/test_get_accounting_department_response.py +++ b/src/test/test_get_accounting_department_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_accounting_departments_response.py b/src/test/test_get_accounting_departments_response.py index e73315075e..e18e4c179d 100644 --- a/src/test/test_get_accounting_departments_response.py +++ b/src/test/test_get_accounting_departments_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_accounting_location_response.py b/src/test/test_get_accounting_location_response.py index 5fcfabde6e..1831ffd9b9 100644 --- a/src/test/test_get_accounting_location_response.py +++ b/src/test/test_get_accounting_location_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_accounting_locations_response.py b/src/test/test_get_accounting_locations_response.py index ea54436a7d..dcd650e0b6 100644 --- a/src/test/test_get_accounting_locations_response.py +++ b/src/test/test_get_accounting_locations_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_activities_response.py b/src/test/test_get_activities_response.py index 975ad58a5d..1c0caaf643 100644 --- a/src/test/test_get_activities_response.py +++ b/src/test/test_get_activities_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_activity_response.py b/src/test/test_get_activity_response.py index ca0d8fb0ef..64006fca32 100644 --- a/src/test/test_get_activity_response.py +++ b/src/test/test_get_activity_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_api_resource_coverage_response.py b/src/test/test_get_api_resource_coverage_response.py index 544d4e39f7..5fb66fbd3f 100644 --- a/src/test/test_get_api_resource_coverage_response.py +++ b/src/test/test_get_api_resource_coverage_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_api_resource_response.py b/src/test/test_get_api_resource_response.py index ca12970215..25fa2548d1 100644 --- a/src/test/test_get_api_resource_response.py +++ b/src/test/test_get_api_resource_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_api_response.py b/src/test/test_get_api_response.py index 2580eddec3..31bfa2dbd1 100644 --- a/src/test/test_get_api_response.py +++ b/src/test/test_get_api_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_apis_response.py b/src/test/test_get_apis_response.py index 427742122e..48f1ec3ff5 100644 --- a/src/test/test_get_apis_response.py +++ b/src/test/test_get_apis_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_applicant_response.py b/src/test/test_get_applicant_response.py index ac4d608aaa..594fe8745c 100644 --- a/src/test/test_get_applicant_response.py +++ b/src/test/test_get_applicant_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_applicants_response.py b/src/test/test_get_applicants_response.py index eb65eec829..c9a3f371a8 100644 --- a/src/test/test_get_applicants_response.py +++ b/src/test/test_get_applicants_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_application_response.py b/src/test/test_get_application_response.py index 5e4e0afbd1..50f50f34e4 100644 --- a/src/test/test_get_application_response.py +++ b/src/test/test_get_application_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_applications_response.py b/src/test/test_get_applications_response.py index 743f803ca7..27075cb16c 100644 --- a/src/test/test_get_applications_response.py +++ b/src/test/test_get_applications_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_attachment_response.py b/src/test/test_get_attachment_response.py index 071092de56..86d0a8427f 100644 --- a/src/test/test_get_attachment_response.py +++ b/src/test/test_get_attachment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_attachments_response.py b/src/test/test_get_attachments_response.py index 78861fa499..81adea1860 100644 --- a/src/test/test_get_attachments_response.py +++ b/src/test/test_get_attachments_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_balance_sheet_response.py b/src/test/test_get_balance_sheet_response.py index 2ce9aea6e0..46a7729d60 100644 --- a/src/test/test_get_balance_sheet_response.py +++ b/src/test/test_get_balance_sheet_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_bill_payment_response.py b/src/test/test_get_bill_payment_response.py new file mode 100644 index 0000000000..9b89f0374f --- /dev/null +++ b/src/test/test_get_bill_payment_response.py @@ -0,0 +1,37 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import sys +import unittest + +import apideck +from apideck.model.bill_payment import BillPayment +globals()['BillPayment'] = BillPayment +from apideck.model.get_bill_payment_response import GetBillPaymentResponse + + +class TestGetBillPaymentResponse(unittest.TestCase): + """GetBillPaymentResponse unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testGetBillPaymentResponse(self): + """Test GetBillPaymentResponse""" + # FIXME: construct object with mandatory attributes with example values + # model = GetBillPaymentResponse() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/src/test/test_get_bill_payments_response.py b/src/test/test_get_bill_payments_response.py new file mode 100644 index 0000000000..303e9c2207 --- /dev/null +++ b/src/test/test_get_bill_payments_response.py @@ -0,0 +1,41 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import sys +import unittest + +import apideck +from apideck.model.bill_payment import BillPayment +from apideck.model.links import Links +from apideck.model.meta import Meta +globals()['BillPayment'] = BillPayment +globals()['Links'] = Links +globals()['Meta'] = Meta +from apideck.model.get_bill_payments_response import GetBillPaymentsResponse + + +class TestGetBillPaymentsResponse(unittest.TestCase): + """GetBillPaymentsResponse unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testGetBillPaymentsResponse(self): + """Test GetBillPaymentsResponse""" + # FIXME: construct object with mandatory attributes with example values + # model = GetBillPaymentsResponse() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/src/test/test_get_bill_response.py b/src/test/test_get_bill_response.py index 1045101f5d..77a08f62cc 100644 --- a/src/test/test_get_bill_response.py +++ b/src/test/test_get_bill_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_bills_response.py b/src/test/test_get_bills_response.py index ba76536406..7867bc3381 100644 --- a/src/test/test_get_bills_response.py +++ b/src/test/test_get_bills_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_collection_response.py b/src/test/test_get_collection_response.py index da3688affc..9b1625d924 100644 --- a/src/test/test_get_collection_response.py +++ b/src/test/test_get_collection_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_collection_tags_response.py b/src/test/test_get_collection_tags_response.py index fdf3a0fdf5..6191a2fb99 100644 --- a/src/test/test_get_collection_tags_response.py +++ b/src/test/test_get_collection_tags_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_collection_user_response.py b/src/test/test_get_collection_user_response.py index fd81f29a42..d5e8919364 100644 --- a/src/test/test_get_collection_user_response.py +++ b/src/test/test_get_collection_user_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_collection_users_response.py b/src/test/test_get_collection_users_response.py index cae3c0f163..3bc052ebfd 100644 --- a/src/test/test_get_collection_users_response.py +++ b/src/test/test_get_collection_users_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_collections_response.py b/src/test/test_get_collections_response.py index ed6f7b3962..046069150b 100644 --- a/src/test/test_get_collections_response.py +++ b/src/test/test_get_collections_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_comment_response.py b/src/test/test_get_comment_response.py index 2e6799d971..ac10698ad7 100644 --- a/src/test/test_get_comment_response.py +++ b/src/test/test_get_comment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_comments_response.py b/src/test/test_get_comments_response.py index 052eec05d6..5094e7c0ff 100644 --- a/src/test/test_get_comments_response.py +++ b/src/test/test_get_comments_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_companies_response.py b/src/test/test_get_companies_response.py index ae2f9b1fb5..44f81f724b 100644 --- a/src/test/test_get_companies_response.py +++ b/src/test/test_get_companies_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_company_info_response.py b/src/test/test_get_company_info_response.py index 8957728191..98099e35b0 100644 --- a/src/test/test_get_company_info_response.py +++ b/src/test/test_get_company_info_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_company_response.py b/src/test/test_get_company_response.py index 764116f528..2f72279114 100644 --- a/src/test/test_get_company_response.py +++ b/src/test/test_get_company_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_connection_response.py b/src/test/test_get_connection_response.py index e8b67eca0a..abffa0f2c1 100644 --- a/src/test/test_get_connection_response.py +++ b/src/test/test_get_connection_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_connections_response.py b/src/test/test_get_connections_response.py index aa08456785..fdc2bf74cb 100644 --- a/src/test/test_get_connections_response.py +++ b/src/test/test_get_connections_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_connector_resource_example_response.py b/src/test/test_get_connector_resource_example_response.py index 96f610c45b..9260c2b34d 100644 --- a/src/test/test_get_connector_resource_example_response.py +++ b/src/test/test_get_connector_resource_example_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_connector_resource_example_response_data.py b/src/test/test_get_connector_resource_example_response_data.py index 465371a1b0..0c090a86fa 100644 --- a/src/test/test_get_connector_resource_example_response_data.py +++ b/src/test/test_get_connector_resource_example_response_data.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_connector_resource_response.py b/src/test/test_get_connector_resource_response.py index 3451c9c942..2db429d1b4 100644 --- a/src/test/test_get_connector_resource_response.py +++ b/src/test/test_get_connector_resource_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_connector_resource_schema_response.py b/src/test/test_get_connector_resource_schema_response.py index ae5e739900..2065422579 100644 --- a/src/test/test_get_connector_resource_schema_response.py +++ b/src/test/test_get_connector_resource_schema_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_connector_response.py b/src/test/test_get_connector_response.py index 6ef4b7fc41..e65c2fda8c 100644 --- a/src/test/test_get_connector_response.py +++ b/src/test/test_get_connector_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_connectors_response.py b/src/test/test_get_connectors_response.py index 57bb771151..fe26142c07 100644 --- a/src/test/test_get_connectors_response.py +++ b/src/test/test_get_connectors_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_consumer_response.py b/src/test/test_get_consumer_response.py index e661c4b45e..216da6323d 100644 --- a/src/test/test_get_consumer_response.py +++ b/src/test/test_get_consumer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_consumers_response.py b/src/test/test_get_consumers_response.py index 425f1d45c6..238af2cda4 100644 --- a/src/test/test_get_consumers_response.py +++ b/src/test/test_get_consumers_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_consumers_response_data.py b/src/test/test_get_consumers_response_data.py index 04a5448ba0..2a642715be 100644 --- a/src/test/test_get_consumers_response_data.py +++ b/src/test/test_get_consumers_response_data.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_contact_response.py b/src/test/test_get_contact_response.py index 3f47254911..766ff7e70a 100644 --- a/src/test/test_get_contact_response.py +++ b/src/test/test_get_contact_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_contacts_response.py b/src/test/test_get_contacts_response.py index f9387eaa64..9f9fb8eeac 100644 --- a/src/test/test_get_contacts_response.py +++ b/src/test/test_get_contacts_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_credit_note_response.py b/src/test/test_get_credit_note_response.py index 25aff14b42..f04653005f 100644 --- a/src/test/test_get_credit_note_response.py +++ b/src/test/test_get_credit_note_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_credit_notes_response.py b/src/test/test_get_credit_notes_response.py index 22032359e5..b8f0ed5ffc 100644 --- a/src/test/test_get_credit_notes_response.py +++ b/src/test/test_get_credit_notes_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_custom_fields_response.py b/src/test/test_get_custom_fields_response.py index a134768209..f0c3b96346 100644 --- a/src/test/test_get_custom_fields_response.py +++ b/src/test/test_get_custom_fields_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_custom_mapping_response.py b/src/test/test_get_custom_mapping_response.py index 2d927beb43..0cebb7b3b6 100644 --- a/src/test/test_get_custom_mapping_response.py +++ b/src/test/test_get_custom_mapping_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_customer_response.py b/src/test/test_get_customer_response.py index 0055d5243a..d503312509 100644 --- a/src/test/test_get_customer_response.py +++ b/src/test/test_get_customer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_customers_response.py b/src/test/test_get_customers_response.py index 7f4bb71a95..e615368872 100644 --- a/src/test/test_get_customers_response.py +++ b/src/test/test_get_customers_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_department_response.py b/src/test/test_get_department_response.py index 3d932220d6..60d9caa02a 100644 --- a/src/test/test_get_department_response.py +++ b/src/test/test_get_department_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_departments_response.py b/src/test/test_get_departments_response.py index f70cc5eaa1..4ede02253b 100644 --- a/src/test/test_get_departments_response.py +++ b/src/test/test_get_departments_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_drive_group_response.py b/src/test/test_get_drive_group_response.py index d1e2d176b0..7b8f8c0b14 100644 --- a/src/test/test_get_drive_group_response.py +++ b/src/test/test_get_drive_group_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_drive_groups_response.py b/src/test/test_get_drive_groups_response.py index f6cc079ffb..06b988a2e8 100644 --- a/src/test/test_get_drive_groups_response.py +++ b/src/test/test_get_drive_groups_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_drive_response.py b/src/test/test_get_drive_response.py index 2bd6242cd3..c25c7d35ab 100644 --- a/src/test/test_get_drive_response.py +++ b/src/test/test_get_drive_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_drives_response.py b/src/test/test_get_drives_response.py index 2e675cbf29..b21ce7b71f 100644 --- a/src/test/test_get_drives_response.py +++ b/src/test/test_get_drives_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_ecommerce_customer_response.py b/src/test/test_get_ecommerce_customer_response.py index ad568364fb..669acca25a 100644 --- a/src/test/test_get_ecommerce_customer_response.py +++ b/src/test/test_get_ecommerce_customer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_ecommerce_customers_response.py b/src/test/test_get_ecommerce_customers_response.py index 26a532f6ba..b7f69ae56f 100644 --- a/src/test/test_get_ecommerce_customers_response.py +++ b/src/test/test_get_ecommerce_customers_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_ecommerce_order_response.py b/src/test/test_get_ecommerce_order_response.py index 5ee72ad376..48a130ee93 100644 --- a/src/test/test_get_ecommerce_order_response.py +++ b/src/test/test_get_ecommerce_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_ecommerce_orders_response.py b/src/test/test_get_ecommerce_orders_response.py index af3fd375b5..26b6f3cb85 100644 --- a/src/test/test_get_ecommerce_orders_response.py +++ b/src/test/test_get_ecommerce_orders_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_employee_payroll_response.py b/src/test/test_get_employee_payroll_response.py index aef45bfeb3..6c608da86d 100644 --- a/src/test/test_get_employee_payroll_response.py +++ b/src/test/test_get_employee_payroll_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_employee_payrolls_response.py b/src/test/test_get_employee_payrolls_response.py index 6b42f79b3b..9321309fd2 100644 --- a/src/test/test_get_employee_payrolls_response.py +++ b/src/test/test_get_employee_payrolls_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_employee_response.py b/src/test/test_get_employee_response.py index 1b8a1868c9..6d529b4b44 100644 --- a/src/test/test_get_employee_response.py +++ b/src/test/test_get_employee_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_employee_schedules_response.py b/src/test/test_get_employee_schedules_response.py index 94b83e8520..e18a6e645b 100644 --- a/src/test/test_get_employee_schedules_response.py +++ b/src/test/test_get_employee_schedules_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_employees_response.py b/src/test/test_get_employees_response.py index 53411ceff9..7f3d703616 100644 --- a/src/test/test_get_employees_response.py +++ b/src/test/test_get_employees_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_expense_response.py b/src/test/test_get_expense_response.py new file mode 100644 index 0000000000..7647101342 --- /dev/null +++ b/src/test/test_get_expense_response.py @@ -0,0 +1,37 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import sys +import unittest + +import apideck +from apideck.model.expense import Expense +globals()['Expense'] = Expense +from apideck.model.get_expense_response import GetExpenseResponse + + +class TestGetExpenseResponse(unittest.TestCase): + """GetExpenseResponse unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testGetExpenseResponse(self): + """Test GetExpenseResponse""" + # FIXME: construct object with mandatory attributes with example values + # model = GetExpenseResponse() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/src/test/test_get_expenses_response.py b/src/test/test_get_expenses_response.py new file mode 100644 index 0000000000..a1f76a4a24 --- /dev/null +++ b/src/test/test_get_expenses_response.py @@ -0,0 +1,41 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import sys +import unittest + +import apideck +from apideck.model.expense import Expense +from apideck.model.links import Links +from apideck.model.meta import Meta +globals()['Expense'] = Expense +globals()['Links'] = Links +globals()['Meta'] = Meta +from apideck.model.get_expenses_response import GetExpensesResponse + + +class TestGetExpensesResponse(unittest.TestCase): + """GetExpensesResponse unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testGetExpensesResponse(self): + """Test GetExpensesResponse""" + # FIXME: construct object with mandatory attributes with example values + # model = GetExpensesResponse() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/src/test/test_get_file_response.py b/src/test/test_get_file_response.py index 1942948cc5..d5e3028288 100644 --- a/src/test/test_get_file_response.py +++ b/src/test/test_get_file_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_files_response.py b/src/test/test_get_files_response.py index 2b5506595d..83d0cdeb75 100644 --- a/src/test/test_get_files_response.py +++ b/src/test/test_get_files_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_folder_response.py b/src/test/test_get_folder_response.py index 3758dbdbfe..03360b19ba 100644 --- a/src/test/test_get_folder_response.py +++ b/src/test/test_get_folder_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_folders_response.py b/src/test/test_get_folders_response.py index 69bf7eee51..f5ecfe19b7 100644 --- a/src/test/test_get_folders_response.py +++ b/src/test/test_get_folders_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_hris_companies_response.py b/src/test/test_get_hris_companies_response.py index 3fb0d5ae94..624e0ad0e7 100644 --- a/src/test/test_get_hris_companies_response.py +++ b/src/test/test_get_hris_companies_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_hris_company_response.py b/src/test/test_get_hris_company_response.py index 98fae311d9..697d3fc3c5 100644 --- a/src/test/test_get_hris_company_response.py +++ b/src/test/test_get_hris_company_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_hris_job_response.py b/src/test/test_get_hris_job_response.py index c5912c34bf..26f7d83366 100644 --- a/src/test/test_get_hris_job_response.py +++ b/src/test/test_get_hris_job_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_hris_jobs_response.py b/src/test/test_get_hris_jobs_response.py index 519e100c7a..3ecaf1ac5a 100644 --- a/src/test/test_get_hris_jobs_response.py +++ b/src/test/test_get_hris_jobs_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_invoice_item_response.py b/src/test/test_get_invoice_item_response.py index 17dc44976e..e558821a74 100644 --- a/src/test/test_get_invoice_item_response.py +++ b/src/test/test_get_invoice_item_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_invoice_items_response.py b/src/test/test_get_invoice_items_response.py index a2ace543a2..1a83a274eb 100644 --- a/src/test/test_get_invoice_items_response.py +++ b/src/test/test_get_invoice_items_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_invoice_response.py b/src/test/test_get_invoice_response.py index 4947554a0e..45926837f1 100644 --- a/src/test/test_get_invoice_response.py +++ b/src/test/test_get_invoice_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_invoices_response.py b/src/test/test_get_invoices_response.py index a9def88f12..b37bf9aecc 100644 --- a/src/test/test_get_invoices_response.py +++ b/src/test/test_get_invoices_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_item_response.py b/src/test/test_get_item_response.py index d501a6b2d4..d3a794adbd 100644 --- a/src/test/test_get_item_response.py +++ b/src/test/test_get_item_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_items_response.py b/src/test/test_get_items_response.py index 11add618ae..c100392036 100644 --- a/src/test/test_get_items_response.py +++ b/src/test/test_get_items_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_job_response.py b/src/test/test_get_job_response.py index 7fc6d835c8..e720586e92 100644 --- a/src/test/test_get_job_response.py +++ b/src/test/test_get_job_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_jobs_response.py b/src/test/test_get_jobs_response.py index 0cdcdf9041..772c5ee823 100644 --- a/src/test/test_get_jobs_response.py +++ b/src/test/test_get_jobs_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_journal_entries_response.py b/src/test/test_get_journal_entries_response.py index 1ce6a2c515..34e505a0da 100644 --- a/src/test/test_get_journal_entries_response.py +++ b/src/test/test_get_journal_entries_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_journal_entry_response.py b/src/test/test_get_journal_entry_response.py index faccc514c2..8a98bfd8b0 100644 --- a/src/test/test_get_journal_entry_response.py +++ b/src/test/test_get_journal_entry_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_lead_response.py b/src/test/test_get_lead_response.py index 0cf1c7adb6..c9ac324e47 100644 --- a/src/test/test_get_lead_response.py +++ b/src/test/test_get_lead_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_leads_response.py b/src/test/test_get_leads_response.py index 936ef7d4f7..5ade4d9bef 100644 --- a/src/test/test_get_leads_response.py +++ b/src/test/test_get_leads_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_ledger_account_response.py b/src/test/test_get_ledger_account_response.py index 8219697aa6..1bab9aceb3 100644 --- a/src/test/test_get_ledger_account_response.py +++ b/src/test/test_get_ledger_account_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_ledger_accounts_response.py b/src/test/test_get_ledger_accounts_response.py index b3624a0c8e..1cbae43aae 100644 --- a/src/test/test_get_ledger_accounts_response.py +++ b/src/test/test_get_ledger_accounts_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_location_response.py b/src/test/test_get_location_response.py index fc10725432..200593872a 100644 --- a/src/test/test_get_location_response.py +++ b/src/test/test_get_location_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_locations_response.py b/src/test/test_get_locations_response.py index 2e2ed1ae55..9f5d05a675 100644 --- a/src/test/test_get_locations_response.py +++ b/src/test/test_get_locations_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_logs_response.py b/src/test/test_get_logs_response.py index a1863cc380..409d575cec 100644 --- a/src/test/test_get_logs_response.py +++ b/src/test/test_get_logs_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_merchant_response.py b/src/test/test_get_merchant_response.py index e26d45f305..41a144c9b2 100644 --- a/src/test/test_get_merchant_response.py +++ b/src/test/test_get_merchant_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_merchants_response.py b/src/test/test_get_merchants_response.py index 2386a45148..dd11c3e776 100644 --- a/src/test/test_get_merchants_response.py +++ b/src/test/test_get_merchants_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_message_response.py b/src/test/test_get_message_response.py index d58ac62d34..5ed918159e 100644 --- a/src/test/test_get_message_response.py +++ b/src/test/test_get_message_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_messages_response.py b/src/test/test_get_messages_response.py index 5a1134aee2..bda7494c78 100644 --- a/src/test/test_get_messages_response.py +++ b/src/test/test_get_messages_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_modifier_group_response.py b/src/test/test_get_modifier_group_response.py index 4b81237dcb..0425846458 100644 --- a/src/test/test_get_modifier_group_response.py +++ b/src/test/test_get_modifier_group_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_modifier_groups_response.py b/src/test/test_get_modifier_groups_response.py index a81c22c513..90cc50dcdb 100644 --- a/src/test/test_get_modifier_groups_response.py +++ b/src/test/test_get_modifier_groups_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_modifier_response.py b/src/test/test_get_modifier_response.py index 723a2e6bf5..56f8bbab3f 100644 --- a/src/test/test_get_modifier_response.py +++ b/src/test/test_get_modifier_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_modifiers_response.py b/src/test/test_get_modifiers_response.py index 65466ef7cd..6d29856f7a 100644 --- a/src/test/test_get_modifiers_response.py +++ b/src/test/test_get_modifiers_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_note_response.py b/src/test/test_get_note_response.py index 593f6b648b..851d795466 100644 --- a/src/test/test_get_note_response.py +++ b/src/test/test_get_note_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_notes_response.py b/src/test/test_get_notes_response.py index 9fbd18c317..9061629544 100644 --- a/src/test/test_get_notes_response.py +++ b/src/test/test_get_notes_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_opportunities_response.py b/src/test/test_get_opportunities_response.py index 669ad26972..fb3d3ec31e 100644 --- a/src/test/test_get_opportunities_response.py +++ b/src/test/test_get_opportunities_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_opportunity_response.py b/src/test/test_get_opportunity_response.py index 62a142195d..fa0007ce4f 100644 --- a/src/test/test_get_opportunity_response.py +++ b/src/test/test_get_opportunity_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_order_response.py b/src/test/test_get_order_response.py index f3c4a537be..0c178a1f8a 100644 --- a/src/test/test_get_order_response.py +++ b/src/test/test_get_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_order_type_response.py b/src/test/test_get_order_type_response.py index 0c95f4c630..1ed6bfa326 100644 --- a/src/test/test_get_order_type_response.py +++ b/src/test/test_get_order_type_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_order_types_response.py b/src/test/test_get_order_types_response.py index 680ce65c62..39231a14f8 100644 --- a/src/test/test_get_order_types_response.py +++ b/src/test/test_get_order_types_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_orders_response.py b/src/test/test_get_orders_response.py index 989fc15bbe..ea43ac9e4d 100644 --- a/src/test/test_get_orders_response.py +++ b/src/test/test_get_orders_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_payment_response.py b/src/test/test_get_payment_response.py index c33e9a5f8e..732042cfef 100644 --- a/src/test/test_get_payment_response.py +++ b/src/test/test_get_payment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_payments_response.py b/src/test/test_get_payments_response.py index 0873b7eb60..c2ffeeb856 100644 --- a/src/test/test_get_payments_response.py +++ b/src/test/test_get_payments_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_payroll_response.py b/src/test/test_get_payroll_response.py index 2e9730727b..f6a5a8986b 100644 --- a/src/test/test_get_payroll_response.py +++ b/src/test/test_get_payroll_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_payrolls_response.py b/src/test/test_get_payrolls_response.py index 23aa631232..b1133b1176 100644 --- a/src/test/test_get_payrolls_response.py +++ b/src/test/test_get_payrolls_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_pipeline_response.py b/src/test/test_get_pipeline_response.py index 2b8211d618..79b752f4c4 100644 --- a/src/test/test_get_pipeline_response.py +++ b/src/test/test_get_pipeline_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_pipelines_response.py b/src/test/test_get_pipelines_response.py index 52a5225669..e2b02e05de 100644 --- a/src/test/test_get_pipelines_response.py +++ b/src/test/test_get_pipelines_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_pos_payment_response.py b/src/test/test_get_pos_payment_response.py index aa43f8f106..6bb6d6db2c 100644 --- a/src/test/test_get_pos_payment_response.py +++ b/src/test/test_get_pos_payment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_pos_payments_response.py b/src/test/test_get_pos_payments_response.py index 7d06f125db..63602d65e4 100644 --- a/src/test/test_get_pos_payments_response.py +++ b/src/test/test_get_pos_payments_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_product_response.py b/src/test/test_get_product_response.py index 74c84ea283..cec5c0ab7f 100644 --- a/src/test/test_get_product_response.py +++ b/src/test/test_get_product_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_products_response.py b/src/test/test_get_products_response.py index fd847bea2a..e41c1c7716 100644 --- a/src/test/test_get_products_response.py +++ b/src/test/test_get_products_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_profit_and_loss_response.py b/src/test/test_get_profit_and_loss_response.py index 4e20bf8241..2f80804dda 100644 --- a/src/test/test_get_profit_and_loss_response.py +++ b/src/test/test_get_profit_and_loss_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_purchase_order_response.py b/src/test/test_get_purchase_order_response.py index 470c5f1506..6123dbfca1 100644 --- a/src/test/test_get_purchase_order_response.py +++ b/src/test/test_get_purchase_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_purchase_orders_response.py b/src/test/test_get_purchase_orders_response.py index 069f96c1f5..0bb1dcffe5 100644 --- a/src/test/test_get_purchase_orders_response.py +++ b/src/test/test_get_purchase_orders_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_resource_example_response.py b/src/test/test_get_resource_example_response.py index 9dc94af5ae..954d82d55f 100644 --- a/src/test/test_get_resource_example_response.py +++ b/src/test/test_get_resource_example_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_resource_schema_response.py b/src/test/test_get_resource_schema_response.py index 710f3b56d9..55a74a48c0 100644 --- a/src/test/test_get_resource_schema_response.py +++ b/src/test/test_get_resource_schema_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_shared_link_response.py b/src/test/test_get_shared_link_response.py index 244f95baca..06bc2a48a1 100644 --- a/src/test/test_get_shared_link_response.py +++ b/src/test/test_get_shared_link_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_shared_links_response.py b/src/test/test_get_shared_links_response.py index ad9f6b6d8c..308d775b58 100644 --- a/src/test/test_get_shared_links_response.py +++ b/src/test/test_get_shared_links_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_store_response.py b/src/test/test_get_store_response.py index 5d9a71f06c..7d265585f6 100644 --- a/src/test/test_get_store_response.py +++ b/src/test/test_get_store_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_stores_response.py b/src/test/test_get_stores_response.py index c684ed5c94..2194de22bb 100644 --- a/src/test/test_get_stores_response.py +++ b/src/test/test_get_stores_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_subsidiaries_response.py b/src/test/test_get_subsidiaries_response.py index 5a1bcf890e..ef7f83eccb 100644 --- a/src/test/test_get_subsidiaries_response.py +++ b/src/test/test_get_subsidiaries_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_subsidiary_response.py b/src/test/test_get_subsidiary_response.py index 5c7d6ea73e..3f831ab48d 100644 --- a/src/test/test_get_subsidiary_response.py +++ b/src/test/test_get_subsidiary_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_supplier_response.py b/src/test/test_get_supplier_response.py index 700bc2a61c..f165ce2aea 100644 --- a/src/test/test_get_supplier_response.py +++ b/src/test/test_get_supplier_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_suppliers_response.py b/src/test/test_get_suppliers_response.py index 2ab54576b6..5427fa14f5 100644 --- a/src/test/test_get_suppliers_response.py +++ b/src/test/test_get_suppliers_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_tax_rate_response.py b/src/test/test_get_tax_rate_response.py index 3656aab98f..085ea1a578 100644 --- a/src/test/test_get_tax_rate_response.py +++ b/src/test/test_get_tax_rate_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_tax_rates_response.py b/src/test/test_get_tax_rates_response.py index 99dccbe4b7..d49fdd6afd 100644 --- a/src/test/test_get_tax_rates_response.py +++ b/src/test/test_get_tax_rates_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_tender_response.py b/src/test/test_get_tender_response.py index 28278814f9..4abbcfadf4 100644 --- a/src/test/test_get_tender_response.py +++ b/src/test/test_get_tender_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_tenders_response.py b/src/test/test_get_tenders_response.py index 6762e10862..123958f9fe 100644 --- a/src/test/test_get_tenders_response.py +++ b/src/test/test_get_tenders_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_ticket_response.py b/src/test/test_get_ticket_response.py index 5201cbe73d..6eff944eb5 100644 --- a/src/test/test_get_ticket_response.py +++ b/src/test/test_get_ticket_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_tickets_response.py b/src/test/test_get_tickets_response.py index 62cc80b8d9..c766c16c95 100644 --- a/src/test/test_get_tickets_response.py +++ b/src/test/test_get_tickets_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_time_off_request_response.py b/src/test/test_get_time_off_request_response.py index aeb8abf26b..86fc0f8b0e 100644 --- a/src/test/test_get_time_off_request_response.py +++ b/src/test/test_get_time_off_request_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_time_off_requests_response.py b/src/test/test_get_time_off_requests_response.py index 7f2d4b168b..ed1f635b15 100644 --- a/src/test/test_get_time_off_requests_response.py +++ b/src/test/test_get_time_off_requests_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_tracking_categories_response.py b/src/test/test_get_tracking_categories_response.py index 6f0188da33..41f7606ad5 100644 --- a/src/test/test_get_tracking_categories_response.py +++ b/src/test/test_get_tracking_categories_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_tracking_category_response.py b/src/test/test_get_tracking_category_response.py index 8fb63c3f57..73980ac0cd 100644 --- a/src/test/test_get_tracking_category_response.py +++ b/src/test/test_get_tracking_category_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_upload_session_response.py b/src/test/test_get_upload_session_response.py index 715c38e448..a2f076737a 100644 --- a/src/test/test_get_upload_session_response.py +++ b/src/test/test_get_upload_session_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_user_response.py b/src/test/test_get_user_response.py index c370ca12eb..949295f3ac 100644 --- a/src/test/test_get_user_response.py +++ b/src/test/test_get_user_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_users_response.py b/src/test/test_get_users_response.py index 74967760ed..088b728723 100644 --- a/src/test/test_get_users_response.py +++ b/src/test/test_get_users_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_webhook_event_logs_response.py b/src/test/test_get_webhook_event_logs_response.py index 7abddac5d9..a016a62f68 100644 --- a/src/test/test_get_webhook_event_logs_response.py +++ b/src/test/test_get_webhook_event_logs_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_webhook_response.py b/src/test/test_get_webhook_response.py index 6ff3586122..a4741281db 100644 --- a/src/test/test_get_webhook_response.py +++ b/src/test/test_get_webhook_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_get_webhooks_response.py b/src/test/test_get_webhooks_response.py index a5c5c66ae0..72ff81e3d2 100644 --- a/src/test/test_get_webhooks_response.py +++ b/src/test/test_get_webhooks_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_hris_api.py b/src/test/test_hris_api.py index 6ed440fe47..444ac76d03 100644 --- a/src/test/test_hris_api.py +++ b/src/test/test_hris_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_hris_company.py b/src/test/test_hris_company.py index 289db36933..1af13505b6 100644 --- a/src/test/test_hris_company.py +++ b/src/test/test_hris_company.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_hris_event_type.py b/src/test/test_hris_event_type.py index 9350b8beb3..01354ea2dd 100644 --- a/src/test/test_hris_event_type.py +++ b/src/test/test_hris_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_hris_job.py b/src/test/test_hris_job.py index cb56c6e4f2..ad6aed1d1f 100644 --- a/src/test/test_hris_job.py +++ b/src/test/test_hris_job.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_hris_job_location.py b/src/test/test_hris_job_location.py index b458f430b6..1703833d5d 100644 --- a/src/test/test_hris_job_location.py +++ b/src/test/test_hris_job_location.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_hris_jobs.py b/src/test/test_hris_jobs.py index 034a854af9..8b2d9a1b7f 100644 --- a/src/test/test_hris_jobs.py +++ b/src/test/test_hris_jobs.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_idempotency_key.py b/src/test/test_idempotency_key.py index dc1d722154..ac25d364a4 100644 --- a/src/test/test_idempotency_key.py +++ b/src/test/test_idempotency_key.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_integration_state.py b/src/test/test_integration_state.py index f2a27098c9..58526095b9 100644 --- a/src/test/test_integration_state.py +++ b/src/test/test_integration_state.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_invoice.py b/src/test/test_invoice.py index 541ad26096..6a7f5d82a4 100644 --- a/src/test/test_invoice.py +++ b/src/test/test_invoice.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_invoice_item.py b/src/test/test_invoice_item.py index 96feb72397..703d49a088 100644 --- a/src/test/test_invoice_item.py +++ b/src/test/test_invoice_item.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_invoice_item_asset_account.py b/src/test/test_invoice_item_asset_account.py index f503776163..0dc5d4ab59 100644 --- a/src/test/test_invoice_item_asset_account.py +++ b/src/test/test_invoice_item_asset_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_invoice_item_expense_account.py b/src/test/test_invoice_item_expense_account.py index a408923ec3..399cc6467a 100644 --- a/src/test/test_invoice_item_expense_account.py +++ b/src/test/test_invoice_item_expense_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_invoice_item_income_account.py b/src/test/test_invoice_item_income_account.py index b3e00c20ac..d9062f37d0 100644 --- a/src/test/test_invoice_item_income_account.py +++ b/src/test/test_invoice_item_income_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_invoice_item_sales_details.py b/src/test/test_invoice_item_sales_details.py index bc69e03450..0789a59ec8 100644 --- a/src/test/test_invoice_item_sales_details.py +++ b/src/test/test_invoice_item_sales_details.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_invoice_items_filter.py b/src/test/test_invoice_items_filter.py index 6cf904084f..beb9cabd26 100644 --- a/src/test/test_invoice_items_filter.py +++ b/src/test/test_invoice_items_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_invoice_line_item.py b/src/test/test_invoice_line_item.py index 332af0cc5f..773db42ac1 100644 --- a/src/test/test_invoice_line_item.py +++ b/src/test/test_invoice_line_item.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_invoice_response.py b/src/test/test_invoice_response.py index a35b019ee6..5d4033b471 100644 --- a/src/test/test_invoice_response.py +++ b/src/test/test_invoice_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_invoices_filter.py b/src/test/test_invoices_filter.py index 897dc507ed..90cf3b1079 100644 --- a/src/test/test_invoices_filter.py +++ b/src/test/test_invoices_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_invoices_sort.py b/src/test/test_invoices_sort.py index 962077bc6b..786a41b425 100644 --- a/src/test/test_invoices_sort.py +++ b/src/test/test_invoices_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_issue_tracking_api.py b/src/test/test_issue_tracking_api.py index 52572104e8..533fb9ba66 100644 --- a/src/test/test_issue_tracking_api.py +++ b/src/test/test_issue_tracking_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_issue_tracking_event_type.py b/src/test/test_issue_tracking_event_type.py index 19fadec80c..08fe74ce0f 100644 --- a/src/test/test_issue_tracking_event_type.py +++ b/src/test/test_issue_tracking_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_issues_filter.py b/src/test/test_issues_filter.py index e46eecf86d..35b5610ec0 100644 --- a/src/test/test_issues_filter.py +++ b/src/test/test_issues_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_item.py b/src/test/test_item.py index 45b16f6dd5..0b9f949305 100644 --- a/src/test/test_item.py +++ b/src/test/test_item.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_job.py b/src/test/test_job.py index 215e1ad024..ab3fa642b5 100644 --- a/src/test/test_job.py +++ b/src/test/test_job.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_job_links.py b/src/test/test_job_links.py index 4570d8ba1a..428733eeef 100644 --- a/src/test/test_job_links.py +++ b/src/test/test_job_links.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_job_salary.py b/src/test/test_job_salary.py index 79d18b18ee..cda785276b 100644 --- a/src/test/test_job_salary.py +++ b/src/test/test_job_salary.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_job_status.py b/src/test/test_job_status.py index 7dd74fa90a..8f46368a76 100644 --- a/src/test/test_job_status.py +++ b/src/test/test_job_status.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_journal_entries_filter.py b/src/test/test_journal_entries_filter.py index 4785048e24..9d9099a2e2 100644 --- a/src/test/test_journal_entries_filter.py +++ b/src/test/test_journal_entries_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_journal_entries_sort.py b/src/test/test_journal_entries_sort.py index 89f738e62f..e1ee0a9b74 100644 --- a/src/test/test_journal_entries_sort.py +++ b/src/test/test_journal_entries_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_journal_entry.py b/src/test/test_journal_entry.py index cfee044a5d..9f64d0afd8 100644 --- a/src/test/test_journal_entry.py +++ b/src/test/test_journal_entry.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_journal_entry_line_item.py b/src/test/test_journal_entry_line_item.py index ba438f937f..8ab7083304 100644 --- a/src/test/test_journal_entry_line_item.py +++ b/src/test/test_journal_entry_line_item.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_lead.py b/src/test/test_lead.py index 7f65730159..82ce1e171a 100644 --- a/src/test/test_lead.py +++ b/src/test/test_lead.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_lead_api.py b/src/test/test_lead_api.py index 8364d695a2..2f68c65ef1 100644 --- a/src/test/test_lead_api.py +++ b/src/test/test_lead_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_lead_event_type.py b/src/test/test_lead_event_type.py index d855ec20bb..811f5fe4cb 100644 --- a/src/test/test_lead_event_type.py +++ b/src/test/test_lead_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_leads_filter.py b/src/test/test_leads_filter.py index aca87a6ffe..e8aee1264d 100644 --- a/src/test/test_leads_filter.py +++ b/src/test/test_leads_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_leads_sort.py b/src/test/test_leads_sort.py index af1647760e..a5b277c204 100644 --- a/src/test/test_leads_sort.py +++ b/src/test/test_leads_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ledger_account.py b/src/test/test_ledger_account.py index 800419f6d4..0b2e147a50 100644 --- a/src/test/test_ledger_account.py +++ b/src/test/test_ledger_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ledger_account_categories.py b/src/test/test_ledger_account_categories.py index 39d62dafac..4c921826f1 100644 --- a/src/test/test_ledger_account_categories.py +++ b/src/test/test_ledger_account_categories.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ledger_account_parent_account.py b/src/test/test_ledger_account_parent_account.py index 476be2f711..757f6fd558 100644 --- a/src/test/test_ledger_account_parent_account.py +++ b/src/test/test_ledger_account_parent_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ledger_accounts.py b/src/test/test_ledger_accounts.py index 3a0eeabf07..d9daae0287 100644 --- a/src/test/test_ledger_accounts.py +++ b/src/test/test_ledger_accounts.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ledger_accounts_filter.py b/src/test/test_ledger_accounts_filter.py index dc4221b399..36f28ea8ba 100644 --- a/src/test/test_ledger_accounts_filter.py +++ b/src/test/test_ledger_accounts_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ledger_accounts_sort.py b/src/test/test_ledger_accounts_sort.py index bd35be95fd..1ab2c190e8 100644 --- a/src/test/test_ledger_accounts_sort.py +++ b/src/test/test_ledger_accounts_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_linked_connector_resource.py b/src/test/test_linked_connector_resource.py index 5ce305eba7..c76de06e2b 100644 --- a/src/test/test_linked_connector_resource.py +++ b/src/test/test_linked_connector_resource.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_linked_customer.py b/src/test/test_linked_customer.py index 9ee1bb8174..e973f25211 100644 --- a/src/test/test_linked_customer.py +++ b/src/test/test_linked_customer.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_linked_ecommerce_customer.py b/src/test/test_linked_ecommerce_customer.py index 3b79aa1cf2..adfd7b1797 100644 --- a/src/test/test_linked_ecommerce_customer.py +++ b/src/test/test_linked_ecommerce_customer.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_linked_ecommerce_order.py b/src/test/test_linked_ecommerce_order.py index 51a2edbbcd..e956db162f 100644 --- a/src/test/test_linked_ecommerce_order.py +++ b/src/test/test_linked_ecommerce_order.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_linked_folder.py b/src/test/test_linked_folder.py index 78b9019962..441efe7519 100644 --- a/src/test/test_linked_folder.py +++ b/src/test/test_linked_folder.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_linked_invoice_item.py b/src/test/test_linked_invoice_item.py index 8ed0174403..4359d60f0c 100644 --- a/src/test/test_linked_invoice_item.py +++ b/src/test/test_linked_invoice_item.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_linked_ledger_account.py b/src/test/test_linked_ledger_account.py index e1ac536172..85bfc3050a 100644 --- a/src/test/test_linked_ledger_account.py +++ b/src/test/test_linked_ledger_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_linked_parent_customer.py b/src/test/test_linked_parent_customer.py index 1d9e9fb2d8..4714b4ca44 100644 --- a/src/test/test_linked_parent_customer.py +++ b/src/test/test_linked_parent_customer.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_linked_supplier.py b/src/test/test_linked_supplier.py index 4db9fbd2a8..459edb94c9 100644 --- a/src/test/test_linked_supplier.py +++ b/src/test/test_linked_supplier.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_linked_tax_rate.py b/src/test/test_linked_tax_rate.py index 9cb74b3f0c..e927c2da3b 100644 --- a/src/test/test_linked_tax_rate.py +++ b/src/test/test_linked_tax_rate.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_linked_tracking_categories.py b/src/test/test_linked_tracking_categories.py index b8ced103f0..eef738fc7a 100644 --- a/src/test/test_linked_tracking_categories.py +++ b/src/test/test_linked_tracking_categories.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_linked_tracking_category.py b/src/test/test_linked_tracking_category.py index 8471bbde59..e2de385afc 100644 --- a/src/test/test_linked_tracking_category.py +++ b/src/test/test_linked_tracking_category.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_links.py b/src/test/test_links.py index e98d571f3a..886a2d9c50 100644 --- a/src/test/test_links.py +++ b/src/test/test_links.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_location.py b/src/test/test_location.py index 950816b369..d178fa4591 100644 --- a/src/test/test_location.py +++ b/src/test/test_location.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_log.py b/src/test/test_log.py index 4e52df7633..389bc95b88 100644 --- a/src/test/test_log.py +++ b/src/test/test_log.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_log_operation.py b/src/test/test_log_operation.py index 9b97158c3f..2b555fc770 100644 --- a/src/test/test_log_operation.py +++ b/src/test/test_log_operation.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_log_service.py b/src/test/test_log_service.py index 29414731b6..de16f42f3a 100644 --- a/src/test/test_log_service.py +++ b/src/test/test_log_service.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_logs_filter.py b/src/test/test_logs_filter.py index 134de8c069..9a0661474a 100644 --- a/src/test/test_logs_filter.py +++ b/src/test/test_logs_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_merchant.py b/src/test/test_merchant.py index 65978603a2..8e98acf8d7 100644 --- a/src/test/test_merchant.py +++ b/src/test/test_merchant.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_message.py b/src/test/test_message.py index a6dd96466c..b332255a32 100644 --- a/src/test/test_message.py +++ b/src/test/test_message.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_meta.py b/src/test/test_meta.py index fa13b182c2..87f2c78e31 100644 --- a/src/test/test_meta.py +++ b/src/test/test_meta.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_meta_cursors.py b/src/test/test_meta_cursors.py index 6b6daf024c..221e8079f1 100644 --- a/src/test/test_meta_cursors.py +++ b/src/test/test_meta_cursors.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_modifier.py b/src/test/test_modifier.py index e86adbf429..318512ff9f 100644 --- a/src/test/test_modifier.py +++ b/src/test/test_modifier.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_modifier_group.py b/src/test/test_modifier_group.py index b67caa9bc9..d7470e3d74 100644 --- a/src/test/test_modifier_group.py +++ b/src/test/test_modifier_group.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_modifier_group_filter.py b/src/test/test_modifier_group_filter.py index dd55aa1bdc..ef4b43a7d5 100644 --- a/src/test/test_modifier_group_filter.py +++ b/src/test/test_modifier_group_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_not_found_response.py b/src/test/test_not_found_response.py index 99d42d219b..61e187ab4d 100644 --- a/src/test/test_not_found_response.py +++ b/src/test/test_not_found_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_not_implemented_response.py b/src/test/test_not_implemented_response.py index 8e17d2343a..3b5a7c9363 100644 --- a/src/test/test_not_implemented_response.py +++ b/src/test/test_not_implemented_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_note.py b/src/test/test_note.py index 8659c78da0..726356eafd 100644 --- a/src/test/test_note.py +++ b/src/test/test_note.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_o_auth_grant_type.py b/src/test/test_o_auth_grant_type.py index 2b9a7dcc1f..1f28a0e45b 100644 --- a/src/test/test_o_auth_grant_type.py +++ b/src/test/test_o_auth_grant_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_offer.py b/src/test/test_offer.py index dc8348e58a..efa18e5687 100644 --- a/src/test/test_offer.py +++ b/src/test/test_offer.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_opportunities_filter.py b/src/test/test_opportunities_filter.py index 61acf17d89..e0f8387b8c 100644 --- a/src/test/test_opportunities_filter.py +++ b/src/test/test_opportunities_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_opportunities_sort.py b/src/test/test_opportunities_sort.py index 1897d6d4b5..6aba0ccf76 100644 --- a/src/test/test_opportunities_sort.py +++ b/src/test/test_opportunities_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_opportunity.py b/src/test/test_opportunity.py index 114b5497ed..379c54d878 100644 --- a/src/test/test_opportunity.py +++ b/src/test/test_opportunity.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_order.py b/src/test/test_order.py index ef3edbb6ce..a84aeffd74 100644 --- a/src/test/test_order.py +++ b/src/test/test_order.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_order_customers.py b/src/test/test_order_customers.py index d531a7e036..0ef00ce0c8 100644 --- a/src/test/test_order_customers.py +++ b/src/test/test_order_customers.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_order_discounts.py b/src/test/test_order_discounts.py index e95d91ecd1..965a2ae1c2 100644 --- a/src/test/test_order_discounts.py +++ b/src/test/test_order_discounts.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_order_fulfillments.py b/src/test/test_order_fulfillments.py index 63127515cf..c256f94170 100644 --- a/src/test/test_order_fulfillments.py +++ b/src/test/test_order_fulfillments.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_order_line_items.py b/src/test/test_order_line_items.py index 62537ad682..8e9c160966 100644 --- a/src/test/test_order_line_items.py +++ b/src/test/test_order_line_items.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_order_payments.py b/src/test/test_order_payments.py index 1200080787..dbb0633b7d 100644 --- a/src/test/test_order_payments.py +++ b/src/test/test_order_payments.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_order_pickup_details.py b/src/test/test_order_pickup_details.py index a8cc9f85fe..d628dd5923 100644 --- a/src/test/test_order_pickup_details.py +++ b/src/test/test_order_pickup_details.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_order_pickup_details_curbside_pickup_details.py b/src/test/test_order_pickup_details_curbside_pickup_details.py index 578d6a4632..c5231697dd 100644 --- a/src/test/test_order_pickup_details_curbside_pickup_details.py +++ b/src/test/test_order_pickup_details_curbside_pickup_details.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_order_pickup_details_recipient.py b/src/test/test_order_pickup_details_recipient.py index 51eb9075f4..75acbde054 100644 --- a/src/test/test_order_pickup_details_recipient.py +++ b/src/test/test_order_pickup_details_recipient.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_order_refunds.py b/src/test/test_order_refunds.py index d19b49e975..6f980237a8 100644 --- a/src/test/test_order_refunds.py +++ b/src/test/test_order_refunds.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_order_tenders.py b/src/test/test_order_tenders.py index 1d19425cd6..2bfc304186 100644 --- a/src/test/test_order_tenders.py +++ b/src/test/test_order_tenders.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_order_type.py b/src/test/test_order_type.py index c64bb4af25..c310007dea 100644 --- a/src/test/test_order_type.py +++ b/src/test/test_order_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_orders_sort.py b/src/test/test_orders_sort.py index fb31cddeb0..4429a96ed8 100644 --- a/src/test/test_orders_sort.py +++ b/src/test/test_orders_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_owner.py b/src/test/test_owner.py index ed0ec47252..c26237f643 100644 --- a/src/test/test_owner.py +++ b/src/test/test_owner.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_pagination_coverage.py b/src/test/test_pagination_coverage.py index 0d448e6b2e..9082af6bcb 100644 --- a/src/test/test_pagination_coverage.py +++ b/src/test/test_pagination_coverage.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_pass_through_body.py b/src/test/test_pass_through_body.py index ad4ba1ef0b..d3cf78b86b 100644 --- a/src/test/test_pass_through_body.py +++ b/src/test/test_pass_through_body.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_pass_through_query.py b/src/test/test_pass_through_query.py index b82e8e6dda..d744ce2fdf 100644 --- a/src/test/test_pass_through_query.py +++ b/src/test/test_pass_through_query.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_payment.py b/src/test/test_payment.py index 598f924319..46c0c7fa34 100644 --- a/src/test/test_payment.py +++ b/src/test/test_payment.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ @@ -15,19 +15,23 @@ from apideck.model.allocation import Allocation from apideck.model.currency import Currency from apideck.model.custom_field import CustomField +from apideck.model.deprecated_linked_supplier import DeprecatedLinkedSupplier from apideck.model.linked_customer import LinkedCustomer from apideck.model.linked_ledger_account import LinkedLedgerAccount -from apideck.model.linked_supplier import LinkedSupplier from apideck.model.linked_tracking_categories import LinkedTrackingCategories from apideck.model.pass_through_body import PassThroughBody +from apideck.model.payment_status import PaymentStatus +from apideck.model.payment_type import PaymentType globals()['Allocation'] = Allocation globals()['Currency'] = Currency globals()['CustomField'] = CustomField +globals()['DeprecatedLinkedSupplier'] = DeprecatedLinkedSupplier globals()['LinkedCustomer'] = LinkedCustomer globals()['LinkedLedgerAccount'] = LinkedLedgerAccount -globals()['LinkedSupplier'] = LinkedSupplier globals()['LinkedTrackingCategories'] = LinkedTrackingCategories globals()['PassThroughBody'] = PassThroughBody +globals()['PaymentStatus'] = PaymentStatus +globals()['PaymentType'] = PaymentType from apideck.model.payment import Payment diff --git a/src/test/test_payment_card.py b/src/test/test_payment_card.py index fc3600453a..ccbee17e77 100644 --- a/src/test/test_payment_card.py +++ b/src/test/test_payment_card.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_payment_frequency.py b/src/test/test_payment_frequency.py index 1cc17458f4..e78e8c2516 100644 --- a/src/test/test_payment_frequency.py +++ b/src/test/test_payment_frequency.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_payment_required_response.py b/src/test/test_payment_required_response.py index fe48990ab2..522173002e 100644 --- a/src/test/test_payment_required_response.py +++ b/src/test/test_payment_required_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_payment_status.py b/src/test/test_payment_status.py new file mode 100644 index 0000000000..6e3239b8ac --- /dev/null +++ b/src/test/test_payment_status.py @@ -0,0 +1,35 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import sys +import unittest + +import apideck +from apideck.model.payment_status import PaymentStatus + + +class TestPaymentStatus(unittest.TestCase): + """PaymentStatus unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testPaymentStatus(self): + """Test PaymentStatus""" + # FIXME: construct object with mandatory attributes with example values + # model = PaymentStatus() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/src/test/test_payment_type.py b/src/test/test_payment_type.py new file mode 100644 index 0000000000..7625fc780c --- /dev/null +++ b/src/test/test_payment_type.py @@ -0,0 +1,35 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import sys +import unittest + +import apideck +from apideck.model.payment_type import PaymentType + + +class TestPaymentType(unittest.TestCase): + """PaymentType unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testPaymentType(self): + """Test PaymentType""" + # FIXME: construct object with mandatory attributes with example values + # model = PaymentType() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/src/test/test_payment_unit.py b/src/test/test_payment_unit.py index 7568702d14..4c197239a5 100644 --- a/src/test/test_payment_unit.py +++ b/src/test/test_payment_unit.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_payments_filter.py b/src/test/test_payments_filter.py index 3d4dc461d1..a46937c2df 100644 --- a/src/test/test_payments_filter.py +++ b/src/test/test_payments_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_payments_sort.py b/src/test/test_payments_sort.py index e40ec45941..35b8af7dba 100644 --- a/src/test/test_payments_sort.py +++ b/src/test/test_payments_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_payroll.py b/src/test/test_payroll.py index 1c265c464b..6404379f0d 100644 --- a/src/test/test_payroll.py +++ b/src/test/test_payroll.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_payroll_totals.py b/src/test/test_payroll_totals.py index 72240afdab..64d4e83520 100644 --- a/src/test/test_payroll_totals.py +++ b/src/test/test_payroll_totals.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_payrolls_filter.py b/src/test/test_payrolls_filter.py index 42c7adc257..01de964b20 100644 --- a/src/test/test_payrolls_filter.py +++ b/src/test/test_payrolls_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_person.py b/src/test/test_person.py index b1e034b9b7..3617e1c957 100644 --- a/src/test/test_person.py +++ b/src/test/test_person.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_phone_number.py b/src/test/test_phone_number.py index 7bf558880e..d70097a902 100644 --- a/src/test/test_phone_number.py +++ b/src/test/test_phone_number.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_pipeline.py b/src/test/test_pipeline.py index 8c133edd84..8ffae1d436 100644 --- a/src/test/test_pipeline.py +++ b/src/test/test_pipeline.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_pipeline_stages.py b/src/test/test_pipeline_stages.py index 8d625c2cfb..cb02afe367 100644 --- a/src/test/test_pipeline_stages.py +++ b/src/test/test_pipeline_stages.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_pos_api.py b/src/test/test_pos_api.py index b63ea066db..9f223c1f6a 100644 --- a/src/test/test_pos_api.py +++ b/src/test/test_pos_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_pos_bank_account.py b/src/test/test_pos_bank_account.py index c79e82db4d..01ea86619e 100644 --- a/src/test/test_pos_bank_account.py +++ b/src/test/test_pos_bank_account.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_pos_bank_account_ach_details.py b/src/test/test_pos_bank_account_ach_details.py index b54b4210f6..282777c471 100644 --- a/src/test/test_pos_bank_account_ach_details.py +++ b/src/test/test_pos_bank_account_ach_details.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_pos_payment.py b/src/test/test_pos_payment.py index a7fecd55a1..1f3822064e 100644 --- a/src/test/test_pos_payment.py +++ b/src/test/test_pos_payment.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_pos_payment_card_details.py b/src/test/test_pos_payment_card_details.py index 4330449666..5f8784b7b2 100644 --- a/src/test/test_pos_payment_card_details.py +++ b/src/test/test_pos_payment_card_details.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_pos_payment_external_details.py b/src/test/test_pos_payment_external_details.py index c7f44063a5..44e8abff1d 100644 --- a/src/test/test_pos_payment_external_details.py +++ b/src/test/test_pos_payment_external_details.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_price.py b/src/test/test_price.py index a6f14b258f..9846027fbd 100644 --- a/src/test/test_price.py +++ b/src/test/test_price.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_probation_period.py b/src/test/test_probation_period.py index cdcc9aae1f..30382096dd 100644 --- a/src/test/test_probation_period.py +++ b/src/test/test_probation_period.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_profit_and_loss.py b/src/test/test_profit_and_loss.py index 6f1158eea8..cfea2c722b 100644 --- a/src/test/test_profit_and_loss.py +++ b/src/test/test_profit_and_loss.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_profit_and_loss_expenses.py b/src/test/test_profit_and_loss_expenses.py index 95b9116b1d..9a65f883bb 100644 --- a/src/test/test_profit_and_loss_expenses.py +++ b/src/test/test_profit_and_loss_expenses.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_profit_and_loss_filter.py b/src/test/test_profit_and_loss_filter.py index f720b3e82c..b7f9da59ae 100644 --- a/src/test/test_profit_and_loss_filter.py +++ b/src/test/test_profit_and_loss_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_profit_and_loss_gross_profit.py b/src/test/test_profit_and_loss_gross_profit.py index 802ee30ab2..ca3bbfcdb0 100644 --- a/src/test/test_profit_and_loss_gross_profit.py +++ b/src/test/test_profit_and_loss_gross_profit.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_profit_and_loss_income.py b/src/test/test_profit_and_loss_income.py index 0f7101dcbf..6c4fa374ab 100644 --- a/src/test/test_profit_and_loss_income.py +++ b/src/test/test_profit_and_loss_income.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_profit_and_loss_net_income.py b/src/test/test_profit_and_loss_net_income.py index f6e5df9c60..e27f7bfeb2 100644 --- a/src/test/test_profit_and_loss_net_income.py +++ b/src/test/test_profit_and_loss_net_income.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_profit_and_loss_net_operating_income.py b/src/test/test_profit_and_loss_net_operating_income.py index 4c8f9f1431..936fd8514b 100644 --- a/src/test/test_profit_and_loss_net_operating_income.py +++ b/src/test/test_profit_and_loss_net_operating_income.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_profit_and_loss_record.py b/src/test/test_profit_and_loss_record.py index f480409633..604fd53839 100644 --- a/src/test/test_profit_and_loss_record.py +++ b/src/test/test_profit_and_loss_record.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_profit_and_loss_records.py b/src/test/test_profit_and_loss_records.py index 9ac17df0a0..b8a1132bd0 100644 --- a/src/test/test_profit_and_loss_records.py +++ b/src/test/test_profit_and_loss_records.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_profit_and_loss_section.py b/src/test/test_profit_and_loss_section.py index 75b4b5ab07..f0b03ed055 100644 --- a/src/test/test_profit_and_loss_section.py +++ b/src/test/test_profit_and_loss_section.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_purchase_order.py b/src/test/test_purchase_order.py index 53e58ea84c..46ef05b1f5 100644 --- a/src/test/test_purchase_order.py +++ b/src/test/test_purchase_order.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_purchase_orders_filter.py b/src/test/test_purchase_orders_filter.py index aaff70f9a5..0ea6d0b011 100644 --- a/src/test/test_purchase_orders_filter.py +++ b/src/test/test_purchase_orders_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_purchase_orders_sort.py b/src/test/test_purchase_orders_sort.py index 55cad4ee8e..504e702ede 100644 --- a/src/test/test_purchase_orders_sort.py +++ b/src/test/test_purchase_orders_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_request_count_allocation.py b/src/test/test_request_count_allocation.py index cf062dae27..008c07289a 100644 --- a/src/test/test_request_count_allocation.py +++ b/src/test/test_request_count_allocation.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_request_rate.py b/src/test/test_request_rate.py index 500b2329af..b68681c7da 100644 --- a/src/test/test_request_rate.py +++ b/src/test/test_request_rate.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_resolve_webhook_event_request.py b/src/test/test_resolve_webhook_event_request.py index 879560ba3e..9c74a8fd31 100644 --- a/src/test/test_resolve_webhook_event_request.py +++ b/src/test/test_resolve_webhook_event_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_resolve_webhook_events_request.py b/src/test/test_resolve_webhook_events_request.py index d7907058f0..aa0312afaa 100644 --- a/src/test/test_resolve_webhook_events_request.py +++ b/src/test/test_resolve_webhook_events_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_resolve_webhook_response.py b/src/test/test_resolve_webhook_response.py index a0bf03b807..a9342a5d78 100644 --- a/src/test/test_resolve_webhook_response.py +++ b/src/test/test_resolve_webhook_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_resource_example.py b/src/test/test_resource_example.py index 30c82b9f75..d1accb65b4 100644 --- a/src/test/test_resource_example.py +++ b/src/test/test_resource_example.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_resource_status.py b/src/test/test_resource_status.py index dd5f609072..8b560b90bf 100644 --- a/src/test/test_resource_status.py +++ b/src/test/test_resource_status.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_schedule.py b/src/test/test_schedule.py index 97741bfecf..0e5d55df80 100644 --- a/src/test/test_schedule.py +++ b/src/test/test_schedule.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_schedule_work_pattern.py b/src/test/test_schedule_work_pattern.py index de764b3a7c..c385f5fc04 100644 --- a/src/test/test_schedule_work_pattern.py +++ b/src/test/test_schedule_work_pattern.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_schedule_work_pattern_odd_weeks.py b/src/test/test_schedule_work_pattern_odd_weeks.py index 47c790b325..34f2b6d3c9 100644 --- a/src/test/test_schedule_work_pattern_odd_weeks.py +++ b/src/test/test_schedule_work_pattern_odd_weeks.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_schema_support.py b/src/test/test_schema_support.py index 2366fcf198..3c9ca118f1 100644 --- a/src/test/test_schema_support.py +++ b/src/test/test_schema_support.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_service_charge.py b/src/test/test_service_charge.py index 96fc117a9d..60b6bba19d 100644 --- a/src/test/test_service_charge.py +++ b/src/test/test_service_charge.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_service_charges.py b/src/test/test_service_charges.py index e2ffde73aa..ba4a6eb565 100644 --- a/src/test/test_service_charges.py +++ b/src/test/test_service_charges.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_session.py b/src/test/test_session.py index 093bbbbaeb..dff6deea2f 100644 --- a/src/test/test_session.py +++ b/src/test/test_session.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_session_settings.py b/src/test/test_session_settings.py index 0927363cc5..2399eb7ba1 100644 --- a/src/test/test_session_settings.py +++ b/src/test/test_session_settings.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_session_theme.py b/src/test/test_session_theme.py index ef7d7f5455..9a0278854a 100644 --- a/src/test/test_session_theme.py +++ b/src/test/test_session_theme.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_shared_link.py b/src/test/test_shared_link.py index abe1083a66..d49b9a0723 100644 --- a/src/test/test_shared_link.py +++ b/src/test/test_shared_link.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_shared_link_target.py b/src/test/test_shared_link_target.py index 330a6637f7..9828323e86 100644 --- a/src/test/test_shared_link_target.py +++ b/src/test/test_shared_link_target.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_simple_form_field_option.py b/src/test/test_simple_form_field_option.py index b6e885d719..2f2f4ffc9c 100644 --- a/src/test/test_simple_form_field_option.py +++ b/src/test/test_simple_form_field_option.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_sms_api.py b/src/test/test_sms_api.py index b39884fadc..aeb9d98943 100644 --- a/src/test/test_sms_api.py +++ b/src/test/test_sms_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_social_link.py b/src/test/test_social_link.py index 883bb56036..365b869468 100644 --- a/src/test/test_social_link.py +++ b/src/test/test_social_link.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_sort_direction.py b/src/test/test_sort_direction.py index 3127ee313a..235a98f9b3 100644 --- a/src/test/test_sort_direction.py +++ b/src/test/test_sort_direction.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_status.py b/src/test/test_status.py index d89e1f3cf2..2cb3ad4539 100644 --- a/src/test/test_status.py +++ b/src/test/test_status.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_subsidiary.py b/src/test/test_subsidiary.py index 9f6a008e78..85b57b14be 100644 --- a/src/test/test_subsidiary.py +++ b/src/test/test_subsidiary.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_subsidiary_reference.py b/src/test/test_subsidiary_reference.py index 2174388dbc..6a7186dd50 100644 --- a/src/test/test_subsidiary_reference.py +++ b/src/test/test_subsidiary_reference.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_supplier.py b/src/test/test_supplier.py index 32c53053e3..b1811354b2 100644 --- a/src/test/test_supplier.py +++ b/src/test/test_supplier.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_suppliers_filter.py b/src/test/test_suppliers_filter.py index d11e3ba602..52693c70cd 100644 --- a/src/test/test_suppliers_filter.py +++ b/src/test/test_suppliers_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_suppliers_sort.py b/src/test/test_suppliers_sort.py index 2f4e19ef35..15cb9df8cb 100644 --- a/src/test/test_suppliers_sort.py +++ b/src/test/test_suppliers_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_supported_property.py b/src/test/test_supported_property.py index 5f3893faa5..ccd23c3df2 100644 --- a/src/test/test_supported_property.py +++ b/src/test/test_supported_property.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_tags.py b/src/test/test_tags.py index 279f1d628f..7c41794b71 100644 --- a/src/test/test_tags.py +++ b/src/test/test_tags.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_tax.py b/src/test/test_tax.py index 316e966ef8..efc055e333 100644 --- a/src/test/test_tax.py +++ b/src/test/test_tax.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_tax_rate.py b/src/test/test_tax_rate.py index 7bc37a14f7..e9ebe69d89 100644 --- a/src/test/test_tax_rate.py +++ b/src/test/test_tax_rate.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_tax_rates_filter.py b/src/test/test_tax_rates_filter.py index baa7cbb09a..10b812ac8d 100644 --- a/src/test/test_tax_rates_filter.py +++ b/src/test/test_tax_rates_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_team.py b/src/test/test_team.py index b196427f20..166ef254be 100644 --- a/src/test/test_team.py +++ b/src/test/test_team.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_tender.py b/src/test/test_tender.py index a4c68a3eda..a1aebe3cff 100644 --- a/src/test/test_tender.py +++ b/src/test/test_tender.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_ticket.py b/src/test/test_ticket.py index e01bd4bbc4..11f2912268 100644 --- a/src/test/test_ticket.py +++ b/src/test/test_ticket.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_tickets_sort.py b/src/test/test_tickets_sort.py index f44fdbee7a..4778c65082 100644 --- a/src/test/test_tickets_sort.py +++ b/src/test/test_tickets_sort.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_time_off_request.py b/src/test/test_time_off_request.py index ba4131bbc9..5fd28dd3b9 100644 --- a/src/test/test_time_off_request.py +++ b/src/test/test_time_off_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_time_off_request_notes.py b/src/test/test_time_off_request_notes.py index 7f7f9ffb3f..68b9fbcc72 100644 --- a/src/test/test_time_off_request_notes.py +++ b/src/test/test_time_off_request_notes.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_time_off_requests_filter.py b/src/test/test_time_off_requests_filter.py index c6ec96ebbd..1d6c5b4df6 100644 --- a/src/test/test_time_off_requests_filter.py +++ b/src/test/test_time_off_requests_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_too_many_requests_response.py b/src/test/test_too_many_requests_response.py index abb7c26004..bae130d41b 100644 --- a/src/test/test_too_many_requests_response.py +++ b/src/test/test_too_many_requests_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_too_many_requests_response_detail.py b/src/test/test_too_many_requests_response_detail.py index 71bad919f2..54b7d133ae 100644 --- a/src/test/test_too_many_requests_response_detail.py +++ b/src/test/test_too_many_requests_response_detail.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_tracking_category.py b/src/test/test_tracking_category.py index 2d108dc1b5..1014055eca 100644 --- a/src/test/test_tracking_category.py +++ b/src/test/test_tracking_category.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_tracking_item.py b/src/test/test_tracking_item.py index 6716a570ad..99a676724f 100644 --- a/src/test/test_tracking_item.py +++ b/src/test/test_tracking_item.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_unauthorized_response.py b/src/test/test_unauthorized_response.py index 0606fbf21c..694268acad 100644 --- a/src/test/test_unauthorized_response.py +++ b/src/test/test_unauthorized_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_unexpected_error_response.py b/src/test/test_unexpected_error_response.py index bb60c18073..7010de4fed 100644 --- a/src/test/test_unexpected_error_response.py +++ b/src/test/test_unexpected_error_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_unified_api_id.py b/src/test/test_unified_api_id.py index 1147f59b42..0d5b1e274b 100644 --- a/src/test/test_unified_api_id.py +++ b/src/test/test_unified_api_id.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_unified_file.py b/src/test/test_unified_file.py index 5366bde565..03ca4df0f0 100644 --- a/src/test/test_unified_file.py +++ b/src/test/test_unified_file.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_unified_file_permissions.py b/src/test/test_unified_file_permissions.py index 2fcd820ac6..3e2ea85e07 100644 --- a/src/test/test_unified_file_permissions.py +++ b/src/test/test_unified_file_permissions.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_unified_id.py b/src/test/test_unified_id.py index 42973bba83..c87fe73aa4 100644 --- a/src/test/test_unified_id.py +++ b/src/test/test_unified_id.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_unprocessable_response.py b/src/test/test_unprocessable_response.py index f0a7457490..bfbf4ee7ed 100644 --- a/src/test/test_unprocessable_response.py +++ b/src/test/test_unprocessable_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_accounting_department_response.py b/src/test/test_update_accounting_department_response.py index 84a86eb91c..e5f14903fa 100644 --- a/src/test/test_update_accounting_department_response.py +++ b/src/test/test_update_accounting_department_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_accounting_location_response.py b/src/test/test_update_accounting_location_response.py index 454eb5e734..64cf2f2b71 100644 --- a/src/test/test_update_accounting_location_response.py +++ b/src/test/test_update_accounting_location_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_activity_response.py b/src/test/test_update_activity_response.py index 9871ed98bc..78654f6f40 100644 --- a/src/test/test_update_activity_response.py +++ b/src/test/test_update_activity_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_applicant_response.py b/src/test/test_update_applicant_response.py index b21228b4d2..b112467901 100644 --- a/src/test/test_update_applicant_response.py +++ b/src/test/test_update_applicant_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_application_response.py b/src/test/test_update_application_response.py index 10af0f363b..76322e8a48 100644 --- a/src/test/test_update_application_response.py +++ b/src/test/test_update_application_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_bill_payment_response.py b/src/test/test_update_bill_payment_response.py new file mode 100644 index 0000000000..ba02b3b18b --- /dev/null +++ b/src/test/test_update_bill_payment_response.py @@ -0,0 +1,37 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import sys +import unittest + +import apideck +from apideck.model.unified_id import UnifiedId +globals()['UnifiedId'] = UnifiedId +from apideck.model.update_bill_payment_response import UpdateBillPaymentResponse + + +class TestUpdateBillPaymentResponse(unittest.TestCase): + """UpdateBillPaymentResponse unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testUpdateBillPaymentResponse(self): + """Test UpdateBillPaymentResponse""" + # FIXME: construct object with mandatory attributes with example values + # model = UpdateBillPaymentResponse() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/src/test/test_update_bill_response.py b/src/test/test_update_bill_response.py index ff0bd53301..fba5e6d140 100644 --- a/src/test/test_update_bill_response.py +++ b/src/test/test_update_bill_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_comment_response.py b/src/test/test_update_comment_response.py index 66297a1f44..bf9e6bbc48 100644 --- a/src/test/test_update_comment_response.py +++ b/src/test/test_update_comment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_company_response.py b/src/test/test_update_company_response.py index d461e56aaf..c58bade9a1 100644 --- a/src/test/test_update_company_response.py +++ b/src/test/test_update_company_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_connection_response.py b/src/test/test_update_connection_response.py index cfc83f1f92..abcc59dadb 100644 --- a/src/test/test_update_connection_response.py +++ b/src/test/test_update_connection_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_consumer_request.py b/src/test/test_update_consumer_request.py index 5647adb87b..6ae9d8416a 100644 --- a/src/test/test_update_consumer_request.py +++ b/src/test/test_update_consumer_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_consumer_response.py b/src/test/test_update_consumer_response.py index 2c9c09e0ce..16486f0965 100644 --- a/src/test/test_update_consumer_response.py +++ b/src/test/test_update_consumer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_contact_response.py b/src/test/test_update_contact_response.py index 5b9058fa0c..f54ff9b989 100644 --- a/src/test/test_update_contact_response.py +++ b/src/test/test_update_contact_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_credit_note_response.py b/src/test/test_update_credit_note_response.py index 5fc69de906..96a7095dfa 100644 --- a/src/test/test_update_credit_note_response.py +++ b/src/test/test_update_credit_note_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_custom_mapping_request.py b/src/test/test_update_custom_mapping_request.py index 258d0e449e..1b4238f7e7 100644 --- a/src/test/test_update_custom_mapping_request.py +++ b/src/test/test_update_custom_mapping_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_custom_mapping_response.py b/src/test/test_update_custom_mapping_response.py index a67e8856c7..c8a688eb80 100644 --- a/src/test/test_update_custom_mapping_response.py +++ b/src/test/test_update_custom_mapping_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_customer_response.py b/src/test/test_update_customer_response.py index 5977e1e350..20b9f5f4ef 100644 --- a/src/test/test_update_customer_response.py +++ b/src/test/test_update_customer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_department_response.py b/src/test/test_update_department_response.py index 3517772411..2e59c6c6d3 100644 --- a/src/test/test_update_department_response.py +++ b/src/test/test_update_department_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_drive_group_response.py b/src/test/test_update_drive_group_response.py index 5900d6a6cd..142c66c328 100644 --- a/src/test/test_update_drive_group_response.py +++ b/src/test/test_update_drive_group_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_drive_response.py b/src/test/test_update_drive_response.py index b5a496ad8e..fc8d59fe14 100644 --- a/src/test/test_update_drive_response.py +++ b/src/test/test_update_drive_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_ecommerce_customer_response.py b/src/test/test_update_ecommerce_customer_response.py index ca249fa709..4182107ea5 100644 --- a/src/test/test_update_ecommerce_customer_response.py +++ b/src/test/test_update_ecommerce_customer_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_ecommerce_order_response.py b/src/test/test_update_ecommerce_order_response.py index 2d2092c01a..424dd7ab05 100644 --- a/src/test/test_update_ecommerce_order_response.py +++ b/src/test/test_update_ecommerce_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_employee_response.py b/src/test/test_update_employee_response.py index 9cde906d80..00993547aa 100644 --- a/src/test/test_update_employee_response.py +++ b/src/test/test_update_employee_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_expense_response.py b/src/test/test_update_expense_response.py new file mode 100644 index 0000000000..9d14e73738 --- /dev/null +++ b/src/test/test_update_expense_response.py @@ -0,0 +1,37 @@ +""" + Apideck + + The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 + + The version of the OpenAPI document: 10.7.3 + Generated by: https://openapi-generator.tech +""" + + +import sys +import unittest + +import apideck +from apideck.model.unified_id import UnifiedId +globals()['UnifiedId'] = UnifiedId +from apideck.model.update_expense_response import UpdateExpenseResponse + + +class TestUpdateExpenseResponse(unittest.TestCase): + """UpdateExpenseResponse unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testUpdateExpenseResponse(self): + """Test UpdateExpenseResponse""" + # FIXME: construct object with mandatory attributes with example values + # model = UpdateExpenseResponse() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/src/test/test_update_file_request.py b/src/test/test_update_file_request.py index 08f562bf48..01e2c49fd0 100644 --- a/src/test/test_update_file_request.py +++ b/src/test/test_update_file_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_file_response.py b/src/test/test_update_file_response.py index cd4f57657c..ed197f8d2c 100644 --- a/src/test/test_update_file_response.py +++ b/src/test/test_update_file_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_folder_request.py b/src/test/test_update_folder_request.py index 8a68a52333..bc314cc759 100644 --- a/src/test/test_update_folder_request.py +++ b/src/test/test_update_folder_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_folder_response.py b/src/test/test_update_folder_response.py index 44539cb924..e78c130357 100644 --- a/src/test/test_update_folder_response.py +++ b/src/test/test_update_folder_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_hris_company_response.py b/src/test/test_update_hris_company_response.py index d19b8dfa1d..e364645724 100644 --- a/src/test/test_update_hris_company_response.py +++ b/src/test/test_update_hris_company_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_invoice_items_response.py b/src/test/test_update_invoice_items_response.py index 06ecfe97bf..d0d158d77e 100644 --- a/src/test/test_update_invoice_items_response.py +++ b/src/test/test_update_invoice_items_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_invoice_response.py b/src/test/test_update_invoice_response.py index 440236f365..804bdd08a7 100644 --- a/src/test/test_update_invoice_response.py +++ b/src/test/test_update_invoice_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_item_response.py b/src/test/test_update_item_response.py index 8177c752d9..8f6588a3a3 100644 --- a/src/test/test_update_item_response.py +++ b/src/test/test_update_item_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_job_response.py b/src/test/test_update_job_response.py index 5ac9a13ac0..0a8c64166b 100644 --- a/src/test/test_update_job_response.py +++ b/src/test/test_update_job_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_journal_entry_response.py b/src/test/test_update_journal_entry_response.py index 1a17aa2e10..0e72073575 100644 --- a/src/test/test_update_journal_entry_response.py +++ b/src/test/test_update_journal_entry_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_lead_response.py b/src/test/test_update_lead_response.py index 54d5961f88..7b3754feb6 100644 --- a/src/test/test_update_lead_response.py +++ b/src/test/test_update_lead_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_ledger_account_response.py b/src/test/test_update_ledger_account_response.py index 9b993cc178..297b84e968 100644 --- a/src/test/test_update_ledger_account_response.py +++ b/src/test/test_update_ledger_account_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_location_response.py b/src/test/test_update_location_response.py index 5990e9144e..62a9290025 100644 --- a/src/test/test_update_location_response.py +++ b/src/test/test_update_location_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_merchant_response.py b/src/test/test_update_merchant_response.py index 82131e2c9d..cec3f6de5f 100644 --- a/src/test/test_update_merchant_response.py +++ b/src/test/test_update_merchant_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_message_response.py b/src/test/test_update_message_response.py index d415411c21..85977f17e0 100644 --- a/src/test/test_update_message_response.py +++ b/src/test/test_update_message_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_modifier_group_response.py b/src/test/test_update_modifier_group_response.py index 2f66e3aa65..c2bae3439d 100644 --- a/src/test/test_update_modifier_group_response.py +++ b/src/test/test_update_modifier_group_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_modifier_response.py b/src/test/test_update_modifier_response.py index 25d3d3850b..6b044a49ef 100644 --- a/src/test/test_update_modifier_response.py +++ b/src/test/test_update_modifier_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_note_response.py b/src/test/test_update_note_response.py index 39d82ee917..fed872c40f 100644 --- a/src/test/test_update_note_response.py +++ b/src/test/test_update_note_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_opportunity_response.py b/src/test/test_update_opportunity_response.py index 1b236a9c3c..7f39b0276a 100644 --- a/src/test/test_update_opportunity_response.py +++ b/src/test/test_update_opportunity_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_order_response.py b/src/test/test_update_order_response.py index cf6533773d..221b6b89d5 100644 --- a/src/test/test_update_order_response.py +++ b/src/test/test_update_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_order_type_response.py b/src/test/test_update_order_type_response.py index 925a38f5c2..8b0ee2d8bf 100644 --- a/src/test/test_update_order_type_response.py +++ b/src/test/test_update_order_type_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_payment_response.py b/src/test/test_update_payment_response.py index 75631cad1e..91ef8ef8fc 100644 --- a/src/test/test_update_payment_response.py +++ b/src/test/test_update_payment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_pipeline_response.py b/src/test/test_update_pipeline_response.py index d2682ce5f8..ff39ac1473 100644 --- a/src/test/test_update_pipeline_response.py +++ b/src/test/test_update_pipeline_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_pos_payment_response.py b/src/test/test_update_pos_payment_response.py index f687a73d71..e6da9a1701 100644 --- a/src/test/test_update_pos_payment_response.py +++ b/src/test/test_update_pos_payment_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_product_response.py b/src/test/test_update_product_response.py index 9e8db91c09..b968b46ec4 100644 --- a/src/test/test_update_product_response.py +++ b/src/test/test_update_product_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_purchase_order_response.py b/src/test/test_update_purchase_order_response.py index 370f637101..efc852d98d 100644 --- a/src/test/test_update_purchase_order_response.py +++ b/src/test/test_update_purchase_order_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_shared_link_response.py b/src/test/test_update_shared_link_response.py index 00e619da1a..f601f94f85 100644 --- a/src/test/test_update_shared_link_response.py +++ b/src/test/test_update_shared_link_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_subsidiary_response.py b/src/test/test_update_subsidiary_response.py index 5b40fead75..895d845f77 100644 --- a/src/test/test_update_subsidiary_response.py +++ b/src/test/test_update_subsidiary_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_supplier_response.py b/src/test/test_update_supplier_response.py index 2b6dca2f09..dacfe2985c 100644 --- a/src/test/test_update_supplier_response.py +++ b/src/test/test_update_supplier_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_tax_rate_response.py b/src/test/test_update_tax_rate_response.py index 121b40a574..fb4cbf5c31 100644 --- a/src/test/test_update_tax_rate_response.py +++ b/src/test/test_update_tax_rate_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_tender_response.py b/src/test/test_update_tender_response.py index 9fc5e42f5c..ddffef818a 100644 --- a/src/test/test_update_tender_response.py +++ b/src/test/test_update_tender_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_ticket_response.py b/src/test/test_update_ticket_response.py index f07ba6304f..2e63c1a10e 100644 --- a/src/test/test_update_ticket_response.py +++ b/src/test/test_update_ticket_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_time_off_request_response.py b/src/test/test_update_time_off_request_response.py index 98c051aeec..4ee8d7f33a 100644 --- a/src/test/test_update_time_off_request_response.py +++ b/src/test/test_update_time_off_request_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_tracking_category_response.py b/src/test/test_update_tracking_category_response.py index 0c65920e72..c2854072ec 100644 --- a/src/test/test_update_tracking_category_response.py +++ b/src/test/test_update_tracking_category_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_upload_session_response.py b/src/test/test_update_upload_session_response.py index 5fc5c43ecd..40370049d0 100644 --- a/src/test/test_update_upload_session_response.py +++ b/src/test/test_update_upload_session_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_user_response.py b/src/test/test_update_user_response.py index a156c36125..ba8c40ef05 100644 --- a/src/test/test_update_user_response.py +++ b/src/test/test_update_user_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_webhook_request.py b/src/test/test_update_webhook_request.py index cf304be852..9bf3e0773d 100644 --- a/src/test/test_update_webhook_request.py +++ b/src/test/test_update_webhook_request.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_update_webhook_response.py b/src/test/test_update_webhook_response.py index de643ddb57..40b327775f 100644 --- a/src/test/test_update_webhook_response.py +++ b/src/test/test_update_webhook_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_upload_session.py b/src/test/test_upload_session.py index c47cb9a30d..482f20a73d 100644 --- a/src/test/test_upload_session.py +++ b/src/test/test_upload_session.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_url.py b/src/test/test_url.py index b46966c581..9b4cc9ca47 100644 --- a/src/test/test_url.py +++ b/src/test/test_url.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_user.py b/src/test/test_user.py index 512eae182b..23b364afa0 100644 --- a/src/test/test_user.py +++ b/src/test/test_user.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_validate_connection_state_response.py b/src/test/test_validate_connection_state_response.py index c602228194..765e39a115 100644 --- a/src/test/test_validate_connection_state_response.py +++ b/src/test/test_validate_connection_state_response.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_validate_connection_state_response_data.py b/src/test/test_validate_connection_state_response_data.py index 69ca2de313..57393ca49b 100644 --- a/src/test/test_validate_connection_state_response_data.py +++ b/src/test/test_validate_connection_state_response_data.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_vault_api.py b/src/test/test_vault_api.py index 4c3c5ce5bc..f95cdef083 100644 --- a/src/test/test_vault_api.py +++ b/src/test/test_vault_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_vault_event_type.py b/src/test/test_vault_event_type.py index 58af5becf8..44ad12ff1a 100644 --- a/src/test/test_vault_event_type.py +++ b/src/test/test_vault_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_virtual_webhooks.py b/src/test/test_virtual_webhooks.py index 496dc2962d..f9fbf6e627 100644 --- a/src/test/test_virtual_webhooks.py +++ b/src/test/test_virtual_webhooks.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_wallet_details.py b/src/test/test_wallet_details.py index 6b5cdadaa4..2f310e331e 100644 --- a/src/test/test_wallet_details.py +++ b/src/test/test_wallet_details.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_webhook.py b/src/test/test_webhook.py index c2263732bc..9f912f946e 100644 --- a/src/test/test_webhook.py +++ b/src/test/test_webhook.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_webhook_api.py b/src/test/test_webhook_api.py index 6fbb505af5..042b41f869 100644 --- a/src/test/test_webhook_api.py +++ b/src/test/test_webhook_api.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_webhook_event.py b/src/test/test_webhook_event.py index d8f97f605a..69c797ea2c 100644 --- a/src/test/test_webhook_event.py +++ b/src/test/test_webhook_event.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_webhook_event_log.py b/src/test/test_webhook_event_log.py index 7310150ab2..ce9c2b176b 100644 --- a/src/test/test_webhook_event_log.py +++ b/src/test/test_webhook_event_log.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_webhook_event_log_attempts.py b/src/test/test_webhook_event_log_attempts.py index 2cdaa0fb98..1ff7a0b123 100644 --- a/src/test/test_webhook_event_log_attempts.py +++ b/src/test/test_webhook_event_log_attempts.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_webhook_event_log_service.py b/src/test/test_webhook_event_log_service.py index f8f81a30a1..d94ca480cd 100644 --- a/src/test/test_webhook_event_log_service.py +++ b/src/test/test_webhook_event_log_service.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_webhook_event_logs_filter.py b/src/test/test_webhook_event_logs_filter.py index aa23f9af0c..1f08ee739c 100644 --- a/src/test/test_webhook_event_logs_filter.py +++ b/src/test/test_webhook_event_logs_filter.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_webhook_event_logs_filter_service.py b/src/test/test_webhook_event_logs_filter_service.py index 3b016120d6..4d74e29996 100644 --- a/src/test/test_webhook_event_logs_filter_service.py +++ b/src/test/test_webhook_event_logs_filter_service.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_webhook_event_type.py b/src/test/test_webhook_event_type.py index 10d8b42035..5bb47d8970 100644 --- a/src/test/test_webhook_event_type.py +++ b/src/test/test_webhook_event_type.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_webhook_subscription.py b/src/test/test_webhook_subscription.py index 55636cd042..1b3cbd20b5 100644 --- a/src/test/test_webhook_subscription.py +++ b/src/test/test_webhook_subscription.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_webhook_support.py b/src/test/test_webhook_support.py index e8b0d71bca..21ab739951 100644 --- a/src/test/test_webhook_support.py +++ b/src/test/test_webhook_support.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """ diff --git a/src/test/test_website.py b/src/test/test_website.py index 307168920b..828ef87605 100644 --- a/src/test/test_website.py +++ b/src/test/test_website.py @@ -3,7 +3,7 @@ The Apideck OpenAPI Spec: SDK Optimized # noqa: E501 - The version of the OpenAPI document: 10.7.1 + The version of the OpenAPI document: 10.7.3 Generated by: https://openapi-generator.tech """