Package com.google.cloud.channel.v1
Interface AdminUserOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AdminUser
,AdminUser.Builder
public interface AdminUserOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEmail()
Primary email of the admin user.com.google.protobuf.ByteString
getEmailBytes()
Primary email of the admin user.String
getFamilyName()
Family name of the admin user.com.google.protobuf.ByteString
getFamilyNameBytes()
Family name of the admin user.String
getGivenName()
Given name of the admin user.com.google.protobuf.ByteString
getGivenNameBytes()
Given name of the admin user.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEmail
String getEmail()
Primary email of the admin user.
string email = 1;
- Returns:
- The email.
-
getEmailBytes
com.google.protobuf.ByteString getEmailBytes()
Primary email of the admin user.
string email = 1;
- Returns:
- The bytes for email.
-
getGivenName
String getGivenName()
Given name of the admin user.
string given_name = 2;
- Returns:
- The givenName.
-
getGivenNameBytes
com.google.protobuf.ByteString getGivenNameBytes()
Given name of the admin user.
string given_name = 2;
- Returns:
- The bytes for givenName.
-
getFamilyName
String getFamilyName()
Family name of the admin user.
string family_name = 3;
- Returns:
- The familyName.
-
getFamilyNameBytes
com.google.protobuf.ByteString getFamilyNameBytes()
Family name of the admin user.
string family_name = 3;
- Returns:
- The bytes for familyName.
-
-