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,40 @@
---
id: beta-sod-exempt-criteria
title: SodExemptCriteria
pagination_label: SodExemptCriteria
sidebar_label: SodExemptCriteria
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SodExemptCriteria', 'BetaSodExemptCriteria']
slug: /tools/sdk/python/beta/models/sod-exempt-criteria
tags: ['SDK', 'Software Development Kit', 'SodExemptCriteria', 'BetaSodExemptCriteria']
---
# SodExemptCriteria
Details of the Entitlement criteria
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**existing** | **bool** | If the entitlement already belonged to the user or not. | [optional] [default to False]
**type** | [**DtoType**](dto-type) | | [optional]
**id** | **str** | Entitlement ID | [optional]
**name** | **str** | Entitlement name | [optional]
}
## Example
```python
from sailpoint.beta.models.sod_exempt_criteria import SodExemptCriteria
sod_exempt_criteria = SodExemptCriteria(
existing=True,
type='IDENTITY',
id='2c918085771e9d3301773b3cb66f6398',
name='My HR Entitlement'
)
```
[[Back to top]](#)