UNPKG

trade360-nodejs-sdk

Version:
15 lines (14 loc) 629 B
import { LeaguesSubscriptionBodyStructure } from '../../../common/body-entities'; import { BaseEntity } from '../../../../entities/core-entities/index.js'; /** * Leagues Subscription Collection Response class * (used for serialization) - represents the response * body of the leagues subscription collection endpoint. * This class is used to deserialize the response from the * leagues subscription collection endpoint. * It contains the subscription. */ export declare class LeaguesSubscriptionCollectionResponse implements BaseEntity { [key: string]: unknown; subscription: LeaguesSubscriptionBodyStructure[]; }