ChatMembers

@Serializable
data class ChatMembers(val activeMembersCount: Int?, val activeFriendsCount: Int?, val members: List<ChatMember>?, val type: ChatMembers.Type, val token: Long?)

채팅방 멤버 목록
List of chat members

Constructors

Link copied to clipboard
constructor(activeMembersCount: Int?, activeFriendsCount: Int?, members: List<ChatMember>?, type: ChatMembers.Type, token: Long?)

Types

Link copied to clipboard
@Serializable(with = ChatMembers.TypeSerializer::class)
enum Type : Enum<ChatMembers.Type>

채팅방 타입
Chatroom type

Properties

Link copied to clipboard
@SerialName(value = "active_friends_count")
val activeFriendsCount: Int?

채팅방 내 친구 수, friendsOnlytrue로 요청한 경우에만 응답에 포함(최대:500)
Number of friends in the chat room, only included in the response if friendsOnly is requested as true (Maximum: 500)

Link copied to clipboard
@SerialName(value = "active_members_count")
val activeMembersCount: Int?

채팅방 내 멤버 수
Number of chat members

Link copied to clipboard
val members: List<ChatMember>?

채팅방 멤버 목록
List of chat members

Link copied to clipboard
val token: Long?

요청에 대한 토큰 정보
Token for the request

Link copied to clipboard

채팅방 타입
Type of the chat