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


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**live_tasks** | [**Array<CountStat>**](CountStat.md) | The count of tasks that are currently live | [optional] [default to undefined]
**live_gen_pop_tasks** | [**Array<CountStat>**](CountStat.md) | The count of gen-pop tasks that are currently live | [optional] [default to undefined]
**tasks_created** | [**Array<CountStat>**](CountStat.md) | The count of tasks created | [optional] [default to undefined]
**required_finishes** | [**Array<CountStat>**](CountStat.md) | Number of finishes needed across all live tasks | [optional] [default to undefined]
**payout** | [**Array<StatisticalSummaryStat>**](StatisticalSummaryStat.md) | The distribution of payouts for all live tasks | [optional] [default to undefined]
**expected_duration** | [**Array<StatisticalSummaryStat>**](StatisticalSummaryStat.md) | The distribution of expected durations for all live tasks | [optional] [default to undefined]
**required_finishes_per_task** | [**Array<StatisticalSummaryStat>**](StatisticalSummaryStat.md) | The distribution of required finishes on all live tasks | [optional] [default to undefined]

## Example

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

const instance: MarketplaceInventorySummary = {
    live_tasks,
    live_gen_pop_tasks,
    tasks_created,
    required_finishes,
    payout,
    expected_duration,
    required_finishes_per_task,
};
```

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