Interface EmailCodeRequestOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EmailCodeRequest, EmailCodeRequest.Builder
@Generated
public interface EmailCodeRequestOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionThe authentication flow token received from the Login RPC response.com.google.protobuf.ByteStringThe authentication flow token received from the Login RPC response.getCode()The six-digit verification code that was sent to the user's email address.com.google.protobuf.ByteStringThe six-digit verification code that was sent to the user's email address.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()The authentication flow token received from the Login RPC response. This token links the code verification to the original login request. Must be a valid UUID string.
string auth_flow_token = 1;- Returns:
- The authFlowToken.
-
getAuthFlowTokenBytes
com.google.protobuf.ByteString getAuthFlowTokenBytes()The authentication flow token received from the Login RPC response. This token links the code verification to the original login request. Must be a valid UUID string.
string auth_flow_token = 1;- Returns:
- The bytes for authFlowToken.
-
getCode
String getCode()The six-digit verification code that was sent to the user's email address. Must exactly match the code that was emailed to the user.
string code = 2;- Returns:
- The code.
-
getCodeBytes
com.google.protobuf.ByteString getCodeBytes()The six-digit verification code that was sent to the user's email address. Must exactly match the code that was emailed to the user.
string code = 2;- Returns:
- The bytes for code.
-