main.java.com.streamlayer.users.UpdateAvatarRequestOrBuilder 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.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.users;
public interface UpdateAvatarRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.users.UpdateAvatarRequest)
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 set_avatar = 2 [json_name = "setAvatar"];
* @return Whether the setAvatar field is set.
*/
boolean hasSetAvatar();
/**
* string set_avatar = 2 [json_name = "setAvatar"];
* @return The setAvatar.
*/
java.lang.String getSetAvatar();
/**
* string set_avatar = 2 [json_name = "setAvatar"];
* @return The bytes for setAvatar.
*/
com.google.protobuf.ByteString
getSetAvatarBytes();
/**
* string del_avatar = 3 [json_name = "delAvatar"];
* @return Whether the delAvatar field is set.
*/
boolean hasDelAvatar();
/**
* string del_avatar = 3 [json_name = "delAvatar"];
* @return The delAvatar.
*/
java.lang.String getDelAvatar();
/**
* string del_avatar = 3 [json_name = "delAvatar"];
* @return The bytes for delAvatar.
*/
com.google.protobuf.ByteString
getDelAvatarBytes();
public com.streamlayer.users.UpdateAvatarRequest.AvatarCase getAvatarCase();
}