Sha256: 4c6998645143f8cd2665d86daedf05e4ac6d0ce88fc8423455093e7e6dc2ba37

Contents?: true

Size: 534 Bytes

Versions: 2

Compression:

Stored size: 534 Bytes

Contents

# typed: true
# frozen_string_literal: true

require 'clean_architecture/interfaces/base_parameters'

module CleanArchitecture
  module Entities
    class UntargetedParameters
      attr_reader :actor, :extra_parameters_hash, :gateway, :settings

      implements_interface Interfaces::BaseParameters

      def initialize(actor, extra_parameters_hash, gateway, settings)
        @actor = actor
        @extra_parameters_hash = extra_parameters_hash
        @gateway = gateway
        @settings = settings
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
clean-architecture-5.0.2 lib/clean_architecture/entities/untargeted_parameters.rb
clean-architecture-5.0.1 lib/clean_architecture/entities/untargeted_parameters.rb