mirror of
https://github.com/SocialSisterYi/bilibili-API-collect.git
synced 2024-12-28 13:30:08 +08:00
39 lines
546 B
Protocol Buffer
39 lines
546 B
Protocol Buffer
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;
|
|
} |