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,41 @@
---
id: v2024-app-account-details-source-account
title: AppAccountDetailsSourceAccount
pagination_label: AppAccountDetailsSourceAccount
sidebar_label: AppAccountDetailsSourceAccount
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'AppAccountDetailsSourceAccount', 'V2024AppAccountDetailsSourceAccount']
slug: /tools/sdk/python/v2024/models/app-account-details-source-account
tags: ['SDK', 'Software Development Kit', 'AppAccountDetailsSourceAccount', 'V2024AppAccountDetailsSourceAccount']
---
# AppAccountDetailsSourceAccount
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | The account ID | [optional]
**native_identity** | **str** | The native identity of account | [optional]
**display_name** | **str** | The display name of account | [optional]
**source_id** | **str** | The source ID of account | [optional]
**source_display_name** | **str** | The source name of account | [optional]
}
## Example
```python
from sailpoint.v2024.models.app_account_details_source_account import AppAccountDetailsSourceAccount
app_account_details_source_account = AppAccountDetailsSourceAccount(
id='fbf4f72280304f1a8bc808fc2a3bcf7b',
native_identity='CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com',
display_name='Abby Smith',
source_id='10efa58ea3954883b52bf74f489ce8f9',
source_display_name='ODS-AD-SOURCE'
)
```
[[Back to top]](#)