Sha256: f97c86e067491d7770a1b503dc97d13e12fc438baa4edc749f94bff5cb077e43

Contents?: true

Size: 1.36 KB

Versions: 3

Compression:

Stored size: 1.36 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** | Added date | [optional] |
| **result** | [**EmailValidationStatus**](EmailValidationStatus.md) |  | [optional][default to 'None'] |
| **predicted_score** | **Float** | Predicted score | [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

3 entries across 3 versions & 1 rubygems

Version Path
ElasticEmail-4.0.26 docs/EmailValidationResult.md
ElasticEmail-4.0.25 docs/EmailValidationResult.md
ElasticEmail-4.0.24 docs/EmailValidationResult.md