Interface BypassAuthRequestOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder
    All Known Implementing Classes:
    BypassAuthRequest, BypassAuthRequest.Builder

    public interface BypassAuthRequestOrBuilder
    extends com.google.protobuf.MessageLiteOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getInit()
      Used to initiate session for certain schemas, false by default
      java.lang.String getInviterKey()
      Used to pass user id who invites
      com.google.protobuf.ByteString getInviterKeyBytes()
      Used to pass user id who invites
      java.lang.String getSchema()
      used to pass authentication schema
      com.google.protobuf.ByteString getSchemaBytes()
      used to pass authentication schema
      java.lang.String getUserKey()
      used ot pass user token or related secret
      com.google.protobuf.ByteString getUserKeyBytes()
      used ot pass user token or related secret
      boolean hasInviterKey()
      Used to pass user id who invites
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        getDefaultInstanceForType, isInitialized
    • Method Detail

      • getUserKey

        java.lang.String getUserKey()
         used ot pass user token or related secret
         
        string user_key = 1 [json_name = "userKey"];
        Returns:
        The userKey.
      • getUserKeyBytes

        com.google.protobuf.ByteString getUserKeyBytes()
         used ot pass user token or related secret
         
        string user_key = 1 [json_name = "userKey"];
        Returns:
        The bytes for userKey.
      • getSchema

        java.lang.String getSchema()
         used to pass authentication schema
         
        string schema = 2 [json_name = "schema"];
        Returns:
        The schema.
      • getSchemaBytes

        com.google.protobuf.ByteString getSchemaBytes()
         used to pass authentication schema
         
        string schema = 2 [json_name = "schema"];
        Returns:
        The bytes for schema.
      • getInit

        boolean getInit()
         Used to initiate session for certain schemas, false by default
         
        bool init = 3 [json_name = "init"];
        Returns:
        The init.
      • hasInviterKey

        boolean hasInviterKey()
         Used to pass user id who invites
         
        optional string inviter_key = 4 [json_name = "inviterKey"];
        Returns:
        Whether the inviterKey field is set.
      • getInviterKey

        java.lang.String getInviterKey()
         Used to pass user id who invites
         
        optional string inviter_key = 4 [json_name = "inviterKey"];
        Returns:
        The inviterKey.
      • getInviterKeyBytes

        com.google.protobuf.ByteString getInviterKeyBytes()
         Used to pass user id who invites
         
        optional string inviter_key = 4 [json_name = "inviterKey"];
        Returns:
        The bytes for inviterKey.