Class: LWS::DigitalSignage::Player::Configuration::Setting
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::DigitalSignage::Player::Configuration::Setting
- Defined in:
- lib/lws/apps/digital_signage.rb
Overview
This class is only used within the context of the LWS::DigitalSignage::Player::Configuration class.
The player configuration setting class
Instance Attribute Summary collapse
-
#configuration ⇒ Player::Configuration
The player configuration the setting is defined in.
-
#configuration_id ⇒ Fixnum
The ID of the player configuration the setting is defined in.
-
#created_at ⇒ String
readonly
The timestamp of when the player configuration setting was created.
-
#id ⇒ Fixnum
readonly
The (unique) ID of the player configuration setting.
-
#key ⇒ String
The key of the player configuration setting.
-
#protected_value ⇒ Boolean
Whether the value of the player configuration setting should return a protected representation of the value.
-
#updated_at ⇒ String
readonly
The timestamp of when the player configuration setting was last updated.
-
#value ⇒ String?
The value of the player configuration setting.
Instance Attribute Details
#configuration ⇒ Player::Configuration
Returns the player configuration the setting is defined in.
861 862 |
# File 'lib/lws/apps/digital_signage.rb', line 861 belongs_to :configuration, class_name: "LWS::DigitalSignage::Player::Configuration", uri: "player/configurations/:id" |
#configuration_id ⇒ Fixnum
Returns the ID of the player configuration the setting is defined in.
866 |
# File 'lib/lws/apps/digital_signage.rb', line 866 attribute :configuration_id |
#created_at ⇒ String (readonly)
Returns the timestamp of when the player configuration setting was created.
883 |
# File 'lib/lws/apps/digital_signage.rb', line 883 attribute :created_at |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the player configuration setting.
856 |
# File 'lib/lws/apps/digital_signage.rb', line 856 attribute :id |
#key ⇒ String
Returns the key of the player configuration setting.
870 |
# File 'lib/lws/apps/digital_signage.rb', line 870 attribute :key |
#protected_value ⇒ Boolean
Returns whether the value of the player configuration setting should return a protected representation of the value.
875 |
# File 'lib/lws/apps/digital_signage.rb', line 875 attribute :protected_value |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the player configuration setting was last updated.
887 |
# File 'lib/lws/apps/digital_signage.rb', line 887 attribute :updated_at |
#value ⇒ String?
Returns the value of the player configuration setting.
879 |
# File 'lib/lws/apps/digital_signage.rb', line 879 attribute :value |