Skip to content
Snippets Groups Projects
Commit ddf050e9 authored by Semyon Krestyaninov's avatar Semyon Krestyaninov :dog2:
Browse files

change the type of the size field for the file struct

parent c45f4b15
No related branches found
No related tags found
2 merge requests!37Изменен тип поля `part_size` для структуры `MultipartUpload` в сервисе `Files`,!36Изменен тип поля Size для структуры File в сервисе Files
This commit is part of merge request !37. Comments created here will be created in the context of that merge request.
...@@ -11,7 +11,7 @@ package files; ...@@ -11,7 +11,7 @@ package files;
message File { message File {
string id = 1; // Уникальный идентификатор файла в хранилище string id = 1; // Уникальный идентификатор файла в хранилище
string name = 2; // Имя файла string name = 2; // Имя файла
int32 size = 3; // Размер файла uint64 size = 3; // Размер файла
string mime_type = 4; // Mime-type файла string mime_type = 4; // Mime-type файла
string url = 5; // Адрес для загрузки файла string url = 5; // Адрес для загрузки файла
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment