Class: ArticleJSON::Elements::Image
- Defined in:
- lib/article_json/elements/image.rb
Instance Attribute Summary collapse
-
#caption ⇒ Object
readonly
Returns the value of attribute caption.
-
#float ⇒ Object
readonly
Returns the value of attribute float.
-
#source_url ⇒ Object
readonly
Returns the value of attribute source_url.
Attributes inherited from Base
Class Method Summary collapse
-
.parse_hash(hash) ⇒ ArticleJSON::Elements::Image
Create a image element from Hash.
Instance Method Summary collapse
-
#initialize(source_url:, caption:, float: nil) ⇒ Image
constructor
A new instance of Image.
-
#to_h ⇒ Hash
Hash representation of this image element.
Methods inherited from Base
Constructor Details
#initialize(source_url:, caption:, float: nil) ⇒ Image
Returns a new instance of Image.
9 10 11 12 13 14 |
# File 'lib/article_json/elements/image.rb', line 9 def initialize(source_url:, caption:, float: nil) @type = :image @source_url = source_url @caption = caption @float = float end |
Instance Attribute Details
#caption ⇒ Object (readonly)
Returns the value of attribute caption.
4 5 6 |
# File 'lib/article_json/elements/image.rb', line 4 def caption @caption end |
#float ⇒ Object (readonly)
Returns the value of attribute float.
4 5 6 |
# File 'lib/article_json/elements/image.rb', line 4 def float @float end |
#source_url ⇒ Object (readonly)
Returns the value of attribute source_url.
4 5 6 |
# File 'lib/article_json/elements/image.rb', line 4 def source_url @source_url end |
Class Method Details
.parse_hash(hash) ⇒ ArticleJSON::Elements::Image
Create a image element from Hash
30 31 32 33 34 35 36 |
# File 'lib/article_json/elements/image.rb', line 30 def parse_hash(hash) new( source_url: hash[:source_url], caption: parse_hash_list(hash[:caption]), float: hash[:float]&.to_sym ) end |
Instance Method Details
#to_h ⇒ Hash
Hash representation of this image element
18 19 20 21 22 23 24 25 |
# File 'lib/article_json/elements/image.rb', line 18 def to_h { type: type, source_url: source_url, float: float, caption: caption.map(&:to_h), } end |