Class: LWS::DigitalSignage::Player::Os::ReleaseChannel

Inherits:
Generic::Model
  • Object
show all
Defined in:
lib/lws/apps/digital_signage.rb

Overview

The player OS release channel class

Instance Attribute Summary collapse

Instance Attribute Details

#branchesArray<Player::Os::Branch>

Returns the branches that belong to the player OS release channel.

Returns:

  • (Array<Player::Os::Branch>)

    the branches that belong to the player OS release channel



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

has_many :branches, class_name: "LWS::DigitalSignage::Player::Os::Branch",
uri: "player/os/release_channels/:release_channel_id/branches/(:id)"

#created_atString (readonly)

Returns the timestamp of when the player OS release channel was created.

Returns:

  • (String)

    the timestamp of when the player OS release channel was created



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

attribute :created_at

#idFixnum (readonly)

Returns the (unique) ID of the player OS release channel.

Returns:

  • (Fixnum)

    the (unique) ID of the player OS release channel



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

attribute :id

#nameString

Returns the name of the player OS release channel.

Returns:

  • (String)

    the name of the player OS release channel



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

attribute :name

#playersArray<Player>

Returns the players that use the player OS release channel.

Returns:

  • (Array<Player>)

    the players that use the player OS release channel



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

has_many :players, class_name: "LWS::DigitalSignage::Player",
uri: "player/os/release_channels/:release_channel_id/players/(:id)"

#slugString (readonly)

Returns the slug(ified name) of the player OS release channel.

Returns:

  • (String)

    the slug(ified name) of the player OS release channel



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

attribute :slug

#updated_atString (readonly)

Returns the timestamp of when the player OS release channel was last updated.

Returns:

  • (String)

    the timestamp of when the player OS release channel was last updated



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

attribute :updated_at