File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
algoliasearch/src/main/java/com/algolia/model/search Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ public class FetchedIndex {
25
25
private Integer entries ;
26
26
27
27
@ JsonProperty ("dataSize" )
28
- private Integer dataSize ;
28
+ private Long dataSize ;
29
29
30
30
@ JsonProperty ("fileSize" )
31
- private Integer fileSize ;
31
+ private Long fileSize ;
32
32
33
33
@ JsonProperty ("lastBuildTimeS" )
34
34
private Integer lastBuildTimeS ;
@@ -92,25 +92,25 @@ public Integer getEntries() {
92
92
return entries ;
93
93
}
94
94
95
- public FetchedIndex setDataSize (Integer dataSize ) {
95
+ public FetchedIndex setDataSize (Long dataSize ) {
96
96
this .dataSize = dataSize ;
97
97
return this ;
98
98
}
99
99
100
100
/** Number of bytes of the index in minified format. */
101
101
@ javax .annotation .Nonnull
102
- public Integer getDataSize () {
102
+ public Long getDataSize () {
103
103
return dataSize ;
104
104
}
105
105
106
- public FetchedIndex setFileSize (Integer fileSize ) {
106
+ public FetchedIndex setFileSize (Long fileSize ) {
107
107
this .fileSize = fileSize ;
108
108
return this ;
109
109
}
110
110
111
111
/** Number of bytes of the index binary file. */
112
112
@ javax .annotation .Nonnull
113
- public Integer getFileSize () {
113
+ public Long getFileSize () {
114
114
return fileSize ;
115
115
}
116
116
You can’t perform that action at this time.
0 commit comments