Class: DeviantArt::Status
- Defined in:
- lib/deviantart/base.rb,
lib/deviantart/status.rb
Instance Attribute Summary collapse
-
#author ⇒ Object
:method: items.
-
#body ⇒ Object
:method: items.
-
#comments_count ⇒ Object
:method: items.
-
#is_deleted ⇒ Object
:method: items.
-
#is_share ⇒ Object
:method: items.
-
#items ⇒ Object
:method: items.
-
#statusid ⇒ Object
:method: items.
-
#ts ⇒ Object
:method: items.
-
#url ⇒ Object
:method: items.
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
#initialize, point_to_class, points_class_mapping
Constructor Details
This class inherits a constructor from DeviantArt::Base
Instance Attribute Details
#author ⇒ Object
:method: items
32 33 34 |
# File 'lib/deviantart/status.rb', line 32 def end |
#body ⇒ Object
:method: items
32 33 34 |
# File 'lib/deviantart/status.rb', line 32 def body @body end |
#comments_count ⇒ Object
:method: items
32 33 34 |
# File 'lib/deviantart/status.rb', line 32 def comments_count @comments_count end |
#is_deleted ⇒ Object
:method: items
32 33 34 |
# File 'lib/deviantart/status.rb', line 32 def is_deleted @is_deleted end |
#is_share ⇒ Object
:method: items
32 33 34 |
# File 'lib/deviantart/status.rb', line 32 def is_share @is_share end |
#items ⇒ Object
:method: items
32 33 34 |
# File 'lib/deviantart/status.rb', line 32 def items @items end |
#statusid ⇒ Object
:method: items
32 33 34 |
# File 'lib/deviantart/status.rb', line 32 def statusid @statusid end |
#ts ⇒ Object
:method: items
32 33 34 |
# File 'lib/deviantart/status.rb', line 32 def ts @ts end |
#url ⇒ Object
:method: items
32 33 34 |
# File 'lib/deviantart/status.rb', line 32 def url @url end |
Instance Method Details
#to_s ⇒ Object
37 38 39 |
# File 'lib/deviantart/status.rb', line 37 def to_s "#{self.class.name}: #{@body} by #{@author.username} #{@statusid}" end |