Skip to content

Commit aae5bad

Browse files
algolia-botmillotp
andcommitted
fix(specs): change fileSize to int64 type (generated)
algolia/api-clients-automation#4877 Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Pierre Millot <pierre.millot@algolia.com>
1 parent 78d094e commit aae5bad

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

algoliasearch/src/main/java/com/algolia/model/search/FetchedIndex.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ public class FetchedIndex {
2525
private Integer entries;
2626

2727
@JsonProperty("dataSize")
28-
private Integer dataSize;
28+
private Long dataSize;
2929

3030
@JsonProperty("fileSize")
31-
private Integer fileSize;
31+
private Long fileSize;
3232

3333
@JsonProperty("lastBuildTimeS")
3434
private Integer lastBuildTimeS;
@@ -92,25 +92,25 @@ public Integer getEntries() {
9292
return entries;
9393
}
9494

95-
public FetchedIndex setDataSize(Integer dataSize) {
95+
public FetchedIndex setDataSize(Long dataSize) {
9696
this.dataSize = dataSize;
9797
return this;
9898
}
9999

100100
/** Number of bytes of the index in minified format. */
101101
@javax.annotation.Nonnull
102-
public Integer getDataSize() {
102+
public Long getDataSize() {
103103
return dataSize;
104104
}
105105

106-
public FetchedIndex setFileSize(Integer fileSize) {
106+
public FetchedIndex setFileSize(Long fileSize) {
107107
this.fileSize = fileSize;
108108
return this;
109109
}
110110

111111
/** Number of bytes of the index binary file. */
112112
@javax.annotation.Nonnull
113-
public Integer getFileSize() {
113+
public Long getFileSize() {
114114
return fileSize;
115115
}
116116

0 commit comments

Comments
 (0)