import { HttpRequestDto } from '../../../common/dtos';
/**
 * GetOutrightLivescoreRequest class for sending request
 * to get outright livescore from the API. It extends the
 * HttpRequestDto class and contains the properties
 * for the request to get outright livescore from the API.
 * @param timestamp The Unix timestamp of the snapshot (seconds since epoch)
 * @param fromDate The Unix timestamp for the start date of the snapshot (seconds since epoch)
 * @param toDate The Unix timestamp for the end date of the snapshot (seconds since epoch)
 * @param sports The sport IDs to filter the outright livescore
 * @param locations The location IDs to filter the outright livescore
 * @param fixtures The fixture IDs to filter the outright livescore
 * @param tournaments The tournament IDs to filter the outright livescore
 * @returns GetOutrightLivescoreRequest instance that
 * contains the properties for the request to get
 * outright livescore from the API.
 */
export declare class GetOutrightLivescoreRequest extends HttpRequestDto {
    timestamp?: number;
    fromDate?: number;
    toDate?: number;
    sports?: number[];
    locations?: number[];
    tournaments?: number[];
    fixtures?: number[];
}
