[#23] Use rich field names instead of abbreviations

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
Alex Vanin 2020-07-31 17:46:28 +03:00 committed by Stanislav Bogatyrev
parent 21f51c8c8b
commit 5928fa9bea

View file

@ -45,7 +45,7 @@ message PutRequest {
message PutResponse { message PutResponse {
// CID (container id) is a SHA256 hash of the container structure // CID (container id) is a SHA256 hash of the container structure
bytes CID = 1 [(gogoproto.customtype) = "CID", (gogoproto.nullable) = false]; bytes ContainerID = 1;
} }
message DeleteRequest { message DeleteRequest {
@ -62,7 +62,7 @@ message DeleteResponse { }
message GetRequest { message GetRequest {
// CID (container id) is a SHA256 hash of the container structure // CID (container id) is a SHA256 hash of the container structure
bytes CID = 1 [(gogoproto.customtype) = "CID", (gogoproto.nullable) = false]; bytes ContainerID = 1;
} }
message GetResponse { message GetResponse {
@ -72,12 +72,12 @@ message GetResponse {
message ListRequest { message ListRequest {
// OwnerID is a wallet address // OwnerID is a wallet address
bytes OwnerID = 1 [(gogoproto.customtype) = "OwnerID", (gogoproto.nullable) = false]; bytes OwnerID = 1;
} }
message ListResponse { message ListResponse {
// CID (container id) is list of SHA256 hashes of the container structures // CID (container id) is list of SHA256 hashes of the container structures
repeated bytes CID = 1 [(gogoproto.customtype) = "CID", (gogoproto.nullable) = false]; repeated bytes ContainerIDs = 1;
} }
message SetExtendedACLRequest { message SetExtendedACLRequest {