Name | Type | Description | Notes |
---|---|---|---|
id | str | ||
name | str |
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)