update 【gRPC API】 proto files
This commit is contained in:
38
grpc_api/bilibili/pagination/pagination.proto
Normal file
38
grpc_api/bilibili/pagination/pagination.proto
Normal file
@@ -0,0 +1,38 @@
|
||||
syntax = "proto3";
|
||||
package bilibili.pagination;
|
||||
|
||||
//
|
||||
message FeedPagination {
|
||||
//
|
||||
int32 page_size = 1;
|
||||
//
|
||||
string offset = 2;
|
||||
//
|
||||
bool is_refresh = 3;
|
||||
}
|
||||
|
||||
//
|
||||
message FeedPaginationReply {
|
||||
//
|
||||
string next_offset = 1;
|
||||
//
|
||||
string prev_offset = 2;
|
||||
//
|
||||
string last_read_offset = 3;
|
||||
}
|
||||
|
||||
//
|
||||
message Pagination {
|
||||
//
|
||||
int32 page_size = 1;
|
||||
//
|
||||
string next = 2;
|
||||
}
|
||||
|
||||
//
|
||||
message PaginationReply {
|
||||
//
|
||||
string next = 1;
|
||||
//
|
||||
string prev = 2;
|
||||
}
|
||||
Reference in New Issue
Block a user