Interface EventTrackingConfig

interface EventTrackingConfig {
    distinctAggregationByDays: number[];
    eventName: string;
    retentionConfig: undefined | RetentionConfig;
    totalByDay: boolean;
    totalPerEntity: undefined | TotalPerEntityAggregation;
    unique: boolean;
}

Properties

distinctAggregationByDays: number[]
eventName: string
retentionConfig: undefined | RetentionConfig
totalByDay: boolean
totalPerEntity: undefined | TotalPerEntityAggregation
unique: boolean