trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
27 lines (26 loc) • 1.01 kB
TypeScript
import { BaseEntity } from '../../../../entities/core-entities/index.js';
/**
* GetFixtureScheduleRequestDto class for sending request
* to get fixture schedule from the API. It contains the
* properties for the request to get fixture schedule
* from the API.
* @param sportIds The sport IDs to filter the fixture
* schedule by in the request to get fixture schedule from
* the API.
* @param locationIds The location IDs to filter the
* fixture schedule by in the request to get fixture schedule
* from the API.
* @param leagueIds The league IDs to filter the fixture
* schedule by in the request to get fixture schedule from
* the API.
* @returns GetFixtureScheduleRequestDto instance that
* contains the properties* for the request to get fixture
* schedule from the API.
*/
export declare class GetFixtureScheduleRequestDto implements BaseEntity {
[key: string]: unknown;
constructor(data?: unknown);
sportIds?: number[];
locationIds?: number[];
leagueIds?: number[];
}