![JAR search and dependency download from the Maven repository](/logo.png)
io.github.dft.ebay.model.seller.Pagination Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebay-trading-api Show documentation
Show all versions of ebay-trading-api Show documentation
Ebay trading XML API using JDK 11 and Reactive Programming
package io.github.dft.ebay.model.seller;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
@JsonInclude(JsonInclude.Include.NON_NULL)
public class Pagination {
@JacksonXmlProperty(localName = "EntriesPerPage")
private Integer entriesPerPage;
@JacksonXmlProperty(localName = "PageNumber")
private Integer pageNumber;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy