app_update.proto 670 B

12345678910111213141516171819
  1. syntax = "proto3";
  2. import "app_create.proto";
  3. message UpdateAppRequest {
  4. string app_id = 1;
  5. oneof one_of_workspace_id { string workspace_id = 2; };
  6. oneof one_of_name { string name = 3; };
  7. oneof one_of_desc { string desc = 4; };
  8. oneof one_of_color_style { ColorStyle color_style = 5; };
  9. oneof one_of_is_trash { bool is_trash = 6; };
  10. }
  11. message UpdateAppParams {
  12. string app_id = 1;
  13. oneof one_of_workspace_id { string workspace_id = 2; };
  14. oneof one_of_name { string name = 3; };
  15. oneof one_of_desc { string desc = 4; };
  16. oneof one_of_color_style { ColorStyle color_style = 5; };
  17. oneof one_of_is_trash { bool is_trash = 6; };
  18. }