mirror of
https://github.com/SocialSisterYi/bilibili-API-collect.git
synced 2024-12-28 21:40:08 +08:00
37 lines
537 B
Protocol Buffer
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;
|
|
} |