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

com.mercadopago.resources.ResultsPaging Maven / Gradle / Ivy

There is a newer version: 2.1.29
Show newest version
package com.mercadopago.resources;

import lombok.Getter;

/** Details of a response that contains paged data. */
@Getter
public class ResultsPaging {
  /** Total number of items from that result. */
  private int total;

  /** Limit of items in the result. */
  private int limit;

  /** Current page offset. */
  private int offset;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy