gluon
    Preparing search index...

    Implements

    • Poll
    Index

    Constructors

    • Creates the structure for a poll.

      Parameters

      • client: Client

        The client instance.

      • data: PollStorageJSON | PollCacheJSON | APIPoll | PollDiscordJSON

        The raw poll data from Discord.

      • options: { guildId: string }

        The additional options for this structure.

        • guildId: string

          The ID of the guild that this poll belongs to.

      Returns Poll

    Accessors

    • get allowMultiselect(): boolean

      Whether the poll allows multiselect.

      Returns boolean

    • get answers(): { answer: string; answerId: number; result: string[] }[]

      The answers of the poll.

      Returns { answer: string; answerId: number; result: string[] }[]

    • get expiry(): null | number

      The UNIX timestamp of the expiry time for the poll.

      Returns null | number

    • get guild(): null | Guild

      The guild that this poll belongs to.

      Returns null | Guild

    • get guildId(): string

      The ID of the guild that this poll belongs to.

      Returns string

    • get layoutType(): PollLayoutType

      The layout type of the poll.

      Returns PollLayoutType

    • get question(): string

      The question of the poll.

      Returns string

    Methods

    • Returns the JSON representation of this structure.

      Parameters

      • Optionalformat: JsonTypes

        The format to return the data in.

      Returns PollStorageJSON | PollCacheJSON | PollDiscordJSON