import { AbstractCall, BaseRequestPayload, BaseResponsePayload } from "../../src/AbstractCall"; import { Service } from "../../src/Service"; export declare class ParticipateInPollCall extends AbstractCall { getRequestName(): string; getService(): Service; } export declare module ParticipateInPollCall { const NAME = "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; } }