package gapi-ocaml

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

    Account ID to which this linked foreign account belongs.

    *)
  2. eligibleForSearch : bool;
    (*

    Boolean indicating whether this is eligible for search.

    *)
  3. id : string;
    (*

    Entity ad account link ID.

    *)
  4. internalWebPropertyId : string;
    (*

    Internal ID for the web property to which this linked foreign account belongs.

    *)
  5. kind : string;
    (*

    Resource type for linked foreign account.

    *)
  6. linkedAccountId : string;
    (*

    The foreign account ID. For example the an AdWords `linkedAccountId` has the following format XXX-XXX-XXXX.

    *)
  7. remarketingAudienceId : string;
    (*

    Remarketing audience ID to which this linked foreign account belongs.

    *)
  8. status : string;
    (*

    The status of this foreign account link.

    *)
  9. _type : string;
    (*

    The type of the foreign account. For example, `ADWORDS_LINKS`, `DBM_LINKS`, `MCC_LINKS` or `OPTIMIZE`.

    *)
  10. webPropertyId : string;
    (*

    Web property ID of the form UA-XXXXX-YY to which this linked foreign account belongs.

    *)
}
val accountId : (t, string) GapiLens.t
val eligibleForSearch : (t, bool) GapiLens.t
val id : (t, string) GapiLens.t
val internalWebPropertyId : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val linkedAccountId : (t, string) GapiLens.t
val remarketingAudienceId : (t, string) GapiLens.t
val status : (t, string) GapiLens.t
val _type : (t, string) GapiLens.t
val webPropertyId : (t, string) 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