Interface PollsGetByIdParams

interface PollsGetByIdParams {
    extended?: number | boolean;
    fields?: string | string[];
    friends_count?: number;
    is_board?: number | boolean;
    name_case?: "ins" | "abl" | "acc" | "dat" | "gen" | "nom";
    owner_id?: number;
    poll_id: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

extended?: number | boolean
fields?: string | string[]
friends_count?: number
is_board?: number | boolean

'1' - poll is in a board, '0' - poll is on a wall. '0' by default.

name_case?: "ins" | "abl" | "acc" | "dat" | "gen" | "nom"
owner_id?: number

ID of the user or community that owns the poll. Use a negative value to designate a community ID.

poll_id: number

Poll ID.

Generated using TypeDoc