jointrashposs/content/ja-JP/docs/api/streaming/note-capture-events.md
kakkokari-gtyih 8e52c51c49 wip
2023-07-08 17:36:02 +09:00

49 lines
944 B
Markdown

# 投稿キャプチャイベント
## `reacted`
<MkSchemaViewer :schema="{
type: 'object',
properties: {
reaction: {
type: 'string',
description: 'リアクションの種類',
},
userId: {
type: 'string',
description: 'リアクションを行ったユーザーのID',
},
}
}"/>
対象のノートにリアクションがされた場合に発生します。
## `pollVoted`
<MkSchemaViewer :schema="{
type: 'object',
properties: {
choice: {
type: 'number',
description: '選択肢ID',
},
userId: {
type: 'string',
description: '投票を行ったユーザーのID',
},
}
}"/>
対象のノートに添付されたアンケートに投票がされた場合に発生します。
## `deleted`
<MkSchemaViewer :schema="{
type: 'object',
properties: {
deletedAt: {
type: 'string',
description: '削除日時',
},
}
}"/>
対象のノートが削除された場合に発生します。