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

Attributes inherited from Generic::Model

#created_at, #id, #updated_at, #url, #url_html

Method Summary

Methods inherited from Generic::Model

#deep_dup, #dig, #reload, #rollback, #save

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



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

attribute :action

#argumentString?

Returns the optional argument for the player request.

Returns:

  • (String, nil)

    the optional argument for the player request



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

attribute :argument

#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”



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

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

#log_idInteger?

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

Returns:

  • (Integer, nil)

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



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

attribute :log_id

#playerPlayer

Returns the player the request is sent to.

Returns:

  • (Player)

    the player the request is sent to



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

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

#player_idInteger

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

Returns:

  • (Integer)

    the ID of the player the request is sent to



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

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



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

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)



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

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”



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

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

#screenshot_idInteger?

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

Returns:

  • (Integer, nil)

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



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

attribute :screenshot_id