Package akka.javasdk.agent
Record Class SessionMessage.MultimodalUserMessage
- All Implemented Interfaces:
SessionMessage
- Enclosing interface:
SessionMessage
public static record SessionMessage.MultimodalUserMessage(Instant timestamp, List<SessionMessage.MessageContent> contents, String componentId)
extends Record
implements SessionMessage
-
Nested Class Summary
Nested classes/interfaces inherited from interface akka.javasdk.agent.SessionMessage
SessionMessage.AiMessage, SessionMessage.MessageContent, SessionMessage.MultimodalUserMessage, SessionMessage.ToolCallRequest, SessionMessage.ToolCallResponse, SessionMessage.UserMessage -
Constructor Summary
ConstructorsConstructorDescriptionMultimodalUserMessage(Instant timestamp, List<SessionMessage.MessageContent> contents, String componentId) Creates an instance of aMultimodalUserMessagerecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecomponentIdrecord component.contents()Returns the value of thecontentsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intsize()text()returns text from the first MessageContent.TextMessageContentReturns the value of thetimestamprecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
MultimodalUserMessage
public MultimodalUserMessage(Instant timestamp, List<SessionMessage.MessageContent> contents, String componentId) Creates an instance of aMultimodalUserMessagerecord class.- Parameters:
timestamp- the value for thetimestamprecord componentcontents- the value for thecontentsrecord componentcomponentId- the value for thecomponentIdrecord component
-
-
Method Details
-
text
returns text from the first MessageContent.TextMessageContent -
size
public int size()- Specified by:
sizein interfaceSessionMessage
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
timestamp
Returns the value of thetimestamprecord component.- Returns:
- the value of the
timestamprecord component
-
contents
Returns the value of thecontentsrecord component.- Returns:
- the value of the
contentsrecord component
-
componentId
Returns the value of thecomponentIdrecord component.- Specified by:
componentIdin interfaceSessionMessage- Returns:
- the value of the
componentIdrecord component
-