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