Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.4 KB

File metadata and controls

30 lines (21 loc) · 1.4 KB

OutputGetTransactionByBlockHashAndIndex

Properties

Name Type Description Notes
var_schema str A URL to the JSON Schema for this object. [optional] [readonly]
transaction ResponseTransaction The transaction response object, or null if no transaction is found

Example

from qan.qan.output_get_transaction_by_block_hash_and_index import OutputGetTransactionByBlockHashAndIndex

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

# convert the object into a dict
output_get_transaction_by_block_hash_and_index_dict = output_get_transaction_by_block_hash_and_index_instance.to_dict()
# create an instance of OutputGetTransactionByBlockHashAndIndex from a dict
output_get_transaction_by_block_hash_and_index_from_dict = OutputGetTransactionByBlockHashAndIndex.from_dict(output_get_transaction_by_block_hash_and_index_dict)

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