package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. label : string;
    (*

    The label of the URL.

    *)
  2. _type : string;
    (*

    The type of URL. Possible values include, but are not limited to, the following values:

    • "otherProfile" - URL for another profile.
    • "contributor" - URL to a site for which this person is a contributor.
    • "website" - URL for this Google+ Page's primary website.
    • "other" - Other URL.
    *)
  3. value : string;
    (*

    The URL value.

    *)
}
val label : (t, string) GapiLens.t
val _type : (t, string) GapiLens.t
val value : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t