Sha256: fb4110effe33a6646ccef73c26966a51c6d48624935884811880633f1e91b0c3

Contents?: true

Size: 980 Bytes

Versions: 10

Compression:

Stored size: 980 Bytes

Contents

# frozen_string_literal: false

require 'cgi'

module PayPalCheckoutSdk
  module Payments
    #
    # Refunds a captured payment, by ID. For a full refund, include
    # an empty payload in the JSON request body. For a partial refund,
    # include an <code>amount</code> object in the JSON request body.
    #
    class CapturesRefundRequest
      attr_accessor :path, :body, :headers, :verb

      def initialize(capture_id)
        @headers = {}
        @body = nil
        @verb = "POST"
        @path = "/v2/payments/captures/{capture_id}/refund?"

        @path = @path.gsub("{capture_id}", CGI.escape(capture_id.to_s))
        @headers["Content-Type"] = "application/json"
      end

      def pay_pal_request_id(pay_pal_request_id)
        @headers["PayPal-Request-Id"] = pay_pal_request_id
      end

      def prefer(prefer)
        @headers["Prefer"] = prefer
      end

      def request_body(refund_request)
        @body = refund_request
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
solidus_paypal_commerce_platform-1.0.3 lib/paypal/paypal_checkout_sdk/payments/captures_refund_request.rb
solidus_paypal_commerce_platform-1.0.2 lib/paypal/paypal_checkout_sdk/payments/captures_refund_request.rb
solidus_paypal_commerce_platform-0.7.1 lib/paypal/paypal_checkout_sdk/payments/captures_refund_request.rb
solidus_paypal_commerce_platform-1.0.1 lib/paypal/paypal_checkout_sdk/payments/captures_refund_request.rb
solidus_paypal_commerce_platform-1.0.0 lib/paypal/paypal_checkout_sdk/payments/captures_refund_request.rb
solidus_paypal_commerce_platform-0.7.0 lib/paypal/paypal_checkout_sdk/payments/captures_refund_request.rb
solidus_paypal_commerce_platform-1.0.0.beta3 lib/paypal/paypal_checkout_sdk/payments/captures_refund_request.rb
solidus_paypal_commerce_platform-1.0.0.beta2 lib/paypal/paypal_checkout_sdk/payments/captures_refund_request.rb
solidus_paypal_commerce_platform-1.0.0.beta1 lib/paypal/paypal_checkout_sdk/payments/captures_refund_request.rb
solidus_paypal_commerce_platform-0.6.0 lib/paypal/paypal_checkout_sdk/payments/captures_refund_request.rb