Record Class AssistantServerToolProgressEvent.AssistantServerToolProgressEventData
java.lang.Object
java.lang.Record
com.github.copilot.generated.AssistantServerToolProgressEvent.AssistantServerToolProgressEventData
- Enclosing class:
AssistantServerToolProgressEvent
public static record AssistantServerToolProgressEvent.AssistantServerToolProgressEventData(Long outputIndex, String kind, String status)
extends Record
Data payload for
AssistantServerToolProgressEvent.- Since:
- 1.0.0
-
Constructor Summary
ConstructorsConstructorDescriptionAssistantServerToolProgressEventData(Long outputIndex, String kind, String status) Creates an instance of aAssistantServerToolProgressEventDatarecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.kind()Returns the value of thekindrecord component.Returns the value of theoutputIndexrecord component.status()Returns the value of thestatusrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
AssistantServerToolProgressEventData
Creates an instance of aAssistantServerToolProgressEventDatarecord class.- Parameters:
outputIndex- the value for theoutputIndexrecord componentkind- the value for thekindrecord componentstatus- the value for thestatusrecord 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). -
outputIndex
Returns the value of theoutputIndexrecord component.- Returns:
- the value of the
outputIndexrecord component
-
kind
Returns the value of thekindrecord component.- Returns:
- the value of the
kindrecord component
-
status
Returns the value of thestatusrecord component.- Returns:
- the value of the
statusrecord component
-