mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
2.1 KiB
2.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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-recommendation-request-dto | RecommendationRequestDto | RecommendationRequestDto | RecommendationRequestDto | pythonsdk |
|
/tools/sdk/python/v2025/models/recommendation-request-dto |
|
RecommendationRequestDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| requests | []RecommendationRequest | [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
from sailpoint.v2025.models.recommendation_request_dto import RecommendationRequestDto
recommendation_request_dto = RecommendationRequestDto(
requests=[
sailpoint.v2025.models.recommendation_request.Recommendation Request(
identity_id = '2c938083633d259901633d25c68c00fa',
item = sailpoint.v2025.models.access_item_ref.Access Item Ref(
id = '2c938083633d259901633d2623ec0375',
type = 'ENTITLEMENT', ), )
],
exclude_interpretations=False,
include_translation_messages=False,
include_debug_information=True,
prescribe_mode=False
)