plugNmeet JS SDK - v2.2.3
    Preparing search index...

    Type Alias CreatePollReq

    CreatePollReq: Message<"plugnmeet.CreatePollReq"> & {
        roomId: string;
        userId: string;
        pollId: string;
        question: string;
        options: CreatePollOptions[];
        isAnonymous: boolean;
        isMultiple: boolean;
        isQuiz: boolean;
        duration: number;
    }

    Type Declaration

    • roomId: string

      from field: string room_id = 1;

    • userId: string

      from field: string user_id = 2;

    • pollId: string

      from field: string poll_id = 3;

    • question: string

      from field: string question = 4;

    • options: CreatePollOptions[]

      from field: repeated plugnmeet.CreatePollOptions options = 5;

    • isAnonymous: boolean

      from field: bool is_anonymous = 6;

    • isMultiple: boolean

      from field: bool is_multiple = 7;

    • isQuiz: boolean

      from field: bool is_quiz = 8;

    • duration: number

      from field: uint32 duration = 9;

    from message plugnmeet.CreatePollReq