Skip to content

Commit

Permalink
fix(admin): update the API
Browse files Browse the repository at this point in the history
#### admin:directory_v1
The following keys were changed:
- schemas.DirectoryChromeosdevicesIssueCommandRequest.properties.payload.description
  • Loading branch information
yoshi-automation authored and sofisl committed Oct 21, 2020
1 parent 30faddb commit 266f586
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions discovery/admin-directory_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -4139,7 +4139,7 @@
}
}
},
"revision": "20201013",
"revision": "20201020",
"rootUrl": "https://www.googleapis.com/",
"schemas": {
"Alias": {
Expand Down Expand Up @@ -5137,7 +5137,7 @@
"type": "string"
},
"payload": {
"description": "The payload for the command, provide it only if command supports it. The following commands support adding payload: - SET_VOLUME: Payload is a JSON object in the form: { \"volume\": 50 }. The volume has to be an integer in the range [0,100].",
"description": "The payload for the command, provide it only if command supports it. The following commands support adding payload: - SET_VOLUME: Payload is a stringified JSON object in the form: { \"volume\": 50 }. The volume has to be an integer in the range [0,100].",
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/apis/admin/directory_v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ export namespace admin_directory_v1 {
*/
commandType?: string | null;
/**
* The payload for the command, provide it only if command supports it. The following commands support adding payload: - SET_VOLUME: Payload is a JSON object in the form: { "volume": 50 }. The volume has to be an integer in the range [0,100].
* The payload for the command, provide it only if command supports it. The following commands support adding payload: - SET_VOLUME: Payload is a stringified JSON object in the form: { "volume": 50 }. The volume has to be an integer in the range [0,100].
*/
payload?: string | null;
}
Expand Down

0 comments on commit 266f586

Please sign in to comment.