| Name |
Type |
Description |
Notes |
| context |
str |
In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. `context` is specified by the user. |
[optional] |
| data |
MinedTransactionRBData |
|
|
from cryptoapis.models.mined_transaction_rb import MinedTransactionRB
# TODO update the JSON string below
json = "{}"
# create an instance of MinedTransactionRB from a JSON string
mined_transaction_rb_instance = MinedTransactionRB.from_json(json)
# print the JSON string representation of the object
print MinedTransactionRB.to_json()
# convert the object into a dict
mined_transaction_rb_dict = mined_transaction_rb_instance.to_dict()
# create an instance of MinedTransactionRB from a dict
mined_transaction_rb_form_dict = mined_transaction_rb.from_dict(mined_transaction_rb_dict)
[Back to Model list] [Back to API list] [Back to README]