Skip to content
This repository was archived by the owner on Jun 2, 2025. It is now read-only.

Commit 4502333

Browse files
authored
Automated update by SDK Generator version:1.4.8 commit:5c64b46 (#124)
1 parent a64b92a commit 4502333

File tree

1,459 files changed

+1795
-1453
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,459 files changed

+1795
-1453
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1469,6 +1469,7 @@ _WebhookApi_ | [**webhooks_update**](docs/apis/WebhookApi.md#webhooks_update) |
14691469
- [InvoiceItemsFilter](docs/models/InvoiceItemsFilter.md)
14701470
- [InvoiceItemsSort](docs/models/InvoiceItemsSort.md)
14711471
- [InvoiceLineItem](docs/models/InvoiceLineItem.md)
1472+
- [InvoicePaymentAllocations](docs/models/InvoicePaymentAllocations.md)
14721473
- [InvoiceResponse](docs/models/InvoiceResponse.md)
14731474
- [InvoicesFilter](docs/models/InvoicesFilter.md)
14741475
- [InvoicesSort](docs/models/InvoicesSort.md)

docs/apis/AccountingApi.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6359,6 +6359,13 @@ with apideck.ApiClient(configuration) as api_client:
63596359
),
63606360
template_id="123456",
63616361
source_document_url="https://www.invoicesolution.com/invoice/123456",
6362+
payment_allocations=[
6363+
InvoicePaymentAllocations(
6364+
id="123456",
6365+
allocated_amount=1000,
6366+
date=dateutil_parser('2020-09-30T07:43:32Z'),
6367+
),
6368+
],
63626369
payment_method="cash",
63636370
channel="email",
63646371
language="EN",
@@ -6988,6 +6995,13 @@ with apideck.ApiClient(configuration) as api_client:
69886995
),
69896996
template_id="123456",
69906997
source_document_url="https://www.invoicesolution.com/invoice/123456",
6998+
payment_allocations=[
6999+
InvoicePaymentAllocations(
7000+
id="123456",
7001+
allocated_amount=1000,
7002+
date=dateutil_parser('2020-09-30T07:43:32Z'),
7003+
),
7004+
],
69917005
payment_method="cash",
69927006
channel="email",
69937007
language="EN",

docs/models/Invoice.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Name | Type | Description | Notes
3636
**shipping_address** | [**Address**](Address.md) | | [optional]
3737
**template_id** | **str, none_type** | Optional invoice template | [optional]
3838
**source_document_url** | **str, none_type** | URL link to a source document - shown as 'Go to [appName]' in the downstream app. Currently only supported for Xero. | [optional]
39+
**payment_allocations** | [**[InvoicePaymentAllocations], none_type**](InvoicePaymentAllocations.md) | IDs of payments made on the invoice | [optional]
3940
**payment_method** | **str, none_type** | Payment method used for the transaction, such as cash, credit card, bank transfer, or check | [optional]
4041
**channel** | **str, none_type** | The channel through which the transaction is processed. | [optional]
4142
**language** | **str, none_type** | language code according to ISO 639-1. For the United States - EN | [optional]
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# InvoicePaymentAllocations
2+
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**id** | **str** | ID of the payment | [optional]
8+
**allocated_amount** | **float, none_type** | Amount of the payment allocated to the invoice | [optional]
9+
**date** | **datetime, none_type** | Date of the payment | [optional]
10+
**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]
11+
12+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
13+
14+

src/.openapi-generator/FILES

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,7 @@ apideck/model/invoice_item_sales_details.py
494494
apideck/model/invoice_items_filter.py
495495
apideck/model/invoice_items_sort.py
496496
apideck/model/invoice_line_item.py
497+
apideck/model/invoice_payment_allocations.py
497498
apideck/model/invoice_response.py
498499
apideck/model/invoices_filter.py
499500
apideck/model/invoices_sort.py
@@ -1213,6 +1214,7 @@ docs/InvoiceItemSalesDetails.md
12131214
docs/InvoiceItemsFilter.md
12141215
docs/InvoiceItemsSort.md
12151216
docs/InvoiceLineItem.md
1217+
docs/InvoicePaymentAllocations.md
12161218
docs/InvoiceResponse.md
12171219
docs/InvoicesFilter.md
12181220
docs/InvoicesSort.md
@@ -1941,6 +1943,7 @@ test/test_invoice_item_sales_details.py
19411943
test/test_invoice_items_filter.py
19421944
test/test_invoice_items_sort.py
19431945
test/test_invoice_line_item.py
1946+
test/test_invoice_payment_allocations.py
19441947
test/test_invoice_response.py
19451948
test/test_invoices_filter.py
19461949
test/test_invoices_sort.py

src/apideck/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The Apideck OpenAPI Spec: SDK Optimized # noqa: E501
77
8-
The version of the OpenAPI document: 10.15.1
8+
The version of the OpenAPI document: 10.15.2
99
Contact: support@apideck.com
1010
Generated by: https://openapi-generator.tech
1111
"""

src/apideck/api/accounting_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
The Apideck OpenAPI Spec: SDK Optimized # noqa: E501
55

6-
The version of the OpenAPI document: 10.15.1
6+
The version of the OpenAPI document: 10.15.2
77
Contact: support@apideck.com
88
Generated by: https://openapi-generator.tech
99
"""

src/apideck/api/ats_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
The Apideck OpenAPI Spec: SDK Optimized # noqa: E501
55
6-
The version of the OpenAPI document: 10.15.1
6+
The version of the OpenAPI document: 10.15.2
77
Contact: support@apideck.com
88
Generated by: https://openapi-generator.tech
99
"""

src/apideck/api/connector_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
The Apideck OpenAPI Spec: SDK Optimized # noqa: E501
55
6-
The version of the OpenAPI document: 10.15.1
6+
The version of the OpenAPI document: 10.15.2
77
Contact: support@apideck.com
88
Generated by: https://openapi-generator.tech
99
"""

src/apideck/api/crm_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
The Apideck OpenAPI Spec: SDK Optimized # noqa: E501
55
6-
The version of the OpenAPI document: 10.15.1
6+
The version of the OpenAPI document: 10.15.2
77
Contact: support@apideck.com
88
Generated by: https://openapi-generator.tech
99
"""

0 commit comments

Comments
 (0)