UNPKG

trade360-nodejs-sdk

Version:
13 lines (12 loc) 378 B
import { OutrightCompetition } from './outright-competition'; /** * Outright Competition Structure class is responsible for * deserializing the response from the snapshot API to a * outright competition body structure. */ export declare class OutrightCompetitionsResultBodyStructure { id: number; name: string; type: number; events: OutrightCompetition[]; }