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
#deep_dup, #dig, #reload, #rollback, #save
Instance Attribute Details
#group ⇒ Channel::Group
Returns the channel group associated with the tag.
240 241 |
# File 'lib/lws/apps/digital_signage.rb', line 240 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.
245 |
# File 'lib/lws/apps/digital_signage.rb', line 245 attribute :group_id |
#key ⇒ String
Returns the key of the channel group tag.
249 |
# File 'lib/lws/apps/digital_signage.rb', line 249 attribute :key |
#protected_value ⇒ Boolean
Whether the value of the channel group tag should return a protected representation of the value
254 |
# File 'lib/lws/apps/digital_signage.rb', line 254 attribute :protected_value |
#value ⇒ String?
Returns the value of the channel group tag.
258 |
# File 'lib/lws/apps/digital_signage.rb', line 258 attribute :value |