Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.46 KB

AddTokensToExistingFromAddressRBTokenData.md

File metadata and controls

29 lines (21 loc) · 1.46 KB

AddTokensToExistingFromAddressRBTokenData

Properties

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

Example

from cryptoapis.models.add_tokens_to_existing_from_address_rb_token_data import AddTokensToExistingFromAddressRBTokenData

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

# convert the object into a dict
add_tokens_to_existing_from_address_rb_token_data_dict = add_tokens_to_existing_from_address_rb_token_data_instance.to_dict()
# create an instance of AddTokensToExistingFromAddressRBTokenData from a dict
add_tokens_to_existing_from_address_rb_token_data_form_dict = add_tokens_to_existing_from_address_rb_token_data.from_dict(add_tokens_to_existing_from_address_rb_token_data_dict)

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