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.
475 |
# File 'lib/lws/apps/auth.rb', line 475 belongs_to :company |
#company_id ⇒ Fixnum
Returns the ID of the company that the usage report is for.
479 |
# File 'lib/lws/apps/auth.rb', line 479 attribute :company_id |
#created_at ⇒ String (readonly)
Returns the timestamp of when the usage report was created.
488 |
# File 'lib/lws/apps/auth.rb', line 488 attribute :created_at |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the usage report.
471 |
# File 'lib/lws/apps/auth.rb', line 471 attribute :id |
#object ⇒ String?
Returns the (partial) HTML document of the usage report. (The value is nil
until the report has been successfully generated.).
484 |
# File 'lib/lws/apps/auth.rb', line 484 attribute :object |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the usage report was last updated.
492 |
# File 'lib/lws/apps/auth.rb', line 492 attribute :updated_at |