Skip to content

Commit 0a17cee

Browse files
infiniteregretsactions-user
authored andcommitted
sync protos
GitOrigin-RevId: 668d10b809b6a11e40d1037ac36e780a5ffb7ecc
1 parent 64836aa commit 0a17cee

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

s2/v1/openapi.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1239,21 +1239,21 @@
12391239
"ListAccessTokensResponse": {
12401240
"type": "object",
12411241
"required": [
1242-
"tokens",
1242+
"access_tokens",
12431243
"has_more"
12441244
],
12451245
"properties": {
1246-
"has_more": {
1247-
"type": "boolean",
1248-
"description": "If set, indicates there are more results that can be listed with `start_after`."
1249-
},
1250-
"tokens": {
1246+
"access_tokens": {
12511247
"type": "array",
12521248
"items": {
12531249
"$ref": "#/components/schemas/AccessTokenInfo"
12541250
},
12551251
"description": "Access tokens information.",
12561252
"maxItems": 1000
1253+
},
1254+
"has_more": {
1255+
"type": "boolean",
1256+
"description": "If set, indicates there are more results that can be listed with `start_after`."
12571257
}
12581258
}
12591259
},

s2/v1alpha/s2.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ message ListAccessTokensRequest {
282282
// List access tokens response.
283283
message ListAccessTokensResponse {
284284
// Access tokens information.
285-
repeated AccessTokenInfo tokens = 1;
285+
repeated AccessTokenInfo access_tokens = 1;
286286
// If set, indicates there are more results that can be listed with `start_after`.
287287
bool has_more = 2;
288288
}

0 commit comments

Comments
 (0)