gluon
    Preparing search index...

    Class VoiceChannel

    Represents a voice channel.

    Hierarchy (View Summary)

    Implements

    • VoiceChannel
    Index

    Constructors

    • Creates the structure for a voice channel.

      Parameters

      • client: Client

        The client instance.

      • data:
            | VoiceChannelCacheJSON
            | VoiceChannelDiscordJSON
            | VoiceChannelStorageJSON
            | APIGuildVoiceChannel
            | APIGuildStageVoiceChannel

        The raw channel data from Discord.

      • options: { guildId: string; nocache?: boolean }

        Additional options for this structure.

        • guildId: string

          The id of the guild that the voice channel belongs to.

        • Optionalnocache?: boolean

          Whether the voice channel should be cached.

      Returns VoiceChannel

    Accessors

    • get _cacheOptions(): ChannelCacheOptions

      The cache options for this channel.

      Returns ChannelCacheOptions

    • get bitrate(): undefined | number

      The bitrate of the channel.

      Returns undefined | number

    • get guild(): null | Guild

      The guild that this channel belongs to.

      Returns null | Guild

    • get guildId(): string

      The ID of the guild that this channel belongs to.

      Returns string

    • get mention(): string

      Returns the mention for this channel.

      Returns string

    • get messages(): ChannelMessageManager

      The messages in this channel.

      Returns ChannelMessageManager

    • get name(): string

      The name of the channel.

      Returns string

    • get nsfw(): boolean

      Whether this channel is marked as NSFW or not.

      Returns boolean

    • get parent(): null | AllChannels

      The parent channel.

      Returns null | AllChannels

    • get parentId(): null | string

      The ID of the parent channel.

      Returns null | string

    • get permissionOverwrites(): PermissionOverwrite[]

      The permission overwrites for this channel.

      Returns PermissionOverwrite[]

    • get position(): undefined | number

      The position of the channel.

      Returns undefined | number

    • get rateLimitPerUser(): undefined | number

      The message send cooldown for the channel.

      Returns undefined | number

    • get rtcRegion(): undefined | string

      The region of the voice channel.

      Returns undefined | string

    • get topic(): null | string

      The topic of the channel.

      Returns null | string

    • get type(): ChannelType

      The type of channel.

      Returns ChannelType

    • get userLimit(): undefined | number

      The user limit of the channel.

      Returns undefined | number

    Methods

    • Returns the permissions for a member in this channel.

      Parameters

      • member: Member

        The member to check the permissions for.

      Returns string

    • Sends a message to this channel.

      Parameters

      • Optionaldata: {
            components?: MessageComponents;
            content?: string;
            embeds?: Embed[];
            files?: FileUpload[];
            suppressMentions?: boolean;
        }

        Embeds, components and files to include with the message.

        • Optionalcomponents?: MessageComponents

          The components to include with the message.

        • Optionalcontent?: string

          The content of the message.

        • Optionalembeds?: Embed[]

          The embeds to include with the message.

        • Optionalfiles?: FileUpload[]

          The files to include with the message.

        • OptionalsuppressMentions?: boolean

          Whether to suppress mentions in the message.

      Returns Promise<Message>

    • Returns the JSON representation of this structure.

      Parameters

      • Optionalformat: JsonTypes

        The format to return the data in.

      Returns
          | {
              _attributes: number;
              _cache_options: number;
              bitrate: undefined
              | number;
              id: string;
              messages: MessageCacheJSON[];
              name: string;
              parent_id?: null | string;
              permission_overwrites: PermissionOverwriteCacheJSON[];
              position?: number;
              rate_limit_per_user?: number;
              rtc_region: undefined | string;
              topic?: string;
              type: ChannelType;
              user_limit: undefined | number;
          }
          | {
              bitrate: undefined
              | number;
              id: string;
              messages: MessageDiscordJSON[];
              name: string;
              nsfw: boolean;
              parent_id?: null | string;
              permission_overwrites: PermissionOverwriteDiscordJSON[];
              position?: number;
              rate_limit_per_user?: number;
              rtc_region: undefined | string;
              topic?: string;
              type: ChannelType;
              user_limit: undefined | number;
          }
          | {
              _attributes: number;
              _cache_options: number;
              bitrate: undefined
              | number;
              id: string;
              messages: MessageStorageJSON[];
              name: string;
              parent_id?: null | string;
              permission_overwrites: PermissionOverwriteStorageJSON[];
              position?: number;
              rate_limit_per_user?: number;
              rtc_region: undefined | string;
              topic?: string;
              type: ChannelType;
              user_limit: undefined | number;
          }

    • Returns an array of webhooks for the specified channel.

      Parameters

      • client: Client

        The client instance.

      • channelId: string

        The ID of the channel.

      Returns Promise<APIWebhook[]>

    • Follows a news channel.

      Parameters

      • client: Client

        The client instance.

      • channelId: string

        The ID of the channel.

      • followChannelId: string

        THe ID of the channel to follow.

      Returns Promise<void>

    • Determines whether the channel should be cached.

      Parameters

      • gluonCacheOptions: GluonCacheOptions

        The cache options for the client.

      • guildCacheOptions: GuildCacheOptions

        The cache options for the guild.

      Returns boolean