Interface UserReferenceOrBuilder

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

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

    Modifier and Type
    Method
    Description
    Specifies a display name for a given user.
    com.google.protobuf.ByteString
    Specifies a display name for a given user.
    Key fingerprint for the user (for example, SSH or GPG key).
    com.google.protobuf.ByteString
    Key fingerprint for the user (for example, SSH or GPG key).
    Specifies an organization name for a given user.
    com.google.protobuf.ByteString
    Specifies an organization name for a given user.
    Specifies a picture for a given user.
    com.google.protobuf.ByteString
    Specifies a picture for a given user.
    Specifies the ID value for this user, also known as the "UID."
    Specifies the ID value for this user, also known as the "UID."
    Specifies a username for a given user.
    com.google.protobuf.ByteString
    Specifies a username for a given user.
    boolean
    Specifies the ID value for this user, also known as the "UID."

    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 Details

    • hasUid

      boolean hasUid()
       Specifies the ID value for this user, also known as the "UID."
       
      .buildless.accounts.UserID uid = 1 [json_name = "uid"];
      Returns:
      Whether the uid field is set.
    • getUid

      UserID getUid()
       Specifies the ID value for this user, also known as the "UID."
       
      .buildless.accounts.UserID uid = 1 [json_name = "uid"];
      Returns:
      The uid.
    • getUidOrBuilder

      UserIDOrBuilder getUidOrBuilder()
       Specifies the ID value for this user, also known as the "UID."
       
      .buildless.accounts.UserID uid = 1 [json_name = "uid"];
    • getDisplayName

      String getDisplayName()
       Specifies a display name for a given user.
       
      string display_name = 2 [json_name = "displayName"];
      Returns:
      The displayName.
    • getDisplayNameBytes

      com.google.protobuf.ByteString getDisplayNameBytes()
       Specifies a display name for a given user.
       
      string display_name = 2 [json_name = "displayName"];
      Returns:
      The bytes for displayName.
    • getPicture

      String getPicture()
       Specifies a picture for a given user.
       
      string picture = 3 [json_name = "picture"];
      Returns:
      The picture.
    • getPictureBytes

      com.google.protobuf.ByteString getPictureBytes()
       Specifies a picture for a given user.
       
      string picture = 3 [json_name = "picture"];
      Returns:
      The bytes for picture.
    • getUsername

      String getUsername()
       Specifies a username for a given user.
       
      string username = 4 [json_name = "username"];
      Returns:
      The username.
    • getUsernameBytes

      com.google.protobuf.ByteString getUsernameBytes()
       Specifies a username for a given user.
       
      string username = 4 [json_name = "username"];
      Returns:
      The bytes for username.
    • getOrg

      String getOrg()
       Specifies an organization name for a given user.
       
      string org = 5 [json_name = "org"];
      Returns:
      The org.
    • getOrgBytes

      com.google.protobuf.ByteString getOrgBytes()
       Specifies an organization name for a given user.
       
      string org = 5 [json_name = "org"];
      Returns:
      The bytes for org.
    • getFingerprint

      String getFingerprint()
       Key fingerprint for the user (for example, SSH or GPG key).
       
      string fingerprint = 6 [json_name = "fingerprint"];
      Returns:
      The fingerprint.
    • getFingerprintBytes

      com.google.protobuf.ByteString getFingerprintBytes()
       Key fingerprint for the user (for example, SSH or GPG key).
       
      string fingerprint = 6 [json_name = "fingerprint"];
      Returns:
      The bytes for fingerprint.