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.
-
#persistence ⇒ Object
readonly
Returns the value of attribute persistence.
-
#settings ⇒ Object
readonly
Returns the value of attribute settings.
Instance Method Summary collapse
-
#initialize(actor, extra_parameters_hash, persistence, settings) ⇒ UntargetedParameters
constructor
A new instance of UntargetedParameters.
Constructor Details
#initialize(actor, extra_parameters_hash, persistence, settings) ⇒ UntargetedParameters
Returns a new instance of UntargetedParameters.
12 13 14 15 16 17 |
# File 'lib/clean_architecture/entities/untargeted_parameters.rb', line 12 def initialize(actor, extra_parameters_hash, persistence, settings) @actor = actor @extra_parameters_hash = extra_parameters_hash @persistence = persistence @settings = settings end |
Instance Attribute Details
#actor ⇒ Object (readonly)
Returns the value of attribute actor.
8 9 10 |
# File 'lib/clean_architecture/entities/untargeted_parameters.rb', line 8 def actor @actor end |
#extra_parameters_hash ⇒ Object (readonly)
Returns the value of attribute extra_parameters_hash.
8 9 10 |
# File 'lib/clean_architecture/entities/untargeted_parameters.rb', line 8 def extra_parameters_hash @extra_parameters_hash end |
#persistence ⇒ Object (readonly)
Returns the value of attribute persistence.
8 9 10 |
# File 'lib/clean_architecture/entities/untargeted_parameters.rb', line 8 def persistence @persistence end |
#settings ⇒ Object (readonly)
Returns the value of attribute settings.
8 9 10 |
# File 'lib/clean_architecture/entities/untargeted_parameters.rb', line 8 def settings @settings end |