1syntax = "proto3";
2
3package v2ray.core.common.serial;
4option csharp_namespace = "V2Ray.Core.Common.Serial";
5option go_package = "github.com/v2fly/v2ray-core/v4/common/serial";
6option java_package = "com.v2ray.core.common.serial";
7option java_multiple_files = true;
8
9// TypedMessage is a serialized proto message along with its type name.
10message TypedMessage {
11  // The name of the message type, retrieved from protobuf API.
12  string type = 1;
13  // Serialized proto message.
14  bytes value = 2;
15}
16