Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.04 KB

File metadata and controls

30 lines (22 loc) · 1.04 KB

SubAccount

Represents a sub-account with a specific currency and balance.

Properties

Name Type Description Notes
currency str The three-character ISO 4217 currency symbol of the sub-account. [optional]
amount float The balance of the sub-account in the specified currency. [optional]

Example

from docspace_api_sdk.models.sub_account import SubAccount

# TODO update the JSON string below
json = "{}"
# create an instance of SubAccount from a JSON string
sub_account_instance = SubAccount.from_json(json)
# print the JSON string representation of the object
print(SubAccount.to_json())

# convert the object into a dict
sub_account_dict = sub_account_instance.to_dict()
# create an instance of SubAccount from a dict
sub_account_from_dict = SubAccount.from_dict(sub_account_dict)

[Back to Model list] [Back to API list] [Back to README]