bilibili-API-collect/grpc_api/bilibili/pagination/pagination.proto
2023-02-27 23:33:51 +08:00

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;
}