Class: CheckoutSdk::Payments::Destination

Inherits:
Object
  • Object
show all
Defined in:
lib/checkout_sdk/payments/destination/destination.rb

Instance Attribute Summary collapse

Instance Attribute Details

#typeString



7
8
9
10
11
12
13
14
15
16
17
# File 'lib/checkout_sdk/payments/destination/destination.rb', line 7

class Destination
  attr_reader :type

  protected

  # @abstract
  # @param [String] type {DestinationType}
  def initialize(type)
    @type = type
  end
end