Skip to main content

ManualWorkItemDetails

Properties

NameTypeDescriptionNotes
forwardedboolTrue if the request for this item was forwarded from one owner to another.[optional] [default to False]
original_ownerManualWorkItemDetailsOriginalOwner[optional]
current_ownerManualWorkItemDetailsCurrentOwner[optional]
modifieddatetimeTime at which item was modified.[optional]
statusManualWorkItemState[optional]
forward_history[]ApprovalForwardHistoryThe history of approval forward action.[optional]
}

Example

from sailpoint.v3.models.manual_work_item_details import ManualWorkItemDetails

manual_work_item_details = ManualWorkItemDetails(
forwarded=True,
original_owner=sailpoint.v3.models.manual_work_item_details_original_owner.ManualWorkItemDetails_originalOwner(
type = 'IDENTITY',
id = '2c7180a46faadee4016fb4e018c20642',
name = 'Michael Michaels', ),
current_owner=sailpoint.v3.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.v3.models.approval_forward_history.ApprovalForwardHistory(
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', )
]
)

[Back to top]