main
 1# frozen_string_literal: true
 2
 3class UserWithoutAttributes
 4  attr_accessor :name_id
 5
 6  def initialize(name_id: SecureRandom.uuid)
 7    @name_id = name_id
 8  end
 9
10  def name_id_for(_format)
11    name_id
12  end
13end