Module Values.ResendContactReachabilityEmailResponseSource

For operations that require confirmation that the email address for the registrant contact is valid, such as registering a new domain, this operation resends the confirmation email to the current email address for the registrant contact.

Sourcetype nonrec t = {
  1. domainName : DomainName.t option;
    (*

    The domain name for which you requested a confirmation email.

    *)
  2. emailAddress : Email.t option;
    (*

    The email address for the registrant contact at the time that we sent the verification email.

    *)
  3. isAlreadyVerified : Boolean.t option;
    (*

    True if the email address for the registrant contact has already been verified, and false otherwise. If the email address has already been verified, we don't send another confirmation email.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidInput of InvalidInput.t
  2. | `OperationLimitExceeded of OperationLimitExceeded.t
  3. | `TLDInMaintenance of TLDInMaintenance.t
  4. | `UnsupportedTLD of UnsupportedTLD.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?domainName:??? -> ?emailAddress:??? -> ?isAlreadyVerified:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidInput of InvalidInput.t | `OperationLimitExceeded of OperationLimitExceeded.t | `TLDInMaintenance of TLDInMaintenance.t | `Unknown_operation_error of string * string option | `UnsupportedTLD of UnsupportedTLD.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidInput of InvalidInput.t | `OperationLimitExceeded of OperationLimitExceeded.t | `TLDInMaintenance of TLDInMaintenance.t | `Unknown_operation_error of string * string option | `UnsupportedTLD of UnsupportedTLD.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of DomainName.t ]) 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