Class: SiriAnswerLine
- Inherits:
-
SiriObject
- Object
- SiriObject
- SiriAnswerLine
- Defined in:
- lib/siri_objects.rb
Instance Attribute Summary
Attributes inherited from SiriObject
Instance Method Summary collapse
-
#initialize(text = "", image = "") ⇒ SiriAnswerLine
constructor
A new instance of SiriAnswerLine.
Methods inherited from SiriObject
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 |