trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
15 lines (14 loc) • 546 B
TypeScript
import { HttpRequestDto } from '../../../common/dtos';
/**
* FixturesSubscriptionRequest class for sending
* request to subscribe by fixtures to the API.
* It extends the HttpRequestDto class and contains
* the properties for the request to subscribe by
* fixtures to the API.
* @param fixtures The fixture IDs to subscribe by
* in the request to subscribe by fixtures to the API.
* @returns FixturesSubscriptionRequest instance that
*/
export declare class FixturesSubscriptionRequest extends HttpRequestDto {
fixtures: number[];
}