Skip to content

Commit 3b22ab0

Browse files
1 parent 0a49760 commit 3b22ab0

File tree

7 files changed

+33
-33
lines changed

7 files changed

+33
-33
lines changed

clients/google-api-services-forms/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-forms</artifactId>
25-
<version>v1-rev20250415-2.0.0</version>
25+
<version>v1-rev20250422-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-forms:v1-rev20250415-2.0.0'
38+
implementation 'com.google.apis:google-api-services-forms:v1-rev20250422-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-forms/v1/2.0.0/com/google/api/services/forms/v1/Forms.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ public Get set(String parameterName, Object value) {
534534
* This request holds the parameters needed by the forms server. After setting any optional
535535
* parameters, call the {@link SetPublishSettings#execute()} method to invoke the remote operation.
536536
*
537-
* @param formId Required. The ID of the form. You can get the id from `Form.form_id` field.
537+
* @param formId Required. The ID of the form. You can get the id from Form.form_id field.
538538
* @param content the {@link com.google.api.services.forms.v1.model.SetPublishSettingsRequest}
539539
* @return the request
540540
*/
@@ -560,7 +560,7 @@ public class SetPublishSettings extends FormsRequest<com.google.api.services.for
560560
* bstractGoogleClientRequest)} must be called to initialize this instance immediately after
561561
* invoking the constructor. </p>
562562
*
563-
* @param formId Required. The ID of the form. You can get the id from `Form.form_id` field.
563+
* @param formId Required. The ID of the form. You can get the id from Form.form_id field.
564564
* @param content the {@link com.google.api.services.forms.v1.model.SetPublishSettingsRequest}
565565
* @since 1.13
566566
*/
@@ -624,17 +624,17 @@ public SetPublishSettings setUploadProtocol(java.lang.String uploadProtocol) {
624624
return (SetPublishSettings) super.setUploadProtocol(uploadProtocol);
625625
}
626626

627-
/** Required. The ID of the form. You can get the id from `Form.form_id` field. */
627+
/** Required. The ID of the form. You can get the id from Form.form_id field. */
628628
@com.google.api.client.util.Key
629629
private java.lang.String formId;
630630

631-
/** Required. The ID of the form. You can get the id from `Form.form_id` field.
631+
/** Required. The ID of the form. You can get the id from Form.form_id field.
632632
*/
633633
public java.lang.String getFormId() {
634634
return formId;
635635
}
636636

