trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
20 lines (19 loc) • 848 B
TypeScript
import { BaseEntity } from '../../../../entities/core-entities/index.js';
/**
* GetSubscriptionsRequestDto 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 GetSubscriptionsRequestDto class
* with the provided sport IDs, location IDs, and league IDs.
*/
export declare class GetSubscriptionsRequestDto implements BaseEntity {
[key: string]: unknown;
constructor(data?: unknown);
sportIds?: number[];
locationIds?: number[];
leagueIds?: number[];
}