Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/OwnerReference.md
2025-04-02 00:29:55 +00:00

1.2 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
v2025-owner-reference OwnerReference OwnerReference OwnerReference pythonsdk
python
Python
sdk
OwnerReference
V2025OwnerReference
/tools/sdk/python/v2025/models/owner-reference
SDK
Software Development Kit
OwnerReference
V2025OwnerReference

OwnerReference

Owner of the object.

Properties

Name Type Description Notes
type Enum [ 'IDENTITY' ] Owner type. This field must be either left null or set to 'IDENTITY' on input, otherwise a 400 Bad Request error will result. [optional]
id str Owner's identity ID. [optional]
name str Owner's name. It may be left null or omitted in a POST or PATCH. If set, it must match the current value of the owner's display name, otherwise a 400 Bad Request error will result. [optional]
}

Example

from sailpoint.v2025.models.owner_reference import OwnerReference

owner_reference = OwnerReference(
type='IDENTITY',
id='2c9180a46faadee4016fb4e018c20639',
name='support'
)

[Back to top]