Class: LWS::DigitalSignage::Player::Feedback::Result
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::DigitalSignage::Player::Feedback::Result
- Defined in:
- lib/lws/apps/digital_signage.rb
Overview
This class is only used within the context of the LWS::DigitalSignage::Player::Feedback class.
The player feedback result class
Instance Attribute Summary collapse
-
#created_at ⇒ String
readonly
The timestamp of when the player feedback result was created.
-
#feedback ⇒ Player::Feedback
The player feedback the result is a part of.
-
#feedback_id ⇒ Player::Feedback
The ID of the player feedback the result is a part of.
-
#id ⇒ Fixnum
readonly
The (unique) ID of the player feedback result.
-
#key ⇒ String
The key of the player feedback result.
-
#player ⇒ Player
The player the feedback result is for.
-
#player_id ⇒ Fixnum
The ID of the player the feedback result is for.
-
#updated_at ⇒ String
readonly
The timestamp of when the player feedback result was last updated.
-
#value ⇒ String
The value of the player feedback result.
Instance Attribute Details
#created_at ⇒ String (readonly)
Returns the timestamp of when the player feedback result was created.
976 |
# File 'lib/lws/apps/digital_signage.rb', line 976 attribute :created_at |
#feedback ⇒ Player::Feedback
Returns the player feedback the result is a part of.
951 952 |
# File 'lib/lws/apps/digital_signage.rb', line 951 belongs_to :feedback, class_name: "LWS::DigitalSignage::Player::Feedback", uri: "players/:player_id/feedbacks/:id" |
#feedback_id ⇒ Player::Feedback
Returns the ID of the player feedback the result is a part of.
956 |
# File 'lib/lws/apps/digital_signage.rb', line 956 attribute :feedback_id |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the player feedback result.
947 |
# File 'lib/lws/apps/digital_signage.rb', line 947 attribute :id |
#key ⇒ String
Returns the key of the player feedback result.
960 |
# File 'lib/lws/apps/digital_signage.rb', line 960 attribute :key |
#player ⇒ Player
Returns the player the feedback result is for.
964 |
# File 'lib/lws/apps/digital_signage.rb', line 964 belongs_to :player, class_name: "LWS::DigitalSignage::Player" |
#player_id ⇒ Fixnum
Returns the ID of the player the feedback result is for.
968 |
# File 'lib/lws/apps/digital_signage.rb', line 968 attribute :player_id |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the player feedback result was last updated.
980 |
# File 'lib/lws/apps/digital_signage.rb', line 980 attribute :updated_at |
#value ⇒ String
Returns the value of the player feedback result.
972 |
# File 'lib/lws/apps/digital_signage.rb', line 972 attribute :value |