UNPKG

trade360-nodejs-sdk

Version:
19 lines (18 loc) 580 B
import { BaseEntity } from '../../../../entities/core-entities/index.js'; import { SuspendedMarket } from './suspended-markets'; /** * SuspensionsBodyStructure class is responsible for * deserializing the response from the subscription API * to a suspension body structure. */ export declare class SuspensionsBodyStructure implements BaseEntity { [key: string]: unknown; succeeded: boolean; reason?: string; sportId?: number; locationId?: number; competitionId?: number; fixtureId: number; creationDate: Date; markets: SuspendedMarket[]; }