trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
13 lines (12 loc) • 363 B
TypeScript
import { CompetitionType } from '../../../../entities/core-entities/index.js';
/**
* CompetitionsBodyStructure class is responsible for
* deserializing the response from the metadata API
* to a competition body structure.
*/
export declare class CompetitionsBodyStructure {
id: number;
name?: string;
type: CompetitionType;
trackId: number;
}