Interface IEventAnalyticsReportRequest
-
- All Known Implementing Classes:
EventAnalyticsDashboardRequest
,EventAnalyticsReportRequest
public interface IEventAnalyticsReportRequest
Event analytics report request.- Since:
- 11.0.0
- Version:
- $Revision: 23200 $ $Date: 2019-09-24 18:17:36 -0300 (Tue, 24 Sep 2019) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventFilterData
getEventFilter()
Returns the eventFilter.EventAnalyticsReportRequest.GroupByHolder
getGroupBy()
Returns the groupBy.Tuple2<IAggregation,java.util.function.Function<Object,String>>
getInterval()
Returns the interval.Map<String,Tuple2<IAggregation,Boolean>>
getMetrics()
Returns the metrics.ServiceInstanceConfig
getServiceInstanceConfig()
Returns the serviceInstanceConfig.Tuple3<Date,Date,ISearchQueryFilter>
getTimeFrame()
Returns the timeFrame.UserSegmentationData
getUserSegmentation()
Returns the userSegmentation.boolean
isStandard()
Returns whether this is a standard report.
-
-
-
Method Detail
-
getMetrics
Map<String,Tuple2<IAggregation,Boolean>> getMetrics()
Returns the metrics. The value tuple contains ina
slot the metric aggregation and inb
slot, a flag to indicate whether the metric is for a user custom attribute.- Returns:
- the metrics
- Since:
- 11.0.0
-
getGroupBy
EventAnalyticsReportRequest.GroupByHolder getGroupBy()
Returns the groupBy.- Returns:
- the groupBy
- Since:
- 11.0.0
-
getEventFilter
EventFilterData getEventFilter()
Returns the eventFilter.- Returns:
- the eventFilter
- Since:
- 11.0.0
-
getInterval
Tuple2<IAggregation,java.util.function.Function<Object,String>> getInterval()
Returns the interval.- Returns:
- the interval
- Since:
- 11.0.0
-
getUserSegmentation
UserSegmentationData getUserSegmentation()
Returns the userSegmentation.- Returns:
- the userSegmentation
- Since:
- 11.0.0
-
getTimeFrame
Tuple3<Date,Date,ISearchQueryFilter> getTimeFrame()
Returns the timeFrame.- Returns:
- the timeFrame
- Since:
- 11.0.0
-
getServiceInstanceConfig
ServiceInstanceConfig getServiceInstanceConfig()
Returns the serviceInstanceConfig.- Returns:
- the serviceInstanceConfig
- Since:
- 11.0.0
-
isStandard
boolean isStandard()
Returns whether this is a standard report.- Returns:
- whether this is a standard report.
- Since:
- 11.0.0
-
-