starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -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]](#)