Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/AppAccountDetailsSourceAccount.md
2025-02-20 12:59:19 -05:00

1.4 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-app-account-details-source-account AppAccountDetailsSourceAccount AppAccountDetailsSourceAccount AppAccountDetailsSourceAccount pythonsdk
python
Python
sdk
AppAccountDetailsSourceAccount
BetaAppAccountDetailsSourceAccount
/tools/sdk/python/beta/models/app-account-details-source-account
SDK
Software Development Kit
AppAccountDetailsSourceAccount
BetaAppAccountDetailsSourceAccount

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

from sailpoint.beta.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]