Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

TaskTypeSettings.md

File metadata and controls

31 lines (22 loc) · 1.13 KB

TaskTypeSettings

Properties

Name Type Description Notes
type ReactiveTaskSettingType
time_zone str Optional identifier of the time zone in which the schedule expression is to be interpreted [optional]
frequency int polling frequency in milliseconds

Example

from waylay.services.rules.models.task_type_settings import TaskTypeSettings

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

# convert the object into a dict
task_type_settings_dict = task_type_settings_instance.to_dict()
# create an instance of TaskTypeSettings from a dict
task_type_settings_form_dict = task_type_settings.from_dict(task_type_settings_dict)

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