blob: 5ed04d2f93f9136a6e02e6e1e995935e63418172 (
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
|
# TaskFinishPayload
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**event_type** | **string** | | [optional] [default to EventTypeEnum_TaskFinish]
**source** | [**Source**](Source.md) | | [default to undefined]
**survey_id** | **string** | | [default to undefined]
**quota_id** | **string** | | [optional] [default to undefined]
**country_iso** | **string** | | [default to undefined]
**duration_sec** | **number** | | [default to undefined]
**status** | [**Status**](Status.md) | | [default to undefined]
**status_code_1** | [**StatusCode1**](StatusCode1.md) | | [optional] [default to undefined]
**status_code_2** | [**WallStatusCode2**](WallStatusCode2.md) | | [optional] [default to undefined]
**cpi** | **number** | | [optional] [default to undefined]
## Example
```typescript
import { TaskFinishPayload } from './api';
const instance: TaskFinishPayload = {
event_type,
source,
survey_id,
quota_id,
country_iso,
duration_sec,
status,
status_code_1,
status_code_2,
cpi,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|