Record Class AccountLoginResult
java.lang.Object
java.lang.Record
com.github.copilot.generated.rpc.AccountLoginResult
@CopilotExperimental
@Generated("copilot-sdk-codegen")
public record AccountLoginResult(Boolean storedInVault)
extends Record
Result of a successful login; throws on failure
- Since:
- 1.0.0
-
Constructor Summary
ConstructorsConstructorDescriptionAccountLoginResult(Boolean storedInVault) Creates an instance of aAccountLoginResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thestoredInVaultrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
AccountLoginResult
Creates an instance of aAccountLoginResultrecord class.- Parameters:
storedInVault- the value for thestoredInVaultrecord 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). -
storedInVault
Returns the value of thestoredInVaultrecord component.- Returns:
- the value of the
storedInVaultrecord component
-