We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Protocol buffers are allowing to create own options. Example:
import "google/protobuf/descriptor.proto"; extend google.protobuf.MessageOptions { optional string my_option = 51234; } message MyMessage { option (my_option) = "Hello world!"; }
See https://developers.google.com/protocol-buffers/docs/proto#customoptions
It is possible on messages, message fields, enums, enum values, services etc.
It would be great if the code generator would store those meta information as static values on the class.
The text was updated successfully, but these errors were encountered:
I am using ngx-grpc quite some time. Now I struggle to have this option. Is it still planned to implement?
Sorry, something went wrong.
No branches or pull requests
Protocol buffers are allowing to create own options. Example:
See
https://developers.google.com/protocol-buffers/docs/proto#customoptions
It is possible on messages, message fields, enums, enum values, services etc.
It would be great if the code generator would store those meta information as static values on the class.
The text was updated successfully, but these errors were encountered: