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

Latest commit

 

History

History
29 lines (21 loc) · 1.28 KB

File metadata and controls

29 lines (21 loc) · 1.28 KB

AddTokensToExistingFromAddressRITS

Properties

Name Type Description Notes
property_id int Defines the `propertyId` of the Omni Layer token.
contract_address str Token contract address to be transferred

Example

from cryptoapis.models.add_tokens_to_existing_from_address_rits import AddTokensToExistingFromAddressRITS

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

# convert the object into a dict
add_tokens_to_existing_from_address_rits_dict = add_tokens_to_existing_from_address_rits_instance.to_dict()
# create an instance of AddTokensToExistingFromAddressRITS from a dict
add_tokens_to_existing_from_address_rits_form_dict = add_tokens_to_existing_from_address_rits.from_dict(add_tokens_to_existing_from_address_rits_dict)

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