Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 832 Bytes

NetworkId.md

File metadata and controls

30 lines (21 loc) · 832 Bytes

NetworkId

Properties

Name Type Description Notes
id str
name str

Example

from fireblocks.models.network_id import NetworkId

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

# convert the object into a dict
network_id_dict = network_id_instance.to_dict()
# create an instance of NetworkId from a dict
network_id_from_dict = NetworkId.from_dict(network_id_dict)

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