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

org.knowm.xchange.kucoin.dto.trading.KucoinDealtOrdersInfo Maven / Gradle / Ivy

package org.knowm.xchange.kucoin.dto.trading;

import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Generated;

@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({"total", "datas", "limit", "page"})
public class KucoinDealtOrdersInfo {

  @JsonProperty("total")
  private Integer total;

  @JsonProperty("datas")
  private List dealtOrders = new ArrayList();

  @JsonProperty("limit")
  private Integer limit;

  @JsonProperty("page")
  private Integer page;

  @JsonIgnore private Map additionalProperties = new HashMap();

  /** No args constructor for use in serialization */
  public KucoinDealtOrdersInfo() {}

  /**
   * @param total
   * @param dealtOrders
   * @param limit
   * @param page
   */
  public KucoinDealtOrdersInfo(
      Integer total, List dealtOrders, Integer limit, Integer page) {
    super();
    this.total = total;
    this.dealtOrders = dealtOrders;
    this.limit = limit;
    this.page = page;
  }

  /** @return The total */
  @JsonProperty("total")
  public Integer getTotal() {
    return total;
  }

  /** @param total The total */
  @JsonProperty("total")
  public void setTotal(Integer total) {
    this.total = total;
  }

  /** @return The dealtOrders */
  @JsonProperty("datas")
  public List getDealtOrders() {
    return dealtOrders;
  }

  /** @param dealtOrders The dealtOrders */
  @JsonProperty("datas")
  public void setDealtOrders(List dealtOrders) {
    this.dealtOrders = dealtOrders;
  }

  /** @return The limit */
  @JsonProperty("limit")
  public Integer getLimit() {
    return limit;
  }

  /** @param limit The limit */
  @JsonProperty("limit")
  public void setLimit(Integer limit) {
    this.limit = limit;
  }

  /** @return The page */
  @JsonProperty("page")
  public Integer getPage() {
    return page;
  }

  /** @param page The page */
  @JsonProperty("page")
  public void setPage(Integer page) {
    this.page = page;
  }

  @JsonAnyGetter
  public Map getAdditionalProperties() {
    return this.additionalProperties;
  }

  @JsonAnySetter
  public void setAdditionalProperty(String name, Object value) {
    this.additionalProperties.put(name, value);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy