import { AbstractCall, BaseRequestPayload, BaseResponsePayload } from "../../../src/AbstractCall"; import { Service } from "../../../src/Service"; export declare class DBParticipateInPollCall extends AbstractCall { getRequestName(): string; getService(): Service; } export declare module DBParticipateInPollCall { const NAME = "DB_PARTICIPATE_IN_POLL_CALL"; interface RequestModel extends BaseRequestPayload { poll_id: any; user_id?: any; name: string; timeslots: { start_date: Date; end_date: Date; }[]; } interface ResponseModel extends BaseResponsePayload { participant_id: any; } }