Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/ReviewRecommendation.md
2025-02-20 12:59:19 -05:00

1.1 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-review-recommendation ReviewRecommendation ReviewRecommendation ReviewRecommendation pythonsdk
python
Python
sdk
ReviewRecommendation
V2024ReviewRecommendation
/tools/sdk/python/v2024/models/review-recommendation
SDK
Software Development Kit
ReviewRecommendation
V2024ReviewRecommendation

ReviewRecommendation

Properties

Name Type Description Notes
recommendation str The recommendation from IAI at the time of the decision. This field will be null if no recommendation was made. [optional]
reasons []str A list of reasons for the recommendation. [optional]
timestamp datetime The time at which the recommendation was recorded. [optional]
}

Example

from sailpoint.v2024.models.review_recommendation import ReviewRecommendation

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

[Back to top]