Sha256: 33020a158467181f1686bee96aa9989bc0265d2e9808624027637b4a72e60686
Contents?: true
Size: 700 Bytes
Versions: 1
Compression:
Stored size: 700 Bytes
Contents
# frozen_string_literal: false # This class was generated on Mon, 27 Aug 2018 13:52:18 PDT by version 0.1.0-dev+904328-dirty of Braintree SDK Generator require 'cgi' module PayPalCheckoutSdk module Payments # # Shows details for an authorized payment, by ID. # class AuthorizationsGetRequest attr_accessor :path, :body, :headers, :verb def initialize(authorization_id) @headers = {} @body = nil @verb = "GET" @path = "/v2/payments/authorizations/{authorization_id}?" @path = @path.gsub("{authorization_id}", CGI.escape(authorization_id.to_s)) @headers["Content-Type"] = "application/json" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
solidus_paypal_commerce_platform-0.5.0 | lib/paypal/paypal_checkout_sdk/payments/authorizations_get_request.rb |