summaryrefslogtreecommitdiff
path: root/jb-ui/src/api_fsb/docs/Payload.md
blob: 69a37f8c28e322e691eb6c8bf78bffe2be5a68d2 (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
# Payload


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**event_type** | **string** |  | [optional] [default to EventTypeEnum_SessionFinish]
**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** | [**SessionStatusCode2**](SessionStatusCode2.md) |  | [optional] [default to undefined]
**cpi** | **number** |  | [optional] [default to undefined]
**user_payout** | **number** |  | [optional] [default to undefined]

## Example

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

const instance: Payload = {
    event_type,
    source,
    survey_id,
    quota_id,
    country_iso,
    duration_sec,
    status,
    status_code_1,
    status_code_2,
    cpi,
    user_payout,
};
```

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