Class: SiriAssistantUtteranceView

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

Overview

VIEWS

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 = "", 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