Skip to content

Commit

Permalink
Automated update by SDK Generator version:1.2.3 commit:62cfc01
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 10, 2024
1 parent 666533d commit 2a9a1c2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/models/BalanceSheetAccount.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ A balance sheet account represents the financial position of a company at a spec
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**account_id** | **str** | The unique identifier for the account. | [optional] [readonly]
**code** | **str** | The code of the account. | [optional]
**name** | **str** | Name of the report item | [optional]
**value** | **float** | The value of the account. | [optional]
**items** | **[bool, date, datetime, dict, float, int, list, str, none_type], none_type** | | [optional]
Expand Down
1 change: 1 addition & 0 deletions docs/models/BalanceSheetAccountRecord.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**account_id** | **str** | The unique identifier for the account. | [optional] [readonly]
**code** | **str** | The code of the account. | [optional]
**name** | **str** | Name of the report item | [optional]
**value** | **float** | The value of the account. | [optional]

Expand Down
4 changes: 4 additions & 0 deletions src/apideck/model/balance_sheet_account.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ def openapi_types():
"""
return {
'account_id': (str,), # noqa: E501
'code': (str,), # noqa: E501
'name': (str,), # noqa: E501
'value': (float,), # noqa: E501
'items': ([bool, date, datetime, dict, float, int, list, str, none_type], none_type,), # noqa: E501
Expand All @@ -88,6 +89,7 @@ def discriminator():

attribute_map = {
'account_id': 'account_id', # noqa: E501
'code': 'code', # noqa: E501
'name': 'name', # noqa: E501
'value': 'value', # noqa: E501
'items': 'items', # noqa: E501
Expand Down Expand Up @@ -136,6 +138,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
account_id (str): The unique identifier for the account.. [optional] # noqa: E501
code (str): The code of the account.. [optional] # noqa: E501
name (str): Name of the report item. [optional] # noqa: E501
value (float): The value of the account.. [optional] # noqa: E501
items ([bool, date, datetime, dict, float, int, list, str, none_type], none_type): [optional] # noqa: E501
Expand Down Expand Up @@ -221,6 +224,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
account_id (str): The unique identifier for the account.. [optional] # noqa: E501
code (str): The code of the account.. [optional] # noqa: E501
name (str): Name of the report item. [optional] # noqa: E501
value (float): The value of the account.. [optional] # noqa: E501
items ([bool, date, datetime, dict, float, int, list, str, none_type], none_type): [optional] # noqa: E501
Expand Down
4 changes: 4 additions & 0 deletions src/apideck/model/balance_sheet_account_record.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ def openapi_types():
"""
return {
'account_id': (str,), # noqa: E501
'code': (str,), # noqa: E501
'name': (str,), # noqa: E501
'value': (float,), # noqa: E501
}
Expand All @@ -87,6 +88,7 @@ def discriminator():

attribute_map = {
'account_id': 'account_id', # noqa: E501
'code': 'code', # noqa: E501
'name': 'name', # noqa: E501
'value': 'value', # noqa: E501
}
Expand Down Expand Up @@ -134,6 +136,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
account_id (str): The unique identifier for the account.. [optional] # noqa: E501
code (str): The code of the account.. [optional] # noqa: E501
name (str): Name of the report item. [optional] # noqa: E501
value (float): The value of the account.. [optional] # noqa: E501
"""
Expand Down Expand Up @@ -218,6 +221,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
account_id (str): The unique identifier for the account.. [optional] # noqa: E501
code (str): The code of the account.. [optional] # noqa: E501
name (str): Name of the report item. [optional] # noqa: E501
value (float): The value of the account.. [optional] # noqa: E501
"""
Expand Down

0 comments on commit 2a9a1c2

Please sign in to comment.