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