Interface Poll

interface Poll {
    buttons?: string[];
    id: string;
    offset?: number;
    type: string;
    userId?: string;
}

Properties

buttons?: string[]
id: string
offset?: number
type: string
userId?: string