Class: Stripe::Reserve::PlanService
- Inherits:
-
StripeService
- Object
- StripeService
- Stripe::Reserve::PlanService
- Defined in:
- lib/stripe/services/reserve/plan_service.rb
Instance Method Summary collapse
-
#retrieve(id, params = {}, opts = {}) ⇒ Object
Retrieve a ReservePlan.
Methods inherited from StripeService
#initialize, #request, #request_stream
Constructor Details
This class inherits a constructor from Stripe::StripeService
Instance Method Details
#retrieve(id, params = {}, opts = {}) ⇒ Object
Retrieve a ReservePlan.
8 9 10 11 12 13 14 15 16 |
# File 'lib/stripe/services/reserve/plan_service.rb', line 8 def retrieve(id, params = {}, opts = {}) request( method: :get, path: format("/v1/reserve/plans/%<id>s", { id: CGI.escape(id) }), params: params, opts: opts, base_address: :api ) end |