Module: SmartCore::ValueObject::Interface::Constructor::AttributeAccess Private
- Defined in:
- lib/smart_core/value_object/interface/constructor.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
- #__attributes__ ⇒ Hash<Symbol,Any>
- #__params__ ⇒ Hash<Symbol,Any>
- #__properties__ ⇒ Hash<Symbol,Any>
Instance Method Details
#__attributes__ ⇒ Hash<Symbol,Any>
Note:
strongly depends on SmartCore::Initializer implementaiton
34 35 36 |
# File 'lib/smart_core/value_object/interface/constructor.rb', line 34 def __attributes__ __collect_params__ end |
#__params__ ⇒ Hash<Symbol,Any>
Note:
strongly depends on SmartCore::Initializer implementaiton
54 55 56 |
# File 'lib/smart_core/value_object/interface/constructor.rb', line 54 def __params__ __collect_params__.merge() end |
#__properties__ ⇒ Hash<Symbol,Any>
Note:
strongly depends on SmartCore::Initializer implementaiton
44 45 46 |
# File 'lib/smart_core/value_object/interface/constructor.rb', line 44 def __properties__ end |