package cc.mrbird.febs.dapp.soccer.entity; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import java.util.List; @Data public class LeaguesResponse { @JsonProperty("get") private String get; @JsonProperty("parameters") private Object parameters; @JsonProperty("errors") private List errors; @JsonProperty("results") private int results; @JsonProperty("paging") private JsonResponse.Paging paging; @JsonProperty("response") private List response; public static class Paging { @JsonProperty("current") private int current; @JsonProperty("total") private int total; } }