Class: SiriAnswerLine

Inherits:
SiriObject show all
Defined in:
lib/siri_objects.rb

Instance Attribute Summary

Attributes inherited from SiriObject

#group, #klass, #properties

Instance Method Summary collapse

Methods inherited from SiriObject

#make_root, #to_hash

Constructor Details

#initialize(text = "", image = "") ⇒ SiriAnswerLine

Returns a new instance of SiriAnswerLine.



254
255
256
257
258
# File 'lib/siri_objects.rb', line 254

def initialize(text="", image="")
  super("ObjectLine", "com.apple.ace.answer")
  self.text = text
  self.image = image
end