Class ChangeUserAvatarRequest
- Object
-
- ChangeUserAvatarRequest
-
- All Implemented Interfaces:
Serializable
public class ChangeUserAvatarRequest extends Object implements Serializable
The properties needed to change the avatar for the user.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ChangeUserAvatarRequest.Builder
-
Constructor Summary
Constructors Constructor Description ChangeUserAvatarRequest()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ChangeUserAvatarRequest.Builder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
@NotNull UUID
getFileId()
Required. The ID of the file representing to avatar that should be assigned to the user.@NotNull UUID
getId()
Required. The ID of the user the avatar should be changed for.int
hashCode()
void
setFileId(@NotNull UUID fileId)
Required. The ID of the file representing to avatar that should be assigned to the user.void
setId(@NotNull UUID id)
Required. The ID of the user the avatar should be changed for.String
toString()
-
-
-
Method Detail
-
builder
public static ChangeUserAvatarRequest.Builder builder()
-
getId
@NotNull public @NotNull UUID getId()
Required. The ID of the user the avatar should be changed for.
-
getFileId
@NotNull public @NotNull UUID getFileId()
Required. The ID of the file representing to avatar that should be assigned to the user.
-
setId
public void setId(@NotNull @NotNull UUID id)
Required. The ID of the user the avatar should be changed for.
-
setFileId
public void setFileId(@NotNull @NotNull UUID fileId)
Required. The ID of the file representing to avatar that should be assigned to the user.
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classObject
-
canEqual
protected boolean canEqual(Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classObject
-
toString
public String toString()
- Overrides:
toString
in classObject
-
-