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,36 @@
---
id: v2024-identity-document-all-of-source
title: IdentityDocumentAllOfSource
pagination_label: IdentityDocumentAllOfSource
sidebar_label: IdentityDocumentAllOfSource
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'IdentityDocumentAllOfSource', 'V2024IdentityDocumentAllOfSource']
slug: /tools/sdk/python/v2024/models/identity-document-all-of-source
tags: ['SDK', 'Software Development Kit', 'IdentityDocumentAllOfSource', 'V2024IdentityDocumentAllOfSource']
---
# IdentityDocumentAllOfSource
Identity's source.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | ID of identity's source. | [optional]
**name** | **str** | Display name of identity's source. | [optional]
}
## Example
```python
from sailpoint.v2024.models.identity_document_all_of_source import IdentityDocumentAllOfSource
identity_document_all_of_source = IdentityDocumentAllOfSource(
id='2c91808b6e9e6fb8016eec1a2b6f7b5f',
name='ODS-HR-Employees'
)
```
[[Back to top]](#)