| Name |
Type |
Description |
Notes |
| api_version |
str |
Specifies the version of the API that incorporates this endpoint. |
|
| reference_id |
str |
Represents a unique identifier that serves as reference to the specific request which prompts a callback, e.g. Blockchain Events Subscription, Blockchain Automation, etc. |
|
| idempotency_key |
str |
Specifies a unique ID generated by the system and attached to each callback. It is used by the server to recognize consecutive requests with the same data with the purpose not to perform the same operation twice. |
|
| data |
BlockRevertedData |
|
|
from cryptoapis.models.block_reverted import BlockReverted
# TODO update the JSON string below
json = "{}"
# create an instance of BlockReverted from a JSON string
block_reverted_instance = BlockReverted.from_json(json)
# print the JSON string representation of the object
print BlockReverted.to_json()
# convert the object into a dict
block_reverted_dict = block_reverted_instance.to_dict()
# create an instance of BlockReverted from a dict
block_reverted_form_dict = block_reverted.from_dict(block_reverted_dict)
[Back to Model list] [Back to API list] [Back to README]