package tk.antoine_roux.wiki.model.response.secondary; import com.fasterxml.jackson.annotation.JsonProperty; public class Dependency { public int id; public String token; public String name; @JsonProperty("artifacts_file") public DependencyArtifactsFile artifactsFile; public static class DependencyArtifactsFile { public String filename; public int size; } }