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

org.knowm.xchange.coinegg.dto.trade.CoinEggTradeAdd Maven / Gradle / Ivy

The newest version!
package org.knowm.xchange.coinegg.dto.trade;

import com.fasterxml.jackson.annotation.JsonProperty;

public class CoinEggTradeAdd {

  private final boolean result;
  private final int id;

  public CoinEggTradeAdd(@JsonProperty("result") boolean result, @JsonProperty("id") int id) {
    this.result = result;
    this.id = id;
  }

  public boolean getResult() {
    return result;
  }

  public int getID() {
    return id;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy