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,35 @@
---
id: beta-entity-created-by-dto
title: EntityCreatedByDTO
pagination_label: EntityCreatedByDTO
sidebar_label: EntityCreatedByDTO
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'EntityCreatedByDTO', 'BetaEntityCreatedByDTO']
slug: /tools/sdk/python/beta/models/entity-created-by-dto
tags: ['SDK', 'Software Development Kit', 'EntityCreatedByDTO', 'BetaEntityCreatedByDTO']
---
# EntityCreatedByDTO
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | ID of the creator | [optional]
**display_name** | **str** | The display name of the creator | [optional]
}
## Example
```python
from sailpoint.beta.models.entity_created_by_dto import EntityCreatedByDTO
entity_created_by_dto = EntityCreatedByDTO(
id='2c918090761a5aac0176215c46a62d58',
display_name='Ashley.Pierce'
)
```
[[Back to top]](#)