aboutsummaryrefslogtreecommitdiff
path: root/jb-ui/src/api_fsb/docs/UpkQuestion.md
blob: 332d09f4af370ef46b00a4d169f00798697ff483 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# UpkQuestion


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**question_id** | **string** |  | [optional] [default to undefined]
**ext_question_id** | **string** |  | [optional] [default to undefined]
**question_type** | [**UpkQuestionType**](UpkQuestionType.md) |  | [default to undefined]
**country_iso** | **string** |  | [default to undefined]
**language_iso** | **string** |  | [default to undefined]
**question_text** | **string** | The text shown to respondents | [default to undefined]
**choices** | [**Array<UpkQuestionChoice>**](UpkQuestionChoice.md) |  | [optional] [default to undefined]
**selector** | [**Selector**](Selector.md) |  | [optional] [default to undefined]
**configuration** | [**UpkQuestionConfiguration**](UpkQuestionConfiguration.md) |  | [optional] [default to undefined]
**validation** | [**UpkQuestionValidation**](UpkQuestionValidation.md) |  | [optional] [default to undefined]
**importance** | [**UPKImportance**](UPKImportance.md) |  | [optional] [default to undefined]
**categories** | [**Array<Category>**](Category.md) | Categories associated with this question | [optional] [default to undefined]
**explanation_template** | **string** |  | [optional] [default to undefined]
**explanation_fragment_template** | **string** |  | [optional] [default to undefined]

## Example

```typescript
import { UpkQuestion } from './api';

const instance: UpkQuestion = {
    question_id,
    ext_question_id,
    question_type,
    country_iso,
    language_iso,
    question_text,
    choices,
    selector,
    configuration,
    validation,
    importance,
    categories,
    explanation_template,
    explanation_fragment_template,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)