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-user-app-source-app
title: UserAppSourceApp
pagination_label: UserAppSourceApp
sidebar_label: UserAppSourceApp
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'UserAppSourceApp', 'BetaUserAppSourceApp']
slug: /tools/sdk/python/beta/models/user-app-source-app
tags: ['SDK', 'Software Development Kit', 'UserAppSourceApp', 'BetaUserAppSourceApp']
---
# UserAppSourceApp
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | the source app ID | [optional]
**type** | **str** | It will always be \"APPLICATION\" | [optional]
**name** | **str** | the source app name | [optional]
}
## Example
```python
from sailpoint.beta.models.user_app_source_app import UserAppSourceApp
user_app_source_app = UserAppSourceApp(
id='edcb0951812949d085b60cd8bf35bc78',
type='APPLICATION',
name='test-app'
)
```
[[Back to top]](#)