Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/RoleAssignmentRef.md
2025-04-01 09:23:12 -04:00

1.0 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-role-assignment-ref RoleAssignmentRef RoleAssignmentRef RoleAssignmentRef pythonsdk
python
Python
sdk
RoleAssignmentRef
V2025RoleAssignmentRef
/tools/sdk/python/v2025/models/role-assignment-ref
SDK
Software Development Kit
RoleAssignmentRef
V2025RoleAssignmentRef

RoleAssignmentRef

Properties

Name Type Description Notes
id str Assignment Id [optional]
role BaseReferenceDto [optional]
}

Example

from sailpoint.v2025.models.role_assignment_ref import RoleAssignmentRef

role_assignment_ref = RoleAssignmentRef(
id='1cbb0705b38c4226b1334eadd8874086',
role=sailpoint.v2025.models.base_reference_dto.BaseReferenceDto(
                    type = 'IDENTITY', 
                    id = '2c91808568c529c60168cca6f90c1313', 
                    name = 'William Wilson', )
)

[Back to top]