mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
starting point for adding python sdk docs
This commit is contained in:
37
docs/tools/sdk/python/Reference/V2024/Models/FormUsedBy.md
Normal file
37
docs/tools/sdk/python/Reference/V2024/Models/FormUsedBy.md
Normal file
@@ -0,0 +1,37 @@
|
||||
---
|
||||
id: v2024-form-used-by
|
||||
title: FormUsedBy
|
||||
pagination_label: FormUsedBy
|
||||
sidebar_label: FormUsedBy
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'FormUsedBy', 'V2024FormUsedBy']
|
||||
slug: /tools/sdk/python/v2024/models/form-used-by
|
||||
tags: ['SDK', 'Software Development Kit', 'FormUsedBy', 'V2024FormUsedBy']
|
||||
---
|
||||
|
||||
# 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.v2024.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]](#)
|
||||
|
||||
Reference in New Issue
Block a user