Last active
April 24, 2019 09:10
-
-
Save syossan27/f69e85d69f5debf15805847a13c73d33 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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