starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2024-review-recommendation
title: ReviewRecommendation
pagination_label: ReviewRecommendation
sidebar_label: ReviewRecommendation
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ReviewRecommendation', 'V2024ReviewRecommendation']
slug: /tools/sdk/python/v2024/models/review-recommendation
tags: ['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
```python
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]](#)