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