We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55807bb commit 26f4b4dCopy full SHA for 26f4b4d
src/main/java/org/gitlab4j/api/models/ArtifactsFile.java
@@ -5,7 +5,7 @@
5
public class ArtifactsFile {
6
7
private String filename;
8
- private Integer size;
+ private Long size;
9
10
public String getFilename() {
11
return filename;
@@ -15,11 +15,11 @@ public void setFilename(String filename) {
15
this.filename = filename;
16
}
17
18
- public Integer getSize() {
+ public Long getSize() {
19
return size;
20
21
22
- public void setSize(Integer size) {
+ public void setSize(Long size) {
23
this.size = size;
24
25
0 commit comments