Skip to main content

Preferencesdto

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

Properties

NameTypeDescriptionNotes
keystrThe template notification key.[optional]
mediums[]MediumList of preferred notification mediums, i.e., the mediums (or method) for which notifications are enabled. More mediums may be added in the future.[optional]
modifieddatetimeModified date of preference[optional]
}

Example

from sailpoint.notifications.models.preferencesdto import Preferencesdto

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

[Back to top]