Class: LWS::DigitalSignage::Player::Feedback
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::DigitalSignage::Player::Feedback
- 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 feedback class
Defined Under Namespace
Classes: Result
Instance Attribute Summary collapse
-
#created_at ⇒ String
readonly
The timestamp of when the player feedback was created.
-
#id ⇒ Fixnum
readonly
The (unique) ID of the player feedback.
-
#player ⇒ Player
The player the feedback is originating from.
-
#player_id ⇒ Fixnum
The ID of the player the feedback is originating from.
-
#release ⇒ Player::Os::Branch::Release
The player OS branch release the feedback is related to.
-
#release_id ⇒ Fixnum
The ID of the player OS branch release the feedback is related to.
-
#results ⇒ Array<Player::Feedback::Result>
The results of the player feedback.
-
#updated_at ⇒ String
readonly
The timestamp of when the player feedback was last updated.
Instance Attribute Details
#created_at ⇒ String (readonly)
Returns the timestamp of when the player feedback was created.
950 |
# File 'lib/lws/apps/digital_signage.rb', line 950 attribute :created_at |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the player feedback.
921 |
# File 'lib/lws/apps/digital_signage.rb', line 921 attribute :id |
#player ⇒ Player
Returns the player the feedback is originating from.
925 |
# File 'lib/lws/apps/digital_signage.rb', line 925 belongs_to :player, class_name: "LWS::DigitalSignage::Player" |
#player_id ⇒ Fixnum
Returns the ID of the player the feedback is originating from.
929 |
# File 'lib/lws/apps/digital_signage.rb', line 929 attribute :player_id |
#release ⇒ Player::Os::Branch::Release
Returns the player OS branch release the feedback is related to.
935 936 |
# File 'lib/lws/apps/digital_signage.rb', line 935 belongs_to :release, class_name: "LWS::DigitalSignage::Player::Os::Branch::Release", uri: "player/os/branches/:branch_id/releases/:id" |
#release_id ⇒ Fixnum
Returns the ID of the player OS branch release the feedback is related to.
|
|
# File 'lib/lws/apps/digital_signage.rb', line 938
|
#results ⇒ Array<Player::Feedback::Result>
Returns the results of the player feedback.
945 946 |
# File 'lib/lws/apps/digital_signage.rb', line 945 has_many :results, class_name: "LWS::DigitalSignage::Player::Feedback::Result", uri: "players/:player_id/feedbacks/:feedback_id/results/(:id)" |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the player feedback was last updated.
954 |
# File 'lib/lws/apps/digital_signage.rb', line 954 attribute :updated_at |