Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/LookupStep.md
2025-02-20 12:59:19 -05:00

1.1 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
v2024-lookup-step LookupStep LookupStep LookupStep pythonsdk
python
Python
sdk
LookupStep
V2024LookupStep
/tools/sdk/python/v2024/models/lookup-step
SDK
Software Development Kit
LookupStep
V2024LookupStep

LookupStep

The definition of an Identity according to the Reassignment Configuration service

Properties

Name Type Description Notes
reassigned_to_id str The ID of the Identity who work is reassigned to [optional]
reassigned_from_id str The ID of the Identity who work is reassigned from [optional]
reassignment_type ReassignmentTypeEnum [optional]
}

Example

from sailpoint.v2024.models.lookup_step import LookupStep

lookup_step = LookupStep(
reassigned_to_id='869320b6b6f34a169b6178b1a865e66f',
reassigned_from_id='51948a8f306a4e7a9a6f8f5d032fa59e',
reassignment_type='AUTOMATIC_REASSIGNMENT'
)

[Back to top]