You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromfireblocks.models.balance_history_paged_responseimportBalanceHistoryPagedResponse# TODO update the JSON string belowjson="{}"# create an instance of BalanceHistoryPagedResponse from a JSON stringbalance_history_paged_response_instance=BalanceHistoryPagedResponse.from_json(json)
# print the JSON string representation of the objectprint(BalanceHistoryPagedResponse.to_json())
# convert the object into a dictbalance_history_paged_response_dict=balance_history_paged_response_instance.to_dict()
# create an instance of BalanceHistoryPagedResponse from a dictbalance_history_paged_response_from_dict=BalanceHistoryPagedResponse.from_dict(balance_history_paged_response_dict)