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

org.knowm.xchange.okex.dto.trade.OkexOrderResponse Maven / Gradle / Ivy

package org.knowm.xchange.okex.dto.trade;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;

/** Author: Max Gao ([email protected]) Created: 09-06-2021 */
/** Response DTO received from placing, cancelling, and amending orders * */
@Getter
public class OkexOrderResponse {
  @JsonProperty("ordId")
  private String orderId;

  @JsonProperty("clOrdId")
  private String clientOrderId;

  @JsonProperty("tag")
  private String orderTag;

  @JsonProperty("sCode")
  private String code;

  @JsonProperty("sMsg")
  private String message;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy