module AdClient:sig..end
type t = {
|
id : |
(* |
Unique identifier of this ad client.
| *) |
|
kind : |
(* |
Kind of resource this is, in this case adsense#adClient.
| *) |
|
productCode : |
(* |
This ad client's product code, which corresponds to the PRODUCT_CODE report dimension.
| *) |
|
supportsReporting : |
(* |
Whether this ad client supports being reported on.
| *) |
val id : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val productCode : (t, string) GapiLens.t
val supportsReporting : (t, bool) 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