trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
24 lines (23 loc) • 934 B
TypeScript
import { BaseEntity } from '../../../../entities/core-entities/index.js';
import { OutrightLeagueEventsCompetition } from '../../../common/body-entities/responses/outright-league-events-competition';
/**
* OutrightLeagueEventsCompetitionElement class is responsible
* for deserializing the competition part of the response from the snapshot
* API to get outright league events
*/
export declare class OutrightLeagueEventsCompetitionElement implements BaseEntity {
[key: string]: unknown;
id: number;
name: string;
type: number;
competitions?: OutrightLeagueEventsCompetition[];
}
/**
* GetOutrightLeagueEventsResultElement class is responsible
* for deserializing the response from the snapshot
* API to get outright league events
*/
export declare class GetOutrightLeagueEventsResultElement implements BaseEntity {
[key: string]: unknown;
competition?: OutrightLeagueEventsCompetitionElement[];
}