Class: LWS::DigitalSignage::Channel::Group::Tag
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::DigitalSignage::Channel::Group::Tag
- Defined in:
- lib/lws/apps/digital_signage.rb
Overview
This class is only used within the context of the LWS::DigitalSignage::Channel::Group class.
The channel group tag class
Instance Attribute Summary collapse
-
#created_at ⇒ String
readonly
The timestamp of when the channel group was created.
-
#group ⇒ Channel::Group
The channel group associated with the tag.
-
#group_id ⇒ Fixnum
The ID of the channel group associated with the tag.
-
#id ⇒ Fixnum
readonly
The (unique) ID of the display.
-
#key ⇒ String
The key of the channel group tag.
-
#protected_value ⇒ Boolean
Whether the value of the channel group tag should return a protected representation of the value.
-
#updated_at ⇒ String
readonly
The timestamp of when the channel group was last updated.
-
#value ⇒ String?
The value of the channel group tag.
Instance Attribute Details
#created_at ⇒ String (readonly)
Returns the timestamp of when the channel group was created.
207 |
# File 'lib/lws/apps/digital_signage.rb', line 207 attribute :created_at |
#group ⇒ Channel::Group
Returns the channel group associated with the tag.
185 186 |
# File 'lib/lws/apps/digital_signage.rb', line 185 belongs_to :group, class_names: "LWS::DigitalSignage::Channel::Group", uri: "channel/groups/:id" |
#group_id ⇒ Fixnum
Returns the ID of the channel group associated with the tag.
190 |
# File 'lib/lws/apps/digital_signage.rb', line 190 attribute :group_id |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the display.
181 |
# File 'lib/lws/apps/digital_signage.rb', line 181 attribute :id |
#key ⇒ String
Returns the key of the channel group tag.
194 |
# File 'lib/lws/apps/digital_signage.rb', line 194 attribute :key |
#protected_value ⇒ Boolean
Whether the value of the channel group tag should return a protected representation of the value
199 |
# File 'lib/lws/apps/digital_signage.rb', line 199 attribute :protected_value |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the channel group was last updated.
211 |
# File 'lib/lws/apps/digital_signage.rb', line 211 attribute :updated_at |
#value ⇒ String?
Returns the value of the channel group tag.
203 |
# File 'lib/lws/apps/digital_signage.rb', line 203 attribute :value |