starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,38 @@
---
id: beta-lookup-step
title: LookupStep
pagination_label: LookupStep
sidebar_label: LookupStep
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'LookupStep', 'BetaLookupStep']
slug: /tools/sdk/python/beta/models/lookup-step
tags: ['SDK', 'Software Development Kit', 'LookupStep', 'BetaLookupStep']
---
# 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**](reassignment-type-enum) | | [optional]
}
## Example
```python
from sailpoint.beta.models.lookup_step import LookupStep
lookup_step = LookupStep(
reassigned_to_id='869320b6b6f34a169b6178b1a865e66f',
reassigned_from_id='51948a8f306a4e7a9a6f8f5d032fa59e',
reassignment_type='AUTOMATIC_REASSIGNMENT'
)
```
[[Back to top]](#)