Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 1.22 KB

CreateTwitterWebhook.md

File metadata and controls

35 lines (25 loc) · 1.22 KB

CreateTwitterWebhook

Properties

Name Type Description Notes
whitelist List[str] [optional]
blacklist List[str] [optional]
subscriptions List[str] Get the available subscriptions with /meta/webhooks/twitter
format str
preview_length int [optional]
callback str Discord Webhook URL

Example

from dofusdude.models.create_twitter_webhook import CreateTwitterWebhook

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

# convert the object into a dict
create_twitter_webhook_dict = create_twitter_webhook_instance.to_dict()
# create an instance of CreateTwitterWebhook from a dict
create_twitter_webhook_from_dict = CreateTwitterWebhook.from_dict(create_twitter_webhook_dict)

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