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, Ticket::Configuration
Instance Attribute Summary collapse
-
#created_at ⇒ String
readonly
The timestamp of when the configuration was created.
-
#id ⇒ Fixnum
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.
Instance Attribute Details
#created_at ⇒ String (readonly)
Returns the timestamp of when the configuration was created.
100 |
# File 'lib/lws/apps/generic.rb', line 100 attribute :created_at |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the configuration.
88 |
# File 'lib/lws/apps/generic.rb', line 88 attribute :id |
#key ⇒ String
Returns the configuration key.
92 |
# File 'lib/lws/apps/generic.rb', line 92 attribute :key |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the configuration was last updated.
104 |
# File 'lib/lws/apps/generic.rb', line 104 attribute :updated_at |
#value ⇒ String
Returns the configuration value.
96 |
# File 'lib/lws/apps/generic.rb', line 96 attribute :value |