| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| schedule | str | [optional] | |
| command | str | [optional] |
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)