PATCH
gdrive_comments_update.py
Requires
https://www.googleapis.com/auth/drive. Costs 1 against the provider’s own quota.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Update a comment with patch semantics. The fields parameter is required. Typically send a new content.
from charter.packs import gdrive
result = await gdrive.comments_update.ainvoke({"fileId": ..., "commentId": ..., "comment": ..., "fields": ...})
https://www.googleapis.com/auth/drive. Costs 1 against the provider’s own quota.| Field | Type | Description |
|---|---|---|
fileId * | string | The ID of the file. |
commentId * | string | The ID of the comment. |
| Field | Type | Description |
|---|---|---|
fields * | string | Required. The fields parameter must be set. To return the exact fields you need, see Return specific fields. Example: comments(id,content,author,createdTime,modifiedTime,resolved,replies(id,content,author,createdTime,action)). |
| Field | Type | Description |
|---|---|---|
comment * | PatchComment | The comment resource. Only populate fields you want to modify; typically content. |
Was this page helpful?