Record Class SessionEndHookInput
java.lang.Object
java.lang.Record
com.github.copilot.rpc.SessionEndHookInput
- Record Components:
sessionId- the runtime session ID of the session that triggered the hooktimestamp- the timestamp in milliseconds since epoch when the session endedcwd- the current working directoryreason- the reason: "complete", "error", "abort", "timeout", or "user_exit"finalMessage- the final message, ornullerror- the error message, ornull
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncwd()Returns the value of thecwdrecord component.final booleanIndicates whether some other object is "equal to" this one.error()Returns the value of theerrorrecord component.Returns the value of thefinalMessagerecord component.final inthashCode()Returns a hash code value for this object.reason()Returns the value of thereasonrecord component.Returns the value of thesessionIdrecord component.longReturns the value of thetimestamprecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SessionEndHookInput
public SessionEndHookInput(String sessionId, long timestamp, String cwd, String reason, String finalMessage, String error) Creates an instance of aSessionEndHookInputrecord class.- Parameters:
sessionId- the value for thesessionIdrecord componenttimestamp- the value for thetimestamprecord componentcwd- the value for thecwdrecord componentreason- the value for thereasonrecord componentfinalMessage- the value for thefinalMessagerecord componenterror- the value for theerrorrecord 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
sessionId
-
timestamp
-
cwd
-
reason
-
finalMessage
Returns the value of thefinalMessagerecord component.- Returns:
- the value of the
finalMessagerecord component
-
error
-