Record Class AssistantReasoningEvent.AssistantReasoningEventData
java.lang.Object
java.lang.Record
com.github.copilot.generated.AssistantReasoningEvent.AssistantReasoningEventData
- Enclosing class:
AssistantReasoningEvent
public static record AssistantReasoningEvent.AssistantReasoningEventData(String reasoningId, String content, Boolean rte)
extends Record
Data payload for
AssistantReasoningEvent.- Since:
- 1.0.0
-
Constructor Summary
ConstructorsConstructorDescriptionAssistantReasoningEventData(String reasoningId, String content, Boolean rte) Creates an instance of aAssistantReasoningEventDatarecord class. -
Method Summary
Modifier and TypeMethodDescriptioncontent()Returns the value of thecontentrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thereasoningIdrecord component.rte()Returns the value of therterecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
AssistantReasoningEventData
Creates an instance of aAssistantReasoningEventDatarecord class.- Parameters:
reasoningId- the value for thereasoningIdrecord componentcontent- the value for thecontentrecord componentrte- the value for therterecord component
-
-
Method Details
-
toString
-
hashCode
-
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). -
reasoningId
Returns the value of thereasoningIdrecord component.- Returns:
- the value of the
reasoningIdrecord component
-
content
Returns the value of thecontentrecord component.- Returns:
- the value of the
contentrecord component
-
rte
Returns the value of therterecord component.- Returns:
- the value of the
rterecord component
-