mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
update to doc files
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
---
|
||||
id: email-status-dto
|
||||
title: EmailStatusDto
|
||||
pagination_label: EmailStatusDto
|
||||
sidebar_label: EmailStatusDto
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'EmailStatusDto']
|
||||
slug: /tools/sdk/powershell/beta/models/email-status-dto
|
||||
tags: ['SDK', 'Software Development Kit', 'EmailStatusDto']
|
||||
---
|
||||
|
||||
|
||||
# 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.BetaEmailStatusDto -Id null `
|
||||
-Email sender@example.com `
|
||||
-IsVerifiedByDomain false `
|
||||
-VerificationStatus null
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$EmailStatusDto | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user