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 an identifier of the token, where up to five alphanumeric characters can be used for it.
decimals
str
Defines how many decimals can be used to break the token.
[optional]
amount
str
Defines the amount of tokens sent with the transaction that is pending confirmation.
contract_address
str
Specifies the address of the contract.
token_id
str
Specifies the unique ID of the token.
property_id
str
Defines the ID of the property for Omni Layer.
transaction_type
str
Defines the type of the transaction made.
created_by_transaction_id
str
The transaction ID used to create the token.
Example
fromcryptoapis.models.address_tokens_transaction_unconfirmed_tokenimportAddressTokensTransactionUnconfirmedToken# TODO update the JSON string belowjson="{}"# create an instance of AddressTokensTransactionUnconfirmedToken from a JSON stringaddress_tokens_transaction_unconfirmed_token_instance=AddressTokensTransactionUnconfirmedToken.from_json(json)
# print the JSON string representation of the objectprintAddressTokensTransactionUnconfirmedToken.to_json()
# convert the object into a dictaddress_tokens_transaction_unconfirmed_token_dict=address_tokens_transaction_unconfirmed_token_instance.to_dict()
# create an instance of AddressTokensTransactionUnconfirmedToken from a dictaddress_tokens_transaction_unconfirmed_token_form_dict=address_tokens_transaction_unconfirmed_token.from_dict(address_tokens_transaction_unconfirmed_token_dict)