GapiAdsenseV1_4Model.AdStyle
module Font : sig ... end
module Colors : sig ... end
type t = {
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. *) |
corners : string; | (* The style of the corners in the ad (deprecated: never populated, ignored). *) |
font : Font.t; | (* The font which is included in the style. *) |
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