Record Class IdSessionMessage

java.lang.Object
java.lang.Record
com.io7m.idstore.server.service.sessions.IdSessionMessage
Record Components:
requestId - The request ID
isError - true if the message is an error
isServerError - true if the error is a server-side error and not the fault of the user
messageTitle - The message title
message - The message
returnTo - The path to which to return

public record IdSessionMessage(UUID requestId, boolean isError, boolean isServerError, String messageTitle, String message, String returnTo) extends Record
A message that will be displayed on the message screen.