Class: DuffelAPI::Services::PaymentsService
- Inherits:
-
BaseService
- Object
- BaseService
- DuffelAPI::Services::PaymentsService
- Defined in:
- lib/duffel_api/services/payments_service.rb
Constant Summary
Constants inherited from BaseService
BaseService::DEFAULT_ALL_PARAMS
Instance Method Summary collapse
-
#create(options = {}) ⇒ Resources::Payment
Creates an payment.
Methods inherited from BaseService
Constructor Details
This class inherits a constructor from DuffelAPI::Services::BaseService
Instance Method Details
#create(options = {}) ⇒ Resources::Payment
Creates an payment
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/duffel_api/services/payments_service.rb', line 11 def create( = {}) path = "/air/payments" params = .delete(:params) || {} [:params] = {} [:params]["data"] = params begin response = make_request(:post, path, ) # Response doesn't raise any errors until #body is called response.tap(&:raw_body) end return if response.raw_body.nil? Resources::Payment.new(unenvelope_body(response.parsed_body), response) end |