Class: MixpanelExport::EventProperties
- Inherits:
-
Base
- Object
- Base
- MixpanelExport::EventProperties
show all
- Defined in:
- lib/mixpanel_export/event_properties.rb
Instance Attribute Summary
Attributes inherited from Base
#request
Instance Method Summary
collapse
Methods inherited from Base
#initialize
Instance Method Details
#properties(options = {}) ⇒ Object
3
4
5
|
# File 'lib/mixpanel_export/event_properties.rb', line 3
def properties(options={})
request.get('/events/properties', options)
end
|
#top(options = {}) ⇒ Object
7
8
9
|
# File 'lib/mixpanel_export/event_properties.rb', line 7
def top(options={})
request.get('/events/properties/top', options)
end
|
#values(options = {}) ⇒ Object
11
12
13
|
# File 'lib/mixpanel_export/event_properties.rb', line 11
def values(options={})
request.get('/events/properties/values', options)
end
|