Class: LWS::DigitalSignage::Player::Feedback::Result

Inherits:
Generic::Model
  • Object
show all
Defined in:
lib/lws/apps/digital_signage.rb

Overview

Note:

This class is only used within the context of the LWS::DigitalSignage::Player::Feedback class.

The player feedback result class

Instance Attribute Summary collapse

Instance Attribute Details

#created_atString (readonly)

Returns the timestamp of when the player feedback result was created.

Returns:

  • (String)

    the timestamp of when the player feedback result was created



976
# File 'lib/lws/apps/digital_signage.rb', line 976

attribute :created_at

#feedbackPlayer::Feedback

Returns the player feedback the result is a part of.

Returns:



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_idPlayer::Feedback

Returns the ID of the player feedback the result is a part of.

Returns:



956
# File 'lib/lws/apps/digital_signage.rb', line 956

attribute :feedback_id

#idFixnum (readonly)

Returns the (unique) ID of the player feedback result.

Returns:

  • (Fixnum)

    the (unique) ID of the player feedback result



947
# File 'lib/lws/apps/digital_signage.rb', line 947

attribute :id

#keyString

Returns the key of the player feedback result.

Returns:

  • (String)

    the key of the player feedback result



960
# File 'lib/lws/apps/digital_signage.rb', line 960

attribute :key

#playerPlayer

Returns the player the feedback result is for.

Returns:

  • (Player)

    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_idFixnum

Returns the ID of the player the feedback result is for.

Returns:

  • (Fixnum)

    the ID of the player the feedback result is for



968
# File 'lib/lws/apps/digital_signage.rb', line 968

attribute :player_id

#updated_atString (readonly)

Returns the timestamp of when the player feedback result was last updated.

Returns:

  • (String)

    the timestamp of when the player feedback result was last updated



980
# File 'lib/lws/apps/digital_signage.rb', line 980

attribute :updated_at

#valueString

Returns the value of the player feedback result.

Returns:

  • (String)

    the value of the player feedback result



972
# File 'lib/lws/apps/digital_signage.rb', line 972

attribute :value