Method: Blather::Stanza::X::Field::Option#value

Defined in:
lib/blather/stanza/x.rb

#valueString

The Field Option’s value

Returns:

  • (String)


381
382
383
384
385
386
387
# File 'lib/blather/stanza/x.rb', line 381

def value
  if self.namespace
    content_from 'ns:value', :ns => self.namespace.href
  else
    content_from :value
  end
end