You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
message Reply {
google.protobuf.Any Data = 1;
}
sometimes Reply.Data is Test2.name, sometime Reply.Data is names,
when I gen openapi , Reply.Data is ref protobuf.Any. but I want ref Test1 or Test2
What can I do?
The text was updated successfully, but these errors were encountered:
I have an field
message Test1 {
string name = 1;
}
message Test2 {
repeated string names = 1;
}
message Reply {
google.protobuf.Any Data = 1;
}
sometimes Reply.Data is Test2.name, sometime Reply.Data is names,
when I gen openapi , Reply.Data is ref protobuf.Any. but I want ref Test1 or Test2
What can I do?
The text was updated successfully, but these errors were encountered: