You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: discovery/forms-v1.json
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -215,7 +215,7 @@
215
215
],
216
216
"parameters": {
217
217
"formId": {
218
-
"description": "Required. The ID of the form. You can get the id from `Form.form_id` field.",
218
+
"description": "Required. The ID of the form. You can get the id from Form.form_id field.",
219
219
"location": "path",
220
220
"required": true,
221
221
"type": "string"
@@ -458,7 +458,7 @@
458
458
}
459
459
}
460
460
},
461
-
"revision": "20250304",
461
+
"revision": "20250422",
462
462
"rootUrl": "https://forms.googleapis.com/",
463
463
"schemas": {
464
464
"Answer": {
@@ -831,22 +831,22 @@
831
831
},
832
832
"publishSettings": {
833
833
"$ref": "PublishSettings",
834
-
"description": "Output only. The publishing settings for a form. This field isn't set for legacy forms because they don't have the `publish_settings` field. All newly created forms support publish settings. Forms with `publish_settings` value set can call UpdatePublishSettings API to publish or unpublish the form.",
834
+
"description": "Output only. The publishing settings for a form. This field isn't set for legacy forms because they don't have the publish_settings field. All newly created forms support publish settings. Forms with publish_settings value set can call SetPublishSettings API to publish or unpublish the form.",
835
835
"readOnly": true
836
836
},
837
837
"responderUri": {
838
-
"description": "Output only. The form URI to share with responders. This opens a page that allows the user to submit responses but not edit the questions.",
838
+
"description": "Output only. The form URI to share with responders. This opens a page that allows the user to submit responses but not edit the questions. For forms that have publish_settings value set, this is the published form URI.",
839
839
"readOnly": true,
840
840
"type": "string"
841
841
},
842
842
"revisionId": {
843
-
"description": "Output only. The revision ID of the form. Used in the WriteControl in update requests to identify the revision on which the changes are based. The format of the revision ID may change over time, so it should be treated opaquely. A returned revision ID is only guaranteed to be valid for 24 hours after it has been returned and cannot be shared across users. If the revision ID is unchanged between calls, then the form has not changed. Conversely, a changed ID (for the same form and user) usually means the form has been updated; however, a changed ID can also be due to internal factors such as ID format changes.",
843
+
"description": "Output only. The revision ID of the form. Used in the WriteControl in update requests to identify the revision on which the changes are based. The format of the revision ID may change over time, so it should be treated opaquely. A returned revision ID is only guaranteed to be valid for 24 hours after it has been returned and cannot be shared across users. If the revision ID is unchanged between calls, then the form *content* has not changed. Conversely, a changed ID (for the same form and user) usually means the form *content* has been updated; however, a changed ID can also be due to internal factors such as ID format changes. Form content excludes form metadata, including: * sharing settings (who has access to the form) * publish_settings (if the form supports publishing and if it is published)",
844
844
"readOnly": true,
845
845
"type": "string"
846
846
},
847
847
"settings": {
848
848
"$ref": "FormSettings",
849
-
"description": "The form's settings. This must be updated with UpdateSettingsRequest; it is ignored during `forms.create` and UpdateFormInfoRequest."
849
+
"description": "The form's settings. This must be updated with UpdateSettingsRequest; it is ignored during CreateForm and UpdateFormInfoRequest."
850
850
}
851
851
},
852
852
"type": "object"
@@ -1036,7 +1036,7 @@
1036
1036
"type": "string"
1037
1037
},
1038
1038
"documentTitle": {
1039
-
"description": "Output only. The title of the document which is visible in Drive. If `Info.title` is empty, `document_title` may appear in its place in the Google Forms UI and be visible to responders. `document_title` can be set on create, but cannot be modified by a batchUpdate request. Please use the [Google Drive API](https://developers.google.com/drive/api/v3/reference/files/update) if you need to programmatically update `document_title`.",
1039
+
"description": "Output only. The title of the document which is visible in Drive. If Info.title is empty, `document_title` may appear in its place in the Google Forms UI and be visible to responders. `document_title` can be set on create, but cannot be modified by a batchUpdate request. Please use the [Google Drive API](https://developers.google.com/drive/api/v3/reference/files/update) if you need to programmatically update `document_title`.",
1040
1040
"readOnly": true,
1041
1041
"type": "string"
1042
1042
},
@@ -1476,11 +1476,11 @@
1476
1476
"type": "object"
1477
1477
},
1478
1478
"SetPublishSettingsResponse": {
1479
-
"description": "The response of a `SetPublishSettings` request.",
1479
+
"description": "The response of a SetPublishSettings request.",
1480
1480
"id": "SetPublishSettingsResponse",
1481
1481
"properties": {
1482
1482
"formId": {
1483
-
"description": "Required. The ID of the Form. This is same as the `Form.form_id` field.",
1483
+
"description": "Required. The ID of the Form. This is same as the Form.form_id field.",
Copy file name to clipboardExpand all lines: src/apis/forms/v1.ts
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -382,19 +382,19 @@ export namespace forms_v1 {
382
382
*/
383
383
linkedSheetId?: string|null;
384
384
/**
385
-
* Output only. The publishing settings for a form. This field isn't set for legacy forms because they don't have the `publish_settings` field. All newly created forms support publish settings. Forms with `publish_settings` value set can call UpdatePublishSettings API to publish or unpublish the form.
385
+
* Output only. The publishing settings for a form. This field isn't set for legacy forms because they don't have the publish_settings field. All newly created forms support publish settings. Forms with publish_settings value set can call SetPublishSettings API to publish or unpublish the form.
386
386
*/
387
387
publishSettings?: Schema$PublishSettings;
388
388
/**
389
-
* Output only. The form URI to share with responders. This opens a page that allows the user to submit responses but not edit the questions.
389
+
* Output only. The form URI to share with responders. This opens a page that allows the user to submit responses but not edit the questions. For forms that have publish_settings value set, this is the published form URI.
390
390
*/
391
391
responderUri?: string|null;
392
392
/**
393
-
* Output only. The revision ID of the form. Used in the WriteControl in update requests to identify the revision on which the changes are based. The format of the revision ID may change over time, so it should be treated opaquely. A returned revision ID is only guaranteed to be valid for 24 hours after it has been returned and cannot be shared across users. If the revision ID is unchanged between calls, then the form has not changed. Conversely, a changed ID (for the same form and user) usually means the form has been updated; however, a changed ID can also be due to internal factors such as ID format changes.
393
+
* Output only. The revision ID of the form. Used in the WriteControl in update requests to identify the revision on which the changes are based. The format of the revision ID may change over time, so it should be treated opaquely. A returned revision ID is only guaranteed to be valid for 24 hours after it has been returned and cannot be shared across users. If the revision ID is unchanged between calls, then the form *content* has not changed. Conversely, a changed ID (for the same form and user) usually means the form *content* has been updated; however, a changed ID can also be due to internal factors such as ID format changes. Form content excludes form metadata, including: * sharing settings (who has access to the form) * publish_settings (if the form supports publishing and if it is published)
394
394
*/
395
395
revisionId?: string|null;
396
396
/**
397
-
* The form's settings. This must be updated with UpdateSettingsRequest; it is ignored during `forms.create` and UpdateFormInfoRequest.
397
+
* The form's settings. This must be updated with UpdateSettingsRequest; it is ignored during CreateForm and UpdateFormInfoRequest.
398
398
*/
399
399
settings?: Schema$FormSettings;
400
400
}
@@ -538,7 +538,7 @@ export namespace forms_v1 {
538
538
*/
539
539
description?: string|null;
540
540
/**
541
-
* Output only. The title of the document which is visible in Drive. If `Info.title` is empty, `document_title` may appear in its place in the Google Forms UI and be visible to responders. `document_title` can be set on create, but cannot be modified by a batchUpdate request. Please use the [Google Drive API](https://developers.google.com/drive/api/v3/reference/files/update) if you need to programmatically update `document_title`.
541
+
* Output only. The title of the document which is visible in Drive. If Info.title is empty, `document_title` may appear in its place in the Google Forms UI and be visible to responders. `document_title` can be set on create, but cannot be modified by a batchUpdate request. Please use the [Google Drive API](https://developers.google.com/drive/api/v3/reference/files/update) if you need to programmatically update `document_title`.
542
542
*/
543
543
documentTitle?: string|null;
544
544
/**
@@ -882,11 +882,11 @@ export namespace forms_v1 {
882
882
updateMask?: string|null;
883
883
}
884
884
/**
885
-
* The response of a `SetPublishSettings` request.
885
+
* The response of a SetPublishSettings request.
886
886
*/
887
887
exportinterfaceSchema$SetPublishSettingsResponse{
888
888
/**
889
-
* Required. The ID of the Form. This is same as the `Form.form_id` field.
889
+
* Required. The ID of the Form. This is same as the Form.form_id field.
0 commit comments