Module Values.GetContactReachabilityStatusResponseSource

For operations that require confirmation that the email address for the registrant contact is valid, such as registering a new domain, this operation returns information about whether the registrant contact has responded. If you want us to resend the email, use the ResendContactReachabilityEmail operation.

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

    The domain name for which you requested the reachability status.

    *)
  2. status : ReachabilityStatus.t option;
    (*

    Whether the registrant contact has responded. Values include the following: PENDING We sent the confirmation email and haven't received a response yet. DONE We sent the email and got confirmation from the registrant contact. EXPIRED The time limit expired before the registrant contact responded.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidInput of InvalidInput.t
  2. | `OperationLimitExceeded of OperationLimitExceeded.t
  3. | `UnsupportedTLD of UnsupportedTLD.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?domainName:??? -> ?status:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidInput of InvalidInput.t | `OperationLimitExceeded of OperationLimitExceeded.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 | `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 * [> `Enum of string | `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