Record Class McpAuthToken
java.lang.Object
java.lang.Record
com.github.copilot.rpc.McpAuthToken
-
Constructor Summary
ConstructorsConstructorDescriptionMcpAuthToken(String accessToken, String tokenType, Long expiresIn) Creates an instance of aMcpAuthTokenrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theaccessTokenrecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of theexpiresInrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of thetokenTyperecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
McpAuthToken
Creates an instance of aMcpAuthTokenrecord class.- Parameters:
accessToken- the value for theaccessTokenrecord componenttokenType- the value for thetokenTyperecord componentexpiresIn- the value for theexpiresInrecord 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). -
accessToken
Returns the value of theaccessTokenrecord component.- Returns:
- the value of the
accessTokenrecord component
-
tokenType
Returns the value of thetokenTyperecord component.- Returns:
- the value of the
tokenTyperecord component
-
expiresIn
Returns the value of theexpiresInrecord component.- Returns:
- the value of the
expiresInrecord component
-