Class: LWS::Auth::License
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::Auth::License
- Defined in:
- lib/lws/apps/auth.rb
Overview
The license class
Instance Attribute Summary collapse
-
#app ⇒ App
The app the license is for.
-
#app_id ⇒ Integer
The ID of the app the license is for.
-
#company ⇒ Company
The company that has the license.
-
#company_id ⇒ Integer
The ID of the company that has the license.
-
#count ⇒ Integer
The number of items the license provides.
-
#desc ⇒ String
The description of the license.
-
#key ⇒ String
The key of the license.
-
#license_type ⇒ String
The type of the license.
-
#name ⇒ String
The name of the license.
-
#sku ⇒ String
The stock-keeping unit of the license.
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
#app ⇒ App
Returns the app the license is for.
287 |
# File 'lib/lws/apps/auth.rb', line 287 belongs_to :app |
#app_id ⇒ Integer
Returns the ID of the app the license is for.
291 |
# File 'lib/lws/apps/auth.rb', line 291 attribute :app_id |
#company ⇒ Company
Returns the company that has the license.
295 |
# File 'lib/lws/apps/auth.rb', line 295 belongs_to :company |
#company_id ⇒ Integer
Returns the ID of the company that has the license.
299 |
# File 'lib/lws/apps/auth.rb', line 299 attribute :company_id |
#count ⇒ Integer
Returns the number of items the license provides.
303 |
# File 'lib/lws/apps/auth.rb', line 303 attribute :count |
#desc ⇒ String
Returns the description of the license.
307 |
# File 'lib/lws/apps/auth.rb', line 307 attribute :desc |
#key ⇒ String
Returns the key of the license.
311 |
# File 'lib/lws/apps/auth.rb', line 311 attribute :key |
#license_type ⇒ String
Returns the type of the license.
315 |
# File 'lib/lws/apps/auth.rb', line 315 attribute :license_type |
#name ⇒ String
Returns the name of the license.
319 |
# File 'lib/lws/apps/auth.rb', line 319 attribute :name |
#sku ⇒ String
Returns the stock-keeping unit of the license.
323 |
# File 'lib/lws/apps/auth.rb', line 323 attribute :sku |