Skip to content

Instantly share code, notes, and snippets.

@syossan27
Last active April 24, 2019 09:10
Show Gist options
  • Save syossan27/f69e85d69f5debf15805847a13c73d33 to your computer and use it in GitHub Desktop.
Save syossan27/f69e85d69f5debf15805847a13c73d33 to your computer and use it in GitHub Desktop.
message Response {
uint32 page = 1; // 現在のページ数
uint32 limit = 2; // ページに表示するアイテム数
uint32 size = 3; // 全てのアイテム数
PaginationMessage first = 4; // 1ページ目情報
PaginationMessage last = 5; // 最終ページ情報
PaginationMessage next = 6; // 次ページ情報
PaginationMessage prev = 7; // 前ページ情報
}
// 1ページ目、最終ページ、次ページ、前ページに対する情報
message PaginationMessage {
uint32 page = 1;
uint32 limit = 2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment