20
20
use Google \Service \Forms \BatchUpdateFormRequest ;
21
21
use Google \Service \Forms \BatchUpdateFormResponse ;
22
22
use Google \Service \Forms \Form ;
23
+ use Google \Service \Forms \SetPublishSettingsRequest ;
24
+ use Google \Service \Forms \SetPublishSettingsResponse ;
23
25
24
26
/**
25
27
* The "forms" collection of methods.
@@ -57,6 +59,10 @@ public function batchUpdate($formId, BatchUpdateFormRequest $postBody, $optParam
57
59
*
58
60
* @param Form $postBody
59
61
* @param array $optParams Optional parameters.
62
+ *
63
+ * @opt_param bool unpublished Optional. Whether the form is unpublished. If set
64
+ * to `true`, the form doesn't accept responses. If set to `false` or unset, the
65
+ * form is published and accepts responses.
60
66
* @return Form
61
67
* @throws \Google\Service\Exception
62
68
*/
@@ -80,6 +86,23 @@ public function get($formId, $optParams = [])
80
86
$ params = array_merge ($ params , $ optParams );
81
87
return $ this ->call ('get ' , [$ params ], Form::class);
82
88
}
89
+ /**
90
+ * Updates the publish settings of a form. Legacy forms aren't supported because
91
+ * they don't have the `publish_settings` field. (forms.setPublishSettings)
92
+ *
93
+ * @param string $formId Required. The ID of the form. You can get the id from
94
+ * `Form.form_id` field.
95
+ * @param SetPublishSettingsRequest $postBody
96
+ * @param array $optParams Optional parameters.
97
+ * @return SetPublishSettingsResponse
98
+ * @throws \Google\Service\Exception
99
+ */
100
+ public function setPublishSettings ($ formId , SetPublishSettingsRequest $ postBody , $ optParams = [])
101
+ {
102
+ $ params = ['formId ' => $ formId , 'postBody ' => $ postBody ];
103
+ $ params = array_merge ($ params , $ optParams );
104
+ return $ this ->call ('setPublishSettings ' , [$ params ], SetPublishSettingsResponse::class);
105
+ }
83
106
}
84
107
85
108
// Adding a class alias for backwards compatibility with the previous class name.
0 commit comments