Skip to content

Commit 2a9a1c2

Browse files
Automated update by SDK Generator version:1.2.3 commit:62cfc01
1 parent 666533d commit 2a9a1c2

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

docs/models/BalanceSheetAccount.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ A balance sheet account represents the financial position of a company at a spec
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**account_id** | **str** | The unique identifier for the account. | [optional] [readonly]
9+
**code** | **str** | The code of the account. | [optional]
910
**name** | **str** | Name of the report item | [optional]
1011
**value** | **float** | The value of the account. | [optional]
1112
**items** | **[bool, date, datetime, dict, float, int, list, str, none_type], none_type** | | [optional]

docs/models/BalanceSheetAccountRecord.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
**account_id** | **str** | The unique identifier for the account. | [optional] [readonly]
8+
**code** | **str** | The code of the account. | [optional]
89
**name** | **str** | Name of the report item | [optional]
910
**value** | **float** | The value of the account. | [optional]
1011

src/apideck/model/balance_sheet_account.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
'account_id': (str,), # noqa: E501
79+
'code': (str,), # noqa: E501
7980
'name': (str,), # noqa: E501
8081
'value': (float,), # noqa: E501
8182
'items': ([bool, date, datetime, dict, float, int, list, str, none_type], none_type,), # noqa: E501
@@ -88,6 +89,7 @@ def discriminator():
8889

8990
attribute_map = {
9091
'account_id': 'account_id', # noqa: E501
92+
'code': 'code', # noqa: E501
9193
'name': 'name', # noqa: E501
9294
'value': 'value', # noqa: E501
9395
'items': 'items', # noqa: E501
@@ -136,6 +138,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
136138
through its discriminator because we passed in
137139
_visited_composed_classes = (Animal,)
138140
account_id (str): The unique identifier for the account.. [optional] # noqa: E501
141+
code (str): The code of the account.. [optional] # noqa: E501
139142
name (str): Name of the report item. [optional] # noqa: E501
140143
value (float): The value of the account.. [optional] # noqa: E501
141144
items ([bool, date, datetime, dict, float, int, list, str, none_type], none_type): [optional] # noqa: E501
@@ -221,6 +224,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
221224
through its discriminator because we passed in
222225
_visited_composed_classes = (Animal,)
223226
account_id (str): The unique identifier for the account.. [optional] # noqa: E501
227+
code (str): The code of the account.. [optional] # noqa: E501
224228
name (str): Name of the report item. [optional] # noqa: E501
225229
value (float): The value of the account.. [optional] # noqa: E501
226230
items ([bool, date, datetime, dict, float, int, list, str, none_type], none_type): [optional] # noqa: E501

src/apideck/model/balance_sheet_account_record.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
'account_id': (str,), # noqa: E501
79+
'code': (str,), # noqa: E501
7980
'name': (str,), # noqa: E501
8081
'value': (float,), # noqa: E501
8182
}
@@ -87,6 +88,7 @@ def discriminator():
8788

8889
attribute_map = {
8990
'account_id': 'account_id', # noqa: E501
91+
'code': 'code', # noqa: E501
9092
'name': 'name', # noqa: E501
9193
'value': 'value', # noqa: E501
9294
}
@@ -134,6 +136,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
134136
through its discriminator because we passed in
135137
_visited_composed_classes = (Animal,)
136138
account_id (str): The unique identifier for the account.. [optional] # noqa: E501
139+
code (str): The code of the account.. [optional] # noqa: E501
137140
name (str): Name of the report item. [optional] # noqa: E501
138141
value (float): The value of the account.. [optional] # noqa: E501
139142
"""
@@ -218,6 +221,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
218221
through its discriminator because we passed in
219222
_visited_composed_classes = (Animal,)
220223
account_id (str): The unique identifier for the account.. [optional] # noqa: E501
224+
code (str): The code of the account.. [optional] # noqa: E501
221225
name (str): Name of the report item. [optional] # noqa: E501
222226
value (float): The value of the account.. [optional] # noqa: E501
223227
"""

0 commit comments

Comments
 (0)