com.binance.api.client.domain.LiquidityOperationRecordStatus 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;
import com.fasterxml.jackson.annotation.JsonValue;
@JsonIgnoreProperties(ignoreUnknown = true)
public enum LiquidityOperationRecordStatus {
PENDING,
SUCCESS,
FAILED;
@JsonValue
public int toValue() {
return ordinal();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy