lib/adyen/services/balancePlatform/grant_offers_api.rb
require_relative '../service' module Adyen class GrantOffersApi < Service attr_accessor :service, :version def initialize(client, version = DEFAULT_VERSION) super(client, version, 'BalancePlatform') end def get_all_available_grant_offers(headers: {}, query_params: {}) endpoint = '/grantOffers'.gsub(/{.+?}/, '%s') endpoint = endpoint.gsub(%r{^/}, '') endpoint = format(endpoint) endpoint += create_query_string(query_params) action = { method: 'get', url: endpoint } @client.call_adyen_api(@service, action, {}, headers, @version) end def get_grant_offer(grant_offer_id, headers: {}) endpoint = '/grantOffers/{grantOfferId}'.gsub(/{.+?}/, '%s') endpoint = endpoint.gsub(%r{^/}, '') endpoint = format(endpoint, grant_offer_id) action = { method: 'get', url: endpoint } @client.call_adyen_api(@service, action, {}, headers, @version) end end end