blob: 84a2fd39aa7972dfc690e308daaf50e5fd3c329b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# PayoutConfig
Store configuration related to payouts, payout transformation, and user payout formatting.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**payout_format** | **string** | | [optional] [default to undefined]
**payout_transformation** | [**PayoutTransformation**](PayoutTransformation.md) | | [optional] [default to undefined]
## Example
```typescript
import { PayoutConfig } from './api';
const instance: PayoutConfig = {
payout_format,
payout_transformation,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|