You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 1, 2025. It is now read-only.
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.
fromcryptoapis.models.address_tokens_transaction_confirmedimportAddressTokensTransactionConfirmed# TODO update the JSON string belowjson="{}"# create an instance of AddressTokensTransactionConfirmed from a JSON stringaddress_tokens_transaction_confirmed_instance=AddressTokensTransactionConfirmed.from_json(json)
# print the JSON string representation of the objectprintAddressTokensTransactionConfirmed.to_json()
# convert the object into a dictaddress_tokens_transaction_confirmed_dict=address_tokens_transaction_confirmed_instance.to_dict()
# create an instance of AddressTokensTransactionConfirmed from a dictaddress_tokens_transaction_confirmed_form_dict=address_tokens_transaction_confirmed.from_dict(address_tokens_transaction_confirmed_dict)