UserTipJarSettings

November 23, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
bandcamp_handlestr[optional]
bitcoin_handlestr[optional]
cash_app_handlestr[optional]
ethereum_handlestr[optional]
gofundme_handlestr[optional]
is_enabledbool[optional]
patreon_handlestr[optional]
pay_pal_handlestr[optional]
venmo_handlestr[optional]

Example

from twitter_openapi_python_generated.models.user_tip_jar_settings import UserTipJarSettings

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

# convert the object into a dict
user_tip_jar_settings_dict = user_tip_jar_settings_instance.to_dict()
# create an instance of UserTipJarSettings from a dict
user_tip_jar_settings_from_dict = UserTipJarSettings.from_dict(user_tip_jar_settings_dict)

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