Class: LWS::DigitalSignage::Player::Os::ReleaseChannel
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::DigitalSignage::Player::Os::ReleaseChannel
- Defined in:
- lib/lws/apps/digital_signage.rb
Overview
The player OS release channel class
Instance Attribute Summary collapse
-
#branches ⇒ Array<Player::Os::Branch>
The branches that belong to the player OS release channel.
-
#created_at ⇒ String
readonly
The timestamp of when the player OS release channel was created.
-
#id ⇒ Fixnum
readonly
The (unique) ID of the player OS release channel.
-
#name ⇒ String
The name of the player OS release channel.
-
#players ⇒ Array<Player>
The players that use the player OS release channel.
-
#slug ⇒ String
readonly
The slug(ified name) of the player OS release channel.
-
#updated_at ⇒ String
readonly
The timestamp of when the player OS release channel was last updated.
Instance Attribute Details
#branches ⇒ Array<Player::Os::Branch>
Returns the branches that belong to the player OS release channel.
1515 1516 |
# File 'lib/lws/apps/digital_signage.rb', line 1515 has_many :branches, class_name: "LWS::DigitalSignage::Player::Os::Branch", uri: "player/os/release_channels/:release_channel_id/branches/(:id)" |
#created_at ⇒ String (readonly)
Returns the timestamp of when the player OS release channel was created.
1533 |
# File 'lib/lws/apps/digital_signage.rb', line 1533 attribute :created_at |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the player OS release channel.
1510 |
# File 'lib/lws/apps/digital_signage.rb', line 1510 attribute :id |
#name ⇒ String
Returns the name of the player OS release channel.
1520 |
# File 'lib/lws/apps/digital_signage.rb', line 1520 attribute :name |
#players ⇒ Array<Player>
Returns the players that use the player OS release channel.
1524 1525 |
# File 'lib/lws/apps/digital_signage.rb', line 1524 has_many :players, class_name: "LWS::DigitalSignage::Player", uri: "player/os/release_channels/:release_channel_id/players/(:id)" |
#slug ⇒ String (readonly)
Returns the slug(ified name) of the player OS release channel.
1529 |
# File 'lib/lws/apps/digital_signage.rb', line 1529 attribute :slug |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the player OS release channel was last updated.
1537 |
# File 'lib/lws/apps/digital_signage.rb', line 1537 attribute :updated_at |