# Poll

### **Arguments**

* **question** `string` *required*\
  여론 조사를 할 내용 (질의 내용)
* **choices** `array` *required*\
  가능한 선택지

### Returns

결과가 기록된 유닛의 해시

### Example

```javascript
const params = {
  question: 'Should I stay or should I go?',
  choices: ['stay', 'go', 'fly']
};

client.post.poll(params, wif, function(err, result) {
  console.log(result);
});
```

### &#x20;<a href="#learn-more" id="learn-more"></a>
