Specifies all data, as attributes, included into the callback notification, which depends on the event.
| Name | Type | Description | Notes |
|---|---|---|---|
| product | str | Represents the Crypto APIs 2.0 product which sends the callback. | |
| event | str | Defines the specific event, for which a callback subscription is set. | |
| item | AddressTokensTransactionUnconfirmedDataItem |
from cryptoapis.models.address_tokens_transaction_unconfirmed_data import AddressTokensTransactionUnconfirmedData
# TODO update the JSON string below
json = "{}"
# create an instance of AddressTokensTransactionUnconfirmedData from a JSON string
address_tokens_transaction_unconfirmed_data_instance = AddressTokensTransactionUnconfirmedData.from_json(json)
# print the JSON string representation of the object
print AddressTokensTransactionUnconfirmedData.to_json()
# convert the object into a dict
address_tokens_transaction_unconfirmed_data_dict = address_tokens_transaction_unconfirmed_data_instance.to_dict()
# create an instance of AddressTokensTransactionUnconfirmedData from a dict
address_tokens_transaction_unconfirmed_data_form_dict = address_tokens_transaction_unconfirmed_data.from_dict(address_tokens_transaction_unconfirmed_data_dict)