UNPKG

trade360-nodejs-sdk

Version:
30 lines (28 loc) 1.18 kB
import { BaseEntity } from '../../../../entities/core-entities/index.js'; /** * GetInPlayEventRequestDto class for sending request * to get inplay event 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 inplay event * @param locations The location IDs to filter the inplay event * @param leagues The league IDs to filter the inplay event * @param fixtures The fixture IDs to filter the inplay event * @param markets The IDs of the markets * @returns GetInPlayEventRequestDto instance that * contains the properties for the request to get * inplay event from the API. */ export declare class GetInPlayEventRequestDto implements BaseEntity { [key: string]: unknown; constructor(data?: unknown); timestamp?: number; fromDate?: number; toDate?: number; sports?: number[]; locations?: number[]; leagues?: number[]; fixtures?: number[]; markets?: number[]; }