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 Type
    Method
    Description
    The authentication flow token received from the Login RPC response.
    com.google.protobuf.ByteString
    The authentication flow token received from the Login RPC response.
    The six-digit verification code that was sent to the user's email address.
    com.google.protobuf.ByteString
    The six-digit verification code that was sent to the user's email address.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods 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.