Module GapiAnalyticsV3Model.EntityAdWordsLink

module Entity : sig ... end
type t = {
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.

*)
entity : Entity.t;(*

Web property being linked.

*)
id : string;(*

Entity AdWords link ID

*)
kind : string;(*

Resource type for entity AdWords link.

*)
name : string;(*

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

*)
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