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

org.knowm.xchange.therock.dto.trade.TheRockMeta Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
package org.knowm.xchange.therock.dto.trade;

import com.fasterxml.jackson.databind.PropertyNamingStrategy;
import com.fasterxml.jackson.databind.annotation.JsonNaming;

/** @author Pnk */
@JsonNaming(PropertyNamingStrategy.SnakeCaseStrategy.class)
public class TheRockMeta {

  private long totalCount;
  private TheRockMetaItem first;
  private TheRockMetaItem previous;
  private TheRockMetaItem current;
  private TheRockMetaItem next;
  private TheRockMetaItem last;

  public long getTotalCount() {
    return totalCount;
  }

  public TheRockMetaItem getFirst() {
    return first;
  }

  public TheRockMetaItem getPrevious() {
    return previous;
  }

  public TheRockMetaItem getCurrent() {
    return current;
  }

  public TheRockMetaItem getNext() {
    return next;
  }

  public TheRockMetaItem getLast() {
    return last;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy