You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: box/src/main/java/ch/cyberduck/core/box/io/swagger/client/model/File.java
+8-8
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ public class File extends FileMini implements OneOfMetadataQueryResultsEntriesIt
30
30
privateStringdescription = null;
31
31
32
32
@JsonProperty("size")
33
-
privateIntegersize = null;
33
+
privateLongsize = null;
34
34
35
35
@JsonProperty("path_collection")
36
36
privateObjectpathCollection = null;
@@ -63,7 +63,7 @@ public class File extends FileMini implements OneOfMetadataQueryResultsEntriesIt
63
63
privateObjectownedBy = null;
64
64
65
65
@JsonProperty("shared_link")
66
-
privateObjectsharedLink = null;
66
+
privateStringsharedLink = null;
67
67
68
68
@JsonProperty("parent")
69
69
privateObjectparent = null;
@@ -121,7 +121,7 @@ public void setDescription(String description) {
121
121
this.description = description;
122
122
}
123
123
124
-
publicFilesize(Integersize) {
124
+
publicFilesize(Longsize) {
125
125
this.size = size;
126
126
returnthis;
127
127
}
@@ -131,11 +131,11 @@ public File size(Integer size) {
131
131
* @return size
132
132
**/
133
133
@Schema(example = "629644", description = "The file size in bytes. Be careful parsing this integer as it can get very large and cause an integer overflow.")
134
-
publicIntegergetSize() {
134
+
publicLonggetSize() {
135
135
returnsize;
136
136
}
137
137
138
-
publicvoidsetSize(Integersize) {
138
+
publicvoidsetSize(Longsize) {
139
139
this.size = size;
140
140
}
141
141
@@ -319,7 +319,7 @@ public void setOwnedBy(Object ownedBy) {
319
319
this.ownedBy = ownedBy;
320
320
}
321
321
322
-
publicFilesharedLink(ObjectsharedLink) {
322
+
publicFilesharedLink(StringsharedLink) {
323
323
this.sharedLink = sharedLink;
324
324
returnthis;
325
325
}
@@ -329,11 +329,11 @@ public File sharedLink(Object sharedLink) {
0 commit comments