public record Item(int id, String name) {
  public static void main(String[] args) {
    System.out.println(new Item(1, "SAMPLE"));
  }
}
