51731db121
Avoid using project uuid string representation, because it uses more bandwidth. This reduces the encrypted metadata size from 118 -> 97 bytes. Change-Id: Ic53a81b83acc065f24f28cd404f9c0b1fe592594
16 lines
441 B
Protocol Buffer
16 lines
441 B
Protocol Buffer
// Copyright (C) 2021 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
syntax = "proto3";
|
|
option go_package = "storj.io/storj/satellite/internalpb";
|
|
|
|
package satellite.ordersmeta;
|
|
|
|
// OrderLimitMetadata is used to transmit meta information about an order limit.
|
|
// This data will be encrypted.
|
|
message OrderLimitMetadata {
|
|
bytes bucket_id = 1;
|
|
bytes project_bucket_prefix = 2;
|
|
bytes compact_project_bucket_prefix = 3;
|
|
}
|