Package com.buildless
Interface User.EmailAddressOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
User.EmailAddress,User.EmailAddress.Builder
- Enclosing class:
User
public static interface User.EmailAddressOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionEmail address associated with a user account.com.google.protobuf.ByteStringEmail address associated with a user account.booleanWhether this email address is the "primary" email address for the user.booleanWhether this email address has been verified.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
-
getAddress
String getAddress()Email address associated with a user account.
string address = 1 [json_name = "address", (.google.api.field_behavior) = IMMUTABLE, (.validate.rules) = { ... }- Returns:
- The address.
-
getAddressBytes
com.google.protobuf.ByteString getAddressBytes()Email address associated with a user account.
string address = 1 [json_name = "address", (.google.api.field_behavior) = IMMUTABLE, (.validate.rules) = { ... }- Returns:
- The bytes for address.
-
getPrimary
boolean getPrimary()Whether this email address is the "primary" email address for the user. Only one `EmailAddress` may be marked as `primary` at any given time, within the scope of a given `User`.
bool primary = 2 [json_name = "primary"];- Returns:
- The primary.
-
getVerified
boolean getVerified()Whether this email address has been verified. Verification occurs when an email address is linked to an account, and involves either clicking a link or providing a code from an email sent to the address.
bool verified = 3 [json_name = "verified", (.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The verified.
-