Class: LWS::DigitalSignage::Channel::TimeSchedule::Day
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::DigitalSignage::Channel::TimeSchedule::Day
- Defined in:
- lib/lws/apps/digital_signage.rb
Overview
This class is only used within the context of the LWS::DigitalSignage::Channel::TimeSchedule class.
The channel time schedule day class
Instance Attribute Summary collapse
-
#created_at ⇒ String
readonly
The timestamp of when the channel time schedule day was created.
-
#day ⇒ Fixnum
The ID of the day of the channel time schedule (0 = Sunday, 1 = Monday, …, 6 = Saturday).
-
#id ⇒ Fixnum
readonly
The (unique) ID of the channel time schedule day.
-
#shutdown ⇒ String
The shutdown time of the channel.
-
#time_schedule ⇒ Channel::TimeSchedule
The time schedule the day belongs to.
-
#time_schedule_id ⇒ Fixnum
The ID of the time schedule the day belongs to.
-
#updated_at ⇒ String
readonly
The timestamp of when the channel time schedule day was last updated.
-
#wakeup ⇒ String
The wakeup time of the channel.
Instance Attribute Details
#created_at ⇒ String (readonly)
Returns the timestamp of when the channel time schedule day was created.
354 |
# File 'lib/lws/apps/digital_signage.rb', line 354 attribute :created_at |
#day ⇒ Fixnum
Returns the ID of the day of the channel time schedule (0 = Sunday, 1 = Monday, …, 6 = Saturday).
333 |
# File 'lib/lws/apps/digital_signage.rb', line 333 attribute :day |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the channel time schedule day.
328 |
# File 'lib/lws/apps/digital_signage.rb', line 328 attribute :id |
#shutdown ⇒ String
Returns the shutdown time of the channel.
337 |
# File 'lib/lws/apps/digital_signage.rb', line 337 attribute :shutdown |
#time_schedule ⇒ Channel::TimeSchedule
Returns the time schedule the day belongs to.
341 342 |
# File 'lib/lws/apps/digital_signage.rb', line 341 belongs_to :time_schedule, class_name: "LWS::DigitalSignage::Channel::TimeSchedule", uri: "channel/time_schedules/:id" |
#time_schedule_id ⇒ Fixnum
Returns the ID of the time schedule the day belongs to.
346 |
# File 'lib/lws/apps/digital_signage.rb', line 346 attribute :time_schedule_id |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the channel time schedule day was last updated.
358 |
# File 'lib/lws/apps/digital_signage.rb', line 358 attribute :updated_at |
#wakeup ⇒ String
Returns the wakeup time of the channel.
350 |
# File 'lib/lws/apps/digital_signage.rb', line 350 attribute :wakeup |