We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ae21e76 + c51f3fb commit 9fe2d4dCopy full SHA for 9fe2d4d
src/Nest/Domain/Stats/IndexSizeStats.cs
@@ -12,13 +12,13 @@ public class IndexSizeStats
12
public string PrimarySize { get; set; }
13
14
[JsonProperty(PropertyName = "primary_size_in_bytes")]
15
- public int PrimarySizeInBytes { get; set; }
+ public long PrimarySizeInBytes { get; set; }
16
17
[JsonProperty(PropertyName = "size")]
18
public string Size { get; set; }
19
20
[JsonProperty(PropertyName = "size_in_bytes")]
21
- public int SizeInBytes { get; set; }
+ public long SizeInBytes { get; set; }
22
23
}
24
0 commit comments