--- id: v2024-email-status-dto title: EmailStatusDto pagination_label: EmailStatusDto sidebar_label: EmailStatusDto sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'EmailStatusDto'] slug: /tools/sdk/powershell/v2024/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.V2024EmailStatusDto -Id null ` -Email sender@example.com ` -IsVerifiedByDomain false ` -VerificationStatus null ``` - Convert the resource to JSON ```powershell $EmailStatusDto | ConvertTo-JSON ``` [[Back to top]](#)