trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
25 lines (24 loc) • 958 B
TypeScript
import { HttpRequestDto } from '../../../common/dtos';
/**
* GetFixtureScheduleRequest class for sending request
* to get fixture schedule from the API. It extends the
* HttpRequestDto class and 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 GetFixtureScheduleRequest instance that
* contains the properties for the request to get
* fixture schedule from the API.
*/
export declare class GetFixtureScheduleRequest extends HttpRequestDto {
sportIds?: number[];
locationIds?: number[];
leagueIds?: number[];
}