blob: 5aae99a04ee3c47f78afddd122826890cb7d3e25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# UpkQuestionChoice
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**choice_id** | **string** | The unique identifier for a response to a qualification | [default to undefined]
**choice_text** | **string** | The response text shown to respondents | [default to undefined]
**order** | **number** | | [default to undefined]
**group** | **number** | | [optional] [default to undefined]
**exclusive** | **boolean** | If answer is exclusive, it can be the only option selected | [optional] [default to false]
**importance** | [**UPKImportance**](UPKImportance.md) | | [optional] [default to undefined]
## Example
```typescript
import { UpkQuestionChoice } from './api';
const instance: UpkQuestionChoice = {
choice_id,
choice_text,
order,
group,
exclusive,
importance,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|