main.java.com.streamlayer.users.UserAttributesOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sl-protofiles Show documentation
Show all versions of sl-protofiles Show documentation
StreamLayer Java Protofiles
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: streamlayer/users/users_common.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.users;
public interface UserAttributesOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.users.UserAttributes)
com.google.protobuf.MessageLiteOrBuilder {
/**
* string username = 1 [json_name = "username"];
* @return The username.
*/
java.lang.String getUsername();
/**
* string username = 1 [json_name = "username"];
* @return The bytes for username.
*/
com.google.protobuf.ByteString
getUsernameBytes();
/**
* string name = 2 [json_name = "name"];
* @return The name.
*/
java.lang.String getName();
/**
* string name = 2 [json_name = "name"];
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* string alias = 3 [json_name = "alias"];
* @return The alias.
*/
java.lang.String getAlias();
/**
* string alias = 3 [json_name = "alias"];
* @return The bytes for alias.
*/
com.google.protobuf.ByteString
getAliasBytes();
/**
* string avatar = 5 [json_name = "avatar"];
* @return The avatar.
*/
java.lang.String getAvatar();
/**
* string avatar = 5 [json_name = "avatar"];
* @return The bytes for avatar.
*/
com.google.protobuf.ByteString
getAvatarBytes();
/**
* .streamlayer.users.PublicChatUser public_chat = 6 [json_name = "publicChat", deprecated = true];
* @deprecated streamlayer.users.UserAttributes.public_chat is deprecated.
* See streamlayer/users/users_common.proto;l=19
* @return Whether the publicChat field is set.
*/
@java.lang.Deprecated boolean hasPublicChat();
/**
* .streamlayer.users.PublicChatUser public_chat = 6 [json_name = "publicChat", deprecated = true];
* @deprecated streamlayer.users.UserAttributes.public_chat is deprecated.
* See streamlayer/users/users_common.proto;l=19
* @return The publicChat.
*/
@java.lang.Deprecated com.streamlayer.users.PublicChatUser getPublicChat();
/**
* string public_name = 7 [json_name = "publicName"];
* @return The publicName.
*/
java.lang.String getPublicName();
/**
* string public_name = 7 [json_name = "publicName"];
* @return The bytes for publicName.
*/
com.google.protobuf.ByteString
getPublicNameBytes();
}