import {AbstractCall, BaseRequestPayload, BaseResponsePayload} from "../../../src/AbstractCall"; import {Service} from "../../../src/Service"; /** * The call to delete a participant. */ export class DBDeleteParticipantCall extends AbstractCall { getRequestName(): string { return DBDeleteParticipantCall.NAME; } getService(): Service { return Service.DATABASE; } } /** * Defines the structure of a {@DBDeleteParticipantCall}. */ export module DBDeleteParticipantCall { export const NAME = "DB_DELETE_PARTICIPANT_CALL"; export interface RequestModel extends BaseRequestPayload{ participant_id : any } export interface ResponseModel extends BaseResponsePayload{ } }