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