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

com.xeiam.xchange.vircurex.dto.marketdata.VircurexDepth Maven / Gradle / Ivy

The newest version!
package com.xeiam.xchange.vircurex.dto.marketdata;

import java.math.BigDecimal;
import java.util.List;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Data object representing depth from Vircurex
 */
public class VircurexDepth {

  private final List asks;
  private final List bids;

  /**
   * Constructor
   * 
   * @param asks
   * @param bids
   */
  public VircurexDepth(@JsonProperty("asks") List asks, @JsonProperty("bids") List bids) {

    this.asks = asks;
    this.bids = bids;
  }

  public List getAsks() {

    return asks;
  }

  public List getBids() {

    return bids;
  }

  @Override
  public String toString() {

    return "VircurexDepth [asks=" + asks.toString() + ", bids=" + bids.toString() + "]";
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy