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.

Since:

  • 0.1.0

Instance Method Summary collapse

Instance Method Details

#__attributes__Hash<Symbol,Any>

Note:

strongly depends on SmartCore::Initializer implementaiton

Returns:

  • (Hash<Symbol,Any>)

Since:

  • 0.1.0



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

Returns:

  • (Hash<Symbol,Any>)

Since:

  • 0.1.0



54
55
56
# File 'lib/smart_core/value_object/interface/constructor.rb', line 54

def __params__
  __collect_params__.merge(__collect_options__)
end

#__properties__Hash<Symbol,Any>

Note:

strongly depends on SmartCore::Initializer implementaiton

Returns:

  • (Hash<Symbol,Any>)

Since:

  • 0.1.0



44
45
46
# File 'lib/smart_core/value_object/interface/constructor.rb', line 44

def __properties__
  __collect_options__
end