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

io.contek.invoker.okx.api.rest.user.GetTradeOrderHistory Maven / Gradle / Ivy

There is a newer version: 3.8.0
Show newest version
package io.contek.invoker.okx.api.rest.user;

import com.google.common.collect.ImmutableList;
import io.contek.invoker.commons.actor.IActor;
import io.contek.invoker.commons.actor.ratelimit.RateLimitRule;
import io.contek.invoker.commons.actor.ratelimit.TypedPermitRequest;
import io.contek.invoker.commons.rest.RestContext;
import io.contek.invoker.commons.rest.RestMethod;
import io.contek.invoker.commons.rest.RestParams;
import io.contek.invoker.okx.api.common._Order;
import io.contek.invoker.okx.api.rest.common.ResponseWrapper;

import javax.annotation.Nullable;
import javax.annotation.concurrent.NotThreadSafe;
import java.time.Duration;

import static io.contek.invoker.commons.actor.ratelimit.LimitType.API_KEY;
import static io.contek.invoker.commons.rest.RestMethod.GET;
import static java.util.Objects.requireNonNull;

@NotThreadSafe
public final class GetTradeOrderHistory extends UserRestRequest {

  public static final RateLimitRule RATE_LIMIT_RULE =
      RateLimitRule.newBuilder()
          .setName("api_key_rest_get_trade_orders_history")
          .setType(API_KEY)
          .setMaxPermits(40)
          .setResetPeriod(Duration.ofSeconds(2))
          .build();

  private static final ImmutableList REQUIRED_QUOTA =
      ImmutableList.of(RATE_LIMIT_RULE.forPermits(1));

  private String instType;
  private String uly;
  private String instId;
  private String ordType;
  private String state;
  private String category;
  private Long after;
  private Long before;
  private Integer limit;

  GetTradeOrderHistory(IActor actor, RestContext context) {
    super(actor, context);
  }

  public GetTradeOrderHistory setInstType(String instType) {
    this.instType = instType;
    return this;
  }

  public GetTradeOrderHistory setUly(@Nullable String uly) {
    this.uly = uly;
    return this;
  }

  public GetTradeOrderHistory setInstId(@Nullable String instId) {
    this.instId = instId;
    return this;
  }

  public GetTradeOrderHistory setOrdType(@Nullable String ordType) {
    this.ordType = ordType;
    return this;
  }

  public GetTradeOrderHistory setState(@Nullable String state) {
    this.state = state;
    return this;
  }

  public GetTradeOrderHistory setCategory(@Nullable String category) {
    this.category = category;
    return this;
  }

  public GetTradeOrderHistory setAfter(@Nullable Long after) {
    this.after = after;
    return this;
  }

  public GetTradeOrderHistory setBefore(@Nullable Long before) {
    this.before = before;
    return this;
  }

  public GetTradeOrderHistory setLimit(@Nullable Integer limit) {
    this.limit = limit;
    return this;
  }

  @Override
  protected RestMethod getMethod() {
    return GET;
  }

  @Override
  protected String getEndpointPath() {
    return "/api/v5/trade/orders-history";
  }

  @Override
  protected RestParams getParams() {
    RestParams.Builder builder = RestParams.newBuilder();

    requireNonNull(instType);
    builder.add("instType", instType);

    if (uly != null) {
      builder.add("uly", uly);
    }

    if (instId != null) {
      builder.add("instId", instId);
    }

    if (ordType != null) {
      builder.add("ordType", ordType);
    }

    if (state != null) {
      builder.add("state", state);
    }

    if (category != null) {
      builder.add("category", category);
    }

    if (after != null) {
      builder.add("after", after);
    }

    if (before != null) {
      builder.add("before", before);
    }

    if (limit != null) {
      builder.add("limit", limit);
    }

    return builder.build();
  }

  @Override
  protected Class getResponseType() {
    return Response.class;
  }

  @Override
  protected ImmutableList getRequiredQuotas() {
    return REQUIRED_QUOTA;
  }

  @NotThreadSafe
  public static final class Response extends ResponseWrapper<_Order> {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy