blob: 2531d91551af0a56555e16e71f2d57e196a45e01 (
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
|
# OneShotOfferwallBucket
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **string** | Unique identifier this particular bucket | [default to undefined]
**uri** | **string** | The URL to send a respondent into. Must not edit this URL in any way | [default to undefined]
**duration** | **number** | The bucket\'s expected duration, in seconds | [default to undefined]
**min_payout** | **number** | The bucket\'s min payout, in usd cents | [default to undefined]
## Example
```typescript
import { OneShotOfferwallBucket } from './api';
const instance: OneShotOfferwallBucket = {
id,
uri,
duration,
min_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)
|