package gapi-ocaml

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

    The string used to identify this site. This value should be used in the "id" portion of the REST URL for the Get, Update, and Delete operations.

    *)
  2. owners : string list;
    (*

    The email addresses of all verified owners.

    *)
  3. site : Site.t;
    (*

    The address and type of a site that is verified or will be verified.

    *)
}
val id : (t, string) GapiLens.t
val owners : (t, string list) GapiLens.t
val site : (t, Site.t) 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