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
The ID of the account the funds are being sent to.
Example
fromfireblocks.models.network_id_routing_policy_valueimportNetworkIdRoutingPolicyValue# TODO update the JSON string belowjson="{}"# create an instance of NetworkIdRoutingPolicyValue from a JSON stringnetwork_id_routing_policy_value_instance=NetworkIdRoutingPolicyValue.from_json(json)
# print the JSON string representation of the objectprint(NetworkIdRoutingPolicyValue.to_json())
# convert the object into a dictnetwork_id_routing_policy_value_dict=network_id_routing_policy_value_instance.to_dict()
# create an instance of NetworkIdRoutingPolicyValue from a dictnetwork_id_routing_policy_value_from_dict=NetworkIdRoutingPolicyValue.from_dict(network_id_routing_policy_value_dict)