Name | Type | Description | Notes |
---|---|---|---|
id | int | [optional] | |
cron_format | str | [optional] | |
project_id | int | [optional] | |
template_id | int | [optional] |
from semaphore_api.models.schedule import Schedule
# TODO update the JSON string below
json = "{}"
# create an instance of Schedule from a JSON string
schedule_instance = Schedule.from_json(json)
# print the JSON string representation of the object
print(Schedule.to_json())
# convert the object into a dict
schedule_dict = schedule_instance.to_dict()
# create an instance of Schedule from a dict
schedule_from_dict = Schedule.from_dict(schedule_dict)