Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.04 KB

AccountInfo.md

File metadata and controls

33 lines (24 loc) · 1.04 KB

AccountInfo

Properties

Name Type Description Notes
currency str [optional]
id str [optional]
name str [optional]
pending List[Transaction] [optional]
transactions List[Transaction] [optional]

Example

from luno_openapi.models.account_info import AccountInfo

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

# convert the object into a dict
account_info_dict = account_info_instance.to_dict()
# create an instance of AccountInfo from a dict
account_info_from_dict = AccountInfo.from_dict(account_info_dict)

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