Sha256: 25c6403f9ca8629ea55ed96440f8178ff82877cab101f30c05bd6ce3b0d34509
Contents?: true
Size: 1.15 KB
Versions: 8
Compression:
Stored size: 1.15 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'] | ## 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 ) ```
Version data entries
8 entries across 8 versions & 1 rubygems