Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/OwnerReferenceDto.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-owner-reference-dto OwnerReferenceDto OwnerReferenceDto OwnerReferenceDto pythonsdk
python
Python
sdk
OwnerReferenceDto
V2024OwnerReferenceDto
/tools/sdk/python/v2024/models/owner-reference-dto
SDK
Software Development Kit
OwnerReferenceDto
V2024OwnerReferenceDto

OwnerReferenceDto

Simplified DTO for the owner object of the entitlement

Properties

Name Type Description Notes
id str The owner id for the entitlement [optional]
name str The owner name for the entitlement [optional]
type Enum [ 'IDENTITY' ] The type of the owner. Initially only type IDENTITY is supported [optional]
}

Example

from sailpoint.v2024.models.owner_reference_dto import OwnerReferenceDto

owner_reference_dto = OwnerReferenceDto(
id='2a2fdacca5e345f18bf7970cfbb8fec2',
name='identity 1',
type='IDENTITY'
)

[Back to top]