gluon
    Preparing search index...

    Class Embed

    Helps to create an embed for a message.

    Implements

    • Embed
    Index

    Constructors

    • Creates an embed structure.

      Parameters

      • Optionaldata:
            | EmbedBuilderCacheJSON
            | EmbedBuilderStorageJSON
            | EmbedBuilderDiscordJSON
            | APIEmbed

        The embed data.

        • EmbedBuilderCacheJSON
          • title

            The title of the embed.

          • description

            The description of the embed.

          • url

            The url of the embed.

          • timestamp

            The timestamp of the embed.

          • color

            The color of the embed.

          • footer

            The footer of the embed.

          • footer.text

            The footer text.

          • footer.icon_url

            The footer icon url.

          • author

            The author of the embed.

          • author.name

            The author name.

          • author.url

            The author url.

          • author.icon_url

            The author icon url.

          • fields

            The fields of the embed.

          • fields.name

            The field name.

          • fields.value

            The field value.

          • fields.inline

            Whether the field should be inline.

          • image

            The image of the embed.

          • image.url

            The image url.

          • thumbnail

            The thumbnail of the embed.

          • thumbnail.url

            The thumbnail url.

          • video

            The video of the embed.

          • video.url

            The video url.

        • EmbedBuilderStorageJSON
          • title

            The title of the embed.

          • description

            The description of the embed.

          • url

            The url of the embed.

          • timestamp

            The timestamp of the embed.

          • color

            The color of the embed.

          • footer

            The footer of the embed.

          • footer.text

            The footer text.

          • footer.icon_url

            The footer icon url.

          • author

            The author of the embed.

          • author.name

            The author name.

          • author.url

            The author url.

          • author.icon_url

            The author icon url.

          • fields

            The fields of the embed.

          • fields.name

            The field name.

          • fields.value

            The field value.

          • fields.inline

            Whether the field should be inline.

          • image

            The image of the embed.

          • image.url

            The image url.

          • thumbnail

            The thumbnail of the embed.

          • thumbnail.url

            The thumbnail url.

          • video

            The video of the embed.

          • video.url

            The video url.

        • EmbedBuilderDiscordJSON
          • title

            The title of the embed.

          • description

            The description of the embed.

          • url

            The url of the embed.

          • timestamp

            The timestamp of the embed.

          • color

            The color of the embed.

          • footer

            The footer of the embed.

          • footer.text

            The footer text.

          • footer.icon_url

            The footer icon url.

          • author

            The author of the embed.

          • author.name

            The author name.

          • author.url

            The author url.

          • author.icon_url

            The author icon url.

          • fields

            The fields of the embed.

          • fields.name

            The field name.

          • fields.value

            The field value.

          • fields.inline

            Whether the field should be inline.

          • image

            The image of the embed.

          • image.url

            The image url.

          • thumbnail

            The thumbnail of the embed.

          • thumbnail.url

            The thumbnail url.

          • video

            The video of the embed.

          • video.url

            The video url.

        • APIEmbed
          • title

            The title of the embed.

          • description

            The description of the embed.

          • url

            The url of the embed.

          • timestamp

            The timestamp of the embed.

          • color

            The color of the embed.

          • footer

            The footer of the embed.

          • footer.text

            The footer text.

          • footer.icon_url

            The footer icon url.

          • author

            The author of the embed.

          • author.name

            The author name.

          • author.url

            The author url.

          • author.icon_url

            The author icon url.

          • fields

            The fields of the embed.

          • fields.name

            The field name.

          • fields.value

            The field value.

          • fields.inline

            Whether the field should be inline.

          • image

            The image of the embed.

          • image.url

            The image url.

          • thumbnail

            The thumbnail of the embed.

          • thumbnail.url

            The thumbnail url.

          • video

            The video of the embed.

          • video.url

            The video url.

      Returns Embed

    Properties

    author: undefined | APIEmbedAuthor

    The author of the embed.

    color: undefined | number

    The color of the embed.

    description: undefined | string

    The description of the embed.

    fields: APIEmbedField[]

    The fields of the embed.

    footer: undefined | APIEmbedFooter

    The footer of the embed.

    image: undefined | APIEmbedImage

    The image of the embed.

    thumbnail: undefined | APIEmbedThumbnail

    The thumbnail of the embed.

    timestamp: undefined | number

    The timestamp of the embed.

    title: undefined | string

    The title of the embed.

    url: undefined | string

    The url of the embed.

    video: undefined | APIEmbedVideo

    The video of the embed.

    Accessors

    Methods

    • Adds a field to the embed.

      Parameters

      • name: string

        Sets the embed field name.

      • value: string

        Sets the embed field value.

      • inline: boolean = false

        Whether this field should be displayed inline.

      Returns Embed

    • Sets the embed author info.

      Parameters

      • name: string

        The embed author.

      • Optionalurl: null | string

        The url.

      • Optionalicon_url: null | string

        The embed author image url.

      Returns Embed

    • Sets the embed footer.

      Parameters

      • text: string

        The footer text.

      • Optionalicon: null | string

        The url of the footer icon.

      Returns Embed

    • Sets the timestamp displayed on the embed.

      Parameters

      • Optionaltimestamp: number

        The UNIX timestamp.

      Returns Embed

    • Returns the correct Discord format for an embed.

      Parameters

      • Optionalformat: JsonTypes
      • __namedParameters: { suppressValidation: boolean } = ...

      Returns
          | {
              author: undefined
              | APIEmbedAuthor;
              color: undefined | number;
              description: undefined | string;
              fields: APIEmbedField[];
              footer: undefined | APIEmbedFooter;
              image: undefined | APIEmbedImage;
              thumbnail: undefined | APIEmbedThumbnail;
              timestamp: undefined | number;
              title: undefined | string;
              url: undefined | string;
              video: undefined | APIEmbedVideo;
          }
          | {
              author: undefined
              | APIEmbedAuthor;
              color: undefined | number;
              description: undefined | string;
              fields: APIEmbedField[];
              footer: undefined | APIEmbedFooter;
              image: undefined | APIEmbedImage;
              thumbnail: undefined | APIEmbedThumbnail;
              timestamp: undefined | string;
              title: undefined | string;
              url: undefined | string;
              video: undefined | APIEmbedVideo;
          }