org.knowm.xchange.bitfinex.v1.dto.trade.BitfinexActiveCreditsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-bitfinex Show documentation
Show all versions of xchange-bitfinex Show documentation
Development fork. Not for general use.
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;
}
}