Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 992 Bytes

ThirdPartyRouting.md

File metadata and controls

30 lines (21 loc) · 992 Bytes

ThirdPartyRouting

Properties

Name Type Description Notes
is_third_party_routing bool [optional]
description str [optional]

Example

from fireblocks.models.third_party_routing import ThirdPartyRouting

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

# convert the object into a dict
third_party_routing_dict = third_party_routing_instance.to_dict()
# create an instance of ThirdPartyRouting from a dict
third_party_routing_from_dict = ThirdPartyRouting.from_dict(third_party_routing_dict)

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