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.
[optional]
time
str
Cron schedule expression.
[optional]
command
str
Command executed on the configured schedule.
[optional]
created_at
datetime
Cron job creation timestamp.
[optional]
Example
fromhostinger_api.models.agency_hosting_v1_websites_cron_jobs_cron_job_resourceimportAgencyHostingV1WebsitesCronJobsCronJobResource# TODO update the JSON string belowjson="{}"# create an instance of AgencyHostingV1WebsitesCronJobsCronJobResource from a JSON stringagency_hosting_v1_websites_cron_jobs_cron_job_resource_instance=AgencyHostingV1WebsitesCronJobsCronJobResource.from_json(json)
# print the JSON string representation of the objectprint(AgencyHostingV1WebsitesCronJobsCronJobResource.to_json())
# convert the object into a dictagency_hosting_v1_websites_cron_jobs_cron_job_resource_dict=agency_hosting_v1_websites_cron_jobs_cron_job_resource_instance.to_dict()
# create an instance of AgencyHostingV1WebsitesCronJobsCronJobResource from a dictagency_hosting_v1_websites_cron_jobs_cron_job_resource_from_dict=AgencyHostingV1WebsitesCronJobsCronJobResource.from_dict(agency_hosting_v1_websites_cron_jobs_cron_job_resource_dict)