Class: LWS::DigitalSignage::Player::Model::Capability
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::DigitalSignage::Player::Model::Capability
- Defined in:
- lib/lws/apps/digital_signage.rb
Overview
This class is only used within the context of the LWS::DigitalSignage::Player::Model class.
The player model capability class
Instance Attribute Summary collapse
-
#created_at ⇒ String
readonly
The timestamp of when the player model capability was created.
-
#id ⇒ Fixnum
readonly
The (unique) ID of the player model capability.
-
#key ⇒ String
The key of the player model capability.
-
#model ⇒ Player::Model
The player model that has the capability.
-
#model_id ⇒ Fixnum
The ID of the player model that has the capability.
-
#updated_at ⇒ String
readonly
The timestamp of when the player model capability was last updated.
-
#value ⇒ String
The value of the player model capability.
Instance Attribute Details
#created_at ⇒ String (readonly)
Returns the timestamp of when the player model capability was created.
1141 |
# File 'lib/lws/apps/digital_signage.rb', line 1141 attribute :created_at |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the player model capability.
1120 |
# File 'lib/lws/apps/digital_signage.rb', line 1120 attribute :id |
#key ⇒ String
Returns the key of the player model capability.
1124 |
# File 'lib/lws/apps/digital_signage.rb', line 1124 attribute :key |
#model ⇒ Player::Model
Returns the player model that has the capability.
1128 1129 |
# File 'lib/lws/apps/digital_signage.rb', line 1128 belongs_to :model, class_name: "LWS::DigitalSignage::Player::Model", uri: "player/models/:id" |
#model_id ⇒ Fixnum
Returns the ID of the player model that has the capability.
1133 |
# File 'lib/lws/apps/digital_signage.rb', line 1133 attribute :model_id |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the player model capability was last updated.
1145 |
# File 'lib/lws/apps/digital_signage.rb', line 1145 attribute :updated_at |
#value ⇒ String
Returns the value of the player model capability.
1137 |
# File 'lib/lws/apps/digital_signage.rb', line 1137 attribute :value |