Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.34 KB

ListLatestMinedBlocksRIBST.md

File metadata and controls

32 lines (24 loc) · 1.34 KB

ListLatestMinedBlocksRIBST

Tron

Properties

Name Type Description Notes
bandwidth_used str Representation of the blocks' bandwidth limit. [optional]
burned_trx str Representation of the blocks' burned TRX. [optional]
energy_used str Representation of the blocks' energy used. [optional]
size int Represents the total size of the block in Bytes.

Example

from cryptoapis.models.list_latest_mined_blocks_ribst import ListLatestMinedBlocksRIBST

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

# convert the object into a dict
list_latest_mined_blocks_ribst_dict = list_latest_mined_blocks_ribst_instance.to_dict()
# create an instance of ListLatestMinedBlocksRIBST from a dict
list_latest_mined_blocks_ribst_form_dict = list_latest_mined_blocks_ribst.from_dict(list_latest_mined_blocks_ribst_dict)

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