mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
---
|
||||
id: v2024-send-test-notification-request-dto
|
||||
title: SendTestNotificationRequestDto
|
||||
pagination_label: SendTestNotificationRequestDto
|
||||
sidebar_label: SendTestNotificationRequestDto
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'SendTestNotificationRequestDto', 'V2024SendTestNotificationRequestDto']
|
||||
slug: /tools/sdk/python/v2024/models/send-test-notification-request-dto
|
||||
tags: ['SDK', 'Software Development Kit', 'SendTestNotificationRequestDto', 'V2024SendTestNotificationRequestDto']
|
||||
---
|
||||
|
||||
# SendTestNotificationRequestDto
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**key** | **str** | The template notification key. | [optional]
|
||||
**medium** | **Enum** [ 'EMAIL', 'SLACK', 'TEAMS' ] | The notification medium. Has to be one of the following enum values. | [optional]
|
||||
**context** | **object** | A Json object that denotes the context specific to the template. | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v2024.models.send_test_notification_request_dto import SendTestNotificationRequestDto
|
||||
|
||||
send_test_notification_request_dto = SendTestNotificationRequestDto(
|
||||
key='cloud_manual_work_item_summary',
|
||||
medium='EMAIL',
|
||||
context=None
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user