Class: LWS::Generic::Configuration
- Defined in:
- lib/lws/apps/generic.rb
Overview
The configuration class
Direct Known Subclasses
Auth::Configuration, CorporateWebsite::Configuration, DigitalSignage::Configuration, Maps::Configuration, Presence::Configuration, Resource::Configuration, Ticket::Configuration
Instance Attribute Summary collapse
-
#created_at ⇒ String
readonly
The timestamp of when the configuration was created.
-
#id ⇒ Integer
readonly
The (unique) ID of the configuration.
-
#key ⇒ String
The configuration key.
-
#updated_at ⇒ String
readonly
The timestamp of when the configuration was last updated.
-
#value ⇒ String
The configuration value.
Attributes inherited from Model
Method Summary
Methods inherited from Model
#dig, #reload, #rollback, #save
Instance Attribute Details
#created_at ⇒ String (readonly)
Returns the timestamp of when the configuration was created.
182 |
# File 'lib/lws/apps/generic.rb', line 182 attribute :created_at |
#id ⇒ Integer (readonly)
Returns the (unique) ID of the configuration.
170 |
# File 'lib/lws/apps/generic.rb', line 170 attribute :id |
#key ⇒ String
Returns the configuration key.
174 |
# File 'lib/lws/apps/generic.rb', line 174 attribute :key |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the configuration was last updated.
186 |
# File 'lib/lws/apps/generic.rb', line 186 attribute :updated_at |
#value ⇒ String
Returns the configuration value.
178 |
# File 'lib/lws/apps/generic.rb', line 178 attribute :value |