Class: KodiClient::Types::GUI::PropertyValue

Inherits:
Object
  • Object
show all
Extended by:
Extensions::Creatable
Includes:
Extensions::Comparable
Defined in:
lib/kodi_client/types/gui/property_value_type.rb

Overview

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Extensions::Creatable

arr_to_mapping, attr_accessor, attr_reader, attr_writer, create, create_list, extract_field_from_hash, fields_to_map, hash_to_arr, type_mapping

Methods included from Extensions::Comparable

#==, #compare

Constructor Details

#initialize(current_control, current_window, fullscreen, skin, stereoscopic_mode) ⇒ PropertyValue

Returns a new instance of PropertyValue.



16
17
18
19
20
21
22
# File 'lib/kodi_client/types/gui/property_value_type.rb', line 16

def initialize(current_control, current_window, fullscreen, skin, stereoscopic_mode)
  @current_control = current_control
  @current_window = current_window
  @fullscreen = fullscreen
  @skin = skin
  @stereoscopic_mode = stereoscopic_mode
end

Instance Attribute Details

#current_controlObject (readonly)

Returns the value of attribute current_control.



11
12
13
# File 'lib/kodi_client/types/gui/property_value_type.rb', line 11

def current_control
  @current_control
end

#current_windowObject (readonly)

Returns the value of attribute current_window.



11
12
13
# File 'lib/kodi_client/types/gui/property_value_type.rb', line 11

def current_window
  @current_window
end

#fullscreenObject (readonly)

Returns the value of attribute fullscreen.



11
12
13
# File 'lib/kodi_client/types/gui/property_value_type.rb', line 11

def fullscreen
  @fullscreen
end

#skinObject (readonly)

Returns the value of attribute skin.



11
12
13
# File 'lib/kodi_client/types/gui/property_value_type.rb', line 11

def skin
  @skin
end

#stereoscopic_modeObject (readonly)

Returns the value of attribute stereoscopic_mode.



11
12
13
# File 'lib/kodi_client/types/gui/property_value_type.rb', line 11

def stereoscopic_mode
  @stereoscopic_mode
end