Skip to content

Commit 3b48125

Browse files
feat: Automated regeneration of Forms client (googleapis#12882)
Auto-created at 2025-01-28 13:12:45 +0000 using the toys pull request generator.
1 parent 37a6e40 commit 3b48125

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

clients/forms/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding
1111

1212
```elixir
1313
def deps do
14-
[{:google_api_forms, "~> 0.4"}]
14+
[{:google_api_forms, "~> 0.5"}]
1515
end
1616
```
1717

clients/forms/lib/google_api/forms/v1/metadata.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule GoogleApi.Forms.V1 do
2020
API client metadata for GoogleApi.Forms.V1.
2121
"""
2222

23-
@discovery_revision "20241112"
23+
@discovery_revision "20250121"
2424

2525
def discovery_revision(), do: @discovery_revision
2626
end

clients/forms/lib/google_api/forms/v1/model/form_settings.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,18 @@ defmodule GoogleApi.Forms.V1.Model.FormSettings do
2121
2222
## Attributes
2323
24+
* `emailCollectionType` (*type:* `String.t`, *default:* `nil`) - Optional. Kind of email collection configured in the form.
2425
* `quizSettings` (*type:* `GoogleApi.Forms.V1.Model.QuizSettings.t`, *default:* `nil`) - Settings related to quiz forms and grading.
2526
"""
2627

2728
use GoogleApi.Gax.ModelBase
2829

2930
@type t :: %__MODULE__{
31+
:emailCollectionType => String.t() | nil,
3032
:quizSettings => GoogleApi.Forms.V1.Model.QuizSettings.t() | nil
3133
}
3234

35+
field(:emailCollectionType)
3336
field(:quizSettings, as: GoogleApi.Forms.V1.Model.QuizSettings)
3437
end
3538

clients/forms/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
defmodule GoogleApi.Forms.Mixfile do
1919
use Mix.Project
2020

21-
@version "0.4.0"
21+
@version "0.5.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)