Class: SiriAssistantUtteranceView
- Inherits:
-
SiriObject
- Object
- SiriObject
- SiriAssistantUtteranceView
- Defined in:
- lib/siri_objects.rb
Overview
VIEWS
Instance Attribute Summary
Attributes inherited from SiriObject
Instance Method Summary collapse
-
#initialize(text = "", speakableText = text, dialogIdentifier = "Misc#ident", listenAfterSpeaking = false) ⇒ SiriAssistantUtteranceView
constructor
A new instance of SiriAssistantUtteranceView.
Methods inherited from SiriObject
Constructor Details
#initialize(text = "", speakableText = text, dialogIdentifier = "Misc#ident", listenAfterSpeaking = false) ⇒ SiriAssistantUtteranceView
Returns a new instance of SiriAssistantUtteranceView.
99 100 101 102 103 104 105 |
# File 'lib/siri_objects.rb', line 99 def initialize(text="", speakableText=text, dialogIdentifier="Misc#ident", listenAfterSpeaking=false) super("AssistantUtteranceView", "com.apple.ace.assistant") self.text = text self.speakableText = speakableText self.dialogIdentifier = dialogIdentifier self.listenAfterSpeaking = listenAfterSpeaking end |