trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
12 lines (11 loc) • 456 B
TypeScript
import { BaseEntity } from '../../../../entities/core-entities/index.js';
import { CompetitionsBodyStructure } from '../../../common/body-entities';
/**
* CompetitionCollectionResponse class is responsible
* for deserializing the response from the metadata
* API to a collection of competitions.
*/
export declare class CompetitionCollectionResponse implements BaseEntity {
[key: string]: unknown;
competitions?: CompetitionsBodyStructure[];
}