import java.time.Instant; record Message(String type, String value, Instant timestamp) { Message(String type, String value) { this(type, value, Instant.now()); } }