2020-05-11 18:57:46 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
syntax = "proto3";
|
|
|
|
option go_package = "storj.io/common/pb";
|
|
|
|
|
|
|
|
package objects;
|
|
|
|
|
2020-05-29 13:08:11 +00:00
|
|
|
// SerializableMeta is the object metadata that will be stored serialized.
|
2020-05-11 18:57:46 +00:00
|
|
|
message SerializableMeta {
|
|
|
|
string content_type = 1;
|
|
|
|
map<string, string> user_defined = 2;
|
|
|
|
}
|