Skip to content

support struct in referenced proto meaages

Compare
Choose a tag to compare
@Sheshagiri Sheshagiri released this 28 Sep 16:32
· 2 commits to master since this release
30ca842

This release adds support for protobuf's with google.protobuf.Struct from referenced/imported proto files.
Following is an example.

message Action {
    string name = 1;
    google.protobuf.Struct parameters = 2;
}

message Execution {
    string name = 1;
    Action action = 2;
}