aboutsummaryrefslogtreecommitdiff
path: root/jb-ui/src/api_fsb/docs/UpkQuestionChoiceOut.md
blob: 5ba523b4afc129452e6f70de7972a972854469e7 (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
# UpkQuestionChoiceOut


## 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 { UpkQuestionChoiceOut } from './api';

const instance: UpkQuestionChoiceOut = {
    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)