Skip to content

Commit 0bcbe61

Browse files
authored
Automated update by SDK Generator (#71)
1 parent bca5275 commit 0bcbe61

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

docs/models/BalanceSheetAccount.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# BalanceSheetAccount
22

3+
A balance sheet account represents the financial position of a company at a specific point in time.
34

45
## Properties
56
Name | Type | Description | Notes

docs/models/BalanceSheetReports.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Name | Type | Description | Notes
1818
**created_by** | **str, none_type** | The user who created the object. | [optional] [readonly]
1919
**updated_at** | **datetime, none_type** | The date and time when the object was last updated. | [optional] [readonly]
2020
**created_at** | **datetime, none_type** | The date and time when the object was created. | [optional] [readonly]
21+
**uncategorized_items** | **[bool, date, datetime, dict, float, int, list, str, none_type]** | Items that are not categorized in the balance sheet | [optional]
2122
**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]
2223

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

src/apideck/model/balance_sheet_reports.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ def openapi_types():
113113
'created_by': (str, none_type,), # noqa: E501
114114
'updated_at': (datetime, none_type,), # noqa: E501
115115
'created_at': (datetime, none_type,), # noqa: E501
116+
'uncategorized_items': ([bool, date, datetime, dict, float, int, list, str, none_type],), # noqa: E501
116117
}
117118

118119
@cached_property
@@ -135,6 +136,7 @@ def discriminator():
135136
'created_by': 'created_by', # noqa: E501
136137
'updated_at': 'updated_at', # noqa: E501
137138
'created_at': 'created_at', # noqa: E501
139+
'uncategorized_items': 'uncategorized_items', # noqa: E501
138140
}
139141

140142
read_only_vars = {
@@ -200,6 +202,7 @@ def _from_openapi_data(cls, end_date, assets, liabilities, equity, *args, **kwar
200202
created_by (str, none_type): The user who created the object.. [optional] # noqa: E501
201203
updated_at (datetime, none_type): The date and time when the object was last updated.. [optional] # noqa: E501
202204
created_at (datetime, none_type): The date and time when the object was created.. [optional] # noqa: E501
205+
uncategorized_items ([bool, date, datetime, dict, float, int, list, str, none_type]): Items that are not categorized in the balance sheet. [optional] # noqa: E501
203206
"""
204207

205208
_check_type = kwargs.pop('_check_type', True)
@@ -301,6 +304,7 @@ def __init__(self, end_date, assets, liabilities, equity, *args, **kwargs): # n
301304
created_by (str, none_type): The user who created the object.. [optional] # noqa: E501
302305
updated_at (datetime, none_type): The date and time when the object was last updated.. [optional] # noqa: E501
303306
created_at (datetime, none_type): The date and time when the object was created.. [optional] # noqa: E501
307+
uncategorized_items ([bool, date, datetime, dict, float, int, list, str, none_type]): Items that are not categorized in the balance sheet. [optional] # noqa: E501
304308
"""
305309

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

0 commit comments

Comments
 (0)