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.33 KB

File metadata and controls

29 lines (21 loc) · 1.33 KB

CreateAutomaticTokensForwardingRITS

Properties

Name Type Description Notes
property_id int Defines the `propertyId` of the Omni Layer token.
contract_address str Represents the specific `contractAddress` of the Token that will be forwarded.

Example

from cryptoapis.models.create_automatic_tokens_forwarding_rits import CreateAutomaticTokensForwardingRITS

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

# convert the object into a dict
create_automatic_tokens_forwarding_rits_dict = create_automatic_tokens_forwarding_rits_instance.to_dict()
# create an instance of CreateAutomaticTokensForwardingRITS from a dict
create_automatic_tokens_forwarding_rits_form_dict = create_automatic_tokens_forwarding_rits.from_dict(create_automatic_tokens_forwarding_rits_dict)

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