class Vcard::V4_0::PropertyValue::Clientpidmap

Public Class Methods

new(val) click to toggle source
# File lib/vobject/vcard/v4_0/propertyvalue.rb, line 93
def initialize(val)
  self.value = val
  # not explicitly specified in spec
  self.type = "text"
end

Public Instance Methods

to_hash() click to toggle source
# File lib/vobject/vcard/v4_0/propertyvalue.rb, line 103
def to_hash
  value
end
to_s() click to toggle source
# File lib/vobject/vcard/v4_0/propertyvalue.rb, line 99
def to_s
  "#{value[:pid]};#{value[:uri]}"
end