637-
/** Required. The ID of the form. You can get the id from `Form.form_id` field. */
637+
/** Required. The ID of the form. You can get the id from Form.form_id field. */
638638
public SetPublishSettings setFormId(java.lang.String formId) {
639639
this.formId = formId;
640640
return this;

clients/google-api-services-forms/v1/2.0.0/com/google/api/services/forms/v1/model/Form.java

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ public final class Form extends com.google.api.client.json.GenericJson {
6262

6363
/**
6464
* Output only. The publishing settings for a form. This field isn't set for legacy forms because
65-
* they don't have the `publish_settings` field. All newly created forms support publish settings.
66-
* Forms with `publish_settings` value set can call SetPublishSettings API to publish or unpublish
65+
* they don't have the publish_settings field. All newly created forms support publish settings.
66+
* Forms with publish_settings value set can call SetPublishSettings API to publish or unpublish
6767
* the form.
6868
* The value may be {@code null}.
6969
*/
@@ -72,7 +72,7 @@ public final class Form extends com.google.api.client.json.GenericJson {
7272

7373
/**
7474
* Output only. The form URI to share with responders. This opens a page that allows the user to
75-
* submit responses but not edit the questions. For forms that have `publish_settings` value set,
75+
* submit responses but not edit the questions. For forms that have publish_settings value set,
7676
* this is the published form URI.
7777
* The value may be {@code null}.
7878
*/
@@ -88,15 +88,15 @@ public final class Form extends com.google.api.client.json.GenericJson {
8888
* changed ID (for the same form and user) usually means the form *content* has been updated;
8989
* however, a changed ID can also be due to internal factors such as ID format changes. Form
9090
* content excludes form metadata, including: * sharing settings (who has access to the form) *
91-
* `publish_settings` (if the form supports publishing and if it is published)
91+
* publish_settings (if the form supports publishing and if it is published)
9292
* The value may be {@code null}.
9393
*/
9494
@com.google.api.client.util.Key
9595
private java.lang.String revisionId;
9696

9797
/**
9898
* The form's settings. This must be updated with UpdateSettingsRequest; it is ignored during
99-
* `forms.create` and UpdateFormInfoRequest.
99+
* CreateForm and UpdateFormInfoRequest.
100100
* The value may be {@code null}.
101101
*/
102102
@com.google.api.client.util.Key
@@ -176,8 +176,8 @@ public Form setLinkedSheetId(java.lang.String linkedSheetId) {
176176

177177
/**
178178
* Output only. The publishing settings for a form. This field isn't set for legacy forms because
179-
* they don't have the `publish_settings` field. All newly created forms support publish settings.
180-
* Forms with `publish_settings` value set can call SetPublishSettings API to publish or unpublish
179+
* they don't have the publish_settings field. All newly created forms support publish settings.
180+
* Forms with publish_settings value set can call SetPublishSettings API to publish or unpublish
181181
* the form.
182182
* @return value or {@code null} for none
183183
*/
@@ -187,8 +187,8 @@ public PublishSettings getPublishSettings() {
187187

188188
/**
189189
* Output only. The publishing settings for a form. This field isn't set for legacy forms because
190-
* they don't have the `publish_settings` field. All newly created forms support publish settings.
191-
* Forms with `publish_settings` value set can call SetPublishSettings API to publish or unpublish
190+
* they don't have the publish_settings field. All newly created forms support publish settings.
191+
* Forms with publish_settings value set can call SetPublishSettings API to publish or unpublish
192192
* the form.
193193
* @param publishSettings publishSettings or {@code null} for none
194194
*/
@@ -199,7 +199,7 @@ public Form setPublishSettings(PublishSettings publishSettings) {
199199

200200
/**
201201
* Output only. The form URI to share with responders. This opens a page that allows the user to
202-
* submit responses but not edit the questions. For forms that have `publish_settings` value set,
202+
* submit responses but not edit the questions. For forms that have publish_settings value set,
203203
* this is the published form URI.
204204
* @return value or {@code null} for none
205205
*/
@@ -209,7 +209,7 @@ public java.lang.String getResponderUri() {
209209

210210
/**
211211
* Output only. The form URI to share with responders. This opens a page that allows the user to
212-
* submit responses but not edit the questions. For forms that have `publish_settings` value set,
212+
* submit responses but not edit the questions. For forms that have publish_settings value set,
213213
* this is the published form URI.
214214
* @param responderUri responderUri or {@code null} for none
215215
*/
@@ -227,7 +227,7 @@ public Form setResponderUri(java.lang.String responderUri) {
227227
* changed ID (for the same form and user) usually means the form *content* has been updated;
228228
* however, a changed ID can also be due to internal factors such as ID format changes. Form
229229
* content excludes form metadata, including: * sharing settings (who has access to the form) *
230-
* `publish_settings` (if the form supports publishing and if it is published)
230+
* publish_settings (if the form supports publishing and if it is published)
231231
* @return value or {@code null} for none
232232
*/
233233
public java.lang.String getRevisionId() {
@@ -243,7 +243,7 @@ public java.lang.String getRevisionId() {
243243
* changed ID (for the same form and user) usually means the form *content* has been updated;
244244
* however, a changed ID can also be due to internal factors such as ID format changes. Form
245245
* content excludes form metadata, including: * sharing settings (who has access to the form) *
246-
* `publish_settings` (if the form supports publishing and if it is published)
246+
* publish_settings (if the form supports publishing and if it is published)
247247
* @param revisionId revisionId or {@code null} for none
248248
*/
249249
public Form setRevisionId(java.lang.String revisionId) {
@@ -253,7 +253,7 @@ public Form setRevisionId(java.lang.String revisionId) {
253253

254254
/**
255255
* The form's settings. This must be updated with UpdateSettingsRequest; it is ignored during
256-
* `forms.create` and UpdateFormInfoRequest.
256+
* CreateForm and UpdateFormInfoRequest.
257257
* @return value or {@code null} for none
258258
*/
259259
public FormSettings getSettings() {
@@ -262,7 +262,7 @@ public FormSettings getSettings() {
262262

263263
/**
264264
* The form's settings. This must be updated with UpdateSettingsRequest; it is ignored during
265-
* `forms.create` and UpdateFormInfoRequest.
265+
* CreateForm and UpdateFormInfoRequest.
266266
* @param settings settings or {@code null} for none
267267
*/
268268
public Form setSettings(FormSettings settings) {

clients/google-api-services-forms/v1/2.0.0/com/google/api/services/forms/v1/model/Info.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public final class Info extends com.google.api.client.json.GenericJson {
3737
private java.lang.String description;
3838

3939
/**
40-
* Output only. The title of the document which is visible in Drive. If `Info.title` is empty,
40+
* Output only. The title of the document which is visible in Drive. If Info.title is empty,
4141
* `document_title` may appear in its place in the Google Forms UI and be visible to responders.
4242
* `document_title` can be set on create, but cannot be modified by a batchUpdate request. Please
4343
* use the [Google Drive API](https://developers.google.com/drive/api/v3/reference/files/update)
@@ -72,7 +72,7 @@ public Info setDescription(java.lang.String description) {
7272
}
7373

7474
/**
75-
* Output only. The title of the document which is visible in Drive. If `Info.title` is empty,
75+
* Output only. The title of the document which is visible in Drive. If Info.title is empty,
7676
* `document_title` may appear in its place in the Google Forms UI and be visible to responders.
7777
* `document_title` can be set on create, but cannot be modified by a batchUpdate request. Please
7878
* use the [Google Drive API](https://developers.google.com/drive/api/v3/reference/files/update)
@@ -84,7 +84,7 @@ public java.lang.String getDocumentTitle() {
8484
}
8585

8686
/**
87-
* Output only. The title of the document which is visible in Drive. If `Info.title` is empty,
87+
* Output only. The title of the document which is visible in Drive. If Info.title is empty,
8888
* `document_title` may appear in its place in the Google Forms UI and be visible to responders.
8989
* `document_title` can be set on create, but cannot be modified by a batchUpdate request. Please
9090
* use the [Google Drive API](https://developers.google.com/drive/api/v3/reference/files/update)

clients/google-api-services-forms/v1/2.0.0/com/google/api/services/forms/v1/model/SetPublishSettingsResponse.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.forms.v1.model;
1818

1919
/**
20-
* The response of a `SetPublishSettings` request.
20+
* The response of a SetPublishSettings request.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Google Forms API. For a detailed explanation see:
@@ -30,7 +30,7 @@
3030
public final class SetPublishSettingsResponse extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Required. The ID of the Form. This is same as the `Form.form_id` field.
33+
* Required. The ID of the Form. This is same as the Form.form_id field.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
@@ -44,15 +44,15 @@ public final class SetPublishSettingsResponse extends com.google.api.client.json
4444
private PublishSettings publishSettings;
4545

4646
/**
47-
* Required. The ID of the Form. This is same as the `Form.form_id` field.
47+
* Required. The ID of the Form. This is same as the Form.form_id field.
4848
* @return value or {@code null} for none
4949
*/
5050
public java.lang.String getFormId() {
5151
return formId;
5252
}
5353

5454
/**
55-
* Required. The ID of the Form. This is same as the `Form.form_id` field.
55+
* Required. The ID of the Form. This is same as the Form.form_id field.
5656
* @param formId formId or {@code null} for none
5757
*/
5858
public SetPublishSettingsResponse setFormId(java.lang.String formId) {

clients/google-api-services-forms/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-forms</artifactId>
11-
<version>v1-rev20250415-2.0.0</version>
12-
<name>Google Forms API v1-rev20250415-2.0.0</name>
11+
<version>v1-rev20250422-2.0.0</version>
12+
<name>Google Forms API v1-rev20250422-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-forms/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-forms</artifactId>
25-
<version>v1-rev20250415-2.0.0</version>
25+
<version>v1-rev20250422-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-forms:v1-rev20250415-2.0.0'
38+
implementation 'com.google.apis:google-api-services-forms:v1-rev20250422-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)