Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.31 KB

CreateTransactionResponse.md

File metadata and controls

31 lines (22 loc) · 1.31 KB

CreateTransactionResponse

Properties

Name Type Description Notes
id str The ID of the transaction. [optional]
status str The primary status of the transaction. For details, see [Primary transaction statuses.] (https://developers.fireblocks.com/reference/primary-transaction-statuses) [optional]
system_messages SystemMessageInfo [optional]

Example

from fireblocks.models.create_transaction_response import CreateTransactionResponse

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

# convert the object into a dict
create_transaction_response_dict = create_transaction_response_instance.to_dict()
# create an instance of CreateTransactionResponse from a dict
create_transaction_response_from_dict = CreateTransactionResponse.from_dict(create_transaction_response_dict)

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