trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
27 lines (26 loc) • 806 B
TypeScript
import { BaseEntity } from '../../../../entities/core-entities/index.js';
import { Moment as MomentType } from 'moment';
/**
* Filter structure for the incidents request
*/
export declare class IncidentsFilterDto implements BaseEntity {
[key: string]: unknown;
ids?: number[];
sports?: number[];
searchText?: string[];
from?: MomentType;
constructor(data?: Partial<IncidentsFilterDto>);
get EntityId(): string;
}
/**
* GetIncidentsRequest class for sending request
* to get incidents from the API.
*
* @param filter Filter parameters for the incidents
*/
export declare class GetIncidentsRequestDto implements BaseEntity {
[key: string]: unknown;
filter?: IncidentsFilterDto;
constructor(data?: Partial<GetIncidentsRequestDto>);
get EntityId(): string;
}