package gapi-ocaml

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

    Whether this ad client is opted in to ARC.

    *)
  2. id : string;
    (*

    Unique identifier of this ad client.

    *)
  3. kind : string;
    (*

    Kind of resource this is, in this case adsense#adClient.

    *)
  4. productCode : string;
    (*

    This ad client's product code, which corresponds to the PRODUCT_CODE report dimension.

    *)
  5. supportsReporting : bool;
    (*

    Whether this ad client supports being reported on.

    *)
}
val arcOptIn : (t, bool) GapiLens.t
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