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

    Type Alias PollInfo

    PollInfo: Message<"plugnmeet.PollInfo"> & {
        id: string;
        roomId: string;
        question: string;
        options: CreatePollOptions[];
        isRunning: boolean;
        created: string;
        createdBy: string;
        closedBy: string;
        isAnonymous: boolean;
        isMultiple: boolean;
        isQuiz: boolean;
        expiresAt: string;
        duration: number;
    }

    Type Declaration

    • id: string

      from field: string id = 1;

    • roomId: string

      from field: string room_id = 2;

    • question: string

      from field: string question = 3;

    • options: CreatePollOptions[]

      from field: repeated plugnmeet.CreatePollOptions options = 4;

    • isRunning: boolean

      from field: bool is_running = 5;

    • created: string

      from field: int64 created = 6 [jstype = JS_STRING];

    • createdBy: string

      from field: string created_by = 7;

    • closedBy: string

      from field: string closed_by = 8;

    • isAnonymous: boolean

      from field: bool is_anonymous = 9;

    • isMultiple: boolean

      from field: bool is_multiple = 10;

    • isQuiz: boolean

      from field: bool is_quiz = 11;

    • expiresAt: string

      from field: int64 expires_at = 12 [jstype = JS_STRING];

    • duration: number

      from field: uint32 duration = 13;

    from message plugnmeet.PollInfo