I want to get all the field names of a proto into a list. Is there a way to do this? I looked in the documentation and there doesn\'t seem to be anything for this.
You can easily get a list of fields as follows
message_fields = [field for field in message.DESCRIPTOR.fields_by_name]