Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.16 KB

File metadata and controls

30 lines (21 loc) · 1.16 KB

OutputGetBlockReceipts

Properties

Name Type Description Notes
var_schema str A URL to the JSON Schema for this object. [optional] [readonly]
transaction_receipts List[ResponseTransactionReceipt] An array of transaction receipt objects

Example

from qan.qan.output_get_block_receipts import OutputGetBlockReceipts

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

# convert the object into a dict
output_get_block_receipts_dict = output_get_block_receipts_instance.to_dict()
# create an instance of OutputGetBlockReceipts from a dict
output_get_block_receipts_from_dict = OutputGetBlockReceipts.from_dict(output_get_block_receipts_dict)

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