Class: CheckoutSdk::Metadata::MetadataSource

Inherits:
Object
  • Object
show all
Defined in:
lib/checkout_sdk/metadata/source/metadata_source.rb

Instance Attribute Summary collapse

Instance Attribute Details

#typeString



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

class MetadataSource
  attr_reader :type

  protected

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