Sha256: 8ae38c6515e1811462585e180f956facb0ad595ff869336c8c9efccc72e7f2c6

Contents?: true

Size: 423 Bytes

Versions: 1

Compression:

Stored size: 423 Bytes

Contents

# frozen_string_literal: true

module YandexCheckout
  module Entity
    class Confirmation
      extend  Dry::Initializer
      extend  YandexCheckout::Callable
      include YandexCheckout::Optional

      option :type, proc(&:to_s), optional: true
      option :confirmation_url, proc(&:to_s), optional: true
      option :enforce, optional: true
      option :return_url, proc(&:to_s), optional: true
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
yandex-checkout-0.1.1 lib/yandex-checkout/entity/confirmation.rb