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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# CashoutMethodOut
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **string** | Unique ID for this cashout method | [default to undefined]
**currency** | **string** | The currency of the cashout. Only USD is supported. | [optional] [default to CurrencyEnum_Usd]
**original_currency** | [**Currency**](Currency.md) | | [optional] [default to undefined]
**data** | [**Data**](Data.md) | | [default to undefined]
**description** | **string** | The description of the cashout method. | [optional] [default to '']
**image_url** | **string** | | [optional] [default to undefined]
**max_value** | **number** | (In lowest unit of the original_currency), The maximum amount that can be cashed out in one transaction. | [default to undefined]
**min_value** | **number** | (In lowest unit of the original_currency), The minimum amount that can be cashed out in one transaction. | [default to undefined]
**name** | **string** | A descriptive name for the cashout method. | [default to undefined]
**type** | [**PayoutType**](PayoutType.md) | The method in which the requested payout is delivered. Allowed values: - __PAYPAL__ *(PAYPAL)*: User is paid out to their personal PayPal email address - __TANGO__ *(TANGO)*: User is paid uut via a Tango Gift Card - __DWOLLA__ *(DWOLLA)*: DWOLLA - __ACH__ *(ACH)*: A payment is made to a bank account using ACH - __WIRE__ *(WIRE)*: A payment is made to a bank account using ACH - __CASH_IN_MAIL__ *(CASH_IN_MAIL)*: A payment is made in cash and mailed to the user. - __PRIZE__ *(PRIZE)*: A payment is made as a prize with some monetary value - __AMT__ *(AMT)*: This is used to designate either AMT_BONUS or AMT_HIT - __AMT_BONUS__ *(AMT_BONUS)*: Amazon Mechanical Turk as a Bonus - __AMT_ASSIGNMENT__ *(AMT_HIT)*: Amazon Mechanical Turk for a HIT | [default to undefined]
**ext_id** | **string** | | [optional] [default to undefined]
**usd_exchange_rate** | **number** | | [optional] [default to undefined]
**max_value_usd** | **number** | | [optional] [default to undefined]
**min_value_usd** | **number** | | [optional] [default to undefined]
**product_id** | **string** | | [optional] [default to undefined]
**product_user_id** | **string** | | [optional] [default to undefined]
## Example
```typescript
import { CashoutMethodOut } from './api';
const instance: CashoutMethodOut = {
id,
currency,
original_currency,
data,
description,
image_url,
max_value,
min_value,
name,
type,
ext_id,
usd_exchange_rate,
max_value_usd,
min_value_usd,
product_id,
product_user_id,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|