Class: CleanArchitecture::Entities::UntargetedParameters
- Inherits:
-
Object
- Object
- CleanArchitecture::Entities::UntargetedParameters
- Defined in:
- lib/clean_architecture/entities/untargeted_parameters.rb
Instance Attribute Summary collapse
-
#actor ⇒ Object
readonly
Returns the value of attribute actor.
-
#extra_parameters_hash ⇒ Object
readonly
Returns the value of attribute extra_parameters_hash.
-
#gateway ⇒ Object
readonly
Returns the value of attribute gateway.
-
#settings ⇒ Object
readonly
Returns the value of attribute settings.
Instance Method Summary collapse
-
#initialize(actor, extra_parameters_hash, gateway, settings) ⇒ UntargetedParameters
constructor
A new instance of UntargetedParameters.
Constructor Details
#initialize(actor, extra_parameters_hash, gateway, settings) ⇒ UntargetedParameters
Returns a new instance of UntargetedParameters.
13 14 15 16 17 18 |
# File 'lib/clean_architecture/entities/untargeted_parameters.rb', line 13 def initialize(actor, extra_parameters_hash, gateway, settings) @actor = actor @extra_parameters_hash = extra_parameters_hash @gateway = gateway @settings = settings end |
Instance Attribute Details
#actor ⇒ Object (readonly)
Returns the value of attribute actor.
9 10 11 |
# File 'lib/clean_architecture/entities/untargeted_parameters.rb', line 9 def actor @actor end |
#extra_parameters_hash ⇒ Object (readonly)
Returns the value of attribute extra_parameters_hash.
9 10 11 |
# File 'lib/clean_architecture/entities/untargeted_parameters.rb', line 9 def extra_parameters_hash @extra_parameters_hash end |
#gateway ⇒ Object (readonly)
Returns the value of attribute gateway.
9 10 11 |
# File 'lib/clean_architecture/entities/untargeted_parameters.rb', line 9 def gateway @gateway end |
#settings ⇒ Object (readonly)
Returns the value of attribute settings.
9 10 11 |
# File 'lib/clean_architecture/entities/untargeted_parameters.rb', line 9 def settings @settings end |