class Avmtrf1::Oracle::Objects

def row_to_attributes(row)

def row_to_attributes(row)
  return nil if row.blank?
  COLUMNS_TO_ATTRIBUTES.map do |column, attribute| # rubocop:disable Style/MapToHash
    [attribute, row.fetch(column.to_s.upcase)]
  end.to_h
end