CreateRSSWebhook
Name |
Type |
Description |
Notes |
whitelist |
List[str] |
|
[optional] |
blacklist |
List[str] |
|
[optional] |
subscriptions |
List[str] |
Get the available subscriptions with /meta/webhooks/rss |
|
format |
str |
|
|
preview_length |
int |
|
[optional] |
callback |
str |
Discord Webhook URL |
|
from dofusdude.models.create_rss_webhook import CreateRSSWebhook
# TODO update the JSON string below
json = "{}"
# create an instance of CreateRSSWebhook from a JSON string
create_rss_webhook_instance = CreateRSSWebhook.from_json(json)
# print the JSON string representation of the object
print(CreateRSSWebhook.to_json())
# convert the object into a dict
create_rss_webhook_dict = create_rss_webhook_instance.to_dict()
# create an instance of CreateRSSWebhook from a dict
create_rss_webhook_from_dict = CreateRSSWebhook.from_dict(create_rss_webhook_dict)
[Back to Model list] [Back to API list] [Back to README]