Class: Pike13::API::V2::Front::EventOccurrence
- Defined in:
- lib/pike13/api/v2/front/event_occurrence.rb
Class Method Summary collapse
-
.all(**params) ⇒ Object
GET /front/event_occurrences.
-
.enrollment_eligibilities(id:, **params) ⇒ Object
GET /front/event_occurrences/:id/enrollment_eligibilities.
-
.find(id) ⇒ Object
GET /front/event_occurrences/:id.
-
.summary(**params) ⇒ Object
GET /front/event_occurrences/summary.
Methods inherited from Base
Class Method Details
.all(**params) ⇒ Object
GET /front/event_occurrences
10 11 12 |
# File 'lib/pike13/api/v2/front/event_occurrence.rb', line 10 def all(**params) client.get("front/event_occurrences", params) end |
.enrollment_eligibilities(id:, **params) ⇒ Object
GET /front/event_occurrences/:id/enrollment_eligibilities
25 26 27 |
# File 'lib/pike13/api/v2/front/event_occurrence.rb', line 25 def enrollment_eligibilities(id:, **params) client.get("front/event_occurrences/#{id}/enrollment_eligibilities", params) end |
.find(id) ⇒ Object
GET /front/event_occurrences/:id
15 16 17 |
# File 'lib/pike13/api/v2/front/event_occurrence.rb', line 15 def find(id) client.get("front/event_occurrences/#{id}") end |
.summary(**params) ⇒ Object
GET /front/event_occurrences/summary
20 21 22 |
# File 'lib/pike13/api/v2/front/event_occurrence.rb', line 20 def summary(**params) client.get("front/event_occurrences/summary", params) end |