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

1.1 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-preferences-dto PreferencesDto PreferencesDto PreferencesDto pythonsdk
python
Python
sdk
PreferencesDto
BetaPreferencesDto
/tools/sdk/python/beta/models/preferences-dto
SDK
Software Development Kit
PreferencesDto
BetaPreferencesDto

PreferencesDto

Maps an Identity's attribute key to a list of preferred notification mediums.

Properties

Name Type Description Notes
key str The template notification key. [optional]
mediums []Medium List of preferred notification mediums, i.e., the mediums (or method) for which notifications are enabled. More mediums may be added in the future. [optional]
modified datetime Modified date of preference [optional]
}

Example

from sailpoint.beta.models.preferences_dto import PreferencesDto

preferences_dto = PreferencesDto(
key='cloud_manual_work_item_summary',
mediums=[EMAIL],
modified='2020-05-15T14:37:06.909Z'
)

[Back to top]