File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding
1111
1212``` elixir
1313def deps do
14- [{:google_api_forms , " ~> 0.4 " }]
14+ [{:google_api_forms , " ~> 0.5 " }]
1515end
1616```
1717
Original file line number Diff line number Diff 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
2626end
Original file line number Diff line number Diff 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 )
3437end
3538
Original file line number Diff line number Diff line change 1818defmodule 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 [
You can’t perform that action at this time.
0 commit comments