Class: LWS::Auth::UsageReport
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::Auth::UsageReport
- Defined in:
- lib/lws/apps/auth.rb
Overview
The usage report class
Instance Attribute Summary collapse
-
#company ⇒ Company
The company that the usage report is for.
-
#company_id ⇒ Fixnum
The ID of the company that the usage report is for.
-
#created_at ⇒ String
readonly
The timestamp of when the usage report was created.
-
#id ⇒ Fixnum
readonly
The (unique) ID of the usage report.
-
#object ⇒ String?
The (partial) HTML document of the usage report.
-
#updated_at ⇒ String
readonly
The timestamp of when the usage report was last updated.
Instance Attribute Details
#company ⇒ Company
Returns the company that the usage report is for.
480 |
# File 'lib/lws/apps/auth.rb', line 480 belongs_to :company |
#company_id ⇒ Fixnum
Returns the ID of the company that the usage report is for.
484 |
# File 'lib/lws/apps/auth.rb', line 484 attribute :company_id |
#created_at ⇒ String (readonly)
Returns the timestamp of when the usage report was created.
493 |
# File 'lib/lws/apps/auth.rb', line 493 attribute :created_at |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the usage report.
476 |
# File 'lib/lws/apps/auth.rb', line 476 attribute :id |
#object ⇒ String?
Returns the (partial) HTML document of the usage report. (The value is nil until the report has been successfully generated.).
489 |
# File 'lib/lws/apps/auth.rb', line 489 attribute :object |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the usage report was last updated.
497 |
# File 'lib/lws/apps/auth.rb', line 497 attribute :updated_at |