Class: Pike13::API::V2::Front::PlanProduct
- Defined in:
- lib/pike13/api/v2/front/plan_product.rb
Class Method Summary collapse
-
.all(**params) ⇒ Object
GET /front/plan_products.
-
.find(id) ⇒ Object
GET /front/plan_products/:id.
Methods inherited from Base
Class Method Details
.all(**params) ⇒ Object
GET /front/plan_products
10 11 12 |
# File 'lib/pike13/api/v2/front/plan_product.rb', line 10 def all(**params) client.get("front/plan_products", params) end |
.find(id) ⇒ Object
GET /front/plan_products/:id
15 16 17 |
# File 'lib/pike13/api/v2/front/plan_product.rb', line 15 def find(id) client.get("front/plan_products/#{id}") end |