--- id: v2024-source-app title: SourceApp pagination_label: SourceApp sidebar_label: SourceApp sidebar_class_name: pythonsdk keywords: ['python', 'Python', 'sdk', 'SourceApp', 'V2024SourceApp'] slug: /tools/sdk/python/v2024/models/source-app tags: ['SDK', 'Software Development Kit', 'SourceApp', 'V2024SourceApp'] --- # SourceApp ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **str** | The source app id | [optional] **cloud_app_id** | **str** | The deprecated source app id | [optional] **name** | **str** | The source app name | [optional] **created** | **datetime** | Time when the source app was created | [optional] **modified** | **datetime** | Time when the source app was last modified | [optional] **enabled** | **bool** | True if the source app is enabled | [optional] [default to False] **provision_request_enabled** | **bool** | True if the source app is provision request enabled | [optional] [default to False] **description** | **str** | The description of the source app | [optional] **match_all_accounts** | **bool** | True if the source app match all accounts | [optional] [default to False] **app_center_enabled** | **bool** | True if the source app is shown in the app center | [optional] [default to True] **account_source** | [**SourceAppAccountSource**](source-app-account-source) | | [optional] **owner** | [**BaseReferenceDto**](base-reference-dto) | The owner of source app | [optional] } ## Example ```python from sailpoint.v2024.models.source_app import SourceApp source_app = SourceApp( id='2c91808874ff91550175097daaec161c', cloud_app_id='9854520', name='my app', created='2020-10-08T18:33:52.029Z', modified='2020-10-08T18:33:52.029Z', enabled=True, provision_request_enabled=True, description='the source app for engineers', match_all_accounts=True, app_center_enabled=True, account_source=sailpoint.v2024.models.source_app_account_source.SourceApp_accountSource( id = '2c9180827ca885d7017ca8ce28a000eb', type = 'SOURCE', name = 'ODS-AD-Source', use_for_password_management = True, password_policies = [{type=PASSWORD_POLICY, id=006a072ecc6647f68bba9f4a4ad34649, name=Password Policy 1}], ), owner=sailpoint.v2024.models.base_reference_dto.BaseReferenceDto( type = 'IDENTITY', id = '2c91808568c529c60168cca6f90c1313', name = 'William Wilson', ) ) ``` [[Back to top]](#)