add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2025-send-test-notification-request-dto
title: SendTestNotificationRequestDto
pagination_label: SendTestNotificationRequestDto
sidebar_label: SendTestNotificationRequestDto
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SendTestNotificationRequestDto', 'V2025SendTestNotificationRequestDto']
slug: /tools/sdk/python/v2025/models/send-test-notification-request-dto
tags: ['SDK', 'Software Development Kit', 'SendTestNotificationRequestDto', 'V2025SendTestNotificationRequestDto']
---
# 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.v2025.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]](#)