Class: MisarBlog::Models::Analytics
- Inherits:
-
Base
- Object
- Base
- MisarBlog::Models::Analytics
show all
- Defined in:
- lib/misarblog/models.rb
Overview
Account-wide analytics summary (GET /analytics).
Instance Attribute Summary
Attributes inherited from Base
#raw
Instance Method Summary
collapse
Methods inherited from Base
#[], #initialize, #to_h
Instance Method Details
#active_subscribers ⇒ Object
97
|
# File 'lib/misarblog/models.rb', line 97
def active_subscribers; @raw["active_subscribers"]; end
|
#period_days ⇒ Object
93
|
# File 'lib/misarblog/models.rb', line 93
def period_days; @raw["period_days"]; end
|
#revenue_cents ⇒ Object
95
|
# File 'lib/misarblog/models.rb', line 95
def revenue_cents; @raw["revenue_cents"]; end
|
#revenue_net_cents ⇒ Object
96
|
# File 'lib/misarblog/models.rb', line 96
def revenue_net_cents; @raw["revenue_net_cents"]; end
|
#views ⇒ Object
94
|
# File 'lib/misarblog/models.rb', line 94
def views; @raw["views"]; end
|