Multiple Choice Reply (MULTIPLE_CHOICE_REPLY)
A reply record to a multiple-choice question.
data schema
{
answer: string;
id?: string;
chatMessageId?: string;
}
| Field | Type | Description |
|---|---|---|
answer | string | Selected / answered text |
id | string? | Optional option ID |
chatMessageId | string? | Optional; ID of the answered MULTIPLE_CHOICE message |
Example
{
"id": "167a7d4f-06a5-4226-88c3-aed91d554e59",
"createdAt": "2026-07-29T10:09:53.844Z",
"type": "MULTIPLE_CHOICE_REPLY",
"nameOfSender": "Jane Doe",
"isFromSupport": false,
"data": {
"answer": "Evet, konsepti ka..."
}
}
UI recommendation
- Show the
data.answertext in the bubble. - If
id/chatMessageIdare absent, render only the text.