| Name | Type | Description | Notes |
|---|---|---|---|
| item | NewBlockRI |
from cryptoapis.models.new_block_r_data import NewBlockRData
# TODO update the JSON string below
json = "{}"
# create an instance of NewBlockRData from a JSON string
new_block_r_data_instance = NewBlockRData.from_json(json)
# print the JSON string representation of the object
print NewBlockRData.to_json()
# convert the object into a dict
new_block_r_data_dict = new_block_r_data_instance.to_dict()
# create an instance of NewBlockRData from a dict
new_block_r_data_form_dict = new_block_r_data.from_dict(new_block_r_data_dict)