Class: LWS::DigitalSignage::Player::Component::Part
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::DigitalSignage::Player::Component::Part
- Defined in:
- lib/lws/apps/digital_signage.rb
Overview
This class is only used within the context of the LWS::DigitalSignage::Player::Component class.
The player component part class
Instance Attribute Summary collapse
-
#component ⇒ Player::Component
The player component that uses the part.
-
#component_id ⇒ Fixnum
The ID of the player component that uses the part.
-
#created_at ⇒ String
readonly
The timestamp of when the player component part was created.
-
#id ⇒ Fixnum
readonly
The (unique) ID of the player component part.
-
#player ⇒ Player?
The player the component part is used in.
-
#player_id ⇒ Fixnum?
The ID of the player the component part is used in.
-
#serial_number ⇒ String
The serial number of the player component part.
-
#updated_at ⇒ String
readonly
The timestamp of when the player component part was last updated.
Instance Attribute Details
#component ⇒ Player::Component
Returns the player component that uses the part.
783 784 |
# File 'lib/lws/apps/digital_signage.rb', line 783 belongs_to :component, class_name: "LWS::DigitalSignage::Player::Component", uri: "player/components/:id" |
#component_id ⇒ Fixnum
Returns the ID of the player component that uses the part.
788 |
# File 'lib/lws/apps/digital_signage.rb', line 788 attribute :component_id |
#created_at ⇒ String (readonly)
Returns the timestamp of when the player component part was created.
804 |
# File 'lib/lws/apps/digital_signage.rb', line 804 attribute :created_at |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the player component part.
779 |
# File 'lib/lws/apps/digital_signage.rb', line 779 attribute :id |
#player ⇒ Player?
Returns the player the component part is used in.
792 |
# File 'lib/lws/apps/digital_signage.rb', line 792 belongs_to :player, class_name: "LWS::DigitalSignage::Player" |
#player_id ⇒ Fixnum?
Returns the ID of the player the component part is used in.
796 |
# File 'lib/lws/apps/digital_signage.rb', line 796 attribute :player_id |
#serial_number ⇒ String
Returns the serial number of the player component part.
800 |
# File 'lib/lws/apps/digital_signage.rb', line 800 attribute :serial_number |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the player component part was last updated.
808 |
# File 'lib/lws/apps/digital_signage.rb', line 808 attribute :updated_at |