Module GapiAnalyticsV3Model.IncludeConditions

type t = {
daysToLookBack : int;

The look-back window lets you specify a time frame for evaluating the behavior that qualifies users for your audience. For example, if your filters include users from Central Asia, and Transactions Greater than 2, and you set the look-back window to 14 days, then any user from Central Asia whose cumulative transactions exceed 2 during the last 14 days is added to the audience.

isSmartList : bool;

Boolean indicating whether this segment is a smart list. https://support.google.com/analytics/answer/4628577

kind : string;

Resource type for include conditions.

membershipDurationDays : int;

Number of days (in the range 1 to 540) a user remains in the audience.

segment : string;

The segment condition that will cause a user to be added to an audience.

}
val daysToLookBack : (t, int) GapiLens.t
val isSmartList : (t, bool) GapiLens.t
val kind : (t, string) GapiLens.t
val membershipDurationDays : (t, int) GapiLens.t
val segment : (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