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

    Type Alias PollResponse

    PollResponse: Message<"plugnmeet.PollResponse"> & {
        status: boolean;
        msg: string;
        pollId?: string;
        totalResponses?: string;
        voted?: string;
        responses: { [key: string]: string };
        polls: PollInfo[];
        stats?: PollsStats;
        totalPolls?: string;
        totalRunning?: string;
        pollResponsesResult?: PollResponsesResult;
    }

    Type Declaration

    • status: boolean

      from field: bool status = 1;

    • msg: string

      from field: string msg = 2;

    • OptionalpollId?: string

      from field: optional string poll_id = 3;

    • OptionaltotalResponses?: string

      from field: optional uint64 total_responses = 4 [jstype = JS_STRING];

    • Optionalvoted?: string

      from field: optional uint64 voted = 5 [jstype = JS_STRING];

    • responses: { [key: string]: string }

      from field: map<string, string> responses = 6;

    • polls: PollInfo[]

      from field: repeated plugnmeet.PollInfo polls = 7;

    • Optionalstats?: PollsStats

      from field: optional plugnmeet.PollsStats stats = 8;

    • OptionaltotalPolls?: string

      from field: optional uint64 total_polls = 9 [jstype = JS_STRING];

    • OptionaltotalRunning?: string

      from field: optional uint64 total_running = 10 [jstype = JS_STRING];

    • OptionalpollResponsesResult?: PollResponsesResult

      from field: optional plugnmeet.PollResponsesResult poll_responses_result = 11;

    from message plugnmeet.PollResponse