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: clients/forms/lib/google_api/forms/v1/model/form.ex
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -25,9 +25,9 @@ defmodule GoogleApi.Forms.V1.Model.Form do
25
25
* `info` (*type:* `GoogleApi.Forms.V1.Model.Info.t`, *default:* `nil`) - Required. The title and description of the form.
26
26
* `items` (*type:* `list(GoogleApi.Forms.V1.Model.Item.t)`, *default:* `nil`) - Required. A list of the form's items, which can include section headers, questions, embedded media, etc.
27
27
* `linkedSheetId` (*type:* `String.t`, *default:* `nil`) - Output only. The ID of the linked Google Sheet which is accumulating responses from this Form (if such a Sheet exists).
28
-
* `publishSettings` (*type:* `GoogleApi.Forms.V1.Model.PublishSettings.t`, *default:* `nil`) - 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.
29
-
* `responderUri` (*type:* `String.t`, *default:* `nil`) - 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.
30
-
* `revisionId` (*type:* `String.t`, *default:* `nil`) - 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.
28
+
* `publishSettings` (*type:* `GoogleApi.Forms.V1.Model.PublishSettings.t`, *default:* `nil`) - 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.
29
+
* `responderUri` (*type:* `String.t`, *default:* `nil`) - 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 will be the published form URI.
30
+
* `revisionId` (*type:* `String.t`, *default:* `nil`) - 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)
31
31
* `settings` (*type:* `GoogleApi.Forms.V1.Model.FormSettings.t`, *default:* `nil`) - The form's settings. This must be updated with UpdateSettingsRequest; it is ignored during `forms.create` and UpdateFormInfoRequest.
0 commit comments