![JAR search and dependency download from the Maven repository](/logo.png)
com.kucoin.sdk.rest.response.WithdrawQuotaResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kucoin-java-sdk Show documentation
Show all versions of kucoin-java-sdk Show documentation
Fixed fork of the official Kucoin SDK
The newest version!
/**
* Copyright 2019 Mek Global Limited.
*/
package com.kucoin.sdk.rest.response;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.math.BigDecimal;
import lombok.Data;
/**
* Created by zicong.lu on 2018/12/21.
*/
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class WithdrawQuotaResponse {
private String currency;
private BigDecimal availableAmount;
private BigDecimal remainAmount;
private BigDecimal withdrawMinSize;
private BigDecimal limitBTCAmount;
private BigDecimal limitAmount;
private BigDecimal innerWithdrawMinFee;
private BigDecimal usedBTCAmount;
private Boolean isWithdrawEnabled;
private BigDecimal withdrawMinFee;
private Integer precision;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy