Package com.github.copilot.sdk.generated
Record Class SessionCompactionStartEvent.SessionCompactionStartEventData
java.lang.Object
java.lang.Record
com.github.copilot.sdk.generated.SessionCompactionStartEvent.SessionCompactionStartEventData
- Enclosing class:
- SessionCompactionStartEvent
public static record SessionCompactionStartEvent.SessionCompactionStartEventData(Double systemTokens, Double conversationTokens, Double toolDefinitionsTokens)
extends Record
Data payload for
SessionCompactionStartEvent.-
Constructor Summary
ConstructorsConstructorDescriptionSessionCompactionStartEventData(Double systemTokens, Double conversationTokens, Double toolDefinitionsTokens) Creates an instance of aSessionCompactionStartEventDatarecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theconversationTokensrecord 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 thesystemTokensrecord component.Returns the value of thetoolDefinitionsTokensrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SessionCompactionStartEventData
public SessionCompactionStartEventData(Double systemTokens, Double conversationTokens, Double toolDefinitionsTokens) Creates an instance of aSessionCompactionStartEventDatarecord class.- Parameters:
systemTokens- the value for thesystemTokensrecord componentconversationTokens- the value for theconversationTokensrecord componenttoolDefinitionsTokens- the value for thetoolDefinitionsTokensrecord component
-
-
Method Details
-
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). -
systemTokens
Returns the value of thesystemTokensrecord component.- Returns:
- the value of the
systemTokensrecord component
-
conversationTokens
Returns the value of theconversationTokensrecord component.- Returns:
- the value of the
conversationTokensrecord component
-
toolDefinitionsTokens
Returns the value of thetoolDefinitionsTokensrecord component.- Returns:
- the value of the
toolDefinitionsTokensrecord component
-