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
This class is only used within the context of the LWS::DigitalSignage::Player class.
The player tag class
Instance Attribute Summary collapse
-
#created_at ⇒ String
readonly
The timestamp of when the player tag was created.
-
#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.
-
#updated_at ⇒ String
readonly
The timestamp of when the player tag was last updated.
-
#value ⇒ String?
The value of the player tag.
Attributes inherited from Generic::Model
Method Summary
Methods inherited from Generic::Model
Instance Attribute Details
#created_at ⇒ String (readonly)
Returns the timestamp of when the player tag was created.
1751 |
# File 'lib/lws/apps/digital_signage.rb', line 1751 attribute :created_at |
#key ⇒ String
Returns the key of the player tag.
1730 |
# File 'lib/lws/apps/digital_signage.rb', line 1730 attribute :key |
#player ⇒ Player
Returns the player associated with the tag.
1734 |
# File 'lib/lws/apps/digital_signage.rb', line 1734 belongs_to :player, class_name: "LWS::DigitalSignage::Player" |
#player_id ⇒ Integer
Returns the ID of the player associated with the tag.
1738 |
# File 'lib/lws/apps/digital_signage.rb', line 1738 attribute :player_id |
#protected_value ⇒ Boolean
Whether the value of the player tag should return a protected representation of the value
1743 |
# File 'lib/lws/apps/digital_signage.rb', line 1743 attribute :protected_value |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the player tag was last updated.
1755 |
# File 'lib/lws/apps/digital_signage.rb', line 1755 attribute :updated_at |
#value ⇒ String?
Returns the value of the player tag.
1747 |
# File 'lib/lws/apps/digital_signage.rb', line 1747 attribute :value |