Class: LWS::DigitalSignage::Player::PredefinedConfiguration
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::DigitalSignage::Player::PredefinedConfiguration
- Defined in:
- lib/lws/apps/digital_signage.rb
Overview
The predefined player configuration
Defined Under Namespace
Classes: Setting
Instance Attribute Summary collapse
-
#company ⇒ LWS::Auth::Company
The company the predefined player configuration belongs to.
-
#company_id ⇒ Integer
The ID of the company the predefined player configuration belongs to.
-
#configuration_ids ⇒ Array<Integer>
The IDs of the player configurations that use the predefined player configuration as a basis.
-
#configurations ⇒ Array<Player::Configuration>
The player configurations that use the predefined player configuration as a basis.
-
#description ⇒ String
The description of the predefined player configuration.
-
#name ⇒ String
The name of the predefined player configuration.
-
#setting_ids ⇒ Array<Integer>
The IDs of the settings of the predefined player configuration.
-
#settings ⇒ Array<Player::PredefinedConfiguration::Setting>
The settings of the predefined player configuration.
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
#company ⇒ LWS::Auth::Company
Returns the company the predefined player configuration belongs to.
1821 |
# File 'lib/lws/apps/digital_signage.rb', line 1821 belongs_to :company, class_name: "LWS::Auth::Company" |
#company_id ⇒ Integer
Returns the ID of the company the predefined player configuration belongs to.
1825 |
# File 'lib/lws/apps/digital_signage.rb', line 1825 attribute :compandy_id |
#configuration_ids ⇒ Array<Integer>
Returns the IDs of the player configurations that use the predefined player configuration as a basis.
1830 |
# File 'lib/lws/apps/digital_signage.rb', line 1830 attribute :configuration_ids |
#configurations ⇒ Array<Player::Configuration>
Returns the player configurations that use the predefined player configuration as a basis.
1835 1836 |
# File 'lib/lws/apps/digital_signage.rb', line 1835 has_many :configurations, class_name: "LWS::DigitalSignage::Player::Configuration", uri: "player/predefined_configurations/:predefined_configuration_id/configurations(/:id)" |
#description ⇒ String
Returns the description of the predefined player configuration.
1840 |
# File 'lib/lws/apps/digital_signage.rb', line 1840 attribute :description |
#name ⇒ String
Returns the name of the predefined player configuration.
1844 |
# File 'lib/lws/apps/digital_signage.rb', line 1844 attribute :name |
#setting_ids ⇒ Array<Integer>
Returns the IDs of the settings of the predefined player configuration.
1849 |
# File 'lib/lws/apps/digital_signage.rb', line 1849 attribute :setting_ids |
#settings ⇒ Array<Player::PredefinedConfiguration::Setting>
Returns the settings of the predefined player configuration.
1854 1855 |
# File 'lib/lws/apps/digital_signage.rb', line 1854 has_many :settings, class_name: "LWS::DigitalSignage::Player::PredefinedConfiguration::Setting", uri: "player/predefined_configurations/:predefined_configuration_id/settings(/:id)" |