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

Commit 1cb0594

Browse files
Automated update by SDK Generator version:1.2.1 commit:115003a
1 parent 4b36f68 commit 1cb0594

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

docs/apis/EcommerceApi.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@ with apideck.ApiClient(configuration) as api_client:
291291
email="elon@musk.com",
292292
customer_id="123",
293293
updated_since="2020-09-30T07:43:32.000Z",
294+
created_since="2020-09-30T07:43:32.000Z",
294295
) # EcommerceOrdersFilter | Apply filters (optional)
295296
sort = OrdersSort(
296297
by="created_at",

docs/models/EcommerceOrdersFilter.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
77
**email** | **str** | Customer email address to filter on | [optional]
88
**customer_id** | **str** | Customer id to filter on | [optional]
99
**updated_since** | **str** | Minimum date the order was last modified | [optional]
10+
**created_since** | **str** | Minimum date the order was created | [optional]
1011

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

src/apideck/model/ecommerce_orders_filter.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ def openapi_types():
7878
'email': (str,), # noqa: E501
7979
'customer_id': (str,), # noqa: E501
8080
'updated_since': (str,), # noqa: E501
81+
'created_since': (str,), # noqa: E501
8182
}
8283

8384
@cached_property
@@ -89,6 +90,7 @@ def discriminator():
8990
'email': 'email', # noqa: E501
9091
'customer_id': 'customer_id', # noqa: E501
9192
'updated_since': 'updated_since', # noqa: E501
93+
'created_since': 'created_since', # noqa: E501
9294
}
9395

9496
read_only_vars = {
@@ -135,6 +137,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
135137
email (str): Customer email address to filter on. [optional] # noqa: E501
136138
customer_id (str): Customer id to filter on. [optional] # noqa: E501
137139
updated_since (str): Minimum date the order was last modified. [optional] # noqa: E501
140+
created_since (str): Minimum date the order was created. [optional] # noqa: E501
138141
"""
139142

140143
_check_type = kwargs.pop('_check_type', True)
@@ -219,6 +222,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
219222
email (str): Customer email address to filter on. [optional] # noqa: E501
220223
customer_id (str): Customer id to filter on. [optional] # noqa: E501
221224
updated_since (str): Minimum date the order was last modified. [optional] # noqa: E501
225+
created_since (str): Minimum date the order was created. [optional] # noqa: E501
222226
"""
223227

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

0 commit comments

Comments
 (0)