trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
29 lines (28 loc) • 1.21 kB
TypeScript
import { BaseEntity } from '../../../../entities/core-entities/index.js';
/**
* GetOutrightMarketRequestDto class for sending request
* to get outright market 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 market
* @param locations The location IDs to filter the outright market
* @param fixtures The fixture IDs to filter the outright market
* @param markets The IDs of the markets
* @param tournaments The tournament IDs to filter the outright market
* @returns GetOutrightMarketRequestDto instance that
* contains the properties for the request to get
* outright market from the API.
*/
export declare class GetOutrightMarketRequestDto implements BaseEntity {
[key: string]: unknown;
constructor(data?: unknown);
timestamp?: number;
fromDate?: number;
toDate?: number;
sports?: number[];
locations?: number[];
fixtures?: number[];
markets?: number[];
tournaments?: number[];
}