Class: LWS::DigitalSignage::Player::Tag
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::DigitalSignage::Player::Tag
- Defined in:
- lib/lws/apps/digital_signage.rb
Overview
Note:
This class is only used within the context of the LWS::DigitalSignage::Player class.
The player tag class
Instance Attribute Summary collapse
-
#key ⇒ String
The key of the player tag.
-
#player ⇒ Player
The player associated with the tag.
-
#player_id ⇒ Integer
The ID of the player associated with the tag.
-
#protected_value ⇒ Boolean
Whether the value of the player tag should return a protected representation of the value.
-
#value ⇒ String?
The value of the player tag.
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 player tag.
1987 |
# File 'lib/lws/apps/digital_signage.rb', line 1987 attribute :key |
#player ⇒ Player
Returns the player associated with the tag.
1991 |
# File 'lib/lws/apps/digital_signage.rb', line 1991 belongs_to :player, class_name: "LWS::DigitalSignage::Player" |
#player_id ⇒ Integer
Returns the ID of the player associated with the tag.
1995 |
# File 'lib/lws/apps/digital_signage.rb', line 1995 attribute :player_id |
#protected_value ⇒ Boolean
Whether the value of the player tag should return a protected representation of the value
2000 |
# File 'lib/lws/apps/digital_signage.rb', line 2000 attribute :protected_value |
#value ⇒ String?
Returns the value of the player tag.
2004 |
# File 'lib/lws/apps/digital_signage.rb', line 2004 attribute :value |