mikufans_proto_intl/
bilibili.pagination.rs

1// This file is @generated by prost-build.
2///
3#[derive(Clone, PartialEq, ::prost::Message)]
4pub struct FeedPagination {
5    ///
6    #[prost(int32, tag = "1")]
7    pub page_size: i32,
8    ///
9    #[prost(string, tag = "2")]
10    pub offset: ::prost::alloc::string::String,
11    ///
12    #[prost(bool, tag = "3")]
13    pub is_refresh: bool,
14}
15///
16#[derive(Clone, PartialEq, ::prost::Message)]
17pub struct FeedPaginationReply {
18    ///
19    #[prost(string, tag = "1")]
20    pub next_offset: ::prost::alloc::string::String,
21    ///
22    #[prost(string, tag = "2")]
23    pub prev_offset: ::prost::alloc::string::String,
24    ///
25    #[prost(string, tag = "3")]
26    pub last_read_offset: ::prost::alloc::string::String,
27}
28///
29#[derive(Clone, PartialEq, ::prost::Message)]
30pub struct Pagination {
31    ///
32    #[prost(int32, tag = "1")]
33    pub page_size: i32,
34    ///
35    #[prost(string, tag = "2")]
36    pub next: ::prost::alloc::string::String,
37}
38///
39#[derive(Clone, PartialEq, ::prost::Message)]
40pub struct PaginationReply {
41    ///
42    #[prost(string, tag = "1")]
43    pub next: ::prost::alloc::string::String,
44    ///
45    #[prost(string, tag = "2")]
46    pub prev: ::prost::alloc::string::String,
47}