UNPKG

trade360-nodejs-sdk

Version:

LSports Trade360 SDK for Node.js

16 lines (15 loc) 674 B
import { BaseEntity } from '../../../../entities/core-entities/index.js'; import { LeaguesSubscriptionRequestBodyStructure } from '../../../common/body-entities'; /** * LeaguesSubscriptionRequestDto class is responsible for * sending requests to the subscription API to subscribe to * leagues. It contains the structure of the request body for * subscribing to leagues. * @param subscriptions The subscriptions to be made to the * leagues in the subscription API. */ export declare class LeaguesSubscriptionRequestDto implements BaseEntity { [key: string]: unknown; constructor(data?: unknown); subscriptions: LeaguesSubscriptionRequestBodyStructure[]; }