module AdStyle:sig..end
module Font:sig..end
module Colors:sig..end
type t = {
|
colors : |
(* |
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.
| *) |
|
corners : |
(* |
The style of the corners in the ad.
| *) |
|
font : |
(* |
The font which is included in the style.
| *) |
|
kind : |
(* |
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