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

io.github.xinyangpan.crypto4j.binance.dto.websocket.userstream.AccountInfo Maven / Gradle / Ivy

There is a newer version: 0.1.4
Show newest version
package io.github.xinyangpan.crypto4j.binance.dto.websocket.userstream;

import java.util.List;

import com.fasterxml.jackson.annotation.JsonProperty;

import io.github.xinyangpan.crypto4j.binance.dto.websocket.common.BaseDto;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;

@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class AccountInfo extends BaseDto {

	// Maker commission rate (bips)
	@JsonProperty("m")
	private Integer makerCommissionRate;
	// Taker commission rate (bips)
	@JsonProperty("t")
	private Integer takerCommissionRate;
	// Buyer commission rate (bips)
	@JsonProperty("b")
	private Integer buyerCommissionRate;
	// Seller commission rate (bips)
	@JsonProperty("s")
	private Integer sellerCommissionRate;
	@JsonProperty("T")
	private Boolean tradeable;
	@JsonProperty("W")
	private Boolean withdrawable;
	@JsonProperty("D")
	private Boolean depositable;
	@JsonProperty("u")
	private Long updateTime;
	@JsonProperty("B")
	private List balances = null;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy