import"google/protobuf/any.proto";
messageEnvelope {
string type = 1;
google.protobuf.Any payload = 2; // can hold any message type
}
Wrapper Types (Nullable Scalars)
import"google/protobuf/wrappers.proto";
messageUser {
string name = 1;
google.protobuf.Int32Value age = 2; // nullable! can distinguish 0 from "not set"
}