Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.02 KB

File metadata and controls

28 lines (20 loc) · 1.02 KB

AccountBalance200Response

Properties

Name Type Description Notes
data BalanceSchema [optional]

Example

from bsg_api.models.account_balance200_response import AccountBalance200Response

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

# convert the object into a dict
account_balance200_response_dict = account_balance200_response_instance.to_dict()
# create an instance of AccountBalance200Response from a dict
account_balance200_response_from_dict = AccountBalance200Response.from_dict(account_balance200_response_dict)

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