Module Values.VerificationDetailsSource

Contains the verification details for a target domain, including the verification method and provider-specific details.

Sourcetype nonrec t = {
  1. method_ : DomainVerificationMethod.t option;
    (*

    The verification method used for the target domain.

    *)
  2. dnsTxt : DnsVerification.t option;
    (*

    The DNS TXT verification details.

    *)
  3. httpRoute : HttpVerification.t option;
    (*

    The HTTP route verification details.

    *)
}
Sourceval make : ?method_:??? -> ?dnsTxt:??? -> ?httpRoute:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `String of String_.t ]) 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