mirai-core / net.mamoe.mirai.event.events / NewFriendRequestEvent

NewFriendRequestEvent

@SinceMirai("0.35.0") data class NewFriendRequestEvent : BotEvent, Packet

一个账号请求添加机器人为好友的事件

Constructors

<init>

一个账号请求添加机器人为好友的事件

NewFriendRequestEvent(bot: Bot, eventId: Long, message: String, fromId: Long, fromGroupId: Long, fromNick: String)

Properties

bot

val bot: Bot

eventId

事件唯一识别号

val eventId: Long

fromGroup

val fromGroup: Group?

fromGroupId

来自群 Group.id, 其他途径时为 0

val fromGroupId: Long

fromId

请求人 QQ.id

val fromId: Long

fromNick

群名片或好友昵称

val fromNick: String

message

申请好友消息

val message: String

Functions

__acceptBlockingForJava__

fun __acceptBlockingForJava__(): Unit

__rejectBlockingForJava__

fun __rejectBlockingForJava__(blackList: Boolean = false): Unit

accept

suspend fun accept(): Unit

reject

suspend fun reject(blackList: Boolean = false): Unit

Extension Functions

broadcast

广播一个事件的唯一途径.

suspend fun <E : Event> E.broadcast(): E