Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.36 KB

File metadata and controls

30 lines (21 loc) · 1.36 KB

OutputGetBlockTransactionCountByNumber

Properties

Name Type Description Notes
var_schema str A URL to the JSON Schema for this object. [optional] [readonly]
transaction_count str The number of transactions associated with a specific block, in decimal value

Example

from qan.qan.output_get_block_transaction_count_by_number import OutputGetBlockTransactionCountByNumber

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

# convert the object into a dict
output_get_block_transaction_count_by_number_dict = output_get_block_transaction_count_by_number_instance.to_dict()
# create an instance of OutputGetBlockTransactionCountByNumber from a dict
output_get_block_transaction_count_by_number_from_dict = OutputGetBlockTransactionCountByNumber.from_dict(output_get_block_transaction_count_by_number_dict)

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