mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
14 lines
301 B
Protocol Buffer
14 lines
301 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package gitpod.v1;
|
|
|
|
option go_package = "github.com/gitpod-io/gitpod/public-api/v1";
|
|
|
|
message Pagination {
|
|
// page_size is the maximum number of results we expect
|
|
int32 page_size = 1;
|
|
|
|
// page_token points to a specific page of the results
|
|
string page_token = 2;
|
|
}
|