Skip to content

Commit 7a0a022

Browse files
feat: Automated regeneration of DFAReporting client (googleapis#13004)
Auto-created at 2025-02-20 13:17:14 +0000 using the toys pull request generator.
1 parent ab5839a commit 7a0a022

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

clients/dfa_reporting/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_dfa_reporting, "~> 0.30"}]
14+
[{:google_api_dfa_reporting, "~> 0.31"}]
1515
end
1616
```
1717

clients/dfa_reporting/lib/google_api/dfa_reporting/v4/metadata.ex

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

23-
@discovery_revision "20240926"
23+
@discovery_revision "20250218"
2424

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

clients/dfa_reporting/lib/google_api/dfa_reporting/v4/model/cart_data.ex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ defmodule GoogleApi.DFAReporting.V4.Model.CartData do
2222
## Attributes
2323
2424
* `items` (*type:* `list(GoogleApi.DFAReporting.V4.Model.CartDataItem.t)`, *default:* `nil`) - Data of the items purchased.
25-
* `merchantFeedLabel` (*type:* `String.t`, *default:* `nil`) - The feed labels associated with the feed where your items are uploaded. For more information, please refer to ​​ https://support.google.com/merchants/answer/12453549. This is a required field.
26-
* `merchantFeedLanguage` (*type:* `String.t`, *default:* `nil`) - The language associated with the feed where your items are uploaded. Use ISO 639-1 language codes. This field is needed only when item IDs are not unique across multiple Merchant Center feeds.
27-
* `merchantId` (*type:* `String.t`, *default:* `nil`) - The Merchant Center ID where the items are uploaded. This is a required field.
25+
* `merchantFeedLabel` (*type:* `String.t`, *default:* `nil`) - The feed labels associated with the feed where your items are uploaded. For more information, please refer to ​​ https://support.google.com/merchants/answer/12453549. Providing the feed label reduces ambiguity in identifying the right offer details.
26+
* `merchantFeedLanguage` (*type:* `String.t`, *default:* `nil`) - The language associated with the feed where your items are uploaded. Use ISO 639-1 language codes. Providing the feed language reduces ambiguity in identifying the right offer details.
27+
* `merchantId` (*type:* `String.t`, *default:* `nil`) - The Merchant Center ID where the items are uploaded. Providing Merchant Center ID reduces ambiguity in identifying the right offer details.
2828
"""
2929

3030
use GoogleApi.Gax.ModelBase

clients/dfa_reporting/lib/google_api/dfa_reporting/v4/model/conversion.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ defmodule GoogleApi.DFAReporting.V4.Model.Conversion do
4242
* `timestampMicros` (*type:* `String.t`, *default:* `nil`) - The timestamp of conversion, in Unix epoch micros. This is a required field.
4343
* `treatmentForUnderage` (*type:* `boolean()`, *default:* `nil`) - Whether this particular request may come from a user under the age of 16 (may differ by country), under compliance with the European Union's General Data Protection Regulation (GDPR).
4444
* `userIdentifiers` (*type:* `list(GoogleApi.DFAReporting.V4.Model.UserIdentifier.t)`, *default:* `nil`) - The user identifiers to enhance the conversion. The maximum number of user identifiers for each conversion is 5.
45-
* `value` (*type:* `float()`, *default:* `nil`) - The value of the conversion. This is a required field.
45+
* `value` (*type:* `float()`, *default:* `nil`) - The value of the conversion. Interpreted in CM360 Floodlight config parent advertiser's currency code. This is a required field.
4646
"""
4747

4848
use GoogleApi.Gax.ModelBase

clients/dfa_reporting/lib/google_api/dfa_reporting/v4/model/tag_setting.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ defmodule GoogleApi.DFAReporting.V4.Model.TagSetting do
2424
* `additionalKeyValues` (*type:* `String.t`, *default:* `nil`) - Additional key-values to be included in tags. Each key-value pair must be of the form key=value, and pairs must be separated by a semicolon (;). Keys and values must not contain commas. For example, id=2;color=red is a valid value for this field.
2525
* `includeClickThroughUrls` (*type:* `boolean()`, *default:* `nil`) - Whether static landing page URLs should be included in the tags. New placements will default to the value set on their site.
2626
* `includeClickTracking` (*type:* `boolean()`, *default:* `nil`) - Whether click-tracking string should be included in the tags.
27+
* `includeUnescapedlpurlMacro` (*type:* `boolean()`, *default:* `nil`) - Optional. Indicates that the unescapedlpurl macro should be included in the tag for the static landing page. New placements will default to the value set on their site.
2728
* `keywordOption` (*type:* `String.t`, *default:* `nil`) - Option specifying how keywords are embedded in ad tags. This setting can be used to specify whether keyword placeholders are inserted in placement tags for this site. Publishers can then add keywords to those placeholders.
2829
"""
2930

@@ -33,12 +34,14 @@ defmodule GoogleApi.DFAReporting.V4.Model.TagSetting do
3334
:additionalKeyValues => String.t() | nil,
3435
:includeClickThroughUrls => boolean() | nil,
3536
:includeClickTracking => boolean() | nil,
37+
:includeUnescapedlpurlMacro => boolean() | nil,
3638
:keywordOption => String.t() | nil
3739
}
3840

3941
field(:additionalKeyValues)
4042
field(:includeClickThroughUrls)
4143
field(:includeClickTracking)
44+
field(:includeUnescapedlpurlMacro)
4245
field(:keywordOption)
4346
end
4447

clients/dfa_reporting/mix.exs

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

21-
@version "0.30.0"
21+
@version "0.31.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)