Class AddUserGroupsRequest
- Object
-
- AddUserGroupsRequest
-
- All Implemented Interfaces:
Serializable
public class AddUserGroupsRequest extends Object implements Serializable
The properties of the user groups to be added.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AddUserGroupsRequest.Builder
-
Constructor Summary
Constructors Constructor Description AddUserGroupsRequest()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AddUserGroupsRequest.Builder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
@NotNull List<String>
getNames()
Required. The names of the user groups.int
hashCode()
void
setNames(@NotNull List<String> names)
Required. The names of the user groups.String
toString()
-
-
-
Method Detail
-
builder
public static AddUserGroupsRequest.Builder builder()
-
getNames
@NotNull public @NotNull List<String> getNames()
Required. The names of the user groups. Each name should be unique within all user groups.
-
setNames
public void setNames(@NotNull @NotNull List<String> names)
Required. The names of the user groups. Each name should be unique within all user groups.
-
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
-
-