class BrregGrunndata::Types::Base

Base class for all BrregGrunndata's types

Public Instance Methods

merge(other) click to toggle source

Merges two base objects together and returns a new instance

@return a new instance of self, filled/merged with data from other

# File lib/brreg_grunndata/types/base.rb, line 24
def merge(other)
  Utils::BaseTypeMerger.new(self, other).merge
end