me.tomsdevsn.hetznercloud.objects.response.Meta Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hetznercloud-java_2.12 Show documentation
Show all versions of hetznercloud-java_2.12 Show documentation
Java Integration to manage the Hetzner-Cloud
The newest version!
package me.tomsdevsn.hetznercloud.objects.response;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
@Data
public class Meta {
private Pagination pagination;
@Data
public static class Pagination {
private Long page;
@JsonProperty("per_page")
private Long perPage;
@JsonProperty("previous_page")
private Long previousPage;
@JsonProperty("next_page")
private Long nextPage;
@JsonProperty("last_page")
private Long lastPage;
@JsonProperty("total_entries")
private Long totalEntries;
}
}