Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.08 KB

DeleteNetworkConnectionResponse.md

File metadata and controls

29 lines (20 loc) · 1.08 KB

DeleteNetworkConnectionResponse

Properties

Name Type Description Notes
success bool

Example

from fireblocks.models.delete_network_connection_response import DeleteNetworkConnectionResponse

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

# convert the object into a dict
delete_network_connection_response_dict = delete_network_connection_response_instance.to_dict()
# create an instance of DeleteNetworkConnectionResponse from a dict
delete_network_connection_response_from_dict = DeleteNetworkConnectionResponse.from_dict(delete_network_connection_response_dict)

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