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
Note:
This class is only used within the context of the LWS::DigitalSignage::Channel::Group class.
The channel group tag class
Instance Attribute Summary collapse
-
#group ⇒ Channel::Group
The channel group associated with the tag.
-
#group_id ⇒ Integer
The ID of the channel group associated with the tag.
-
#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.
-
#value ⇒ String?
The value of the channel group tag.
Attributes inherited from Generic::Model
#created_at, #id, #updated_at, #url, #url_html
Method Summary
Methods inherited from Generic::Model
#dig, #reload, #rollback, #save
Instance Attribute Details
#group ⇒ Channel::Group
Returns the channel group associated with the tag.
183 184 |
# File 'lib/lws/apps/digital_signage.rb', line 183 belongs_to :group, class_names: "LWS::DigitalSignage::Channel::Group", uri: "channel/groups/:id" |
#group_id ⇒ Integer
Returns the ID of the channel group associated with the tag.
188 |
# File 'lib/lws/apps/digital_signage.rb', line 188 attribute :group_id |
#key ⇒ String
Returns the key of the channel group tag.
192 |
# File 'lib/lws/apps/digital_signage.rb', line 192 attribute :key |
#protected_value ⇒ Boolean
Whether the value of the channel group tag should return a protected representation of the value
197 |
# File 'lib/lws/apps/digital_signage.rb', line 197 attribute :protected_value |
#value ⇒ String?
Returns the value of the channel group tag.
201 |
# File 'lib/lws/apps/digital_signage.rb', line 201 attribute :value |