popcount.proto 274 B

12345678910111213
  1. syntax = "proto2";
  2. message PopcountRequest {
  3. }
  4. message PopcountResult {
  5. optional sint64 count = 0x1;
  6. optional bool truncated = 0x2;
  7. repeated string user = 0x3;
  8. repeated sint64 subscriptionTimestamps = 0x4;
  9. repeated sint64 insertionTimestamps = 0x5;
  10. }