Skip to main content

UserLevelPublishSummary

It represents a summary of a user level publish operation, including its metadata and status.

Properties

NameTypeDescriptionNotes
user_level_idstrThe unique identifier of the UserLevel.[optional]
publishboolIndicates whether the API call triggered a publish operation.[optional] [default to False]
statusstrThe status of the UserLevel publish operation.[optional]
modifieddatetimeThe last modification timestamp of the UserLevel.[optional]
}

Example

from sailpoint.v2025.models.user_level_publish_summary import UserLevelPublishSummary

user_level_publish_summary = UserLevelPublishSummary(
user_level_id='6e110911-5984-491b-be74-2707980a46a7',
publish=True,
status='ACTIVE',
modified='2023-01-02T12:00Z'
)

[Back to top]