| Name | Type | Description | Notes |
|---|---|---|---|
| currency | str | [optional] | |
| id | str | [optional] | |
| name | str | [optional] | |
| pending | List[Transaction] | [optional] | |
| transactions | List[Transaction] | [optional] |
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)