trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
19 lines (18 loc) • 763 B
TypeScript
import { HttpRequestDto } from '../../../common/dtos';
/**
* GetSubscriptionsRequest class is responsible for sending
* a request to the subscription API to get fixtures
* subscriptions. It contains the properties for sending a
* request to the subscription API to get fixtures
* subscriptions.
* @param sportIds The sport IDs to get subscriptions for
* @param locationIds The location IDs to get subscriptions for
* @param leagueIds The league IDs to get subscriptions for
* @returns A new instance of the GetSubscriptionsRequest class
* with the provided sport IDs, location IDs, and league IDs.
*/
export declare class GetSubscriptionsRequest extends HttpRequestDto {
sportIds?: number[];
locationIds?: number[];
leagueIds?: number[];
}