gitlab-runner-gateway/src/main/java/tk/antoine_roux/wiki/model/response/secondary/Dependency.java

17 lines
407 B
Java

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;
}
}