Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 942 Bytes

Transaction.md

File metadata and controls

32 lines (23 loc) · 942 Bytes

Transaction

Properties

Name Type Description Notes
id str
state str
timestamp float [optional]
instruction_id str [optional]

Example

from fireblocks.models.transaction import Transaction

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

# convert the object into a dict
transaction_dict = transaction_instance.to_dict()
# create an instance of Transaction from a dict
transaction_from_dict = Transaction.from_dict(transaction_dict)

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