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

com.binance4j.pay.client.PayMapping Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package com.binance4j.pay.client;

import java.util.Map;
import com.binance4j.core.client.RestMapping;
import com.binance4j.pay.dto.TradeHistory;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Headers;
import retrofit2.http.QueryMap;

/** The {@link PayClient} mapping. */
public interface PayMapping extends RestMapping {
	/** The base uri. */
	String BASE = "/sapi/v1/pay/";

	/**
	 * @param map The query map.
	 * @return The generated Retrofit call.
	 */
	@GET(BASE + "transactions")
	@Headers(SIGNED_H)
	Call getTrades(@QueryMap Map map);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy