Class: Adyen::CheckoutUtility

Inherits:
Service
  • Object
show all
Defined in:
lib/adyen/services/checkout_utility.rb

Constant Summary collapse

DEFAULT_VERSION =
1

Instance Attribute Summary

Attributes inherited from Service

#service, #version

Instance Method Summary collapse

Methods inherited from Service

action_for_method_name

Constructor Details

#initialize(client, version = DEFAULT_VERSION) ⇒ CheckoutUtility

Returns a new instance of CheckoutUtility.



7
8
9
10
11
12
13
14
# File 'lib/adyen/services/checkout_utility.rb', line 7

def initialize(client, version = DEFAULT_VERSION)
  service = 'Checkout'
  method_names = [
    :origin_keys
  ]

  super(client, version, service, method_names)
end