From ee6830406f7e1eda77e9d5c86b5915f4eb46787b Mon Sep 17 00:00:00 2001 From: Zhen Wang Date: Sun, 4 Aug 2019 12:27:02 -0700 Subject: [PATCH] update docs for UserWithdrawalFees --- README.md | 1 + docs/UserApi.md | 4 ++-- docs/UserWithdrawalFees.md | 11 +++++++++++ 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 docs/UserWithdrawalFees.md diff --git a/README.md b/README.md index 9db2712..26d2a63 100644 --- a/README.md +++ b/README.md @@ -174,6 +174,7 @@ Class | Method | HTTP request | Description - [User](docs/User.md) - [UserCommission](docs/UserCommission.md) - [UserPreferences](docs/UserPreferences.md) + - [UserWithdrawalFees](docs/UserWithdrawalFees.md) - [Wallet](docs/Wallet.md) diff --git a/docs/UserApi.md b/docs/UserApi.md index 587c1d4..23fe23f 100644 --- a/docs/UserApi.md +++ b/docs/UserApi.md @@ -486,7 +486,7 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **UserMinWithdrawalFee** -> interface{} UserMinWithdrawalFee(ctx, optional) +> UserWithdrawalFees UserMinWithdrawalFee(ctx, optional) Get the minimum withdrawal fee for a currency. This is changed based on network conditions to ensure timely withdrawals. During network congestion, this may be high. The fee is returned in the same currency. @@ -507,7 +507,7 @@ Name | Type | Description | Notes ### Return type -[**interface{}**](interface{}.md) +[**UserWithdrawalFees**](UserWithdrawalFees.md) ### Authorization diff --git a/docs/UserWithdrawalFees.md b/docs/UserWithdrawalFees.md new file mode 100644 index 0000000..a16361a --- /dev/null +++ b/docs/UserWithdrawalFees.md @@ -0,0 +1,11 @@ +# UserWithdrawalFees + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**Currency** | **string** | Currency symbol | [optional] [default to null] +**Fee** | **int** | Recommended withdrawal fee | [optional] [default to null] +**MinFee** | **int** | Minimum withdrawal fee | [optional] [default to null] +**MaxFee** | **int** | Maximum withdrawal fee | [optional] [default to null] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)