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
Cron schedule expression (for example "0 2 * * *" runs daily at 02:00).
command
str
Command to execute on the schedule.
Example
fromhostinger_api.models.hosting_v1_cron_jobs_create_cron_job_requestimportHostingV1CronJobsCreateCronJobRequest# TODO update the JSON string belowjson="{}"# create an instance of HostingV1CronJobsCreateCronJobRequest from a JSON stringhosting_v1_cron_jobs_create_cron_job_request_instance=HostingV1CronJobsCreateCronJobRequest.from_json(json)
# print the JSON string representation of the objectprint(HostingV1CronJobsCreateCronJobRequest.to_json())
# convert the object into a dicthosting_v1_cron_jobs_create_cron_job_request_dict=hosting_v1_cron_jobs_create_cron_job_request_instance.to_dict()
# create an instance of HostingV1CronJobsCreateCronJobRequest from a dicthosting_v1_cron_jobs_create_cron_job_request_from_dict=HostingV1CronJobsCreateCronJobRequest.from_dict(hosting_v1_cron_jobs_create_cron_job_request_dict)