Name |
Type |
Description |
Notes |
success |
bool |
|
|
from fireblocks.models.set_network_id_response import SetNetworkIdResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SetNetworkIdResponse from a JSON string
set_network_id_response_instance = SetNetworkIdResponse.from_json(json)
# print the JSON string representation of the object
print(SetNetworkIdResponse.to_json())
# convert the object into a dict
set_network_id_response_dict = set_network_id_response_instance.to_dict()
# create an instance of SetNetworkIdResponse from a dict
set_network_id_response_from_dict = SetNetworkIdResponse.from_dict(set_network_id_response_dict)
[Back to Model list] [Back to API list] [Back to README]