Class: Discordrb::Embed

Inherits:
Object
  • Object
show all
Defined in:
lib/discordrb/data.rb

Overview

An Embed object that is contained in a message A freshly generated embed object will not appear in a message object unless grabbed from its ID in a channel.

Instance Attribute Summary collapse

Instance Attribute Details

#authorEmbedAuthor? (readonly)

Returns the author of the embed object. nil if there is not an author.

Returns:

  • (EmbedAuthor, nil)

    the author of the embed object. nil if there is not an author



2144
2145
2146
# File 'lib/discordrb/data.rb', line 2144

def author
  @author
end

#colorString? (readonly) Also known as: colour

Returns the color of the embed object. nil if there is not a color.

Returns:

  • (String, nil)

    the color of the embed object. nil if there is not a color



2125
2126
2127
# File 'lib/discordrb/data.rb', line 2125

def color
  @color
end

#descriptionString? (readonly)

Returns the description of the embed object. nil if there is not a description.

Returns:

  • (String, nil)

    the description of the embed object. nil if there is not a description



2112
2113
2114
# File 'lib/discordrb/data.rb', line 2112

def description
  @description
end

#fieldsArray<EmbedField>? (readonly)

Returns the fields of the embed object. nil if there are no fields.

Returns:

  • (Array<EmbedField>, nil)

    the fields of the embed object. nil if there are no fields



2147
2148
2149
# File 'lib/discordrb/data.rb', line 2147

def fields
  @fields
end

Returns the footer of the embed object. nil if there is not a footer.

Returns:

  • (EmbedFooter, nil)

    the footer of the embed object. nil if there is not a footer



2129
2130
2131
# File 'lib/discordrb/data.rb', line 2129

def footer
  @footer
end

#imageEmbedImage? (readonly)

Returns the image of the embed object. nil if there is not an image.

Returns:

  • (EmbedImage, nil)

    the image of the embed object. nil if there is not an image



2135
2136
2137
# File 'lib/discordrb/data.rb', line 2135

def image
  @image
end

#messageMessage (readonly)

Returns the message this embed object is contained in.

Returns:

  • (Message)

    the message this embed object is contained in.



2103
2104
2105
# File 'lib/discordrb/data.rb', line 2103

def message
  @message
end

#providerEmbedProvider? (readonly)

Returns the provider of the embed object. nil if there is not a provider.

Returns:

  • (EmbedProvider, nil)

    the provider of the embed object. nil if there is not a provider



2132
2133
2134
# File 'lib/discordrb/data.rb', line 2132

def provider
  @provider
end

#thumbnailEmbedThumbnail? (readonly)

Returns the thumbnail of the embed object. nil if there is not a thumbnail.

Returns:

  • (EmbedThumbnail, nil)

    the thumbnail of the embed object. nil if there is not a thumbnail



2138
2139
2140
# File 'lib/discordrb/data.rb', line 2138

def thumbnail
  @thumbnail
end

#timestampTime? (readonly)

Returns the timestamp of the embed object. nil if there is not a timestamp.

Returns:

  • (Time, nil)

    the timestamp of the embed object. nil if there is not a timestamp



2122
2123
2124
# File 'lib/discordrb/data.rb', line 2122

def timestamp
  @timestamp
end

#titleString? (readonly)

Returns the title of the embed object. nil if there is not a title.

Returns:

  • (String, nil)

    the title of the embed object. nil if there is not a title



2109
2110
2111
# File 'lib/discordrb/data.rb', line 2109

def title
  @title
end

#typeSymbol (readonly)

Returns the type of the embed object. Possible types are:

  • :link
  • :video
  • :image.

Returns:

  • (Symbol)

    the type of the embed object. Possible types are:

    • :link
    • :video
    • :image


2119
2120
2121
# File 'lib/discordrb/data.rb', line 2119

def type
  @type
end

#urlString (readonly)

Returns the URL this embed object is based on.

Returns:

  • (String)

    the URL this embed object is based on.



2106
2107
2108
# File 'lib/discordrb/data.rb', line 2106

def url
  @url
end

#videoEmbedVideo? (readonly)

Returns the video of the embed object. nil if there is not a video.

Returns:

  • (EmbedVideo, nil)

    the video of the embed object. nil if there is not a video



2141
2142
2143
# File 'lib/discordrb/data.rb', line 2141

def video
  @video
end