Scheduled Task for Post v3/schedules api.
| Name | Type | Description | Notes |
|---|---|---|---|
| audit_type | Schedulerv3AuditType | [optional] [default to Schedulerv3AuditType.UNDEFINED_TYPE] | |
| delivery_method | Schedulerv3DeliveryMethod | [optional] | |
| distribution_rule_ids | List[str] | Optional: Distribution rule IDs for a task. Will be populated by recipients on save. | [optional] |
| email_subject | str | Optional: Email subject with replaceable variables. | [optional] |
| instructions | str | Optional: Instructions for the task owner. | [optional] |
| name | str | Task name (usually the same as the report name). | [optional] |
| parameter | Schedulerv3TaskParameter | [optional] | |
| recipients | List[Schedulerv3Recipient] | Optional: Report result recipients. | [optional] |
| report_filters | Reportsv3ReportFilterBrackets | [optional] | |
| scheduled_task_id | str | Optional: Id for the task. | [optional] |
| type | Schedulerv3TaskType | [optional] [default to Schedulerv3TaskType.UNDEFINED_JOBTYPE] | |
| workflow_investigation_links | List[Schedulerv3ConfigurationItem] | [optional] | |
| workflow_response_template | Schedulerv3ConfigurationItem | [optional] | |
| workflow_type | Schedulerv3WorkflowType | [optional] [default to Schedulerv3WorkflowType.REVIEW_NONE] | |
| workflow_unique_fields | List[str] | [optional] |
from ibm_gdsc_sdk_saas.models.schedulerv3_scheduled_task import Schedulerv3ScheduledTask
# TODO update the JSON string below
json = "{}"
# create an instance of Schedulerv3ScheduledTask from a JSON string
schedulerv3_scheduled_task_instance = Schedulerv3ScheduledTask.from_json(json)
# print the JSON string representation of the object
print(Schedulerv3ScheduledTask.to_json())
# convert the object into a dict
schedulerv3_scheduled_task_dict = schedulerv3_scheduled_task_instance.to_dict()
# create an instance of Schedulerv3ScheduledTask from a dict
schedulerv3_scheduled_task_from_dict = Schedulerv3ScheduledTask.from_dict(schedulerv3_scheduled_task_dict)