package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module GapiAnalyticsV3Model.EntityAdWordsLinkSource

Sourcemodule Entity : sig ... end
Sourcetype 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.

    *)
}
Sourceval adWordsAccounts : (t, AdWordsAccount.t list) GapiLens.t
Sourceval entity : (t, Entity.t) GapiLens.t
Sourceval id : (t, string) GapiLens.t
Sourceval kind : (t, string) GapiLens.t
Sourceval name : (t, string) GapiLens.t
Sourceval profileIds : (t, string list) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t