All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kucoin.sdk.rest.response.AccountDetailResponse Maven / Gradle / Ivy

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 tao.mao on 2018/11/15.
 */
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class AccountDetailResponse {

    private String currency;

    private BigDecimal amount;

    private BigDecimal fee;

    private BigDecimal balance;

    private String bizType;

    private String direction;

    private String createdAt;

    private String context;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy