Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 994 Bytes

File metadata and controls

29 lines (20 loc) · 994 Bytes

AccountsResponse

Properties

Name Type Description Notes
accounts List[Account] List of accounts in the user's Barion wallet. [optional]

Example

from clientapi_barion.models.accounts_response import AccountsResponse

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

# convert the object into a dict
accounts_response_dict = accounts_response_instance.to_dict()
# create an instance of AccountsResponse from a dict
accounts_response_from_dict = AccountsResponse.from_dict(accounts_response_dict)

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