class Message

Attributes

id[R]
message[R]
n_favorites[RW]
n_reshares[RW]
reply_to[R]
resent_by[R]
sender_name[R]
sender_nick[R]
time[R]

Public Class Methods

new(str) click to toggle source
# File gtk3/sample/gtk-demo/listbox.rb, line 60
def initialize(str)
  strv = str.split("|")
  parse(strv)
end