mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
1.7 KiB
1.7 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-entitlement1-manually-updated-fields | Entitlement1ManuallyUpdatedFields | Entitlement1ManuallyUpdatedFields | Entitlement1ManuallyUpdatedFields | pythonsdk |
|
/tools/sdk/python/v2024/models/entitlement1-manually-updated-fields |
|
Entitlement1ManuallyUpdatedFields
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| display_name | bool | True if the entitlements name was updated manually via entitlement import csv or patch endpoint. False means that property value has not been change after first entitlement aggregation. Field refers to Entitlement response schema > name property. |
[optional] [default to False] |
| description | bool | True if the entitlement description was updated manually via entitlement import csv or patch endpoint. False means that property value has not been change after first entitlement aggregation. Field refers to Entitlement response schema > description property. |
[optional] [default to False] |
| } |
Example
from sailpoint.v2024.models.entitlement1_manually_updated_fields import Entitlement1ManuallyUpdatedFields
entitlement1_manually_updated_fields = Entitlement1ManuallyUpdatedFields(
display_name=True,
description=True
)