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,36 @@
---
id: v2024-sod-violation-check
title: SodViolationCheck
pagination_label: SodViolationCheck
sidebar_label: SodViolationCheck
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SodViolationCheck', 'V2024SodViolationCheck']
slug: /tools/sdk/python/v2024/models/sod-violation-check
tags: ['SDK', 'Software Development Kit', 'SodViolationCheck', 'V2024SodViolationCheck']
---
# SodViolationCheck
An object referencing an SOD violation check
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**request_id** | **str** | The id of the original request | [required]
**created** | **datetime** | The date-time when this request was created. | [optional] [readonly]
}
## Example
```python
from sailpoint.v2024.models.sod_violation_check import SodViolationCheck
sod_violation_check = SodViolationCheck(
request_id='089899f13a8f4da7824996191587bab9',
created='2020-01-01T00:00Z'
)
```
[[Back to top]](#)