Interface ContactInfoOrBuilder

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

    public interface ContactInfoOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getDisplayName()
      Output only.
      com.google.protobuf.ByteString getDisplayNameBytes()
      Output only.
      String getEmail()
      The customer account's contact email.
      com.google.protobuf.ByteString getEmailBytes()
      The customer account's contact email.
      String getFirstName()
      The customer account contact's first name.
      com.google.protobuf.ByteString getFirstNameBytes()
      The customer account contact's first name.
      String getLastName()
      The customer account contact's last name.
      com.google.protobuf.ByteString getLastNameBytes()
      The customer account contact's last name.
      String getPhone()
      The customer account's contact phone number.
      com.google.protobuf.ByteString getPhoneBytes()
      The customer account's contact phone number.
      String getTitle()
      Optional.
      com.google.protobuf.ByteString getTitleBytes()
      Optional.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getFirstName

        String getFirstName()
         The customer account contact's first name. Optional for Team customers.
         
        string first_name = 1;
        Returns:
        The firstName.
      • getFirstNameBytes

        com.google.protobuf.ByteString getFirstNameBytes()
         The customer account contact's first name. Optional for Team customers.
         
        string first_name = 1;
        Returns:
        The bytes for firstName.
      • getLastName

        String getLastName()
         The customer account contact's last name. Optional for Team customers.
         
        string last_name = 2;
        Returns:
        The lastName.
      • getLastNameBytes

        com.google.protobuf.ByteString getLastNameBytes()
         The customer account contact's last name. Optional for Team customers.
         
        string last_name = 2;
        Returns:
        The bytes for lastName.
      • getDisplayName

        String getDisplayName()
         Output only. The customer account contact's display name, formatted as a
         combination of the customer's first and last name.
         
        string display_name = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Returns:
        The displayName.
      • getDisplayNameBytes

        com.google.protobuf.ByteString getDisplayNameBytes()
         Output only. The customer account contact's display name, formatted as a
         combination of the customer's first and last name.
         
        string display_name = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Returns:
        The bytes for displayName.
      • getEmail

        String getEmail()
         The customer account's contact email. Required for entitlements that create
         admin.google.com accounts, and serves as the customer's username for those
         accounts. Use this email to invite Team customers.
         
        string email = 5;
        Returns:
        The email.
      • getEmailBytes

        com.google.protobuf.ByteString getEmailBytes()
         The customer account's contact email. Required for entitlements that create
         admin.google.com accounts, and serves as the customer's username for those
         accounts. Use this email to invite Team customers.
         
        string email = 5;
        Returns:
        The bytes for email.
      • getTitle

        String getTitle()
         Optional. The customer account contact's job title.
         
        string title = 6 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        The title.
      • getTitleBytes

        com.google.protobuf.ByteString getTitleBytes()
         Optional. The customer account contact's job title.
         
        string title = 6 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        The bytes for title.
      • getPhone

        String getPhone()
         The customer account's contact phone number.
         
        string phone = 7;
        Returns:
        The phone.
      • getPhoneBytes

        com.google.protobuf.ByteString getPhoneBytes()
         The customer account's contact phone number.
         
        string phone = 7;
        Returns:
        The bytes for phone.