Class: LWS::DigitalSignage::Channel::TimeScheduleOverride
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::DigitalSignage::Channel::TimeScheduleOverride
- Defined in:
- lib/lws/apps/digital_signage.rb
Overview
The channel time override schedule class
Instance Attribute Summary collapse
-
#channel_groups ⇒ Array<Channel::Group>
The channel groups using the time schedule override.
-
#channels ⇒ Array<Channel>
The channels using the time schedule override.
-
#company ⇒ LWS::Auth::Company
The company the channel time schedule override belongs to.
-
#company_id ⇒ Fixnum
The ID of the company the channel time schedule override belongs to.
-
#created_at ⇒ String
readonly
The timestamp of when the channel time schedule override was created.
-
#end ⇒ String
The end date (inclusive) of the channel time schedule override.
-
#id ⇒ Fixnum
readonly
The (unique) ID of the channel time schedule override.
-
#name ⇒ String
The name of the channel time schedule override.
-
#shutdown ⇒ String
The shutdown time of the channel.
-
#start ⇒ String
The start date of the channel time schedule override.
-
#updated_at ⇒ String
readonly
The timestamp of when the channel time schedule override was last updated.
-
#wakeup ⇒ String
The wakeup time of the channel.
Instance Attribute Details
#channel_groups ⇒ Array<Channel::Group>
Returns the channel groups using the time schedule override.
389 390 |
# File 'lib/lws/apps/digital_signage.rb', line 389 has_many :groups, class_name: "LWS::DigitalSignage::Channel::Group", uri: "channel/time_schedule_overrides/:time_schedule_override_id/groups/(:id)" |
#channels ⇒ Array<Channel>
Returns the channels using the time schedule override.
372 373 |
# File 'lib/lws/apps/digital_signage.rb', line 372 has_many :channels, class_name: "LWS::DigitalSignage::Channel", uri: "channel/time_schedule_overrides/:time_schedule_override_id/channels/(:id)" |
#company ⇒ LWS::Auth::Company
Returns the company the channel time schedule override belongs to.
377 |
# File 'lib/lws/apps/digital_signage.rb', line 377 belongs_to :company, class_name: "LWS::Auth::Company" |
#company_id ⇒ Fixnum
Returns the ID of the company the channel time schedule override belongs to.
381 |
# File 'lib/lws/apps/digital_signage.rb', line 381 attribute :company_id |
#created_at ⇒ String (readonly)
Returns the timestamp of when the channel time schedule override was created.
410 |
# File 'lib/lws/apps/digital_signage.rb', line 410 attribute :created_at |
#end ⇒ String
Returns the end date (inclusive) of the channel time schedule override.
385 |
# File 'lib/lws/apps/digital_signage.rb', line 385 attribute :end |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the channel time schedule override.
368 |
# File 'lib/lws/apps/digital_signage.rb', line 368 attribute :id |
#name ⇒ String
Returns the name of the channel time schedule override.
394 |
# File 'lib/lws/apps/digital_signage.rb', line 394 attribute :name |
#shutdown ⇒ String
Returns the shutdown time of the channel.
398 |
# File 'lib/lws/apps/digital_signage.rb', line 398 attribute :shutdown |
#start ⇒ String
Returns the start date of the channel time schedule override.
402 |
# File 'lib/lws/apps/digital_signage.rb', line 402 attribute :start |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the channel time schedule override was last updated.
414 |
# File 'lib/lws/apps/digital_signage.rb', line 414 attribute :updated_at |
#wakeup ⇒ String
Returns the wakeup time of the channel.
406 |
# File 'lib/lws/apps/digital_signage.rb', line 406 attribute :wakeup |