update 【gRPC API】 proto files

This commit is contained in:
社会易姐QwQ
2022-01-29 23:57:17 +08:00
parent c25a8f4bf6
commit aae73c7015
13 changed files with 8077 additions and 4558 deletions

View File

@@ -0,0 +1,35 @@
syntax = "proto3";
package bilibili.community.service.govern.v1;
import "google/protobuf/empty.proto";
//
service Qoe {
//
rpc QoeReport (QoeReportReq) returns (google.protobuf.Empty);
}
//
message QoeReportReq {
//
int64 id = 1;
//
int64 scene = 2;
//
int32 type = 3;
//
bool cancel = 4;
//
string business_type = 5;
//
QoeScoreResult score_result = 6;
//
string business_data = 7;
}
//
message QoeScoreResult {
//
float score = 1;
}