Sha256: 7977c1bbf586b565078b0a98ed0fbbbd8fdb432e7b88be3907c102aa3167b4f9

Contents?: true

Size: 1.38 KB

Versions: 2

Compression:

Stored size: 1.38 KB

Contents

# ElasticEmail::EmailValidationResult

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **account** | **String** | Local part of an email | [optional] |
| **domain** | **String** | Name of selected domain. | [optional] |
| **email** | **String** | Full email address that was verified | [optional] |
| **suggested_spelling** | **String** | Suggested spelling if a possible mistake was found | [optional] |
| **disposable** | **Boolean** | Does the email have a temporary domain | [optional] |
| **role** | **Boolean** | Is an email a role email (e.g. info@, noreply@ etc.) | [optional] |
| **reason** | **String** | All detected issues | [optional] |
| **date_added** | **Time** | Date of creation in YYYY-MM-DDThh:ii:ss format | [optional] |
| **result** | [**EmailValidationStatus**](EmailValidationStatus.md) |  | [optional][default to 'None'] |
| **predicted_score** | **Float** |  | [optional] |
| **predicted_status** | [**EmailPredictedValidationStatus**](EmailPredictedValidationStatus.md) |  | [optional][default to 'None'] |

## Example

```ruby
require 'ElasticEmail'

instance = ElasticEmail::EmailValidationResult.new(
  account: null,
  domain: example.com,
  email: null,
  suggested_spelling: null,
  disposable: null,
  role: null,
  reason: null,
  date_added: null,
  result: null,
  predicted_score: null,
  predicted_status: null
)
```

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ElasticEmail-4.0.23 docs/EmailValidationResult.md
ElasticEmail-4.0.22 docs/EmailValidationResult.md