mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
2.5 KiB
2.5 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-manual-work-item-details | ManualWorkItemDetails | ManualWorkItemDetails | ManualWorkItemDetails | pythonsdk |
|
/tools/sdk/python/v2025/models/manual-work-item-details |
|
ManualWorkItemDetails
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| forwarded | bool | True if the request for this item was forwarded from one owner to another. | [optional] [default to False] |
| original_owner | ManualWorkItemDetailsOriginalOwner | [optional] | |
| current_owner | ManualWorkItemDetailsCurrentOwner | [optional] | |
| modified | datetime | Time at which item was modified. | [optional] |
| status | ManualWorkItemState | [optional] | |
| forward_history | []ApprovalForwardHistory | The history of approval forward action. | [optional] |
| } |
Example
from sailpoint.v2025.models.manual_work_item_details import ManualWorkItemDetails
manual_work_item_details = ManualWorkItemDetails(
forwarded=True,
original_owner=sailpoint.v2025.models.manual_work_item_details_original_owner.ManualWorkItemDetails_originalOwner(
type = 'IDENTITY',
id = '2c7180a46faadee4016fb4e018c20642',
name = 'Michael Michaels', ),
current_owner=sailpoint.v2025.models.manual_work_item_details_current_owner.ManualWorkItemDetails_currentOwner(
type = 'IDENTITY',
id = '2c3780a46faadee4016fb4e018c20652',
name = 'Allen Albertson', ),
modified='2019-08-23T18:52:57.398Z',
status='PENDING',
forward_history=[
sailpoint.v2025.models.approval_forward_history.Approval Forward History(
old_approver_name = 'Frank Mir',
new_approver_name = 'Al Volta',
comment = 'Forwarding from Frank to Al',
modified = '2019-08-23T18:52:57.398Z',
forwarder_name = 'William Wilson',
reassignment_type = 'AUTOMATIC_REASSIGNMENT', )
]
)