Class: LWS::DigitalSignage::Player::Os::Package::VersionChange
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::DigitalSignage::Player::Os::Package::VersionChange
- 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 change class
Instance Attribute Summary collapse
-
#branch_release ⇒ Player::Os::Branch::Release
The branch release the player OS package version change is included in.
-
#branch_release_id ⇒ Fixnum
The ID of the branch release the player OS package version change is included in.
-
#created_at ⇒ String
readonly
The timestamp of when the player OS package version change was created.
-
#from_number ⇒ String?
The number the player OS package version was before the change.
-
#from_version ⇒ Player::Os::Package::Version?
The version the player OS package was before the change.
-
#from_version_id ⇒ Fixnum?
The ID of the number the player OS package version was before the change.
-
#id ⇒ Fixnum
readonly
The (unique) ID of the player OS package version change.
-
#log ⇒ String?
The log of the player OS package version change (can be
nilif #to_version isnil). -
#package ⇒ Player::Os::Package
The player OS package the version change is for.
-
#package_id ⇒ Fixnum
The ID the player OS package the version change is of.
-
#state ⇒ "waiting", ...
The processing state of the player OS version change.
-
#to_number ⇒ String?
The number of the player OS package version was after the change.
-
#to_version ⇒ Player::Os::Package::Version?
The version the player OS package was after the change.
-
#to_version_id ⇒ Fixnum?
The ID of the version the player OS package was after the change.
-
#updated_at ⇒ String
readonly
The timestamp of when the player OS package version change was last updated.
Instance Attribute Details
#branch_release ⇒ Player::Os::Branch::Release
Returns the branch release the player OS package version change is included in.
1449 1450 1451 |
# File 'lib/lws/apps/digital_signage.rb', line 1449 belongs_to :branch_release, class_name: "LWS::DigitalSignage::Player::Os::Branch::Release", foreign_key: :branch_release_id, uri: "player/os/branches/:branch_id/releases/:id" |
#branch_release_id ⇒ Fixnum
Returns the ID of the branch release the player OS package version change is included in.
1456 |
# File 'lib/lws/apps/digital_signage.rb', line 1456 attribute :branch_release_id |
#created_at ⇒ String (readonly)
Returns the timestamp of when the player OS package version change was created.
1517 |
# File 'lib/lws/apps/digital_signage.rb', line 1517 attribute :created_at |
#from_number ⇒ String?
Either the from (version) number or the to (version) number needs to be set.
Returns the number the player OS package version was before the change.
1463 |
# File 'lib/lws/apps/digital_signage.rb', line 1463 attribute :from_number |
#from_version ⇒ Player::Os::Package::Version?
Returns the version the player OS package was before the change.
1468 1469 1470 |
# File 'lib/lws/apps/digital_signage.rb', line 1468 belongs_to :from_version, class_name: "LWS::DigitalSignage::Player::Os::Package::Version", foreign_key: :from_version_id, uri: "player/os/packages/:package_id/versions/:id" |
#from_version_id ⇒ Fixnum?
Returns the ID of the number the player OS package version was before the change.
1475 |
# File 'lib/lws/apps/digital_signage.rb', line 1475 attribute :from_version_id |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the player OS package version change.
1443 |
# File 'lib/lws/apps/digital_signage.rb', line 1443 attribute :id |
#log ⇒ String?
Returns the log of the player OS package version change (can be nil if #to_version is nil).
1480 |
# File 'lib/lws/apps/digital_signage.rb', line 1480 attribute :log |
#package ⇒ Player::Os::Package
Returns the player OS package the version change is for.
1484 1485 |
# File 'lib/lws/apps/digital_signage.rb', line 1484 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 change is of.
1489 |
# File 'lib/lws/apps/digital_signage.rb', line 1489 attribute :package_id |
#state ⇒ "waiting", ...
Returns the processing state of the player OS version change.
1494 |
# File 'lib/lws/apps/digital_signage.rb', line 1494 attribute :state |
#to_number ⇒ String?
Either the from (version) number or the to (version) number needs to be set.
Returns the number of the player OS package version was after the change.
1501 |
# File 'lib/lws/apps/digital_signage.rb', line 1501 attribute :to_number |
#to_version ⇒ Player::Os::Package::Version?
Returns the version the player OS package was after the change.
1506 1507 1508 |
# File 'lib/lws/apps/digital_signage.rb', line 1506 belongs_to :to_version, class_name: "LWS::DigitalSignage::Player::Os::Package::Version", foreign_key: :to_version_id, uri: "player/os/packages/:package_id/versions/:id" |
#to_version_id ⇒ Fixnum?
Returns the ID of the version the player OS package was after the change.
1513 |
# File 'lib/lws/apps/digital_signage.rb', line 1513 attribute :to_version_id |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the player OS package version change was last updated.
1521 |
# File 'lib/lws/apps/digital_signage.rb', line 1521 attribute :updated_at |