Class: NewsItem

Inherits:
Object
  • Object
show all
Defined in:
lib/Appolo/Models/secondary/news_item.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(json_str) ⇒ NewsItem

Returns a new instance of NewsItem.



5
6
7
8
9
10
11
12
# File 'lib/Appolo/Models/secondary/news_item.rb', line 5

def initialize json_str
  json_data = Appolo.check_json_info json_str

  @id = json_data[ModelUtils::ID]
  @content = json_data[ModelUtils::CONTENT]
  @date_created = json_data[ModelUtils::CREATED_WHEN]
  @title = json_data[ModelUtils::TITLE]
end

Instance Attribute Details

#contentObject (readonly)

Returns the value of attribute content.



3
4
5
# File 'lib/Appolo/Models/secondary/news_item.rb', line 3

def content
  @content
end

#date_createdObject (readonly)

Returns the value of attribute date_created.



3
4
5
# File 'lib/Appolo/Models/secondary/news_item.rb', line 3

def date_created
  @date_created
end

#idObject (readonly)

Returns the value of attribute id.



3
4
5
# File 'lib/Appolo/Models/secondary/news_item.rb', line 3

def id
  @id
end

#titleObject (readonly)

Returns the value of attribute title.



3
4
5
# File 'lib/Appolo/Models/secondary/news_item.rb', line 3

def title
  @title
end

Instance Method Details

#to_sObject



14
15
16
# File 'lib/Appolo/Models/secondary/news_item.rb', line 14

def to_s
  "#{@id} - NewsItem : #{@title} - #{@date_created}"
end