Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1017 Bytes

NoneNetworkRoutingDest.md

File metadata and controls

29 lines (20 loc) · 1017 Bytes

NoneNetworkRoutingDest

Properties

Name Type Description Notes
scheme str No network routing logic.

Example

from fireblocks.models.none_network_routing_dest import NoneNetworkRoutingDest

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

# convert the object into a dict
none_network_routing_dest_dict = none_network_routing_dest_instance.to_dict()
# create an instance of NoneNetworkRoutingDest from a dict
none_network_routing_dest_from_dict = NoneNetworkRoutingDest.from_dict(none_network_routing_dest_dict)

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