You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unique identifier of the cron job. Use it to delete the cron job or fetch its output.
[optional]
username
str
Username of the account that owns the cron job.
[optional]
time
str
Cron schedule expression.
[optional]
command
str
Command executed on the schedule.
[optional]
Example
fromhostinger_api.models.hosting_v1_cron_jobs_cron_job_resourceimportHostingV1CronJobsCronJobResource# TODO update the JSON string belowjson="{}"# create an instance of HostingV1CronJobsCronJobResource from a JSON stringhosting_v1_cron_jobs_cron_job_resource_instance=HostingV1CronJobsCronJobResource.from_json(json)
# print the JSON string representation of the objectprint(HostingV1CronJobsCronJobResource.to_json())
# convert the object into a dicthosting_v1_cron_jobs_cron_job_resource_dict=hosting_v1_cron_jobs_cron_job_resource_instance.to_dict()
# create an instance of HostingV1CronJobsCronJobResource from a dicthosting_v1_cron_jobs_cron_job_resource_from_dict=HostingV1CronJobsCronJobResource.from_dict(hosting_v1_cron_jobs_cron_job_resource_dict)