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
A cursor for the next page of results, if available.
[optional]
Example
fromfireblocks.models.connected_account_trading_pairs_responseimportConnectedAccountTradingPairsResponse# TODO update the JSON string belowjson="{}"# create an instance of ConnectedAccountTradingPairsResponse from a JSON stringconnected_account_trading_pairs_response_instance=ConnectedAccountTradingPairsResponse.from_json(json)
# print the JSON string representation of the objectprint(ConnectedAccountTradingPairsResponse.to_json())
# convert the object into a dictconnected_account_trading_pairs_response_dict=connected_account_trading_pairs_response_instance.to_dict()
# create an instance of ConnectedAccountTradingPairsResponse from a dictconnected_account_trading_pairs_response_from_dict=ConnectedAccountTradingPairsResponse.from_dict(connected_account_trading_pairs_response_dict)