Interface NextAuthFlowResponseOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
NextAuthFlowResponse, NextAuthFlowResponse.Builder
@Generated
public interface NextAuthFlowResponseOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionA unique token identifying this authentication flow session.com.google.protobuf.ByteStringA unique token identifying this authentication flow session.Set when the client should prompt the user to enter the email verification code.Set when the client should prompt the user to enter the email verification code.Set when authentication has failed.Set when authentication has failed.Set when authentication is complete and successful.Set when authentication is complete and successful.booleanSet when the client should prompt the user to enter the email verification code.booleanSet when authentication has failed.booleanSet when authentication is complete and successful.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getAuthFlowToken
String getAuthFlowToken()A unique token identifying this authentication flow session. This token must be included in subsequent requests (e.g., EmailCodeRequest) to continue the flow. The token is a UUID string and expires after 15 minutes of inactivity.
string auth_flow_token = 1;- Returns:
- The authFlowToken.
-
getAuthFlowTokenBytes
com.google.protobuf.ByteString getAuthFlowTokenBytes()A unique token identifying this authentication flow session. This token must be included in subsequent requests (e.g., EmailCodeRequest) to continue the flow. The token is a UUID string and expires after 15 minutes of inactivity.
string auth_flow_token = 1;- Returns:
- The bytes for authFlowToken.
-
hasEmailCode
boolean hasEmailCode()Set when the client should prompt the user to enter the email verification code. This is the response after a successful Login RPC call.
.soulfire.v1.NextAuthFlowResponse.EmailCode email_code = 2;- Returns:
- Whether the emailCode field is set.
-
getEmailCode
NextAuthFlowResponse.EmailCode getEmailCode()Set when the client should prompt the user to enter the email verification code. This is the response after a successful Login RPC call.
.soulfire.v1.NextAuthFlowResponse.EmailCode email_code = 2;- Returns:
- The emailCode.
-
getEmailCodeOrBuilder
NextAuthFlowResponse.EmailCodeOrBuilder getEmailCodeOrBuilder()Set when the client should prompt the user to enter the email verification code. This is the response after a successful Login RPC call.
.soulfire.v1.NextAuthFlowResponse.EmailCode email_code = 2; -
hasSuccess
boolean hasSuccess()Set when authentication is complete and successful. Contains the JWT token for authenticated API access.
.soulfire.v1.NextAuthFlowResponse.Success success = 3;- Returns:
- Whether the success field is set.
-
getSuccess
NextAuthFlowResponse.Success getSuccess()Set when authentication is complete and successful. Contains the JWT token for authenticated API access.
.soulfire.v1.NextAuthFlowResponse.Success success = 3;- Returns:
- The success.
-
getSuccessOrBuilder
NextAuthFlowResponse.SuccessOrBuilder getSuccessOrBuilder()Set when authentication is complete and successful. Contains the JWT token for authenticated API access.
.soulfire.v1.NextAuthFlowResponse.Success success = 3; -
hasFailure
boolean hasFailure()Set when authentication has failed. Contains the reason for the failure.
.soulfire.v1.NextAuthFlowResponse.Failure failure = 4;- Returns:
- Whether the failure field is set.
-
getFailure
NextAuthFlowResponse.Failure getFailure()Set when authentication has failed. Contains the reason for the failure.
.soulfire.v1.NextAuthFlowResponse.Failure failure = 4;- Returns:
- The failure.
-
getFailureOrBuilder
NextAuthFlowResponse.FailureOrBuilder getFailureOrBuilder()Set when authentication has failed. Contains the reason for the failure.
.soulfire.v1.NextAuthFlowResponse.Failure failure = 4; -
getNextCase
NextAuthFlowResponse.NextCase getNextCase()
-