gitpod/components/public-api/gitpod/v1/pagination.proto
2022-03-26 15:31:09 +05:30

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;
}