Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

FreezeTransactionResponse.md

File metadata and controls

29 lines (20 loc) · 1.01 KB

FreezeTransactionResponse

Properties

Name Type Description Notes
success bool [optional]

Example

from fireblocks.models.freeze_transaction_response import FreezeTransactionResponse

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

# convert the object into a dict
freeze_transaction_response_dict = freeze_transaction_response_instance.to_dict()
# create an instance of FreezeTransactionResponse from a dict
freeze_transaction_response_from_dict = FreezeTransactionResponse.from_dict(freeze_transaction_response_dict)

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