Skip to content

Commit dcf8dba

Browse files
algolia-botmillotp
andcommitted
fix(specs): change fileSize to int64 type (generated)
algolia/api-clients-automation#4877 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
1 parent 8cee590 commit dcf8dba

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

algoliasearch/Models/Search/FetchedIndex.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ public FetchedIndex(
3939
string createdAt,
4040
string updatedAt,
4141
int entries,
42-
int dataSize,
43-
int fileSize,
42+
long dataSize,
43+
long fileSize,
4444
int lastBuildTimeS,
4545
int numberOfPendingTasks,
4646
bool pendingTask
@@ -90,14 +90,14 @@ bool pendingTask
9090
/// </summary>
9191
/// <value>Number of bytes of the index in minified format.</value>
9292
[JsonPropertyName("dataSize")]
93-
public int DataSize { get; set; }
93+
public long DataSize { get; set; }
9494

9595
/// <summary>
9696
/// Number of bytes of the index binary file.
9797
/// </summary>
9898
/// <value>Number of bytes of the index binary file.</value>
9999
[JsonPropertyName("fileSize")]
100-
public int FileSize { get; set; }
100+
public long FileSize { get; set; }
101101

102102
/// <summary>
103103
/// Last build time.

0 commit comments

Comments
 (0)