1
0

sample.proto.txt 381 B

1234567891011
  1. syntax = "proto3";
  2. import public "other.proto";
  3. /* SearchRequest represents a search query, with pagination options to
  4. * indicate which results to include in the response. */
  5. message SearchRequest {
  6. required string query = 1;
  7. optional int32 page_number = 2; // Which page number do we want?
  8. optional int32 result_per_page = 3; // Number of results to return per page.
  9. }