Class: Rubycord::Embed

Inherits:
Object
  • Object
show all
Defined in:
lib/rubycord/data/embed.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



48
49
50
# File 'lib/rubycord/data/embed.rb', line 48

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



29
30
31
# File 'lib/rubycord/data/embed.rb', line 29

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



16
17
18
# File 'lib/rubycord/data/embed.rb', line 16

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



51
52
53
# File 'lib/rubycord/data/embed.rb', line 51

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



33
34
35
# File 'lib/rubycord/data/embed.rb', line 33

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



39
40
41
# File 'lib/rubycord/data/embed.rb', line 39

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.



7
8
9
# File 'lib/rubycord/data/embed.rb', line 7

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



36
37
38
# File 'lib/rubycord/data/embed.rb', line 36

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



42
43
44
# File 'lib/rubycord/data/embed.rb', line 42

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



26
27
28
# File 'lib/rubycord/data/embed.rb', line 26

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



13
14
15
# File 'lib/rubycord/data/embed.rb', line 13

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


23
24
25
# File 'lib/rubycord/data/embed.rb', line 23

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.



10
11
12
# File 'lib/rubycord/data/embed.rb', line 10

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



45
46
47
# File 'lib/rubycord/data/embed.rb', line 45

def video
  @video
end