File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1239
1239
"ListAccessTokensResponse" : {
1240
1240
"type" : " object" ,
1241
1241
"required" : [
1242
- " tokens " ,
1242
+ " access_tokens " ,
1243
1243
" has_more"
1244
1244
],
1245
1245
"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" : {
1251
1247
"type" : " array" ,
1252
1248
"items" : {
1253
1249
"$ref" : " #/components/schemas/AccessTokenInfo"
1254
1250
},
1255
1251
"description" : " Access tokens information." ,
1256
1252
"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`."
1257
1257
}
1258
1258
}
1259
1259
},
Original file line number Diff line number Diff line change @@ -282,7 +282,7 @@ message ListAccessTokensRequest {
282
282
// List access tokens response.
283
283
message ListAccessTokensResponse {
284
284
// Access tokens information.
285
- repeated AccessTokenInfo tokens = 1 ;
285
+ repeated AccessTokenInfo access_tokens = 1 ;
286
286
// If set, indicates there are more results that can be listed with `start_after`.
287
287
bool has_more = 2 ;
288
288
}
You can’t perform that action at this time.
0 commit comments