package gapi-ocaml

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

    Account ID to which this remarketing audience belongs.

    *)
  2. audienceDefinition : AudienceDefinition.t;
    (*

    The simple audience definition that will cause a user to be added to an audience.

    *)
  3. audienceType : string;
    (*

    The type of audience, either SIMPLE or STATE_BASED.

    *)
  4. created : GapiDate.t;
    (*

    Time this remarketing audience was created.

    *)
  5. description : string;
    (*

    The description of this remarketing audience.

    *)
  6. id : string;
    (*

    Remarketing Audience ID.

    *)
  7. internalWebPropertyId : string;
    (*

    Internal ID for the web property to which this remarketing audience belongs.

    *)
  8. kind : string;
    (*

    Collection type.

    *)
  9. linkedAdAccounts : LinkedForeignAccount.t list;
    (*

    The linked ad accounts associated with this remarketing audience. A remarketing audience can have only one linkedAdAccount currently.

    *)
  10. linkedViews : string list;
    (*

    The views (profiles) that this remarketing audience is linked to.

    *)
  11. name : string;
    (*

    The name of this remarketing audience.

    *)
  12. stateBasedAudienceDefinition : StateBasedAudienceDefinition.t;
    (*

    A state based audience definition that will cause a user to be added or removed from an audience.

    *)
  13. updated : GapiDate.t;
    (*

    Time this remarketing audience was last modified.

    *)
  14. webPropertyId : string;
    (*

    Web property ID of the form UA-XXXXX-YY to which this remarketing audience belongs.

    *)
}
val accountId : (t, string) GapiLens.t
val audienceDefinition : (t, AudienceDefinition.t) GapiLens.t
val audienceType : (t, string) GapiLens.t
val created : (t, GapiDate.t) GapiLens.t
val description : (t, string) GapiLens.t
val id : (t, string) GapiLens.t
val internalWebPropertyId : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val linkedAdAccounts : (t, LinkedForeignAccount.t list) GapiLens.t
val linkedViews : (t, string list) GapiLens.t
val name : (t, string) GapiLens.t
val stateBasedAudienceDefinition : (t, StateBasedAudienceDefinition.t) GapiLens.t
val updated : (t, GapiDate.t) 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