bilibili-API-collect/grpc_api/bilibili/community/service/govern/v1/govern.proto
2022-06-24 23:50:01 +08:00

37 lines
537 B
Protocol Buffer

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;
//
int64 oid = 6;
//
QoeScoreResult score_result = 7;
//
string business_data = 8;
}
//
message QoeScoreResult {
//
float score = 1;
}