mirror of
https://github.com/SocialSisterYi/bilibili-API-collect.git
synced 2024-12-29 14:00:09 +08:00
38 lines
493 B
Protocol Buffer
38 lines
493 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;
|
|
} |