Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 840 Bytes

File metadata and controls

31 lines (22 loc) · 840 Bytes

Cron

Properties

Name Type Description Notes
cron_expression str
timezone str [optional]
advanced_scheduling str [optional]

Example

from dat_client.models.cron import Cron

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

# convert the object into a dict
cron_dict = cron_instance.to_dict()
# create an instance of Cron from a dict
cron_from_dict = Cron.from_dict(cron_dict)

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