Skip to content

Commit d803507

Browse files
feat: Automated regeneration of SearchAds360 client (googleapis#12507)
Auto-created at 2024-11-10 13:15:47 +0000 using the toys pull request generator.
1 parent 0f8a571 commit d803507

9 files changed

+213
-3
lines changed

clients/search_ads360/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_search_ads360, "~> 0.8"}]
14+
[{:google_api_search_ads360, "~> 0.9"}]
1515
end
1616
```
1717

clients/search_ads360/lib/google_api/search_ads360/v0/metadata.ex

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

23-
@discovery_revision "20241002"
23+
@discovery_revision "20241108"
2424

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

clients/search_ads360/lib/google_api/search_ads360/v0/model/google_ads_searchads360_v0_resources__ad_group_ad.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGro
2323
2424
* `ad` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_Ad.t`, *default:* `nil`) - Immutable. The ad.
2525
* `creationTime` (*type:* `String.t`, *default:* `nil`) - Output only. The timestamp when this ad_group_ad was created. The datetime is in the customer's time zone and in "yyyy-MM-dd HH:mm:ss.ssssss" format.
26+
* `effectiveLabels` (*type:* `list(String.t)`, *default:* `nil`) - Output only. The resource names of effective labels attached to this ad. An effective label is a label inherited or directly assigned to this ad.
2627
* `engineId` (*type:* `String.t`, *default:* `nil`) - Output only. ID of the ad in the external engine account. This field is for Search Ads 360 account only, for example, Yahoo Japan, Microsoft, Baidu etc. For non-Search Ads 360 entity, use "ad_group_ad.ad.id" instead.
2728
* `engineStatus` (*type:* `String.t`, *default:* `nil`) - Output only. Additional status of the ad in the external engine account. Possible statuses (depending on the type of external account) include active, eligible, pending review, etc.
2829
* `labels` (*type:* `list(String.t)`, *default:* `nil`) - Output only. The resource names of labels attached to this ad group ad.
@@ -36,6 +37,7 @@ defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGro
3637
@type t :: %__MODULE__{
3738
:ad => GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_Ad.t() | nil,
3839
:creationTime => String.t() | nil,
40+
:effectiveLabels => list(String.t()) | nil,
3941
:engineId => String.t() | nil,
4042
:engineStatus => String.t() | nil,
4143
:labels => list(String.t()) | nil,
@@ -46,6 +48,7 @@ defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGro
4648

4749
field(:ad, as: GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_Ad)
4850
field(:creationTime)
51+
field(:effectiveLabels, type: :list)
4952
field(:engineId)
5053
field(:engineStatus)
5154
field(:labels, type: :list)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# Copyright 2019 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
# NOTE: This file is auto generated by the elixir code generator program.
16+
# Do not edit this file manually.
17+
18+
defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupAdEffectiveLabel do
19+
@moduledoc """
20+
A relationship between an ad group ad and an effective label. An effective label is a label inherited or directly assigned to this ad group ad.
21+
22+
## Attributes
23+
24+
* `adGroupAd` (*type:* `String.t`, *default:* `nil`) - Immutable. The ad group ad to which the effective label is attached.
25+
* `label` (*type:* `String.t`, *default:* `nil`) - Immutable. The effective label assigned to the ad group ad.
26+
* `ownerCustomerId` (*type:* `String.t`, *default:* `nil`) - Output only. The ID of the Customer which owns the effective label.
27+
* `resourceName` (*type:* `String.t`, *default:* `nil`) - Immutable. The resource name of the ad group ad effective label. Ad group ad effective label resource names have the form: `customers/{customer_id}/adGroupAdEffectiveLabels/{ad_group_id}~{ad_id}~{label_id}`
28+
"""
29+
30+
use GoogleApi.Gax.ModelBase
31+
32+
@type t :: %__MODULE__{
33+
:adGroupAd => String.t() | nil,
34+
:label => String.t() | nil,
35+
:ownerCustomerId => String.t() | nil,
36+
:resourceName => String.t() | nil
37+
}
38+
39+
field(:adGroupAd)
40+
field(:label)
41+
field(:ownerCustomerId)
42+
field(:resourceName)
43+
end
44+
45+
defimpl Poison.Decoder,
46+
for: GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupAdEffectiveLabel do
47+
def decode(value, options) do
48+
GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupAdEffectiveLabel.decode(
49+
value,
50+
options
51+
)
52+
end
53+
end
54+
55+
defimpl Poison.Encoder,
56+
for: GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupAdEffectiveLabel do
57+
def encode(value, options) do
58+
GoogleApi.Gax.ModelBase.encode(value, options)
59+
end
60+
end

clients/search_ads360/lib/google_api/search_ads360/v0/model/google_ads_searchads360_v0_resources__ad_group_criterion.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGro
2828
* `creationTime` (*type:* `String.t`, *default:* `nil`) - Output only. The timestamp when this ad group criterion was created. The timestamp is in the customer's time zone and in "yyyy-MM-dd HH:mm:ss" format.
2929
* `criterionId` (*type:* `String.t`, *default:* `nil`) - Output only. The ID of the criterion.
3030
* `effectiveCpcBidMicros` (*type:* `String.t`, *default:* `nil`) - Output only. The effective CPC (cost-per-click) bid.
31+
* `effectiveLabels` (*type:* `list(String.t)`, *default:* `nil`) - Output only. The resource names of effective labels attached to this ad group criterion. An effective label is a label inherited or directly assigned to this ad group criterion.
3132
* `engineId` (*type:* `String.t`, *default:* `nil`) - Output only. ID of the ad group criterion in the external engine account. This field is for non-Google Ads account only, for example, Yahoo Japan, Microsoft, Baidu etc. For Google Ads entity, use "ad_group_criterion.criterion_id" instead.
3233
* `engineStatus` (*type:* `String.t`, *default:* `nil`) - Output only. The Engine Status for ad group criterion.
3334
* `finalUrlSuffix` (*type:* `String.t`, *default:* `nil`) - URL template for appending params to final URL.
@@ -60,6 +61,7 @@ defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGro
6061
:creationTime => String.t() | nil,
6162
:criterionId => String.t() | nil,
6263
:effectiveCpcBidMicros => String.t() | nil,
64+
:effectiveLabels => list(String.t()) | nil,
6365
:engineId => String.t() | nil,
6466
:engineStatus => String.t() | nil,
6567
:finalUrlSuffix => String.t() | nil,
@@ -99,6 +101,7 @@ defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGro
99101
field(:creationTime)
100102
field(:criterionId)
101103
field(:effectiveCpcBidMicros)
104+
field(:effectiveLabels, type: :list)
102105
field(:engineId)
103106
field(:engineStatus)
104107
field(:finalUrlSuffix)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Copyright 2019 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
# NOTE: This file is auto generated by the elixir code generator program.
16+
# Do not edit this file manually.
17+
18+
defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupCriterionEffectiveLabel do
19+
@moduledoc """
20+
A relationship between an ad group criterion and an effective label. An effective label is a label inherited or directly assigned to this ad group criterion.
21+
22+
## Attributes
23+
24+
* `adGroupCriterion` (*type:* `String.t`, *default:* `nil`) - Immutable. The ad group criterion to which the effective label is attached.
25+
* `label` (*type:* `String.t`, *default:* `nil`) - Immutable. The effective label assigned to the ad group criterion.
26+
* `ownerCustomerId` (*type:* `String.t`, *default:* `nil`) - Output only. The ID of the Customer which owns the effective label.
27+
* `resourceName` (*type:* `String.t`, *default:* `nil`) - Immutable. The resource name of the ad group criterion effective label. Ad group criterion effective label resource names have the form: `customers/{customer_id}/adGroupCriterionEffectiveLabels/{ad_group_id}~{criterion_id}~{label_id}`
28+
"""
29+
30+
use GoogleApi.Gax.ModelBase
31+
32+
@type t :: %__MODULE__{
33+
:adGroupCriterion => String.t() | nil,
34+
:label => String.t() | nil,
35+
:ownerCustomerId => String.t() | nil,
36+
:resourceName => String.t() | nil
37+
}
38+
39+
field(:adGroupCriterion)
40+
field(:label)
41+
field(:ownerCustomerId)
42+
field(:resourceName)
43+
end
44+
45+
defimpl Poison.Decoder,
46+
for:
47+
GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupCriterionEffectiveLabel do
48+
def decode(value, options) do
49+
GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupCriterionEffectiveLabel.decode(
50+
value,
51+
options
52+
)
53+
end
54+
end
55+
56+
defimpl Poison.Encoder,
57+
for:
58+
GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupCriterionEffectiveLabel do
59+
def encode(value, options) do
60+
GoogleApi.Gax.ModelBase.encode(value, options)
61+
end
62+
end
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Copyright 2019 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
# NOTE: This file is auto generated by the elixir code generator program.
16+
# Do not edit this file manually.
17+
18+
defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_UserLocationView do
19+
@moduledoc """
20+
A user location view. User Location View includes all metrics aggregated at the country level, one row per country. It reports metrics at the actual physical location of the user by targeted or not targeted location. If other segment fields are used, you may get more than one row per country.
21+
22+
## Attributes
23+
24+
* `countryCriterionId` (*type:* `String.t`, *default:* `nil`) - Output only. Criterion Id for the country.
25+
* `resourceName` (*type:* `String.t`, *default:* `nil`) - Output only. The resource name of the user location view. UserLocation view resource names have the form: `customers/{customer_id}/userLocationViews/{country_criterion_id}~{targeting_location}`
26+
* `targetingLocation` (*type:* `boolean()`, *default:* `nil`) - Output only. Indicates whether location was targeted or not.
27+
"""
28+
29+
use GoogleApi.Gax.ModelBase
30+
31+
@type t :: %__MODULE__{
32+
:countryCriterionId => String.t() | nil,
33+
:resourceName => String.t() | nil,
34+
:targetingLocation => boolean() | nil
35+
}
36+
37+
field(:countryCriterionId)
38+
field(:resourceName)
39+
field(:targetingLocation)
40+
end
41+
42+
defimpl Poison.Decoder,
43+
for: GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_UserLocationView do
44+
def decode(value, options) do
45+
GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_UserLocationView.decode(
46+
value,
47+
options
48+
)
49+
end
50+
end
51+
52+
defimpl Poison.Encoder,
53+
for: GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_UserLocationView do
54+
def encode(value, options) do
55+
GoogleApi.Gax.ModelBase.encode(value, options)
56+
end
57+
end

clients/search_ads360/lib/google_api/search_ads360/v0/model/google_ads_searchads360_v0_services__search_ads360_row.ex

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Services_Search
3030
* `conversionCustomVariable` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_ConversionCustomVariable.t`, *default:* `nil`) - The conversion custom variable referenced in the query.
3131
* `adGroupAsset` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupAsset.t`, *default:* `nil`) - The ad group asset referenced in the query.
3232
* `geoTargetConstant` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_GeoTargetConstant.t`, *default:* `nil`) - The geo target constant referenced in the query.
33+
* `adGroupAdEffectiveLabel` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupAdEffectiveLabel.t`, *default:* `nil`) - The ad group ad effective label referenced in the query.
3334
* `adGroupAd` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupAd.t`, *default:* `nil`) - The ad referenced in the query.
3435
* `cartDataSalesView` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_CartDataSalesView.t`, *default:* `nil`) - The cart data sales view referenced in the query.
3536
* `adGroupEffectiveLabel` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupEffectiveLabel.t`, *default:* `nil`) - The ad group effective label referenced in the query.
@@ -51,6 +52,7 @@ defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Services_Search
5152
* `campaignCriterion` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_CampaignCriterion.t`, *default:* `nil`) - The campaign criterion referenced in the query.
5253
* `assetGroupSignal` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AssetGroupSignal.t`, *default:* `nil`) - The asset group signal referenced in the query.
5354
* `languageConstant` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_LanguageConstant.t`, *default:* `nil`) - The language constant referenced in the query.
55+
* `adGroupCriterionEffectiveLabel` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupCriterionEffectiveLabel.t`, *default:* `nil`) - The ad group criterion effective label referenced in the query.
5456
* `userList` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_UserList.t`, *default:* `nil`) - The user list referenced in the query.
5557
* `customerAsset` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_CustomerAsset.t`, *default:* `nil`) - The customer asset referenced in the query.
5658
* `campaignAudienceView` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_CampaignAudienceView.t`, *default:* `nil`) - The campaign audience view referenced in the query.
@@ -71,6 +73,7 @@ defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Services_Search
7173
* `adGroupBidModifier` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupBidModifier.t`, *default:* `nil`) - The bid modifier referenced in the query.
7274
* `genderView` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_GenderView.t`, *default:* `nil`) - The gender view referenced in the query.
7375
* `adGroupAssetSet` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupAssetSet.t`, *default:* `nil`) - The ad group asset set referenced in the query.
76+
* `userLocationView` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_UserLocationView.t`, *default:* `nil`) - The user location view referenced in the query.
7477
* `accessibleBiddingStrategy` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AccessibleBiddingStrategy.t`, *default:* `nil`) - The accessible bidding strategy referenced in the query.
7578
* `adGroupCriterionLabel` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupCriterionLabel.t`, *default:* `nil`) - The ad group criterion label referenced in the query.
7679
* `productGroupView` (*type:* `GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_ProductGroupView.t`, *default:* `nil`) - The product group view referenced in the query.
@@ -106,6 +109,9 @@ defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Services_Search
106109
:geoTargetConstant =>
107110
GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_GeoTargetConstant.t()
108111
| nil,
112+
:adGroupAdEffectiveLabel =>
113+
GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupAdEffectiveLabel.t()
114+
| nil,
109115
:adGroupAd =>
110116
GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupAd.t() | nil,
111117
:cartDataSalesView =>
@@ -161,6 +167,9 @@ defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Services_Search
161167
:languageConstant =>
162168
GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_LanguageConstant.t()
163169
| nil,
170+
:adGroupCriterionEffectiveLabel =>
171+
GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupCriterionEffectiveLabel.t()
172+
| nil,
164173
:userList =>
165174
GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_UserList.t() | nil,
166175
:customerAsset =>
@@ -215,6 +224,9 @@ defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Services_Search
215224
:adGroupAssetSet =>
216225
GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupAssetSet.t()
217226
| nil,
227+
:userLocationView =>
228+
GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_UserLocationView.t()
229+
| nil,
218230
:accessibleBiddingStrategy =>
219231
GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AccessibleBiddingStrategy.t()
220232
| nil,
@@ -265,6 +277,10 @@ defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Services_Search
265277
as: GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_GeoTargetConstant
266278
)
267279

280+
field(:adGroupAdEffectiveLabel,
281+
as: GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupAdEffectiveLabel
282+
)
283+
268284
field(:adGroupAd, as: GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupAd)
269285

270286
field(:cartDataSalesView,
@@ -345,6 +361,11 @@ defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Services_Search
345361
as: GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_LanguageConstant
346362
)
347363

364+
field(:adGroupCriterionEffectiveLabel,
365+
as:
366+
GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupCriterionEffectiveLabel
367+
)
368+
348369
field(:userList, as: GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_UserList)
349370

350371
field(:customerAsset,
@@ -414,6 +435,10 @@ defmodule GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Services_Search
414435
as: GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AdGroupAssetSet
415436
)
416437

438+
field(:userLocationView,
439+
as: GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_UserLocationView
440+
)
441+
417442
field(:accessibleBiddingStrategy,
418443
as: GoogleApi.SearchAds360.V0.Model.GoogleAdsSearchads360V0Resources_AccessibleBiddingStrategy
419444
)

clients/search_ads360/mix.exs

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

21-
@version "0.8.0"
21+
@version "0.9.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)