UNPKG

trade360-nodejs-sdk

Version:
19 lines (18 loc) 831 B
import { HttpRequestDto } from '../../../common/dtos'; import { LeaguesSubscriptionRequestBodyStructure } from '../../../common/body-entities'; /** * LeaguesSubscriptionRequest class is responsible * for sending requests to the subscription API to * subscribe to leagues. It is a HTTP request DTO * for subscribing to leagues in the subscription API. * @param subscriptions The subscriptions to the leagues * in the subscription API * @returns A new instance of the * LeaguesSubscriptionRequest class with the provided * subscriptions to the leagues in the subscription API. * @extends HttpRequestDto class for sending requests to * the subscription API to subscribe to leagues. */ export declare class LeaguesSubscriptionRequest extends HttpRequestDto { subscriptions: LeaguesSubscriptionRequestBodyStructure[]; }