Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.34 KB

CreateAlmanaxWebhookDailySettings.md

File metadata and controls

30 lines (21 loc) · 1.34 KB

CreateAlmanaxWebhookDailySettings

Properties

Name Type Description Notes
timezone str Timezone of your community to determine midnight. [optional] [default to 'Europe/Paris']
midnight_offset int Hours added to midnight at the selected timezone. 8 = 8:00 in the morning. [optional] [default to 0]

Example

from dofusdude.models.create_almanax_webhook_daily_settings import CreateAlmanaxWebhookDailySettings

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

# convert the object into a dict
create_almanax_webhook_daily_settings_dict = create_almanax_webhook_daily_settings_instance.to_dict()
# create an instance of CreateAlmanaxWebhookDailySettings from a dict
create_almanax_webhook_daily_settings_from_dict = CreateAlmanaxWebhookDailySettings.from_dict(create_almanax_webhook_daily_settings_dict)

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