package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Site : sig ... end
type t = {
  1. site : Site.t;
    (*

    The site for which a verification token will be generated.

    *)
  2. verificationMethod : string;
    (*

    The verification method that will be used to verify this site. For sites, 'FILE' or 'META' methods may be used. For domains, only 'DNS' may be used.

    *)
}
val site : (t, Site.t) GapiLens.t
val verificationMethod : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t
val to_data_model : t -> GapiJson.json_data_model
val of_data_model : GapiJson.json_data_model -> t