mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 04:19:37 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
---
|
||||
id: beta-account-info-dto
|
||||
title: AccountInfoDto
|
||||
pagination_label: AccountInfoDto
|
||||
sidebar_label: AccountInfoDto
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'AccountInfoDto', 'BetaAccountInfoDto']
|
||||
slug: /tools/sdk/python/beta/models/account-info-dto
|
||||
tags: ['SDK', 'Software Development Kit', 'AccountInfoDto', 'BetaAccountInfoDto']
|
||||
---
|
||||
|
||||
# AccountInfoDto
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**native_identity** | **str** | The unique ID of the account generated by the source system | [optional]
|
||||
**display_name** | **str** | Display name for this account | [optional]
|
||||
**uuid** | **str** | UUID associated with this account | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.beta.models.account_info_dto import AccountInfoDto
|
||||
|
||||
account_info_dto = AccountInfoDto(
|
||||
native_identity='CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com',
|
||||
display_name='Abby.Smith',
|
||||
uuid='{ad9fc391-246d-40af-b248-b6556a2b7c01}'
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user