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

org.knowm.xchange.coinegg.dto.CoinEggResult Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty;

public class CoinEggResult {

  private final V data;
  private final boolean result;

  public CoinEggResult(@JsonProperty("result") boolean result, @JsonProperty("data") V data) {
    // TODO: Some Validation - See GatecoinResult.java
    this.result = result;
    this.data = data;
  }

  public V getData() {
    return data;
  }

  public boolean getResult() {
    return result;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy