package gapi-ocaml

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

    The colors which are included in the style. These are represented as six hexadecimal characters, similar to HTML color codes, but without the leading hash.

    *)
  2. corners : string;
    (*

    The style of the corners in the ad (deprecated: never populated, ignored).

    *)
  3. font : Font.t;
    (*

    The font which is included in the style.

    *)
  4. kind : string;
    (*

    Kind this is, in this case adsense#adStyle.

    *)
}
val colors : (t, Colors.t) GapiLens.t
val corners : (t, string) GapiLens.t
val font : (t, Font.t) GapiLens.t
val kind : (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