interface PollVoterListQueryParams {
    channelType: ChannelType;
    channelUrl: string;
    limit?: number;
    pollId: number;
    pollOptionId: number;
}

Hierarchy

  • ChannelDataListQueryParams
    • PollVoterListQueryParams

Properties

channelType: ChannelType

A channel type.

channelUrl: string

A channel URL.

limit?: number

The maximum number of data per queried page.

pollId: number

A unique identifier for the poll which contains this poll option.

pollOptionId: number

A unique identifier for this poll option.