mirror of
https://github.com/SocialSisterYi/bilibili-API-collect.git
synced 2025-03-13 01:40:09 +08:00
18 lines
333 B
Protocol Buffer
18 lines
333 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package bilibili.rpc;
|
|
|
|
import "google/protobuf/any.proto";
|
|
|
|
//接口回复报错信息
|
|
//grpc-status-details-bin
|
|
message Status {
|
|
//业务错误码
|
|
int32 code = 1;
|
|
|
|
//业务错误信息
|
|
string message = 2;
|
|
|
|
//扩展信息嵌套(套娃专用)
|
|
repeated google.protobuf.Any details = 3;
|
|
} |