Package ai.nexconn.chat.params
Class SetGroupMemberInfoParams
-
- All Implemented Interfaces:
public final class SetGroupMemberInfoParamsParameters for setting group member info.
Usage Example:
val params = SetGroupMemberInfoParams( userId = "userId1", nickname = "New Name", extra = "Additional info" ) groupChannel.setGroupMemberInfo(params) { errorKeys, error -> ... }
-
-
Constructor Summary
Constructors Constructor Description SetGroupMemberInfoParams(String userId, String nickname, String extra)
-
Method Summary
Modifier and Type Method Description final StringgetUserId()final StringgetNickname()final StringgetExtra()-
-
Method Detail
-
getUserId
final String getUserId()
-
getNickname
final String getNickname()
-
getExtra
final String getExtra()
-
-
-
-