
org.knowm.xchange.okex.dto.account.OkexAssetBalance Maven / Gradle / Ivy
package org.knowm.xchange.okex.dto.account;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
import lombok.NoArgsConstructor;
/* Author: Ali Gokalp Peker ([email protected]) Created: 23-10-2021 */
/** ... * */
@Getter
@NoArgsConstructor
public class OkexAssetBalance {
@JsonProperty("ccy")
private String currency;
@JsonProperty("bal")
private String balance;
@JsonProperty("availBal")
private String availableBalance;
@JsonProperty("frozenBal")
private String frozenBalance;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy