Class: LWS::DigitalSignage::Player::PredefinedConfiguration::Setting
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::DigitalSignage::Player::PredefinedConfiguration::Setting
- Defined in:
- lib/lws/apps/digital_signage.rb
Overview
This class is only used within the context of the LWS::DigitalSignage::Player::PredefinedConfiguration class.
The predefined player configuration setting class
Instance Attribute Summary collapse
-
#key ⇒ String
The key of the predefined player configuration setting.
-
#predefined_configuration ⇒ Player::PredefinedConfiguration
The predefined player configuration the setting is defined in.
-
#predefined_configuration_id ⇒ Integer
The ID of the predefined player configuration the setting is defined in.
-
#protected_value ⇒ Boolean
Whether the value of the predefined player configuration setting should return a protected representation of the value.
-
#value ⇒ String?
The value of the predefined player configuration setting.
Attributes inherited from Generic::Model
#created_at, #id, #updated_at, #url, #url_html
Method Summary
Methods inherited from Generic::Model
#deep_dup, #dig, #reload, #rollback, #save
Instance Attribute Details
#key ⇒ String
Returns the key of the predefined player configuration setting.
1869 |
# File 'lib/lws/apps/digital_signage.rb', line 1869 attribute :key |
#predefined_configuration ⇒ Player::PredefinedConfiguration
Returns the predefined player configuration the setting is defined in.
1874 1875 |
# File 'lib/lws/apps/digital_signage.rb', line 1874 belongs_to :predefined_configuration, class_name: "LWS::DigitalSignage::Player::PredefinedConfiguration", uri: "player/predefined_configurations/:id" |
#predefined_configuration_id ⇒ Integer
Returns the ID of the predefined player configuration the setting is defined in.
1879 |
# File 'lib/lws/apps/digital_signage.rb', line 1879 attribute :predefined_configuration_id |
#protected_value ⇒ Boolean
Returns whether the value of the predefined player configuration setting should return a protected representation of the value.
1884 |
# File 'lib/lws/apps/digital_signage.rb', line 1884 attribute :protected_value |
#value ⇒ String?
Returns the value of the predefined player configuration setting.
1888 |
# File 'lib/lws/apps/digital_signage.rb', line 1888 attribute :value |