Emailstatusdto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Unique identifier for the verified sender address | [optional] |
| str | The verified sender email address | [optional] | |
| is_verified_by_domain | bool | Whether the sender address is verified by domain | [optional] [default to False] |
| verification_status | Enum [ 'PENDING', 'SUCCESS', 'FAILED', 'NA' ] | The verification status of the sender address | [optional] |
| region | str | The AWS SES region the sender address is associated with | [optional] |
| } |
Example
from sailpoint.notifications.models.emailstatusdto import Emailstatusdto
emailstatusdto = Emailstatusdto(
id='',
email='sender@example.com',
is_verified_by_domain=False,
verification_status='SUCCESS',
region='us-east-1'
)