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,47 @@
---
id: v2024-recommendation-request-dto
title: RecommendationRequestDto
pagination_label: RecommendationRequestDto
sidebar_label: RecommendationRequestDto
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RecommendationRequestDto', 'V2024RecommendationRequestDto']
slug: /tools/sdk/python/v2024/models/recommendation-request-dto
tags: ['SDK', 'Software Development Kit', 'RecommendationRequestDto', 'V2024RecommendationRequestDto']
---
# RecommendationRequestDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**requests** | [**[]RecommendationRequest**](recommendation-request) | | [optional]
**exclude_interpretations** | **bool** | Exclude interpretations in the response if \"true\". Return interpretations in the response if this attribute is not specified. | [optional] [default to False]
**include_translation_messages** | **bool** | When set to true, the calling system uses the translated messages for the specified language | [optional] [default to False]
**include_debug_information** | **bool** | Returns the recommender calculations if set to true | [optional] [default to False]
**prescribe_mode** | **bool** | When set to true, uses prescribedRulesRecommenderConfig to get identity attributes and peer group threshold instead of standard config. | [optional] [default to False]
}
## Example
```python
from sailpoint.v2024.models.recommendation_request_dto import RecommendationRequestDto
recommendation_request_dto = RecommendationRequestDto(
requests=[
sailpoint.v2024.models.recommendation_request.RecommendationRequest(
identity_id = '2c938083633d259901633d25c68c00fa',
item = sailpoint.v2024.models.access_item_ref.AccessItemRef(
id = '2c938083633d259901633d2623ec0375',
type = 'ENTITLEMENT', ), )
],
exclude_interpretations=False,
include_translation_messages=False,
include_debug_information=True,
prescribe_mode=False
)
```
[[Back to top]](#)