/**
 * Bar data for the requested security, period and event type.
 */
export interface BarTickData {
    time: any;
    open: number;
    high: number;
    low: number;
    close: number;
    volume: number;
    numEvents: number;
    value: any;
}
/**
 * Represents the result from an `IntraDayBarRequest`.
 */
export interface IntraDayBarData {
    /**
     * Bar data for the requested security, period and event type.
     */
    barTickData: BarTickData[];
    /**
     * Entitlement identifiers associated with the security.
     */
    eidData: number[];
}
