-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change only GET recent items endpoint
- Loading branch information
Showing
4 changed files
with
132 additions
and
70 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
type: object | ||
|
||
description: |- | ||
The part of an API response that describes marker | ||
based pagination | ||
properties: | ||
limit: | ||
description: |- | ||
The limit that was used for these entries. This will be the same as the | ||
`limit` query parameter unless that value exceeded the maximum value | ||
allowed. The maximum value varies by API. | ||
example: 1000 | ||
type: integer | ||
format: int64 | ||
|
||
next_marker: | ||
description: |- | ||
The marker for the start of the next page of results. | ||
example: JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii | ||
type: string | ||
|
||
prev_marker: | ||
description: |- | ||
The marker for the start of the previous page of results. | ||
example: JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVih | ||
type: string |
This file contains 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
This file contains 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