trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
15 lines (14 loc) • 629 B
TypeScript
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[];
}