--- id: v2025-app-account-details-source-account title: AppAccountDetailsSourceAccount pagination_label: AppAccountDetailsSourceAccount sidebar_label: AppAccountDetailsSourceAccount sidebar_class_name: pythonsdk keywords: ['python', 'Python', 'sdk', 'AppAccountDetailsSourceAccount', 'V2025AppAccountDetailsSourceAccount'] slug: /tools/sdk/python/v2025/models/app-account-details-source-account tags: ['SDK', 'Software Development Kit', 'AppAccountDetailsSourceAccount', 'V2025AppAccountDetailsSourceAccount'] --- # 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.v2025.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]](#)