Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/EmailStatusDto.md
2025-05-07 14:37:48 +00:00

1.0 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-email-status-dto EmailStatusDto EmailStatusDto EmailStatusDto powershellsdk
powershell
PowerShell
sdk
EmailStatusDto
V2025EmailStatusDto
/tools/sdk/powershell/v2025/models/email-status-dto
SDK
Software Development Kit
EmailStatusDto
V2025EmailStatusDto

EmailStatusDto

Properties

Name Type Description Notes
Id String [optional]
Email String [optional]
IsVerifiedByDomain Boolean [optional]
VerificationStatus Enum [ "PENDING", "SUCCESS", "FAILED" ] [optional]

Examples

  • Prepare the resource
$EmailStatusDto = Initialize-V2025EmailStatusDto  -Id null `
 -Email sender@example.com `
 -IsVerifiedByDomain false `
 -VerificationStatus null
  • Convert the resource to JSON
$EmailStatusDto | ConvertTo-JSON

[Back to top]