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

org.knowm.xchange.bitfinex.v1.dto.trade.BitfinexActiveCreditsRequest Maven / Gradle / Ivy

There is a newer version: 4.3.19.2
Show newest version
package org.knowm.xchange.bitfinex.v1.dto.trade;

import com.fasterxml.jackson.annotation.JsonProperty;

public class BitfinexActiveCreditsRequest {

  @JsonProperty("request")
  protected String request;

  @JsonProperty("nonce")
  protected String nonce;

  public BitfinexActiveCreditsRequest(String nonce) {

    this.request = "/v1/credits";
    this.nonce = nonce;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy