-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GitOrigin-RevId: 051b69b321579560a25b03a39639fdcae5411bdb Co-authored-by: Working Group Two Maintainers <noreply@wgtwo.com>
- Loading branch information
Showing
4 changed files
with
61 additions
and
1 deletion.
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,7 @@ | ||
## Annotations | ||
|
||
The annotations in the `wgtwo` package provide critical metadata for API methods. | ||
|
||
They are intended to aid developers in understanding the access scope required to use the API method. | ||
|
||
It also provides information about the API method's stability and deprecation status. |
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,17 @@ | ||
syntax = "proto3"; | ||
|
||
package wgtwo.common.v0; | ||
|
||
option go_package = "github.com/working-group-two/wgtwoapis/wgtwo/common/v0"; | ||
option java_package = "com.wgtwo.api.v0.common"; | ||
option java_outer_classname = "PaginationProto"; | ||
|
||
message PaginationRequest { | ||
// 1 is reserved for 'parent' | ||
int32 page_size = 2; | ||
string page_token = 3; | ||
} | ||
|
||
message PaginationResponse { | ||
string next_page_token = 2; | ||
} |
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