adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2024-email-status-dto
title: EmailStatusDto
pagination_label: EmailStatusDto
sidebar_label: EmailStatusDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'EmailStatusDto', 'V2024EmailStatusDto']
slug: /tools/sdk/powershell/v2024/models/email-status-dto
tags: ['SDK', 'Software Development Kit', 'EmailStatusDto', 'V2024EmailStatusDto']
---
# EmailStatusDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | | [optional]
**Email** | Pointer to **String** | | [optional]
**IsVerifiedByDomain** | Pointer to **Boolean** | | [optional]
**VerificationStatus** | Pointer to **Enum** [ "PENDING", "SUCCESS", "FAILED" ] | | [optional]
## Examples
- Prepare the resource
```powershell
$EmailStatusDto = Initialize-PSSailpoint.V2024EmailStatusDto -Id null `
-Email sender@example.com `
-IsVerifiedByDomain false `
-VerificationStatus null
```
- Convert the resource to JSON
```powershell
$EmailStatusDto | ConvertTo-JSON
```
[[Back to top]](#)