package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Entity : sig ... end
type t = {
  1. adWordsAccounts : AdWordsAccount.t list;
    (*

    A list of AdWords client accounts. These cannot be MCC accounts. This field is required when creating an AdWords link. It cannot be empty.

    *)
  2. entity : Entity.t;
    (*

    Web property being linked.

    *)
  3. id : string;
    (*

    Entity AdWords link ID

    *)
  4. kind : string;
    (*

    Resource type for entity AdWords link.

    *)
  5. name : string;
    (*

    Name of the link. This field is required when creating an AdWords link.

    *)
  6. profileIds : string list;
    (*

    IDs of linked Views (Profiles) represented as strings.

    *)
}
val adWordsAccounts : (t, AdWordsAccount.t list) GapiLens.t
val entity : (t, Entity.t) GapiLens.t
val id : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val name : (t, string) GapiLens.t
val profileIds : (t, string list) 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