Class: SiriAddViews

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(scrollToTop = false, temporary = false, dialogPhase = "Completion", views = []) ⇒ SiriAddViews

Returns a new instance of SiriAddViews.



81
82
83
84
85
86
87
# File 'lib/siri_objects.rb', line 81

def initialize(scrollToTop=false, temporary=false, dialogPhase="Completion", views=[])
  super("AddViews", "com.apple.ace.assistant")
  self.scrollToTop = scrollToTop
  self.views = views
  self.temporary = temporary
  self.dialogPhase = dialogPhase
end