starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,39 @@
---
id: v2024-email-status-dto
title: EmailStatusDto
pagination_label: EmailStatusDto
sidebar_label: EmailStatusDto
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'EmailStatusDto', 'V2024EmailStatusDto']
slug: /tools/sdk/python/v2024/models/email-status-dto
tags: ['SDK', 'Software Development Kit', 'EmailStatusDto', 'V2024EmailStatusDto']
---
# EmailStatusDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | | [optional]
**email** | **str** | | [optional]
**is_verified_by_domain** | **bool** | | [optional]
**verification_status** | **Enum** [ 'PENDING', 'SUCCESS', 'FAILED' ] | | [optional]
}
## Example
```python
from sailpoint.v2024.models.email_status_dto import EmailStatusDto
email_status_dto = EmailStatusDto(
id='',
email='sender@example.com',
is_verified_by_domain=False,
verification_status='PENDING'
)
```
[[Back to top]](#)