class Vobject::Vcalendar::PropertyValue::Datetimelist
Public Class Methods
new(val)
click to toggle source
# File lib/vobject/vcalendar/propertyvalue.rb, line 494 def initialize(val) self.value = val self.type = "datetimelist" end
Public Instance Methods
to_hash()
click to toggle source
# File lib/vobject/vcalendar/propertyvalue.rb, line 503 def to_hash value.map(&:to_hash) end
to_s()
click to toggle source
# File lib/vobject/vcalendar/propertyvalue.rb, line 499 def to_s value.map(&:to_s).join(",") end