class Tilia::VObject::Property::Unknown

Unknown property.

This object represents any properties not recognized by the parser. This type of value has been introduced by the jCal, jCard specs.

Public Instance Methods

json_value() click to toggle source

Returns the value, in the format it should be encoded for json.

This method must always return an array.

@return [array]

# File lib/tilia/v_object/property/unknown.rb, line 14
def json_value
  [raw_mime_dir_value]
end
value_type() click to toggle source

Returns the type of value.

This corresponds to the VALUE= parameter. Every property also has a 'default' valueType.

@return [String]

# File lib/tilia/v_object/property/unknown.rb, line 24
def value_type
  'UNKNOWN'
end