Record Class AutoModeSwitchRequestedEvent.AutoModeSwitchRequestedEventData
java.lang.Object
java.lang.Record
com.github.copilot.generated.AutoModeSwitchRequestedEvent.AutoModeSwitchRequestedEventData
- Enclosing class:
AutoModeSwitchRequestedEvent
public static record AutoModeSwitchRequestedEvent.AutoModeSwitchRequestedEventData(String requestId, String errorCode, Long retryAfterSeconds)
extends Record
Data payload for
AutoModeSwitchRequestedEvent.- Since:
- 1.0.0
-
Constructor Summary
ConstructorsConstructorDescriptionAutoModeSwitchRequestedEventData(String requestId, String errorCode, Long retryAfterSeconds) 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.Returns the value of theretryAfterSecondsrecord 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 componentretryAfterSeconds- the value for theretryAfterSecondsrecord 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). -
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
-
retryAfterSeconds
Returns the value of theretryAfterSecondsrecord component.- Returns:
- the value of the
retryAfterSecondsrecord component
-