Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/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
beta-email-status-dto EmailStatusDto EmailStatusDto EmailStatusDto powershellsdk
powershell
PowerShell
sdk
EmailStatusDto
BetaEmailStatusDto
/tools/sdk/powershell/beta/models/email-status-dto
SDK
Software Development Kit
EmailStatusDto
BetaEmailStatusDto

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.BetaEmailStatusDto  -Id null `
 -Email sender@example.com `
 -IsVerifiedByDomain false `
 -VerificationStatus null
  • Convert the resource to JSON
$EmailStatusDto | ConvertTo-JSON

[Back to top]