Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

DefaultNetworkRoutingDest.md

File metadata and controls

29 lines (20 loc) · 1.03 KB

DefaultNetworkRoutingDest

Properties

Name Type Description Notes
scheme str The network routing logic.

Example

from fireblocks.models.default_network_routing_dest import DefaultNetworkRoutingDest

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

# convert the object into a dict
default_network_routing_dest_dict = default_network_routing_dest_instance.to_dict()
# create an instance of DefaultNetworkRoutingDest from a dict
default_network_routing_dest_from_dict = DefaultNetworkRoutingDest.from_dict(default_network_routing_dest_dict)

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