import { AbstractCall, BaseRequestPayload, BaseResponsePayload } from "../../../src/AbstractCall"; import { Service } from "../../../src/Service"; import { ParticipantSkeleton } from "../ObjectSkeletons"; import { Participant } from "../ObjectInterfaces"; export declare class DBUpdateParticipantCall extends AbstractCall { getRequestName(): string; getService(): Service; } export declare module DBUpdateParticipantCall { const NAME = "DB_UPDATE_PARTICIPANT_CALL"; interface RequestModel extends BaseRequestPayload { participant_id: any; participant: ParticipantSkeleton; } interface ResponseModel extends BaseResponsePayload { updated_participant: Participant; } }