Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 826 Bytes

File metadata and controls

31 lines (22 loc) · 826 Bytes

Cron

Properties

Name Type Description Notes
name str [optional]
schedule str [optional]
command str [optional]

Example

from quantcdn.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]