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



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

attribute :created_at

#feedbackPlayer::Feedback

Returns the player feedback the result is a part of.

Returns:



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

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:



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

attribute :feedback_id

#idFixnum (readonly)

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

Returns:

  • (Fixnum)

    the (unique) ID of the player feedback result



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

attribute :id

#keyString

Returns the key of the player feedback result.

Returns:

  • (String)

    the key of the player feedback result



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

attribute :key

#playerPlayer

Returns the player the feedback result is for.

Returns:

  • (Player)

    the player the feedback result is for



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

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



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

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



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

attribute :updated_at

#valueString

Returns the value of the player feedback result.

Returns:

  • (String)

    the value of the player feedback result



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

attribute :value