simple-robot / simbot-component-mirai

simple-robot下的mirai组件
https://component-mirai.simbot.forte.love/
GNU Affero General Public License v3.0
20 stars 0 forks source link

支持好友分组信息的获取与操作 #82

Closed ForliyScarlet closed 2 years ago

ForliyScarlet commented 2 years ago
val friend: MiraiFriend = ...

// 分组信息
val category = friend.category

// 属性
println(category.id)
println(category.name)
println(category.count)
println(category.originalFriendGroup) // 获取原始信息
category.friends.forEach { // it: MiraiFriend
    // ...
}

// 操作
category.renameTo("new name")
category.moveIn(otherFriend)
category.delete()

此"分组信息"中的各种属性与操作基本与Mirai的 FriendGroup 中内容相对应。