io.codemodder.sonar.model.Paging Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-api-model Show documentation
Show all versions of sonar-api-model Show documentation
Library with API models for data from Sonar tools
package io.codemodder.sonar.model;
import com.fasterxml.jackson.annotation.JsonProperty;
class Paging {
@JsonProperty("pageIndex")
int pageIndex;
@JsonProperty("pageSize")
int pageSize;
@JsonProperty("total")
int total;
}