Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/EmailStatusDto.md
2025-01-28 13:29:29 -05:00

1.1 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
v2024-email-status-dto EmailStatusDto EmailStatusDto EmailStatusDto powershellsdk
powershell
PowerShell
sdk
EmailStatusDto
V2024EmailStatusDto
/tools/sdk/powershell/v2024/models/email-status-dto
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
$EmailStatusDto = Initialize-PSSailpoint.V2024EmailStatusDto  -Id null `
 -Email sender@example.com `
 -IsVerifiedByDomain false `
 -VerificationStatus null
  • Convert the resource to JSON
$EmailStatusDto | ConvertTo-JSON

[Back to top]