main.java.com.streamlayer.users.ExtendedUserAttributesOrBuilder 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 ExtendedUserAttributesOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.users.ExtendedUserAttributes)
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();
/**
* .streamlayer.users.UserMetadata metadata = 4 [json_name = "metadata"];
* @return Whether the metadata field is set.
*/
boolean hasMetadata();
/**
* .streamlayer.users.UserMetadata metadata = 4 [json_name = "metadata"];
* @return The metadata.
*/
com.streamlayer.users.UserMetadata getMetadata();
}