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,35 @@
---
id: v2024-reassignment1
title: Reassignment1
pagination_label: Reassignment1
sidebar_label: Reassignment1
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'Reassignment1', 'V2024Reassignment1']
slug: /tools/sdk/python/v2024/models/reassignment1
tags: ['SDK', 'Software Development Kit', 'Reassignment1', 'V2024Reassignment1']
---
# Reassignment1
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**var_from** | [**CertificationReference1**](certification-reference1) | | [optional]
**comment** | **str** | Comments from the previous reviewer. | [optional]
}
## Example
```python
from sailpoint.v2024.models.reassignment1 import Reassignment1
reassignment1 = Reassignment1(
var_from=sailpoint.v2024.models.certification_reference_1.CertificationReference_1(),
comment='Please review'
)
```
[[Back to top]](#)