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: password-info-query-dto
title: PasswordInfoQueryDTO
pagination_label: PasswordInfoQueryDTO
sidebar_label: PasswordInfoQueryDTO
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'PasswordInfoQueryDTO', 'PasswordInfoQueryDTO']
slug: /tools/sdk/python/v3/models/password-info-query-dto
tags: ['SDK', 'Software Development Kit', 'PasswordInfoQueryDTO', 'PasswordInfoQueryDTO']
---
# PasswordInfoQueryDTO
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**user_name** | **str** | The login name of the user | [optional]
**source_name** | **str** | The display name of the source | [optional]
}
## Example
```python
from sailpoint.v3.models.password_info_query_dto import PasswordInfoQueryDTO
password_info_query_dto = PasswordInfoQueryDTO(
user_name='Abby.Smith',
source_name='My-AD'
)
```
[[Back to top]](#)