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,37 @@
---
id: beta-form-used-by
title: FormUsedBy
pagination_label: FormUsedBy
sidebar_label: FormUsedBy
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'FormUsedBy', 'BetaFormUsedBy']
slug: /tools/sdk/python/beta/models/form-used-by
tags: ['SDK', 'Software Development Kit', 'FormUsedBy', 'BetaFormUsedBy']
---
# FormUsedBy
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | **Enum** [ 'WORKFLOW', 'SOURCE', 'MySailPoint' ] | FormUsedByType value. WORKFLOW FormUsedByTypeWorkflow SOURCE FormUsedByTypeSource MySailPoint FormUsedByType | [optional]
**id** | **str** | Unique identifier of the system using the form. | [optional]
**name** | **str** | Name of the system using the form. | [optional]
}
## Example
```python
from sailpoint.beta.models.form_used_by import FormUsedBy
form_used_by = FormUsedBy(
type='WORKFLOW',
id='61940a92-5484-42bc-bc10-b9982b218cdf',
name='Access Request Form'
)
```
[[Back to top]](#)