trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
16 lines (15 loc) • 387 B
TypeScript
import { Moment } from 'moment';
/**
* IncidentsBodyStructure class is responsible for
* deserializing the response from the metadata
* API to an incident.
*/
export declare class IncidentsBodyStructure {
sportId?: number;
sportName?: string;
incidentId?: number;
incidentName?: string;
description?: string;
lastUpdate?: Moment;
creationDate?: Moment;
}