Package ai.nexconn.chat.channel.model
Enum GroupMemberInfoEditPermission
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum GroupMemberInfoEditPermission extends Enum<GroupMemberInfoEditPermission>
Group member info edit permission.
Control who can modify Group member info (e.g. Group nickname, Additional info etc.).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classGroupMemberInfoEditPermission.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description OWNER_OR_MANAGER_OR_SELFGroup owner+Group admin+self (Default)
OWNER_OR_SELFGroup owner+self
SELFOnly self
-
Method Summary
Modifier and Type Method Description final GroupMemberInfoEditPermissionvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<GroupMemberInfoEditPermission>values()Returns an array containing the constants of this enum type, in the order they're declared. final IntegergetValue()-
-
Method Detail
-
valueOf
final GroupMemberInfoEditPermission valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
- Parameters:
value- Permission Value (Corresponds to GroupMemberInfoEditPermission ordinal)
-
values
final Array<GroupMemberInfoEditPermission> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getValue
final Integer getValue()
-
-
-
-