trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
17 lines (16 loc) • 632 B
TypeScript
import { BaseEntity } from '../../../../entities/core-entities/index.js';
/**
* FixturesSubscriptionRequestDto class for sending
* request to subscribe by fixtures to the API.
* It 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 FixturesSubscriptionRequestDto instance that
* contains the provided fixture IDs.
*/
export declare class FixturesSubscriptionRequestDto implements BaseEntity {
[key: string]: unknown;
constructor(data?: unknown);
fixtures: number[];
}