Skip to main content

EntitlementRecommendationAssignee

Describes the target assignee for entitlement recommendations.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY', 'GOVERNANCE_GROUP', 'SOURCE_OWNER', 'ENTITLEMENT_OWNER' ]The type of assignee.[required]
valuestrThe ID of the identity or governance group to assign to.[required]
}

Example

from sailpoint.suggested_entitlement_description.models.entitlement_recommendation_assignee import EntitlementRecommendationAssignee

entitlement_recommendation_assignee = EntitlementRecommendationAssignee(
type='IDENTITY',
value='2c91808a7f3b2e8a017f3c3e5f6d0099'
)

[Back to top]