Module GapiAnalyticsV3Model.IncludeConditionsSource

Sourcetype t = {
  1. 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.

    *)
  2. isSmartList : bool;
    (*

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

    *)
  3. kind : string;
    (*

    Resource type for include conditions.

    *)
  4. membershipDurationDays : int;
    (*

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

    *)
  5. segment : string;
    (*

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

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