summaryrefslogtreecommitdiff
path: root/jb-ui/src/api_fsb/docs/MilestoneContestEndCondition.md
blob: f1d632daa8c3f25bd2e1194e4785909f57f29c09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# MilestoneContestEndCondition

Defines the conditions to evaluate to determine when the contest is over. Multiple conditions can be set. The contest is over once ANY conditions are met.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**max_winners** | **number** |  | [optional] [default to undefined]
**ends_at** | **string** |  | [optional] [default to undefined]

## Example

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

const instance: MilestoneContestEndCondition = {
    max_winners,
    ends_at,
};
```

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