Method: Jabber::Dataforms::XData#instructions
- Defined in:
- lib/xmpp4r/dataforms/x/data.rb
#instructions ⇒ Object
Get the Data Form instructions
- return
- Array
-
of [XDataInstructions] or nil
89 90 91 92 93 94 95 |
# File 'lib/xmpp4r/dataforms/x/data.rb', line 89 def instructions fields = [] each_element('instructions') do |xe| fields << xe end fields end |