Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

NetworkIdRoutingPolicyValue.md

File metadata and controls

31 lines (22 loc) · 1.21 KB

NetworkIdRoutingPolicyValue

Properties

Name Type Description Notes
scheme str No network routing logic.
dst_type str The account the funds are being sent to.
dst_id str The ID of the account the funds are being sent to.

Example

from fireblocks.models.network_id_routing_policy_value import NetworkIdRoutingPolicyValue

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

# convert the object into a dict
network_id_routing_policy_value_dict = network_id_routing_policy_value_instance.to_dict()
# create an instance of NetworkIdRoutingPolicyValue from a dict
network_id_routing_policy_value_from_dict = NetworkIdRoutingPolicyValue.from_dict(network_id_routing_policy_value_dict)

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