view_update.proto 583 B

1234567891011121314151617181920
  1. syntax = "proto3";
  2. message UpdateViewRequest {
  3. string view_id = 1;
  4. oneof one_of_name { string name = 2; };
  5. oneof one_of_desc { string desc = 3; };
  6. oneof one_of_thumbnail { string thumbnail = 4; };
  7. oneof one_of_is_trash { bool is_trash = 5; };
  8. }
  9. message UpdateViewParams {
  10. string view_id = 1;
  11. oneof one_of_name { string name = 2; };
  12. oneof one_of_desc { string desc = 3; };
  13. oneof one_of_thumbnail { string thumbnail = 4; };
  14. oneof one_of_is_trash { bool is_trash = 5; };
  15. }
  16. message DocDeltaRequest {
  17. string view_id = 1;
  18. bytes data = 2;
  19. }