update 【gRPC API】 proto files
This commit is contained in:
@@ -14,6 +14,8 @@ service DM {
|
||||
rpc DmSegOtt(DmSegOttReq) returns(DmSegOttReply);
|
||||
// SDK弹幕列表
|
||||
rpc DmSegSDK(DmSegSDKReq) returns(DmSegSDKReply);
|
||||
//
|
||||
rpc DmExpoReport (DmExpoReportReq) returns (DmExpoReportRes);
|
||||
}
|
||||
|
||||
// 弹幕SDK-请求
|
||||
|
||||
35
grpc_api/bilibili/community/service/govern/v1/govern.proto
Normal file
35
grpc_api/bilibili/community/service/govern/v1/govern.proto
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user