Module Values.MailboxValidationSource

Contains detailed validation information about an email address.

Sourcetype nonrec t = {
  1. isValid : EmailAddressInsightsVerdict.t option;
    (*

    Overall validity assessment with a confidence verdict.

    *)
  2. evaluations : EmailAddressInsightsMailboxEvaluations.t option;
    (*

    Specific validation checks performed on the email address.

    *)
}
Sourceval make : ?isValid:??? -> ?evaluations:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t