Class: LWS::DigitalSignage::Player::Configuration

Inherits:
Generic::Model
  • Object
show all
Defined in:
lib/lws/apps/digital_signage.rb

Overview

The player configuration class

Defined Under Namespace

Classes: Setting

Instance Attribute Summary collapse

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

#companyLWS::Auth::Company

Returns the company the player configuration belongs to.

Returns:



1217
# File 'lib/lws/apps/digital_signage.rb', line 1217

belongs_to :company, class_name: "LWS::Auth::Company"

#company_idInteger

Returns the ID of the company the player configuration belongs to.

Returns:

  • (Integer)

    the ID of the company the player configuration belongs to



1221
# File 'lib/lws/apps/digital_signage.rb', line 1221

attribute :company_id

#descriptionString?

Returns the description of the player configuration.

Returns:

  • (String, nil)

    the description of the player configuration



1225
# File 'lib/lws/apps/digital_signage.rb', line 1225

attribute :description

#nameString

Returns the name of the player configuration.

Returns:

  • (String)

    the name of the player configuration



1229
# File 'lib/lws/apps/digital_signage.rb', line 1229

attribute :name

#player_idsArray<Integer>

Returns the IDs of the players the configuration is used for.

Returns:

  • (Array<Integer>)

    the IDs of the players the configuration is used for



1234
# File 'lib/lws/apps/digital_signage.rb', line 1234

attribute :player_ids

#playersArray<Player>

Returns the players the configuration is used for.

Returns:

  • (Array<Player>)

    the players the configuration is used for



1238
1239
# File 'lib/lws/apps/digital_signage.rb', line 1238

has_many :players, class_name: "LWS::DigitalSignage::Player",
uri: "player/configurations/:configuration_id/players(/:id)"

#predefined_configurationPlayer::PredefinedConfiguration?

Returns the predefined configuration that is used as a bases for the configuration.

Returns:



1244
1245
# File 'lib/lws/apps/digital_signage.rb', line 1244

belongs_to :predefined_configuration, class_name: "LWS::DigitalSignage::Player::PredefinedConfiguration",
uri: "player/predefined_configurations/:id"

#predefined_configuration_idInteger?

Returns the ID of the predefined configuration that is used as a basis for the player configuration.

Returns:

  • (Integer, nil)

    the ID of the predefined configuration that is used as a basis for the player configuration



1250
# File 'lib/lws/apps/digital_signage.rb', line 1250

attribute :predefined_configuration_id

#setting_idsArray<Integer>

Returns the IDs of the settings of the player configuration.

Returns:

  • (Array<Integer>)

    the IDs of the settings of the player configuration



1255
# File 'lib/lws/apps/digital_signage.rb', line 1255

attribute :setting_ids

#settingsArray<Player::Configuration::Setting>

Returns the settings of the player configuration.

Returns:



1260
1261
# File 'lib/lws/apps/digital_signage.rb', line 1260

has_many :settings, class_name: "LWS::DigitalSignage::Player::Configuration::Setting",
uri: "player/configurations/:configuration_id/settings(/:id)"