class Vobject::Vcalendar::PropertyValue::Requeststatusvalue

Public Class Methods

new(val) click to toggle source
# File lib/vobject/vcalendar/propertyvalue.rb, line 524
def initialize(val)
  self.value = val
  self.type = "requeststatusvalue"
end

Public Instance Methods

to_hash() click to toggle source
# File lib/vobject/vcalendar/propertyvalue.rb, line 535
def to_hash
  value
end
to_s() click to toggle source
# File lib/vobject/vcalendar/propertyvalue.rb, line 529
def to_s
  ret = "#{value[:statcode]};#{value[:statdesc]}"
  ret += ";#{value[:extdata]}" if value[:extdata]
  ret
end