Interface PollsDeleteVoteParams

interface PollsDeleteVoteParams {
    is_board?: number | boolean;
    owner_id?: number;
    poll_id: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

is_board?: number | boolean
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