Skip to content

Commit

Permalink
Automated update by SDK Generator version:1.2.3 commit:229169b
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 28, 2024
1 parent 00e371f commit 666533d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/models/BalanceSheetAccount.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# BalanceSheetAccount

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

## Properties
Name | Type | Description | Notes
Expand Down
1 change: 1 addition & 0 deletions docs/models/BalanceSheetReports.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Name | Type | Description | Notes
**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]
**created_at** | **datetime, none_type** | The date and time when the object was created. | [optional] [readonly]
**uncategorized_items** | **[bool, date, datetime, dict, float, int, list, str, none_type]** | Items that are not categorized in the balance sheet | [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)
Expand Down
4 changes: 4 additions & 0 deletions src/apideck/model/balance_sheet_reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ def openapi_types():
'created_by': (str, none_type,), # noqa: E501
'updated_at': (datetime, none_type,), # noqa: E501
'created_at': (datetime, none_type,), # noqa: E501
'uncategorized_items': ([bool, date, datetime, dict, float, int, list, str, none_type],), # noqa: E501
}

@cached_property
Expand All @@ -135,6 +136,7 @@ def discriminator():
'created_by': 'created_by', # noqa: E501
'updated_at': 'updated_at', # noqa: E501
'created_at': 'created_at', # noqa: E501
'uncategorized_items': 'uncategorized_items', # noqa: E501
}

read_only_vars = {
Expand Down Expand Up @@ -200,6 +202,7 @@ def _from_openapi_data(cls, end_date, assets, liabilities, equity, *args, **kwar
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
created_at (datetime, none_type): The date and time when the object was created.. [optional] # noqa: E501
uncategorized_items ([bool, date, datetime, dict, float, int, list, str, none_type]): Items that are not categorized in the balance sheet. [optional] # noqa: E501
"""

_check_type = kwargs.pop('_check_type', True)
Expand Down Expand Up @@ -301,6 +304,7 @@ def __init__(self, end_date, assets, liabilities, equity, *args, **kwargs): # n
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
created_at (datetime, none_type): The date and time when the object was created.. [optional] # noqa: E501
uncategorized_items ([bool, date, datetime, dict, float, int, list, str, none_type]): Items that are not categorized in the balance sheet. [optional] # noqa: E501
"""

_check_type = kwargs.pop('_check_type', True)
Expand Down

0 comments on commit 666533d

Please sign in to comment.