Interface UserInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UserInfo
,UserInfo.Builder
public interface UserInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEmail()
E-mail address of the user.com.google.protobuf.ByteString
getEmailBytes()
E-mail address of the user.boolean
hasEmail()
E-mail address of the user.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasEmail
boolean hasEmail()
E-mail address of the user.
optional string email = 1;
- Returns:
- Whether the email field is set.
-
getEmail
String getEmail()
E-mail address of the user.
optional string email = 1;
- Returns:
- The email.
-
getEmailBytes
com.google.protobuf.ByteString getEmailBytes()
E-mail address of the user.
optional string email = 1;
- Returns:
- The bytes for email.
-
-