mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.5 KiB
1.5 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-email-notification-option | EmailNotificationOption | EmailNotificationOption | EmailNotificationOption | pythonsdk |
|
/tools/sdk/python/beta/models/email-notification-option |
|
EmailNotificationOption
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| notify_managers | bool | If true, then the manager is notified of the lifecycle state change. | [optional] [default to False] |
| notify_all_admins | bool | If true, then all the admins are notified of the lifecycle state change. | [optional] [default to False] |
| notify_specific_users | bool | If true, then the users specified in "emailAddressList" below are notified of lifecycle state change. | [optional] [default to False] |
| email_address_list | []str | List of user email addresses. If "notifySpecificUsers" option is true, then these users are notified of lifecycle state change. | [optional] |
| } |
Example
from sailpoint.beta.models.email_notification_option import EmailNotificationOption
email_notification_option = EmailNotificationOption(
notify_managers=True,
notify_all_admins=True,
notify_specific_users=True,
email_address_list=[test@test.com, test2@test.com]
)