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
47
48
49
50
51
52
53
54
55
56
|
# WallOut
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**uuid** | **string** | | [optional] [default to undefined]
**source** | [**Source**](Source.md) | | [default to undefined]
**buyer_id** | [**BuyerId**](BuyerId.md) | | [optional] [default to undefined]
**req_survey_id** | **string** | | [default to undefined]
**started** | **string** | | [optional] [default to undefined]
**survey_id** | [**SurveyId**](SurveyId.md) | | [optional] [default to undefined]
**finished** | [**Finished**](Finished.md) | | [optional] [default to undefined]
**status** | [**WallOutStatus**](WallOutStatus.md) | | [optional] [default to undefined]
**status_code_1** | [**WallOutStatusCode1**](WallOutStatusCode1.md) | | [optional] [default to undefined]
**status_code_2** | [**WallOutStatusCode2**](WallOutStatusCode2.md) | | [optional] [default to undefined]
**ext_status_code_1** | [**ExtStatusCode1**](ExtStatusCode1.md) | | [optional] [default to undefined]
**ext_status_code_2** | [**ExtStatusCode2**](ExtStatusCode2.md) | | [optional] [default to undefined]
**ext_status_code_3** | [**ExtStatusCode3**](ExtStatusCode3.md) | | [optional] [default to undefined]
**report_value** | [**WallOutReportValue**](WallOutReportValue.md) | | [optional] [default to undefined]
**report_notes** | [**ReportNotes**](ReportNotes.md) | | [optional] [default to undefined]
**adjusted_status** | [**WallOutAdjustedStatus**](WallOutAdjustedStatus.md) | | [optional] [default to undefined]
**adjusted_timestamp** | [**AdjustedTimestamp**](AdjustedTimestamp.md) | | [optional] [default to undefined]
**user_cpi** | **number** | The amount the user would earn from completing this task, if the status was a complete. If the BP has no payout xform, the user_cpi is None. This is analogous to the session\'s user_payout. | [optional] [default to undefined]
**user_cpi_string** | [**UserCpiString**](UserCpiString.md) | | [optional] [default to undefined]
## Example
```typescript
import { WallOut } from './api';
const instance: WallOut = {
uuid,
source,
buyer_id,
req_survey_id,
started,
survey_id,
finished,
status,
status_code_1,
status_code_2,
ext_status_code_1,
ext_status_code_2,
ext_status_code_3,
report_value,
report_notes,
adjusted_status,
adjusted_timestamp,
user_cpi,
user_cpi_string,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|