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