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.
368 369 |
# File 'lib/lws/apps/digital_signage.rb', line 368 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.
351 352 |
# File 'lib/lws/apps/digital_signage.rb', line 351 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.
356 |
# File 'lib/lws/apps/digital_signage.rb', line 356 belongs_to :company, class_name: "LWS::Auth::Company" |
#company_id ⇒ Fixnum
Returns the ID of the company the channel time schedule override belongs to.
360 |
# File 'lib/lws/apps/digital_signage.rb', line 360 attribute :company_id |
#created_at ⇒ String (readonly)
Returns the timestamp of when the channel time schedule override was created.
389 |
# File 'lib/lws/apps/digital_signage.rb', line 389 attribute :created_at |
#end ⇒ String
Returns the end date (inclusive) of the channel time schedule override.
364 |
# File 'lib/lws/apps/digital_signage.rb', line 364 attribute :end |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the channel time schedule override.
347 |
# File 'lib/lws/apps/digital_signage.rb', line 347 attribute :id |
#name ⇒ String
Returns the name of the channel time schedule override.
373 |
# File 'lib/lws/apps/digital_signage.rb', line 373 attribute :name |
#shutdown ⇒ String
Returns the shutdown time of the channel.
377 |
# File 'lib/lws/apps/digital_signage.rb', line 377 attribute :shutdown |
#start ⇒ String
Returns the start date of the channel time schedule override.
381 |
# File 'lib/lws/apps/digital_signage.rb', line 381 attribute :start |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the channel time schedule override was last updated.
393 |
# File 'lib/lws/apps/digital_signage.rb', line 393 attribute :updated_at |
#wakeup ⇒ String
Returns the wakeup time of the channel.
385 |
# File 'lib/lws/apps/digital_signage.rb', line 385 attribute :wakeup |