Package com.streamlayer.users
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 booleangetInit()Used to initiate session for certain schemas, false by defaultjava.lang.StringgetInviterKey()Used to pass user id who invitescom.google.protobuf.ByteStringgetInviterKeyBytes()Used to pass user id who invitesjava.lang.StringgetSchema()used to pass authentication schemacom.google.protobuf.ByteStringgetSchemaBytes()used to pass authentication schemajava.lang.StringgetUserKey()used ot pass user token or related secretcom.google.protobuf.ByteStringgetUserKeyBytes()used ot pass user token or related secretbooleanhasInviterKey()Used to pass user id who invites
-
-
-
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.
-
-