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,39 @@
---
id: v2025-send-test-notification-request-dto
title: SendTestNotificationRequestDto
pagination_label: SendTestNotificationRequestDto
sidebar_label: SendTestNotificationRequestDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SendTestNotificationRequestDto', 'V2025SendTestNotificationRequestDto']
slug: /tools/sdk/powershell/v2025/models/send-test-notification-request-dto
tags: ['SDK', 'Software Development Kit', 'SendTestNotificationRequestDto', 'V2025SendTestNotificationRequestDto']
---
# SendTestNotificationRequestDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Key** | **String** | The template notification key. | [optional]
**Medium** | **Enum** [ "EMAIL", "SLACK", "TEAMS" ] | The notification medium. Has to be one of the following enum values. | [optional]
**Context** | [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | A Json object that denotes the context specific to the template. | [optional]
## Examples
- Prepare the resource
```powershell
$SendTestNotificationRequestDto = Initialize-PSSailpoint.V2025SendTestNotificationRequestDto -Key cloud_manual_work_item_summary `
-Medium null `
-Context null
```
- Convert the resource to JSON
```powershell
$SendTestNotificationRequestDto | ConvertTo-JSON
```
[[Back to top]](#)