Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

CancelTransactionResponse.md

File metadata and controls

29 lines (20 loc) · 1.01 KB

CancelTransactionResponse

Properties

Name Type Description Notes
success bool [optional]

Example

from fireblocks.models.cancel_transaction_response import CancelTransactionResponse

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

# convert the object into a dict
cancel_transaction_response_dict = cancel_transaction_response_instance.to_dict()
# create an instance of CancelTransactionResponse from a dict
cancel_transaction_response_from_dict = CancelTransactionResponse.from_dict(cancel_transaction_response_dict)

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