Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Latest commit

 

History

History
31 lines (23 loc) · 1.72 KB

File metadata and controls

31 lines (23 loc) · 1.72 KB

AddressTokensTransactionConfirmed

Properties

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 AddressTokensTransactionConfirmedData

Example

from cryptoapis.models.address_tokens_transaction_confirmed import AddressTokensTransactionConfirmed

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

# convert the object into a dict
address_tokens_transaction_confirmed_dict = address_tokens_transaction_confirmed_instance.to_dict()
# create an instance of AddressTokensTransactionConfirmed from a dict
address_tokens_transaction_confirmed_form_dict = address_tokens_transaction_confirmed.from_dict(address_tokens_transaction_confirmed_dict)

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