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 was created.
-
#id ⇒ Fixnum
readonly
The (unique) ID of the player tag.
-
#key ⇒ String
The key of the player tag.
-
#player ⇒ Player
The player associated with the tag.
-
#player_id ⇒ Fixnum
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 was last updated.
-
#value ⇒ String?
The value of the player tag.
Instance Attribute Details
#created_at ⇒ String (readonly)
Returns the timestamp of when the player was created.
1789 |
# File 'lib/lws/apps/digital_signage.rb', line 1789 attribute :created_at |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the player tag.
1764 |
# File 'lib/lws/apps/digital_signage.rb', line 1764 attribute :id |
#key ⇒ String
Returns the key of the player tag.
1768 |
# File 'lib/lws/apps/digital_signage.rb', line 1768 attribute :key |
#player ⇒ Player
Returns the player associated with the tag.
1772 |
# File 'lib/lws/apps/digital_signage.rb', line 1772 belongs_to :player, class_name: "LWS::DigitalSignage::Player" |
#player_id ⇒ Fixnum
Returns the ID of the player associated with the tag.
1776 |
# File 'lib/lws/apps/digital_signage.rb', line 1776 attribute :player_id |
#protected_value ⇒ Boolean
Whether the value of the player tag should return a protected representation of the value
1781 |
# File 'lib/lws/apps/digital_signage.rb', line 1781 attribute :protected_value |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the player was last updated.
1793 |
# File 'lib/lws/apps/digital_signage.rb', line 1793 attribute :updated_at |
#value ⇒ String?
Returns the value of the player tag.
1785 |
# File 'lib/lws/apps/digital_signage.rb', line 1785 attribute :value |