mirror of
https://github.com/SocialSisterYi/bilibili-API-collect.git
synced 2025-02-24 01:40:07 +08:00
55 lines
730 B
Protocol Buffer
55 lines
730 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package bilibili.app.show.region.v1;
|
|
|
|
//
|
|
service Region {
|
|
//
|
|
rpc Region (RegionReq) returns (RegionReply);
|
|
}
|
|
|
|
//
|
|
message RegionReq {
|
|
//
|
|
string lang = 1;
|
|
}
|
|
|
|
//
|
|
message RegionReply {
|
|
//
|
|
repeated RegionInfo regions = 1;
|
|
}
|
|
|
|
//
|
|
message RegionConfig {
|
|
//
|
|
string scenesName = 1;
|
|
//
|
|
string scenesType = 2;
|
|
}
|
|
|
|
//
|
|
message RegionInfo {
|
|
//
|
|
int32 tid = 1;
|
|
//
|
|
int32 reid = 2;
|
|
//
|
|
string name = 3;
|
|
//
|
|
string logo = 4;
|
|
//
|
|
string goto = 5;
|
|
//
|
|
string param = 6;
|
|
//
|
|
string uri = 7;
|
|
//
|
|
int32 type = 8;
|
|
//
|
|
int32 isBangumi = 9;
|
|
//
|
|
repeated RegionInfo children = 10;
|
|
//
|
|
repeated RegionConfig config = 11;
|
|
} |