blob: 095a5192d5c301a8e38e93b5813646ddbc771529 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# ContestEndCondition
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
------------ | ------------- | ------------- | -------------
**target_entry_amount** | [**ContestEndConditionTargetEntryAmount**](ContestEndConditionTargetEntryAmount.md) | | [optional] [default to undefined]
**ends_at** | **string** | | [optional] [default to undefined]
## Example
```typescript
import { ContestEndCondition } from './api';
const instance: ContestEndCondition = {
target_entry_amount,
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)
|