Sha256: 5a84a5da87ef4ab202ce1c903d7b4f2122c3691f62a54a32adeb95513f2689c0

Contents?: true

Size: 335 Bytes

Versions: 3

Compression:

Stored size: 335 Bytes

Contents

module MercadoPago
  module CustomCheckout
    class IdentificationType < Resource
      attr_reader :id, :name, :extras

      def initialize(id:, name:, **extras)
        @id = id
        @name = name
        @extras = extras
      end

      private

      def attr_inspect
        [:id, :name, :status]
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mercadopago-custom-checkout-0.2.0 lib/mercadopago/custom_checkout/identification_type.rb
mercadopago-custom-checkout-0.1.2 lib/mercadopago/custom_checkout/identification_type.rb
mercadopago-custom-checkout-0.1.1 lib/mercadopago/custom_checkout/identification_type.rb