syntax = "proto3"; package pb2; import "google/protobuf/any.proto"; service ServiceChain { rpc test(TestAny) returns (Response) ; } message TestAny { string Title = 2; } enum StatusType { DISABLED = 0; ENABLED = 1; }