Module Values.HttpVerificationSource

Contains HTTP route verification details for a target domain, including the route path and token to serve for domain ownership verification.

Sourcetype nonrec t = {
  1. token : String_.t option;
    (*

    The verification token to serve at the specified route path.

    *)
  2. routePath : String_.t option;
    (*

    The HTTP route path where the verification token must be served.

    *)
}
Sourceval make : ?token:??? -> ?routePath:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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