Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/SedPatch.md
2025-04-01 09:23:12 -04:00

820 B

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-sed-patch SedPatch SedPatch SedPatch pythonsdk
python
Python
sdk
SedPatch
V2025SedPatch
/tools/sdk/python/v2025/models/sed-patch
SDK
Software Development Kit
SedPatch
V2025SedPatch

SedPatch

Patch for Suggested Entitlement Description

Properties

Name Type Description Notes
op str desired operation [optional]
path str field to be patched [optional]
value object value to replace with [optional]
}

Example

from sailpoint.v2025.models.sed_patch import SedPatch

sed_patch = SedPatch(
op='replace',
path='status',
value=approved
)

[Back to top]