Class: LWS::DigitalSignage::Channel

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

Overview

The channel class

Defined Under Namespace

Classes: Group, Tag, TimeSchedule, TimeScheduleOverride

Instance Attribute Summary collapse

Instance Attribute Details

#companyLWS::Auth::Company

Returns the company the channel belongs to.

Returns:



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

belongs_to :company, class_name: "LWS::Auth::Company"

#company_idFixnum

Returns the ID of the company the channel belongs to.

Returns:

  • (Fixnum)

    the ID of the company the channel belongs to



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

attribute :company_id

#created_atString (readonly)

Returns the timestamp of when the channel was created.

Returns:

  • (String)

    the timestamp of when the channel was created



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

attribute :created_at

#displayObject

:nocov:



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

belongs_to :display, class_name: "LWS::DigitalSignage::Display"

#display_idFixnum

Returns the ID of the display of the channel.

Returns:

  • (Fixnum)

    the ID of the display of the channel



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

attribute :display_id

#groupsArray<Channel::Group>

Returns the groups the channel is a member of.

Returns:



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

has_many :groups, class_name: "LWS::DigitalSignage::Channel::Group"

#idFixnum (readonly)

Returns the (unique) ID of the channel.

Returns:

  • (Fixnum)

    the (unique) ID of the channel



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

attribute :id

#nameString

Returns the name of the channel.

Returns:

  • (String)

    the name of the channel



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

attribute :name

#orientation"normal", ...

Returns the orientation of the channel.

Returns:

  • ("normal", "left", "right", "inverted")

    the orientation of the channel



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

attribute :orientation

#playersArray<Player>

Returns the players linked to the channel.

Returns:

  • (Array<Player>)

    the players linked to the channel



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

has_many :players, class_name: "LWS::DigitalSignage::Player"

#tagsArray<Channel::Tag>

Returns the tags of the channel.

Returns:



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

has_many :tags, class_name: "LWS::DigitalSignage::Channel::Tag"

#time_scheduleChannel::TimeSchedule

Returns the time schedule of the channel.

Returns:



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

belongs_to :time_schedule, class_name: "LWS::DigitalSignage::Channel::TimeSchedule",
uri: "channel/time_schedules/:id"

#time_schedule_idFixnum

Returns the ID of the time schedule of the channel.

Returns:

  • (Fixnum)

    the ID of the time schedule of the channel



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

attribute :time_schedule_id

#time_schedule_overridesArray<Channel::TimeScheduleOverride>

Returns the time schedule overrides of the channel.

Returns:



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

has_many :time_schedule_overrides, class_name: "LWS::DigitalSignage::Channel::TimeScheduleOverride"

#time_zoneString

Returns the time zone for the channel.

Returns:

  • (String)

    the time zone for the channel



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

attribute :time_zone

#updated_atString (readonly)

Returns the timestamp of when the channel was last updated.

Returns:

  • (String)

    the timestamp of when the channel was last updated



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

attribute :updated_at