WorkItemForward
Properties
Name | Type | Description | Notes |
---|---|---|---|
target_owner_id | str | The ID of the identity to forward this work item to. | [required] |
comment | str | Comments to send to the target owner | [required] |
send_notifications | bool | If true, send a notification to the target owner. | [optional] [default to True] |
} |
Example
from sailpoint.v3.models.work_item_forward import WorkItemForward
work_item_forward = WorkItemForward(
target_owner_id='2c9180835d2e5168015d32f890ca1581',
comment='I'm going on vacation.',
send_notifications=True
)