Class: LWS::DigitalSignage::Player::Os::Package::Version

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::Os::Package class.

The player OS package version class

Instance Attribute Summary collapse

Instance Attribute Details

#branch_releasesArray<Player::Os::Branch::Release>

Returns the branch releases the player OS package version is a part of.

Returns:



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_atString (readonly)

Returns the timestamp of when the player OS package version was created.

Returns:

  • (String)

    the timestamp of when the player OS package version was created



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

attribute :created_at

#idFixnum (readonly)

Returns the (unique) ID of the player OS package version.

Returns:

  • (Fixnum)

    the (unique) ID of the player OS package version



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

attribute :id

#numberString

Returns the number of the player OS package version.

Returns:

  • (String)

    the number of the player OS package version



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

attribute :number

#packagePlayer::Os::Package

Returns the player OS package the version is of.

Returns:



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_idFixnum

Returns the ID the player OS package the version is of.

Returns:

  • (Fixnum)

    the ID the player OS package the version is of



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

attribute :package_id

#updated_atString (readonly)

Returns the timestamp of when the player OS package version was last updated.

Returns:

  • (String)

    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