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

936 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
reassign-reference ReassignReference ReassignReference ReassignReference pythonsdk
python
Python
sdk
ReassignReference
ReassignReference
/tools/sdk/python/v3/models/reassign-reference
SDK
Software Development Kit
ReassignReference
ReassignReference

ReassignReference

Properties

Name Type Description Notes
id str The ID of item or identity being reassigned. [required]
type Enum [ 'TARGET_SUMMARY', 'ITEM', 'IDENTITY_SUMMARY' ] The type of item or identity being reassigned. [required]
}

Example

from sailpoint.v3.models.reassign_reference import ReassignReference

reassign_reference = ReassignReference(
id='ef38f94347e94562b5bb8424a56397d8',
type='ITEM'
)

[Back to top]