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

Commit 9a9e2d7

Browse files
Automated update by SDK Generator version:1.2.1 commit:4dadef8
1 parent 1cb0594 commit 9a9e2d7

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

docs/apis/AccountingApi.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4610,6 +4610,7 @@ with apideck.ApiClient(configuration) as api_client:
46104610
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
46114611
filter = InvoicesFilter(
46124612
updated_since=dateutil_parser('2020-09-30T07:43:32Z'),
4613+
created_since=dateutil_parser('2020-09-30T07:43:32Z'),
46134614
) # InvoicesFilter | Apply filters (optional)
46144615
sort = InvoicesSort(
46154616
by="updated_at",

docs/models/InvoicesFilter.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**updated_since** | **datetime** | | [optional]
8+
**created_since** | **datetime** | | [optional]
89

910
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
1011

src/apideck/model/invoices_filter.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ def openapi_types():
7676
"""
7777
return {
7878
'updated_since': (datetime,), # noqa: E501
79+
'created_since': (datetime,), # noqa: E501
7980
}
8081

8182
@cached_property
@@ -85,6 +86,7 @@ def discriminator():
8586

8687
attribute_map = {
8788
'updated_since': 'updated_since', # noqa: E501
89+
'created_since': 'created_since', # noqa: E501
8890
}
8991

9092
read_only_vars = {
@@ -129,6 +131,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
129131
through its discriminator because we passed in
130132
_visited_composed_classes = (Animal,)
131133
updated_since (datetime): [optional] # noqa: E501
134+
created_since (datetime): [optional] # noqa: E501
132135
"""
133136

134137
_check_type = kwargs.pop('_check_type', True)
@@ -211,6 +214,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
211214
through its discriminator because we passed in
212215
_visited_composed_classes = (Animal,)
213216
updated_since (datetime): [optional] # noqa: E501
217+
created_since (datetime): [optional] # noqa: E501
214218
"""
215219

216220
_check_type = kwargs.pop('_check_type', True)

0 commit comments

Comments
 (0)