class NiwaTextream::Thread

Attributes

last_updated[RW]
num_comment[RW]
title[RW]

Public Class Methods

new(elem, title, num_comment, last_updated) click to toggle source
# File lib/niwa_textream/models/thread.rb, line 10
def initialize(elem, title, num_comment, last_updated)
  @elem = elem
  @title = title
  @num_comment = num_comment
  @last_updated = last_updated
end