class Adyen::Marketpay::Marketpay

Attributes

service[RW]

Public Class Methods

new(client) click to toggle source
# File lib/adyen/services/marketpay.rb, line 8
def initialize(client)
  @client = client
  @service = ""
end

Public Instance Methods

account() click to toggle source
# File lib/adyen/services/marketpay.rb, line 13
def account
  @account ||= Adyen::Marketpay::Account.new(@client)
end
fund() click to toggle source
# File lib/adyen/services/marketpay.rb, line 17
def fund
  @fund ||= Adyen::Marketpay::Fund.new(@client)
end
hop() click to toggle source
# File lib/adyen/services/marketpay.rb, line 25
def hop
  @hop ||= Adyen::Marketpay::Hop.new(@client)
end
notification() click to toggle source
# File lib/adyen/services/marketpay.rb, line 21
def notification
  @notification ||= Adyen::Marketpay::Notification.new(@client)
end