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

org.knowm.xchange.livecoin.dto.trade.LivecoinOrderResponse Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
package org.knowm.xchange.livecoin.dto.trade;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.knowm.xchange.livecoin.dto.LivecoinBaseResponse;

/** @author walec51 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class LivecoinOrderResponse extends LivecoinBaseResponse {

  private final String orderId;

  public LivecoinOrderResponse(
      @JsonProperty("success") Boolean success, @JsonProperty("orderId") String orderId) {
    super(success);
    this.orderId = orderId;
  }

  public String getOrderId() {
    return orderId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy