GapiSiteVerificationV1Model.SiteVerificationWebResourceResource
module Site : sig ... end
type t = {
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. *) |
owners : string list; | (* The email addresses of all verified owners. *) |
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