Package com.github.copilot.sdk.json
Record Class UserPromptSubmittedHookInput
java.lang.Object
java.lang.Record
com.github.copilot.sdk.json.UserPromptSubmittedHookInput
- Record Components:
timestamp- the timestamp in milliseconds since epoch when the prompt was submittedcwd- the current working directoryprompt- the user's prompt text
public record UserPromptSubmittedHookInput(long timestamp, String cwd, String prompt)
extends Record
Input for a user-prompt-submitted hook.
This hook is invoked when the user submits a prompt, allowing you to intercept and modify the prompt before it is processed.
- Since:
- 1.0.7
-
Constructor Summary
ConstructorsConstructorDescriptionUserPromptSubmittedHookInput(long timestamp, String cwd, String prompt) Creates an instance of aUserPromptSubmittedHookInputrecord class. -
Method Summary
Modifier and TypeMethodDescriptioncwd()Returns the value of thecwdrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.prompt()Returns the value of thepromptrecord component.longReturns the value of thetimestamprecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
timestamp
public long timestamp()Returns the value of thetimestamprecord component.- Returns:
- the value of the
timestamprecord component
-
cwd
Returns the value of thecwdrecord component.- Returns:
- the value of the
cwdrecord component
-
prompt
Returns the value of thepromptrecord component.- Returns:
- the value of the
promptrecord component
-