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