View Source ExUserCheck.Email (ex_user_check v0.1.0)

Deserialization model for ExUserCheck email validation results

Summary

Types

@type t() :: %ExUserCheck.Email{
  alias: boolean(),
  blocklisted: boolean(),
  did_you_mean: nil | String.t(),
  disposable: boolean(),
  domain: String.t(),
  email: String.t(),
  mx: boolean(),
  public_domain: boolean(),
  relay_domain: boolean(),
  role_account: boolean(),
  spam: boolean()
}

Functions

Link to this function

new(map_or_kwlist, opts \\ [])

View Source
@spec new(ExConstructor.map_or_kwlist(), Keyword.t()) :: %ExUserCheck.Email{
  alias: term(),
  blocklisted: term(),
  did_you_mean: term(),
  disposable: term(),
  domain: term(),
  email: term(),
  mx: term(),
  public_domain: term(),
  relay_domain: term(),
  role_account: term(),
  spam: term()
}