Class: LWS::DigitalSignage::Player::Request

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 class.

The player request class

Instance Attribute Summary collapse

Instance Attribute Details

#action"unknown", ...

Returns the player request action.

Returns:

  • ("unknown", "send_logs", "clear_logs", "clear_content", "clear_layouts", "send_screenshot", "reboot", "retrieve_playlist", "os_switch_branch", "os_deploy", "os_pull", "restart_lc_session", "send_feedback", "apply_configuration")

    the player request action



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

attribute :action

#argumentString?

Returns the optional argument for the player request.

Returns:

  • (String, nil)

    the optional argument for the player request



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

attribute :argument

#created_atString (readonly)

Returns the timestamp of when the player request was created.

Returns:

  • (String)

    the timestamp of when the player request was created



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

attribute :created_at

#feedbackPlayer::Feedback?

This field should be set once the action has been processed (see #processed) and the action is “send_feedback”.

Returns:

  • (Player::Feedback, nil)

    the player feedback as a response to the action request “send_status”



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

belongs_to :feedback, class_name: "LWS::DigitalSignage::Player::Feedback",
uri: "players/:player_id/feedbacks/:id"

#feedback_idFixnum?

Returns the ID of the player feedback as a response to the action request “send_status”.

Returns:

  • (Fixnum, nil)

    the ID of the player feedback as a response to the action request “send_status”



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

attribute :feedback_id

#idFixnum (readonly)

Returns the (unique) ID of the player request.

Returns:

  • (Fixnum)

    the (unique) ID of the player request



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

attribute :id

#logPlayer::Log?

This field should be set once the action has been processed (see #processed) and the action is “send_logs”.

Returns:

  • (Player::Log, nil)

    the player log as a response to the action request “send_logs”



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

belongs_to :log, class_name: "LWS::DigitalSignage::Player::Log",
uri: "players/:player_id/logs/:id"

#log_idFixnum?

Returns the ID of the player log as a response to the action request “send_logs”.

Returns:

  • (Fixnum, nil)

    the ID of the player log as a response to the action request “send_logs”



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

attribute :log_id

#playerPlayer

Returns the player the request is sent to.

Returns:

  • (Player)

    the player the request is sent to



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

belongs_to :player, class_name: "LWS::DigitalSignage::Player"

#player_idFixnum

Returns the ID of the player the request is sent to.

Returns:

  • (Fixnum)

    the ID of the player the request is sent to



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

attribute :player_id

#processedBoolean

Returns whether the request has been processed by the player.

Returns:

  • (Boolean)

    whether the request has been processed by the player



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

attribute :processed

#responseString?

Returns the player request response text (if the response is not a specific object).

Returns:

  • (String, nil)

    the player request response text (if the response is not a specific object)



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

attribute :response

#screenshotPlayer::Screenshot?

This field should be set once the action has been processed (see #processed) and the action is “send_screenshot”.

Returns:

  • (Player::Screenshot, nil)

    the player screenshot as a response to the action request “send_screenshot”



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

belongs_to :screenshot, class_name: "LWS::DigitalSignage::Player::Screenshot",
uri: "players/:player_id/screenshots/:id"

#screenshot_idFixnum?

Returns the ID of the player screenshot as a response to the action request “send_screenshot”.

Returns:

  • (Fixnum, nil)

    the ID of the player screenshot as a response to the action request “send_screenshot”



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

attribute :screenshot_id

#updated_atString (readonly)

Returns the timestamp of when the player request was last updated.

Returns:

  • (String)

    the timestamp of when the player request was last updated



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

attribute :updated_at