/**
 * IntraDay tick data for the requested security, period and event type.
 */
export interface TickData {
    time: any;
    type: string;
    size: number;
    value: any;
    conditionCodes: string;
}
/**
 * Represents the result from an `IntraDayTickRequest`.
 */
export interface IntraDayTickData {
    /**
     * IntraDay Tick data for the requested security, period and event type.
     */
    tickData: TickData[];
    /**
     * Entitlement identifiers associated with the security.
     */
    eidData: number[];
}
