Class: SiriStartRequest
- Inherits:
-
SiriObject
- Object
- SiriObject
- SiriStartRequest
- Defined in:
- lib/siri_objects.rb
Overview
iPhone Responses (misc meta data back to the server)
Instance Attribute Summary
Attributes inherited from SiriObject
Instance Method Summary collapse
-
#initialize(utterance = "Testing", handsFree = false, proxyOnly = false) ⇒ SiriStartRequest
constructor
A new instance of SiriStartRequest.
Methods inherited from SiriObject
Constructor Details
#initialize(utterance = "Testing", handsFree = false, proxyOnly = false) ⇒ SiriStartRequest
Returns a new instance of SiriStartRequest.
292 293 294 295 296 297 298 299 |
# File 'lib/siri_objects.rb', line 292 def initialize(utterance="Testing", handsFree=false, proxyOnly=false) super("StartRequest", "com.apple.ace.system") self.utterance = utterance self.handsFree = handsFree if proxyOnly # dont send local when false since its non standard self.proxyOnly = proxyOnly end end |