add: new united playurl grpc interface (#642)

This commit is contained in:
陈寒彤
2023-03-28 04:08:46 +03:00
committed by GitHub
parent 280f69f7ee
commit 28e8a7cbf0
6 changed files with 2590 additions and 2485 deletions

View File

@@ -0,0 +1,27 @@
syntax = "proto3";
package bilibili.app.playerunite.ugcanymodel;
message ButtonStyle {
string text = 1;
string text_color = 2;
string bg_color = 3;
string jump_link = 4;
}
enum PlayLimitCode {
PLC_UNKNOWN = 0;
PLC_NOTPAYED = 1;
}
message PlayLimit {
PlayLimitCode code = 1;
string message = 2;
string sub_message = 3;
ButtonStyle button = 4;
}
message UGCAnyModel {
PlayLimit play_limit = 1;
}