12345678910111213141516171819 |
- syntax = "proto3";
- import "app_create.proto";
- message UpdateAppRequest {
- string app_id = 1;
- oneof one_of_workspace_id { string workspace_id = 2; };
- oneof one_of_name { string name = 3; };
- oneof one_of_desc { string desc = 4; };
- oneof one_of_color_style { ColorStyle color_style = 5; };
- oneof one_of_is_trash { bool is_trash = 6; };
- }
- message UpdateAppParams {
- string app_id = 1;
- oneof one_of_workspace_id { string workspace_id = 2; };
- oneof one_of_name { string name = 3; };
- oneof one_of_desc { string desc = 4; };
- oneof one_of_color_style { ColorStyle color_style = 5; };
- oneof one_of_is_trash { bool is_trash = 6; };
- }
|