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-preferences-dto
title: PreferencesDto
pagination_label: PreferencesDto
sidebar_label: PreferencesDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'PreferencesDto', 'V2025PreferencesDto']
slug: /tools/sdk/powershell/v2025/models/preferences-dto
tags: ['SDK', 'Software Development Kit', 'PreferencesDto', 'V2025PreferencesDto']
---
# PreferencesDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Key** | **String** | The template notification key. | [optional]
**Mediums** | [**[]Medium**](medium) | List of preferred notification mediums, i.e., the mediums (or method) for which notifications are enabled. More mediums may be added in the future. | [optional]
**Modified** | **System.DateTime** | Modified date of preference | [optional]
## Examples
- Prepare the resource
```powershell
$PreferencesDto = Initialize-PSSailpoint.V2025PreferencesDto -Key cloud_manual_work_item_summary `
-Mediums [EMAIL] `
-Modified 2020-05-15T14:37:06.909Z
```
- Convert the resource to JSON
```powershell
$PreferencesDto | ConvertTo-JSON
```
[[Back to top]](#)