Class: LWS::DigitalSignage::Player::Os::Package::Version
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::DigitalSignage::Player::Os::Package::Version
- Defined in:
- lib/lws/apps/digital_signage.rb
Overview
This class is only used within the context of the LWS::DigitalSignage::Player::Os::Package class.
The player OS package version class
Instance Attribute Summary collapse
-
#branch_releases ⇒ Array<Player::Os::Branch::Release>
The branch releases the player OS package version is a part of.
-
#created_at ⇒ String
readonly
The timestamp of when the player OS package version was created.
-
#id ⇒ Fixnum
readonly
The (unique) ID of the player OS package version.
-
#number ⇒ String
The number of the player OS package version.
-
#package ⇒ Player::Os::Package
The player OS package the version is of.
-
#package_id ⇒ Fixnum
The ID the player OS package the version is of.
-
#updated_at ⇒ String
readonly
The timestamp of when the player OS package version was last updated.
Instance Attribute Details
#branch_releases ⇒ Array<Player::Os::Branch::Release>
Returns the branch releases the player OS package version is a part of.
1398 1399 1400 |
# File 'lib/lws/apps/digital_signage.rb', line 1398 has_many :branch_releases, class_name: "LWS::DigitalSignage::Player::Os::Branch::Release", foreign_key: :branch_release_id, uri: "player/os/branches/:branch_id/releases/:id" |
#created_at ⇒ String (readonly)
Returns the timestamp of when the player OS package version was created.
1404 |
# File 'lib/lws/apps/digital_signage.rb', line 1404 attribute :created_at |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the player OS package version.
1379 |
# File 'lib/lws/apps/digital_signage.rb', line 1379 attribute :id |
#number ⇒ String
Returns the number of the player OS package version.
1383 |
# File 'lib/lws/apps/digital_signage.rb', line 1383 attribute :number |
#package ⇒ Player::Os::Package
Returns the player OS package the version is of.
1387 1388 |
# File 'lib/lws/apps/digital_signage.rb', line 1387 belongs_to :package, class_name: "LWS::DigitalSignage::Player::Os::Package", uri: "player/os/packages/:id" |
#package_id ⇒ Fixnum
Returns the ID the player OS package the version is of.
1392 |
# File 'lib/lws/apps/digital_signage.rb', line 1392 attribute :package_id |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the player OS package version was last updated.
1408 |
# File 'lib/lws/apps/digital_signage.rb', line 1408 attribute :updated_at |