import { PropertyValue, TargetKeyType } from "../model/model"; export interface IdentifierDto { type: string; value: string; } export interface UserCohortDto { identifier: IdentifierDto; cohorts: number[]; } export interface UserCohortsResponseDto { cohorts: UserCohortDto[]; } export interface UserTargetStatDto { date: EpochTimeStamp; count: number; } export interface UserTargetEventPropertyDto { type: TargetKeyType; key: string; value: PropertyValue; } export interface UserTargetEventDto { eventKey: string; property: UserTargetEventPropertyDto | null; stats: UserTargetStatDto[]; } export interface UserTargetsResponseDto { events: UserTargetEventDto[]; }