Skip to main content

Reviewrecommendation

Properties

NameTypeDescriptionNotes
recommendationstrThe recommendation from IAI at the time of the decision. This field will be null if no recommendation was made.[optional]
reasons[]strA list of reasons for the recommendation.[optional]
timestampdatetimeThe time at which the recommendation was recorded.[optional]
}

Example

from sailpoint.certifications.models.reviewrecommendation import Reviewrecommendation

reviewrecommendation = Reviewrecommendation(
recommendation='',
reasons=["Reason 1","Reason 2"],
timestamp='2020-06-01T13:49:37.385Z'
)

[Back to top]