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,39 @@
---
id: beta-non-employee-source-lite
title: NonEmployeeSourceLite
pagination_label: NonEmployeeSourceLite
sidebar_label: NonEmployeeSourceLite
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'NonEmployeeSourceLite', 'BetaNonEmployeeSourceLite']
slug: /tools/sdk/python/beta/models/non-employee-source-lite
tags: ['SDK', 'Software Development Kit', 'NonEmployeeSourceLite', 'BetaNonEmployeeSourceLite']
---
# NonEmployeeSourceLite
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | Non-Employee source id. | [optional]
**source_id** | **str** | Source Id associated with this non-employee source. | [optional]
**name** | **str** | Source name associated with this non-employee source. | [optional]
**description** | **str** | Source description associated with this non-employee source. | [optional]
}
## Example
```python
from sailpoint.beta.models.non_employee_source_lite import NonEmployeeSourceLite
non_employee_source_lite = NonEmployeeSourceLite(
id='a0303682-5e4a-44f7-bdc2-6ce6112549c1',
source_id='2c91808568c529c60168cca6f90c1313',
name='Retail',
description='Source description'
)
```
[[Back to top]](#)