File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
algoliasearch/Models/Search Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ public FetchedIndex(
39
39
string createdAt ,
40
40
string updatedAt ,
41
41
int entries ,
42
- int dataSize ,
43
- int fileSize ,
42
+ long dataSize ,
43
+ long fileSize ,
44
44
int lastBuildTimeS ,
45
45
int numberOfPendingTasks ,
46
46
bool pendingTask
@@ -90,14 +90,14 @@ bool pendingTask
90
90
/// </summary>
91
91
/// <value>Number of bytes of the index in minified format.</value>
92
92
[ JsonPropertyName ( "dataSize" ) ]
93
- public int DataSize { get ; set ; }
93
+ public long DataSize { get ; set ; }
94
94
95
95
/// <summary>
96
96
/// Number of bytes of the index binary file.
97
97
/// </summary>
98
98
/// <value>Number of bytes of the index binary file.</value>
99
99
[ JsonPropertyName ( "fileSize" ) ]
100
- public int FileSize { get ; set ; }
100
+ public long FileSize { get ; set ; }
101
101
102
102
/// <summary>
103
103
/// Last build time.
You can’t perform that action at this time.
0 commit comments