Skip to main content

UserLevelSummaryDTO

It represents a summary of a user level, including its metadata, attributes, and associated properties.

Properties

NameTypeDescriptionNotes
idstrThe unique identifier of the UserLevel.[optional]
namestrThe human-readable name of the UserLevel.[optional]
descriptionstrA human-readable description of the UserLevel.[optional]
legacy_groupstrThe legacy group associated with the UserLevel, used for backward compatibility for the UserLevel id.[optional]
right_sets[]RightSetDTOList of RightSets associated with the UserLevel.[optional]
customboolIndicates whether the UserLevel is custom.[optional] [default to True]
admin_assignableboolIndicates whether the UserLevel is admin-assignable.[optional] [default to True]
translated_namestrThe translated name of the UserLevel.[optional]
translated_grantstrThe translated grant message for the UserLevel.[optional]
translated_removestrThe translated remove message for the UserLevel.[optional]
ownerBaseReferenceDto[optional]
statusEnum [ 'ACTIVE', 'DRAFT' ]The status of the UserLevel.[optional]
createddatetimeThe creation timestamp of the UserLevel.[optional]
modifieddatetimeThe last modification timestamp of the UserLevel.[optional]
associated_identities_countintThe count of associated identities for the UserLevel.[optional]
}

Example

from sailpoint.v2025.models.user_level_summary_dto import UserLevelSummaryDTO

user_level_summary_dto = UserLevelSummaryDTO(
id='beb02a57-010f-4c29-a6d2-fae9628bda73',
name='Custom User Level Name',
description='This is a description of the CustomUserLevel.',
legacy_group='ORG_ADMIN',
right_sets=[
sailpoint.v2025.models.right_set_dto.RightSetDTO(
id = 'idn:ui-right-set-example',
name = 'Right Set Name',
description = 'This is a description of the RightSet.',
category = 'identity',
rights = [idn:ui-right-set-example:read, idn:ui-right-set-example:write],
right_set_ids = [idn:ui-right-set-example-update, idn:ui-right-set-example-delete],
ui_assignable_child_right_set_ids = [idn:ui-right-set-example-detail, idn:ui-right-set-example-management],
ui_assignable = True,
translated_name = 'Translated Right Set Name',
translated_description = 'This is a translated description of the RightSet.',
parent_id = 'idn:ui-parent-example', )
],
custom=True,
admin_assignable=True,
translated_name='Translated Custom User Level Name',
translated_grant='Grant Message',
translated_remove='Remove Message',
owner=sailpoint.v2025.models.base_reference_dto.BaseReferenceDto(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313',
name = 'William Wilson', ),
status='Active',
created='2023-01-01T12:00Z',
modified='2023-01-02T12:00Z',
associated_identities_count=10
)

[Back to top]