Package com.github.copilot.sdk.generated
Record Class AutoModeSwitchRequestedEvent.AutoModeSwitchRequestedEventData
java.lang.Object
java.lang.Record
com.github.copilot.sdk.generated.AutoModeSwitchRequestedEvent.AutoModeSwitchRequestedEventData
- Enclosing class:
- AutoModeSwitchRequestedEvent
public static record AutoModeSwitchRequestedEvent.AutoModeSwitchRequestedEventData(String requestId, String errorCode)
extends Record
Data payload for
AutoModeSwitchRequestedEvent.-
Constructor Summary
ConstructorsConstructorDescriptionAutoModeSwitchRequestedEventData(String requestId, String errorCode) Creates an instance of aAutoModeSwitchRequestedEventDatarecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of theerrorCoderecord component.final inthashCode()Returns a hash code value for this object.Returns the value of therequestIdrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
AutoModeSwitchRequestedEventData
Creates an instance of aAutoModeSwitchRequestedEventDatarecord class.- Parameters:
requestId- the value for therequestIdrecord componenterrorCode- the value for theerrorCoderecord 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). -
requestId
Returns the value of therequestIdrecord component.- Returns:
- the value of the
requestIdrecord component
-
errorCode
Returns the value of theerrorCoderecord component.- Returns:
- the value of the
errorCoderecord component
-