com.binance.api.client.domain.OrderRejectReason Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance-api-client Show documentation
Show all versions of binance-api-client Show documentation
Java implementation for Binance API
package com.binance.api.client.domain;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* Order reject reason values.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public enum OrderRejectReason {
NONE,
UNKNOWN_INSTRUMENT,
MARKET_CLOSED,
PRICE_QTY_EXCEED_HARD_LIMITS,
UNKNOWN_ORDER,
DUPLICATE_ORDER,
UNKNOWN_ACCOUNT,
INSUFFICIENT_BALANCE,
ACCOUNT_INACTIVE,
ACCOUNT_CANNOT_SETTLE,
ORDER_WOULD_TRIGGER_IMMEDIATELY
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy