XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 0
UTF-8
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;
}