View the Project on GitHub elements-storage/elements-sdk-python
A schedule that runs an Automation job automatically, either at a fixed interval or on a crontab expression.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | ||
| variables | {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | [optional] [readonly] | |
| next_run | datetime | [optional] [readonly] | |
| type | int | Scheduling mode: fixed interval (`1`, uses `every`/`period`) or a crontab expression (`2`, uses the `crontab_*` fields). | [optional] [readonly] |
| enabled | bool | [optional] [readonly] | |
| last_run | datetime, none_type | [optional] [readonly] | |
| every | int | [optional] [readonly] | |
| period | str | [optional] [readonly] | |
| crontab_day_of_month | str | [optional] [readonly] | |
| crontab_day_of_week | str | [optional] [readonly] | |
| crontab_hour | str | [optional] [readonly] | |
| crontab_minute | str | [optional] [readonly] | |
| crontab_month_of_year | str | [optional] [readonly] | |
| job | int | [optional] [readonly] |