Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.26 KB

File metadata and controls

30 lines (21 loc) · 1.26 KB

AccountsResponseWithErrorMessages

Properties

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

Example

from clientapi_barion.models.accounts_response_with_error_messages import AccountsResponseWithErrorMessages

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

# convert the object into a dict
accounts_response_with_error_messages_dict = accounts_response_with_error_messages_instance.to_dict()
# create an instance of AccountsResponseWithErrorMessages from a dict
accounts_response_with_error_messages_from_dict = AccountsResponseWithErrorMessages.from_dict(accounts_response_with_error_messages_dict)

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