25 lines
633 B
Markdown
25 lines
633 B
Markdown
---
|
|
title: PollAnswer
|
|
---
|
|
|
|
This entity represents a answer of a [Poll][poll].
|
|
|
|
## Properties
|
|
|
|
| Property | Type (Length) | Description |
|
|
| -------- | ---------------------- | ----------------------- |
|
|
| `guid` | [GUID][guid] | The GUID of the answer. |
|
|
| `answer` | [String][string] (255) | The answer text. |
|
|
|
|
## Example
|
|
|
|
~~~xml
|
|
<poll_answer>
|
|
<guid>2a22db2029e9013487753131731751e9</guid>
|
|
<answer>Yes</answer>
|
|
</poll_answer>
|
|
~~~
|
|
|
|
[guid]: {{ site.baseurl }}/federation/types.html#guid
|
|
[string]: {{ site.baseurl }}/federation/types.html#string
|
|
[poll]: {{ site.baseurl }}/entities/poll.html
|