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

1.4 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
v2024-notification-template-context NotificationTemplateContext NotificationTemplateContext NotificationTemplateContext pythonsdk
python
Python
sdk
NotificationTemplateContext
V2024NotificationTemplateContext
/tools/sdk/python/v2024/models/notification-template-context
SDK
Software Development Kit
NotificationTemplateContext
V2024NotificationTemplateContext

NotificationTemplateContext

Properties

Name Type Description Notes
attributes map[string]object A JSON object that stores the context. [optional]
created datetime When the global context was created [optional]
modified datetime When the global context was last modified [optional]
}

Example

from sailpoint.v2024.models.notification_template_context import NotificationTemplateContext

notification_template_context = NotificationTemplateContext(
attributes={productUrl=https://test-org.identitysoon.com, brandingConfigs={default={narrowLogoURL=null, productName=SailPoint, standardLogoURL=null, navigationColor=011E64, actionButtonColor=20B2DE, emailFromAddress=null, activeLinkColor=20B2DE, loginInformationalMessage=null}}},
created='2020-04-15T16:16:47.525Z',
modified='2020-04-15T16:16:47.525Z'
)

[Back to top]