Skip to main content

AccessRequestRecommendationItemDetail

Properties

NameTypeDescriptionNotes
identity_idstrIdentity ID for the recommendation[optional]
accessAccessRequestRecommendationItemDetailAccess[optional]
ignoredboolWhether or not the identity has already chosen to ignore this recommendation.[optional]
requestedboolWhether or not the identity has already chosen to request this recommendation.[optional]
viewedboolWhether or not the identity reportedly viewed this recommendation.[optional]
messages[]AccessRecommendationMessage[optional]
translation_messages[]TranslationMessageThe list of translation messages[optional]
}

Example

from sailpoint.v2024.models.access_request_recommendation_item_detail import AccessRequestRecommendationItemDetail

access_request_recommendation_item_detail = AccessRequestRecommendationItemDetail(
identity_id='2c91808570313110017040b06f344ec9',
access=sailpoint.v2024.models.access_request_recommendation_item_detail_access.AccessRequestRecommendationItemDetail_access(
id = '2c9180835d2e5168015d32f890ca1581',
type = 'ACCESS_PROFILE',
name = 'Employee-database-read-write',
description = 'This item grants an employee read and write access to the database', ),
ignored=True,
requested=True,
viewed=True,
messages=[
sailpoint.v2024.models.access_recommendation_message.AccessRecommendationMessage(
interpretation = '95% of your peers have this access.', )
],
translation_messages=[{key=recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH, values=[75, department]}]
)

[Back to top]