aboutsummaryrefslogtreecommitdiff
path: root/jb-ui/src/api_fsb/docs/CashoutMethodOut.md
diff options
context:
space:
mode:
authorMax Nanis2026-02-18 20:42:03 -0500
committerMax Nanis2026-02-18 20:42:03 -0500
commit3eaa56f0306ead818f64c3d99fc6d230d9b970a4 (patch)
tree9fecc2f1456e6321572e0e65f57106916df173e2 /jb-ui/src/api_fsb/docs/CashoutMethodOut.md
downloadamt-jb-3eaa56f0306ead818f64c3d99fc6d230d9b970a4.tar.gz
amt-jb-3eaa56f0306ead818f64c3d99fc6d230d9b970a4.zip
HERE WE GO, HERE WE GO, HERE WE GO
Diffstat (limited to 'jb-ui/src/api_fsb/docs/CashoutMethodOut.md')
-rw-r--r--jb-ui/src/api_fsb/docs/CashoutMethodOut.md50
1 files changed, 50 insertions, 0 deletions
diff --git a/jb-ui/src/api_fsb/docs/CashoutMethodOut.md b/jb-ui/src/api_fsb/docs/CashoutMethodOut.md
new file mode 100644
index 0000000..c4e4832
--- /dev/null
+++ b/jb-ui/src/api_fsb/docs/CashoutMethodOut.md
@@ -0,0 +1,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)