Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/PasswordInfoQueryDTO.md
2025-02-20 12:59:19 -05:00

925 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-password-info-query-dto PasswordInfoQueryDTO PasswordInfoQueryDTO PasswordInfoQueryDTO pythonsdk
python
Python
sdk
PasswordInfoQueryDTO
V2024PasswordInfoQueryDTO
/tools/sdk/python/v2024/models/password-info-query-dto
SDK
Software Development Kit
PasswordInfoQueryDTO
V2024PasswordInfoQueryDTO

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

from sailpoint.v2024.models.password_info_query_dto import PasswordInfoQueryDTO

password_info_query_dto = PasswordInfoQueryDTO(
user_name='Abby.Smith',
source_name='My-AD'
)

[Back to top]