package tk.antoine_roux.wiki.model.response.secondary; import com.fasterxml.jackson.annotation.JsonProperty; public class GitInfo { @JsonProperty("repo_url") public String repoURL; public String ref; public String sha; @JsonProperty("before_sha") public String beforeSha; @JsonProperty("ref_type") public String refType; public String[] refspecs; public int depth; }