Sha256: 507443b5be05d1dbc8dd14926fdd333b3ef703ab9375dac8ed7ce642be31af8e
Contents?: true
Size: 568 Bytes
Versions: 20
Compression:
Stored size: 568 Bytes
Contents
# frozen_string_literal: true module SolidusPaypalCommercePlatform # https://developer.paypal.com/docs/api/partner-referrals/v1/#merchant-integration_credentials class FetchMerchantCredentialsRequest attr_accessor :verb, :path, :headers, :body def initialize(partner_merchant_id:, access_token:) @verb = "GET" @path = "/v1/customer/partners/#{partner_merchant_id}/merchant-integrations/credentials" @headers = { "Content-Type" => "application/json", "Authorization" => "Bearer #{access_token}" } end end end
Version data entries
20 entries across 20 versions & 1 rubygems