Skip to main content

Bulkapproveentitlementrecommendationresult

The result for a single item in a bulk entitlement recommendation approval response.

Properties

NameTypeDescriptionNotes
idstrThe unique identifier of the processed recommendation record.[optional]
statusEnum [ 'SUCCESS', 'FAILURE' ]The outcome of the approval for this item.[optional]
failed_reasonstrThe reason for failure if status is FAILURE; null on success.[optional]
}

Example

from sailpoint.suggested_entitlement_description.models.bulkapproveentitlementrecommendationresult import Bulkapproveentitlementrecommendationresult

bulkapproveentitlementrecommendationresult = Bulkapproveentitlementrecommendationresult(
id='79db50d4-723c-4aa0-a824-83c2205d82d1',
status='SUCCESS',
failed_reason=''
)

[Back to top]