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,38 @@
---
id: v2024-identity-document-all-of-manager
title: IdentityDocumentAllOfManager
pagination_label: IdentityDocumentAllOfManager
sidebar_label: IdentityDocumentAllOfManager
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'IdentityDocumentAllOfManager', 'V2024IdentityDocumentAllOfManager']
slug: /tools/sdk/python/v2024/models/identity-document-all-of-manager
tags: ['SDK', 'Software Development Kit', 'IdentityDocumentAllOfManager', 'V2024IdentityDocumentAllOfManager']
---
# IdentityDocumentAllOfManager
Identity's manager.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | ID of identity's manager. | [optional]
**name** | **str** | Name of identity's manager. | [optional]
**display_name** | **str** | Display name of identity's manager. | [optional]
}
## Example
```python
from sailpoint.v2024.models.identity_document_all_of_manager import IdentityDocumentAllOfManager
identity_document_all_of_manager = IdentityDocumentAllOfManager(
id='2c9180867dfe694b017e208e27c05799',
name='Amanda.Ross',
display_name='Amanda.Ross'
)
```
[[Back to top]](#)