Class SetGroupMemberInfoParams

  • All Implemented Interfaces:

    
    public final class SetGroupMemberInfoParams
    
                        

    Parameters for setting group member info.

    Usage Example:

    val params = SetGroupMemberInfoParams(
        userId = "userId1",
        nickname = "New Name",
        extra = "Additional info"
    )
    groupChannel.setGroupMemberInfo(params) { errorKeys, error -> ... }
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private final String userId
      private final String nickname
      private final String extra
    • Constructor Summary

      Constructors 
      Constructor Description
      SetGroupMemberInfoParams(String userId, String nickname, String extra)
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final String getUserId()
      final String getNickname()
      final String getExtra()
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SetGroupMemberInfoParams

        SetGroupMemberInfoParams(String userId, String nickname, String extra)
        Parameters:
        userId - Target user ID.
        nickname - Group member nickname.
        extra - Group member extra info.