@googleapis/searchads360 1.0.2 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -0
- package/build/v0.d.ts +1422 -56
- package/build/v0.js.map +1 -1
- package/package.json +1 -1
- package/v0.ts +1422 -56
package/v0.ts
CHANGED
|
@@ -126,6 +126,31 @@ export namespace searchads360_v0 {
|
|
|
126
126
|
}
|
|
127
127
|
}
|
|
128
128
|
|
|
129
|
+
/**
|
|
130
|
+
* Represents an AdSchedule criterion. AdSchedule is specified as the day of the week and a time interval within which ads will be shown. No more than six AdSchedules can be added for the same day.
|
|
131
|
+
*/
|
|
132
|
+
export interface Schema$GoogleAdsSearchads360V0Common__AdScheduleInfo {
|
|
133
|
+
/**
|
|
134
|
+
* Day of the week the schedule applies to. This field is required for CREATE operations and is prohibited on UPDATE operations.
|
|
135
|
+
*/
|
|
136
|
+
dayOfWeek?: string | null;
|
|
137
|
+
/**
|
|
138
|
+
* Ending hour in 24 hour time; 24 signifies end of the day. This field must be between 0 and 24, inclusive. This field is required for CREATE operations and is prohibited on UPDATE operations.
|
|
139
|
+
*/
|
|
140
|
+
endHour?: number | null;
|
|
141
|
+
/**
|
|
142
|
+
* Minutes after the end hour at which this schedule ends. The schedule is exclusive of the end minute. This field is required for CREATE operations and is prohibited on UPDATE operations.
|
|
143
|
+
*/
|
|
144
|
+
endMinute?: string | null;
|
|
145
|
+
/**
|
|
146
|
+
* Starting hour in 24 hour time. This field must be between 0 and 23, inclusive. This field is required for CREATE operations and is prohibited on UPDATE operations.
|
|
147
|
+
*/
|
|
148
|
+
startHour?: number | null;
|
|
149
|
+
/**
|
|
150
|
+
* Minutes after the start hour at which this schedule starts. This field is required for CREATE operations and is prohibited on UPDATE operations.
|
|
151
|
+
*/
|
|
152
|
+
startMinute?: string | null;
|
|
153
|
+
}
|
|
129
154
|
/**
|
|
130
155
|
* An age range criterion.
|
|
131
156
|
*/
|
|
@@ -135,6 +160,67 @@ export namespace searchads360_v0 {
|
|
|
135
160
|
*/
|
|
136
161
|
type?: string | null;
|
|
137
162
|
}
|
|
163
|
+
/**
|
|
164
|
+
* An AssetInteractionTarget segment.
|
|
165
|
+
*/
|
|
166
|
+
export interface Schema$GoogleAdsSearchads360V0Common__AssetInteractionTarget {
|
|
167
|
+
/**
|
|
168
|
+
* The asset resource name.
|
|
169
|
+
*/
|
|
170
|
+
asset?: string | null;
|
|
171
|
+
/**
|
|
172
|
+
* Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics. Indicates whether the interaction metrics occurred on the asset itself or a different asset or ad unit.
|
|
173
|
+
*/
|
|
174
|
+
interactionOnThisAsset?: boolean | null;
|
|
175
|
+
}
|
|
176
|
+
/**
|
|
177
|
+
* Contains the usage information of the asset.
|
|
178
|
+
*/
|
|
179
|
+
export interface Schema$GoogleAdsSearchads360V0Common__AssetUsage {
|
|
180
|
+
/**
|
|
181
|
+
* Resource name of the asset.
|
|
182
|
+
*/
|
|
183
|
+
asset?: string | null;
|
|
184
|
+
/**
|
|
185
|
+
* The served field type of the asset.
|
|
186
|
+
*/
|
|
187
|
+
servedAssetFieldType?: string | null;
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* An audience criterion.
|
|
191
|
+
*/
|
|
192
|
+
export interface Schema$GoogleAdsSearchads360V0Common__AudienceInfo {
|
|
193
|
+
/**
|
|
194
|
+
* The Audience resource name.
|
|
195
|
+
*/
|
|
196
|
+
audience?: string | null;
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* Business Profile location data synced from the linked Business Profile account.
|
|
200
|
+
*/
|
|
201
|
+
export interface Schema$GoogleAdsSearchads360V0Common__BusinessProfileLocation {
|
|
202
|
+
/**
|
|
203
|
+
* Advertiser specified label for the location on the Business Profile account. This is synced from the Business Profile account.
|
|
204
|
+
*/
|
|
205
|
+
labels?: string[] | null;
|
|
206
|
+
/**
|
|
207
|
+
* Listing ID of this Business Profile location. This is synced from the linked Business Profile account.
|
|
208
|
+
*/
|
|
209
|
+
listingId?: string | null;
|
|
210
|
+
/**
|
|
211
|
+
* Business Profile store code of this location. This is synced from the Business Profile account.
|
|
212
|
+
*/
|
|
213
|
+
storeCode?: string | null;
|
|
214
|
+
}
|
|
215
|
+
/**
|
|
216
|
+
* A call to action asset.
|
|
217
|
+
*/
|
|
218
|
+
export interface Schema$GoogleAdsSearchads360V0Common__CallToActionAsset {
|
|
219
|
+
/**
|
|
220
|
+
* Call to action.
|
|
221
|
+
*/
|
|
222
|
+
callToAction?: string | null;
|
|
223
|
+
}
|
|
138
224
|
/**
|
|
139
225
|
* A mapping that can be used by custom parameter tags in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
|
|
140
226
|
*/
|
|
@@ -174,6 +260,40 @@ export namespace searchads360_v0 {
|
|
|
174
260
|
*/
|
|
175
261
|
type?: string | null;
|
|
176
262
|
}
|
|
263
|
+
/**
|
|
264
|
+
* An Image asset.
|
|
265
|
+
*/
|
|
266
|
+
export interface Schema$GoogleAdsSearchads360V0Common__ImageAsset {
|
|
267
|
+
/**
|
|
268
|
+
* File size of the image asset in bytes.
|
|
269
|
+
*/
|
|
270
|
+
fileSize?: string | null;
|
|
271
|
+
/**
|
|
272
|
+
* Metadata for this image at its original size.
|
|
273
|
+
*/
|
|
274
|
+
fullSize?: Schema$GoogleAdsSearchads360V0Common__ImageDimension;
|
|
275
|
+
/**
|
|
276
|
+
* MIME type of the image asset.
|
|
277
|
+
*/
|
|
278
|
+
mimeType?: string | null;
|
|
279
|
+
}
|
|
280
|
+
/**
|
|
281
|
+
* Metadata for an image at a certain size, either original or resized.
|
|
282
|
+
*/
|
|
283
|
+
export interface Schema$GoogleAdsSearchads360V0Common__ImageDimension {
|
|
284
|
+
/**
|
|
285
|
+
* Height of the image.
|
|
286
|
+
*/
|
|
287
|
+
heightPixels?: string | null;
|
|
288
|
+
/**
|
|
289
|
+
* A URL that returns the image with this height and width.
|
|
290
|
+
*/
|
|
291
|
+
url?: string | null;
|
|
292
|
+
/**
|
|
293
|
+
* Width of the image.
|
|
294
|
+
*/
|
|
295
|
+
widthPixels?: string | null;
|
|
296
|
+
}
|
|
177
297
|
/**
|
|
178
298
|
* A Keyword criterion segment.
|
|
179
299
|
*/
|
|
@@ -368,11 +488,11 @@ export namespace searchads360_v0 {
|
|
|
368
488
|
*/
|
|
369
489
|
averageCost?: number | null;
|
|
370
490
|
/**
|
|
371
|
-
* The total cost of all clicks divided by the total number of clicks received.
|
|
491
|
+
* The total cost of all clicks divided by the total number of clicks received. This metric is a monetary value and returned in the customer's currency by default. See the metrics_currency parameter at https://developers.google.com/search-ads/reporting/query/query-structure#parameters_clause
|
|
372
492
|
*/
|
|
373
493
|
averageCpc?: number | null;
|
|
374
494
|
/**
|
|
375
|
-
* Average cost-per-thousand impressions (CPM).
|
|
495
|
+
* Average cost-per-thousand impressions (CPM). This metric is a monetary value and returned in the customer's currency by default. See the metrics_currency parameter at https://developers.google.com/search-ads/reporting/query/query-structure#parameters_clause
|
|
376
496
|
*/
|
|
377
497
|
averageCpm?: number | null;
|
|
378
498
|
/**
|
|
@@ -387,6 +507,38 @@ export namespace searchads360_v0 {
|
|
|
387
507
|
* The value of client account conversions. This only includes conversion actions which include_in_client_account_conversions_metric attribute is set to true. If you use conversion-based bidding, your bid strategies will optimize for these conversions.
|
|
388
508
|
*/
|
|
389
509
|
clientAccountConversionsValue?: number | null;
|
|
510
|
+
/**
|
|
511
|
+
* Client account cross-sell cost of goods sold (COGS) is the total cost of products sold as a result of advertising a different product. How it works: You report conversions with cart data for completed purchases on your website. If the ad that was interacted with before the purchase has an associated product (see Shopping Ads) then this product is considered the advertised product. Any product included in the order the customer places is a sold product. If these products don't match then this is considered cross-sell. Cross-sell cost of goods sold is the total cost of the products sold that weren't advertised. Example: Someone clicked on a Shopping ad for a hat then bought the same hat and a shirt. The hat has a cost of goods sold value of $3, the shirt has a cost of goods sold value of $5. The cross-sell cost of goods sold for this order is $5. This metric is only available if you report conversions with cart data. This metric is a monetary value and returned in the customer's currency by default. See the metrics_currency parameter at https://developers.google.com/search-ads/reporting/query/query-structure#parameters_clause
|
|
512
|
+
*/
|
|
513
|
+
clientAccountCrossSellCostOfGoodsSoldMicros?: string | null;
|
|
514
|
+
/**
|
|
515
|
+
* Client account cross-sell gross profit is the profit you made from products sold as a result of advertising a different product, minus cost of goods sold (COGS). How it works: You report conversions with cart data for completed purchases on your website. If the ad that was interacted with before the purchase has an associated product (see Shopping Ads) then this product is considered the advertised product. Any product included in the purchase is a sold product. If these products don't match then this is considered cross-sell. Cross-sell gross profit is the revenue you made from cross-sell attributed to your ads minus the cost of the goods sold. Example: Someone clicked on a Shopping ad for a hat then bought the same hat and a shirt. The shirt is priced $20 and has a cost of goods sold value of $5. The cross-sell gross profit of this order is $15 = $20 - $5. This metric is only available if you report conversions with cart data. This metric is a monetary value and returned in the customer's currency by default. See the metrics_currency parameter at https://developers.google.com/search-ads/reporting/query/query-structure#parameters_clause
|
|
516
|
+
*/
|
|
517
|
+
clientAccountCrossSellGrossProfitMicros?: string | null;
|
|
518
|
+
/**
|
|
519
|
+
* Client account cross-sell revenue is the total amount you made from products sold as a result of advertising a different product. How it works: You report conversions with cart data for completed purchases on your website. If the ad that was interacted with before the purchase has an associated product (see Shopping Ads) then this product is considered the advertised product. Any product included in the order the customer places is a sold product. If these products don't match then this is considered cross-sell. Cross-sell revenue is the total value you made from cross-sell attributed to your ads. Example: Someone clicked on a Shopping ad for a hat then bought the same hat and a shirt. The hat is priced $10 and the shirt is priced $20. The cross-sell revenue of this order is $20. This metric is only available if you report conversions with cart data. This metric is a monetary value and returned in the customer's currency by default. See the metrics_currency parameter at https://developers.google.com/search-ads/reporting/query/query-structure#parameters_clause
|
|
520
|
+
*/
|
|
521
|
+
clientAccountCrossSellRevenueMicros?: string | null;
|
|
522
|
+
/**
|
|
523
|
+
* Client account cross-sell units sold is the total number of products sold as a result of advertising a different product. How it works: You report conversions with cart data for completed purchases on your website. If the ad that was interacted with before the purchase has an associated product (see Shopping Ads) then this product is considered the advertised product. Any product included in the order the customer places is a sold product. If these products don't match then this is considered cross-sell. Cross-sell units sold is the total number of cross-sold products from all orders attributed to your ads. Example: Someone clicked on a Shopping ad for a hat then bought the same hat, a shirt and a jacket. The cross-sell units sold in this order is 2. This metric is only available if you report conversions with cart data.
|
|
524
|
+
*/
|
|
525
|
+
clientAccountCrossSellUnitsSold?: number | null;
|
|
526
|
+
/**
|
|
527
|
+
* Client account lead cost of goods sold (COGS) is the total cost of products sold as a result of advertising the same product. How it works: You report conversions with cart data for completed purchases on your website. If the ad that was interacted with has an associated product (see Shopping Ads) then this product is considered the advertised product. Any product included in the order the customer places is a sold product. If the advertised and sold products match, then the cost of these goods is counted under lead cost of goods sold. Example: Someone clicked on a Shopping ad for a hat then bought the same hat and a shirt. The hat has a cost of goods sold value of $3, the shirt has a cost of goods sold value of $5. The lead cost of goods sold for this order is $3. This metric is only available if you report conversions with cart data. This metric is a monetary value and returned in the customer's currency by default. See the metrics_currency parameter at https://developers.google.com/search-ads/reporting/query/query-structure#parameters_clause
|
|
528
|
+
*/
|
|
529
|
+
clientAccountLeadCostOfGoodsSoldMicros?: string | null;
|
|
530
|
+
/**
|
|
531
|
+
* Client account lead gross profit is the profit you made from products sold as a result of advertising the same product, minus cost of goods sold (COGS). How it works: You report conversions with cart data for completed purchases on your website. If the ad that was interacted with before the purchase has an associated product (see Shopping Ads) then this product is considered the advertised product. Any product included in the order the customer places is a sold product. If the advertised and sold products match, then the revenue you made from these sales minus the cost of goods sold is your lead gross profit. Example: Someone clicked on a Shopping ad for a hat then bought the same hat and a shirt. The hat is priced $10 and has a cost of goods sold value of $3. The lead gross profit of this order is $7 = $10 - $3. This metric is only available if you report conversions with cart data. This metric is a monetary value and returned in the customer's currency by default. See the metrics_currency parameter at https://developers.google.com/search-ads/reporting/query/query-structure#parameters_clause
|
|
532
|
+
*/
|
|
533
|
+
clientAccountLeadGrossProfitMicros?: string | null;
|
|
534
|
+
/**
|
|
535
|
+
* Client account lead revenue is the total amount you made from products sold as a result of advertising the same product. How it works: You report conversions with cart data for completed purchases on your website. If the ad that was interacted with before the purchase has an associated product (see Shopping Ads) then this product is considered the advertised product. Any product included in the order the customer places is a sold product. If the advertised and sold products match, then the total value you made from the sales of these products is shown under lead revenue. Example: Someone clicked on a Shopping ad for a hat then bought the same hat and a shirt. The hat is priced $10 and the shirt is priced $20. The lead revenue of this order is $10. This metric is only available if you report conversions with cart data. This metric is a monetary value and returned in the customer's currency by default. See the metrics_currency parameter at https://developers.google.com/search-ads/reporting/query/query-structure#parameters_clause
|
|
536
|
+
*/
|
|
537
|
+
clientAccountLeadRevenueMicros?: string | null;
|
|
538
|
+
/**
|
|
539
|
+
* Client account lead units sold is the total number of products sold as a result of advertising the same product. How it works: You report conversions with cart data for completed purchases on your website. If the ad that was interacted with before the purchase has an associated product (see Shopping Ads) then this product is considered the advertised product. Any product included in the order the customer places is a sold product. If the advertised and sold products match, then the total number of these products sold is shown under lead units sold. Example: Someone clicked on a Shopping ad for a hat then bought the same hat, a shirt and a jacket. The lead units sold in this order is 1. This metric is only available if you report conversions with cart data.
|
|
540
|
+
*/
|
|
541
|
+
clientAccountLeadUnitsSold?: number | null;
|
|
390
542
|
/**
|
|
391
543
|
* The total number of view-through conversions. These happen when a customer sees an image or rich media ad, then later completes a conversion on your site without interacting with (for example, clicking on) another ad.
|
|
392
544
|
*/
|
|
@@ -432,7 +584,7 @@ export namespace searchads360_v0 {
|
|
|
432
584
|
*/
|
|
433
585
|
conversionsValuePerCost?: number | null;
|
|
434
586
|
/**
|
|
435
|
-
* The sum of your cost-per-click (CPC) and cost-per-thousand impressions (CPM) costs during this period.
|
|
587
|
+
* The sum of your cost-per-click (CPC) and cost-per-thousand impressions (CPM) costs during this period. This metric is a monetary value and returned in the customer's currency by default. See the metrics_currency parameter at https://developers.google.com/search-ads/reporting/query/query-structure#parameters_clause
|
|
436
588
|
*/
|
|
437
589
|
costMicros?: string | null;
|
|
438
590
|
/**
|
|
@@ -455,6 +607,22 @@ export namespace searchads360_v0 {
|
|
|
455
607
|
* The sum of the value of cross-device conversions.
|
|
456
608
|
*/
|
|
457
609
|
crossDeviceConversionsValue?: number | null;
|
|
610
|
+
/**
|
|
611
|
+
* Cross-sell cost of goods sold (COGS) is the total cost of products sold as a result of advertising a different product. How it works: You report conversions with cart data for completed purchases on your website. If the ad that was interacted with before the purchase has an associated product (see Shopping Ads) then this product is considered the advertised product. Any product included in the order the customer places is a sold product. If these products don't match then this is considered cross-sell. Cross-sell cost of goods sold is the total cost of the products sold that weren't advertised. Example: Someone clicked on a Shopping ad for a hat then bought the same hat and a shirt. The hat has a cost of goods sold value of $3, the shirt has a cost of goods sold value of $5. The cross-sell cost of goods sold for this order is $5. This metric is only available if you report conversions with cart data. This metric is a monetary value and returned in the customer's currency by default. See the metrics_currency parameter at https://developers.google.com/search-ads/reporting/query/query-structure#parameters_clause
|
|
612
|
+
*/
|
|
613
|
+
crossSellCostOfGoodsSoldMicros?: string | null;
|
|
614
|
+
/**
|
|
615
|
+
* Cross-sell gross profit is the profit you made from products sold as a result of advertising a different product, minus cost of goods sold (COGS). How it works: You report conversions with cart data for completed purchases on your website. If the ad that was interacted with before the purchase has an associated product (see Shopping Ads) then this product is considered the advertised product. Any product included in the purchase is a sold product. If these products don't match then this is considered cross-sell. Cross-sell gross profit is the revenue you made from cross-sell attributed to your ads minus the cost of the goods sold. Example: Someone clicked on a Shopping ad for a hat then bought the same hat and a shirt. The shirt is priced $20 and has a cost of goods sold value of $5. The cross-sell gross profit of this order is $15 = $20 - $5. This metric is only available if you report conversions with cart data. This metric is a monetary value and returned in the customer's currency by default. See the metrics_currency parameter at https://developers.google.com/search-ads/reporting/query/query-structure#parameters_clause
|
|
616
|
+
*/
|
|
617
|
+
crossSellGrossProfitMicros?: string | null;
|
|
618
|
+
/**
|
|
619
|
+
* Cross-sell revenue is the total amount you made from products sold as a result of advertising a different product. How it works: You report conversions with cart data for completed purchases on your website. If the ad that was interacted with before the purchase has an associated product (see Shopping Ads) then this product is considered the advertised product. Any product included in the order the customer places is a sold product. If these products don't match then this is considered cross-sell. Cross-sell revenue is the total value you made from cross-sell attributed to your ads. Example: Someone clicked on a Shopping ad for a hat then bought the same hat and a shirt. The hat is priced $10 and the shirt is priced $20. The cross-sell revenue of this order is $20. This metric is only available if you report conversions with cart data. This metric is a monetary value and returned in the customer's currency by default. See the metrics_currency parameter at https://developers.google.com/search-ads/reporting/query/query-structure#parameters_clause
|
|
620
|
+
*/
|
|
621
|
+
crossSellRevenueMicros?: string | null;
|
|
622
|
+
/**
|
|
623
|
+
* Cross-sell units sold is the total number of products sold as a result of advertising a different product. How it works: You report conversions with cart data for completed purchases on your website. If the ad that was interacted with before the purchase has an associated product (see Shopping Ads) then this product is considered the advertised product. Any product included in the order the customer places is a sold product. If these products don't match then this is considered cross-sell. Cross-sell units sold is the total number of cross-sold products from all orders attributed to your ads. Example: Someone clicked on a Shopping ad for a hat then bought the same hat, a shirt and a jacket. The cross-sell units sold in this order is 2. This metric is only available if you report conversions with cart data.
|
|
624
|
+
*/
|
|
625
|
+
crossSellUnitsSold?: number | null;
|
|
458
626
|
/**
|
|
459
627
|
* The number of clicks your ad receives (Clicks) divided by the number of times your ad is shown (Impressions).
|
|
460
628
|
*/
|
|
@@ -499,6 +667,22 @@ export namespace searchads360_v0 {
|
|
|
499
667
|
* Number of clicks Google considers illegitimate and doesn't charge you for.
|
|
500
668
|
*/
|
|
501
669
|
invalidClicks?: string | null;
|
|
670
|
+
/**
|
|
671
|
+
* Lead cost of goods sold (COGS) is the total cost of products sold as a result of advertising the same product. How it works: You report conversions with cart data for completed purchases on your website. If the ad that was interacted with has an associated product (see Shopping Ads) then this product is considered the advertised product. Any product included in the order the customer places is a sold product. If the advertised and sold products match, then the cost of these goods is counted under lead cost of goods sold. Example: Someone clicked on a Shopping ad for a hat then bought the same hat and a shirt. The hat has a cost of goods sold value of $3, the shirt has a cost of goods sold value of $5. The lead cost of goods sold for this order is $3. This metric is only available if you report conversions with cart data. This metric is a monetary value and returned in the customer's currency by default. See the metrics_currency parameter at https://developers.google.com/search-ads/reporting/query/query-structure#parameters_clause
|
|
672
|
+
*/
|
|
673
|
+
leadCostOfGoodsSoldMicros?: string | null;
|
|
674
|
+
/**
|
|
675
|
+
* Lead gross profit is the profit you made from products sold as a result of advertising the same product, minus cost of goods sold (COGS). How it works: You report conversions with cart data for completed purchases on your website. If the ad that was interacted with before the purchase has an associated product (see Shopping Ads) then this product is considered the advertised product. Any product included in the order the customer places is a sold product. If the advertised and sold products match, then the revenue you made from these sales minus the cost of goods sold is your lead gross profit. Example: Someone clicked on a Shopping ad for a hat then bought the same hat and a shirt. The hat is priced $10 and has a cost of goods sold value of $3. The lead gross profit of this order is $7 = $10 - $3. This metric is only available if you report conversions with cart data. This metric is a monetary value and returned in the customer's currency by default. See the metrics_currency parameter at https://developers.google.com/search-ads/reporting/query/query-structure#parameters_clause
|
|
676
|
+
*/
|
|
677
|
+
leadGrossProfitMicros?: string | null;
|
|
678
|
+
/**
|
|
679
|
+
* Lead revenue is the total amount you made from products sold as a result of advertising the same product. How it works: You report conversions with cart data for completed purchases on your website. If the ad that was interacted with before the purchase has an associated product (see Shopping Ads) then this product is considered the advertised product. Any product included in the order the customer places is a sold product. If the advertised and sold products match, then the total value you made from the sales of these products is shown under lead revenue. Example: Someone clicked on a Shopping ad for a hat then bought the same hat and a shirt. The hat is priced $10 and the shirt is priced $20. The lead revenue of this order is $10. This metric is only available if you report conversions with cart data. This metric is a monetary value and returned in the customer's currency by default. See the metrics_currency parameter at https://developers.google.com/search-ads/reporting/query/query-structure#parameters_clause
|
|
680
|
+
*/
|
|
681
|
+
leadRevenueMicros?: string | null;
|
|
682
|
+
/**
|
|
683
|
+
* Lead units sold is the total number of products sold as a result of advertising the same product. How it works: You report conversions with cart data for completed purchases on your website. If the ad that was interacted with before the purchase has an associated product (see Shopping Ads) then this product is considered the advertised product. Any product included in the order the customer places is a sold product. If the advertised and sold products match, then the total number of these products sold is shown under lead units sold. Example: Someone clicked on a Shopping ad for a hat then bought the same hat, a shirt and a jacket. The lead units sold in this order is 1. This metric is only available if you report conversions with cart data.
|
|
684
|
+
*/
|
|
685
|
+
leadUnitsSold?: number | null;
|
|
502
686
|
/**
|
|
503
687
|
* The percentage of mobile clicks that go to a mobile-friendly page.
|
|
504
688
|
*/
|
|
@@ -719,6 +903,10 @@ export namespace searchads360_v0 {
|
|
|
719
903
|
* Ad network type.
|
|
720
904
|
*/
|
|
721
905
|
adNetworkType?: string | null;
|
|
906
|
+
/**
|
|
907
|
+
* Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics. Indicates whether the interaction metrics occurred on the asset itself or a different asset or ad unit. Interactions (for example, clicks) are counted across all the parts of the served ad (for example, Ad itself and other components like Sitelinks) when they are served together. When interaction_on_this_asset is true, it means the interactions are on this specific asset and when interaction_on_this_asset is false, it means the interactions is not on this specific asset but on other parts of the served ad this asset is served with.
|
|
908
|
+
*/
|
|
909
|
+
assetInteractionTarget?: Schema$GoogleAdsSearchads360V0Common__AssetInteractionTarget;
|
|
722
910
|
/**
|
|
723
911
|
* Resource name of the conversion action.
|
|
724
912
|
*/
|
|
@@ -751,6 +939,178 @@ export namespace searchads360_v0 {
|
|
|
751
939
|
* Month as represented by the date of the first day of a month. Formatted as yyyy-MM-dd.
|
|
752
940
|
*/
|
|
753
941
|
month?: string | null;
|
|
942
|
+
/**
|
|
943
|
+
* Bidding category (level 1) of the product.
|
|
944
|
+
*/
|
|
945
|
+
productBiddingCategoryLevel1?: string | null;
|
|
946
|
+
/**
|
|
947
|
+
* Bidding category (level 2) of the product.
|
|
948
|
+
*/
|
|
949
|
+
productBiddingCategoryLevel2?: string | null;
|
|
950
|
+
/**
|
|
951
|
+
* Bidding category (level 3) of the product.
|
|
952
|
+
*/
|
|
953
|
+
productBiddingCategoryLevel3?: string | null;
|
|
954
|
+
/**
|
|
955
|
+
* Bidding category (level 4) of the product.
|
|
956
|
+
*/
|
|
957
|
+
productBiddingCategoryLevel4?: string | null;
|
|
958
|
+
/**
|
|
959
|
+
* Bidding category (level 5) of the product.
|
|
960
|
+
*/
|
|
961
|
+
productBiddingCategoryLevel5?: string | null;
|
|
962
|
+
/**
|
|
963
|
+
* Brand of the product.
|
|
964
|
+
*/
|
|
965
|
+
productBrand?: string | null;
|
|
966
|
+
/**
|
|
967
|
+
* Channel of the product.
|
|
968
|
+
*/
|
|
969
|
+
productChannel?: string | null;
|
|
970
|
+
/**
|
|
971
|
+
* Channel exclusivity of the product.
|
|
972
|
+
*/
|
|
973
|
+
productChannelExclusivity?: string | null;
|
|
974
|
+
/**
|
|
975
|
+
* Condition of the product.
|
|
976
|
+
*/
|
|
977
|
+
productCondition?: string | null;
|
|
978
|
+
/**
|
|
979
|
+
* Resource name of the geo target constant for the country of sale of the product.
|
|
980
|
+
*/
|
|
981
|
+
productCountry?: string | null;
|
|
982
|
+
/**
|
|
983
|
+
* Custom attribute 0 of the product.
|
|
984
|
+
*/
|
|
985
|
+
productCustomAttribute0?: string | null;
|
|
986
|
+
/**
|
|
987
|
+
* Custom attribute 1 of the product.
|
|
988
|
+
*/
|
|
989
|
+
productCustomAttribute1?: string | null;
|
|
990
|
+
/**
|
|
991
|
+
* Custom attribute 2 of the product.
|
|
992
|
+
*/
|
|
993
|
+
productCustomAttribute2?: string | null;
|
|
994
|
+
/**
|
|
995
|
+
* Custom attribute 3 of the product.
|
|
996
|
+
*/
|
|
997
|
+
productCustomAttribute3?: string | null;
|
|
998
|
+
/**
|
|
999
|
+
* Custom attribute 4 of the product.
|
|
1000
|
+
*/
|
|
1001
|
+
productCustomAttribute4?: string | null;
|
|
1002
|
+
/**
|
|
1003
|
+
* Item ID of the product.
|
|
1004
|
+
*/
|
|
1005
|
+
productItemId?: string | null;
|
|
1006
|
+
/**
|
|
1007
|
+
* Resource name of the language constant for the language of the product.
|
|
1008
|
+
*/
|
|
1009
|
+
productLanguage?: string | null;
|
|
1010
|
+
/**
|
|
1011
|
+
* Bidding category (level 1) of the product sold.
|
|
1012
|
+
*/
|
|
1013
|
+
productSoldBiddingCategoryLevel1?: string | null;
|
|
1014
|
+
/**
|
|
1015
|
+
* Bidding category (level 2) of the product sold.
|
|
1016
|
+
*/
|
|
1017
|
+
productSoldBiddingCategoryLevel2?: string | null;
|
|
1018
|
+
/**
|
|
1019
|
+
* Bidding category (level 3) of the product sold.
|
|
1020
|
+
*/
|
|
1021
|
+
productSoldBiddingCategoryLevel3?: string | null;
|
|
1022
|
+
/**
|
|
1023
|
+
* Bidding category (level 4) of the product sold.
|
|
1024
|
+
*/
|
|
1025
|
+
productSoldBiddingCategoryLevel4?: string | null;
|
|
1026
|
+
/**
|
|
1027
|
+
* Bidding category (level 5) of the product sold.
|
|
1028
|
+
*/
|
|
1029
|
+
productSoldBiddingCategoryLevel5?: string | null;
|
|
1030
|
+
/**
|
|
1031
|
+
* Brand of the product sold.
|
|
1032
|
+
*/
|
|
1033
|
+
productSoldBrand?: string | null;
|
|
1034
|
+
/**
|
|
1035
|
+
* Condition of the product sold.
|
|
1036
|
+
*/
|
|
1037
|
+
productSoldCondition?: string | null;
|
|
1038
|
+
/**
|
|
1039
|
+
* Custom attribute 0 of the product sold.
|
|
1040
|
+
*/
|
|
1041
|
+
productSoldCustomAttribute0?: string | null;
|
|
1042
|
+
/**
|
|
1043
|
+
* Custom attribute 1 of the product sold.
|
|
1044
|
+
*/
|
|
1045
|
+
productSoldCustomAttribute1?: string | null;
|
|
1046
|
+
/**
|
|
1047
|
+
* Custom attribute 2 of the product sold.
|
|
1048
|
+
*/
|
|
1049
|
+
productSoldCustomAttribute2?: string | null;
|
|
1050
|
+
/**
|
|
1051
|
+
* Custom attribute 3 of the product sold.
|
|
1052
|
+
*/
|
|
1053
|
+
productSoldCustomAttribute3?: string | null;
|
|
1054
|
+
/**
|
|
1055
|
+
* Custom attribute 4 of the product sold.
|
|
1056
|
+
*/
|
|
1057
|
+
productSoldCustomAttribute4?: string | null;
|
|
1058
|
+
/**
|
|
1059
|
+
* Item ID of the product sold.
|
|
1060
|
+
*/
|
|
1061
|
+
productSoldItemId?: string | null;
|
|
1062
|
+
/**
|
|
1063
|
+
* Title of the product sold.
|
|
1064
|
+
*/
|
|
1065
|
+
productSoldTitle?: string | null;
|
|
1066
|
+
/**
|
|
1067
|
+
* Type (level 1) of the product sold.
|
|
1068
|
+
*/
|
|
1069
|
+
productSoldTypeL1?: string | null;
|
|
1070
|
+
/**
|
|
1071
|
+
* Type (level 2) of the product sold.
|
|
1072
|
+
*/
|
|
1073
|
+
productSoldTypeL2?: string | null;
|
|
1074
|
+
/**
|
|
1075
|
+
* Type (level 3) of the product sold.
|
|
1076
|
+
*/
|
|
1077
|
+
productSoldTypeL3?: string | null;
|
|
1078
|
+
/**
|
|
1079
|
+
* Type (level 4) of the product sold.
|
|
1080
|
+
*/
|
|
1081
|
+
productSoldTypeL4?: string | null;
|
|
1082
|
+
/**
|
|
1083
|
+
* Type (level 5) of the product sold.
|
|
1084
|
+
*/
|
|
1085
|
+
productSoldTypeL5?: string | null;
|
|
1086
|
+
/**
|
|
1087
|
+
* Store ID of the product.
|
|
1088
|
+
*/
|
|
1089
|
+
productStoreId?: string | null;
|
|
1090
|
+
/**
|
|
1091
|
+
* Title of the product.
|
|
1092
|
+
*/
|
|
1093
|
+
productTitle?: string | null;
|
|
1094
|
+
/**
|
|
1095
|
+
* Type (level 1) of the product.
|
|
1096
|
+
*/
|
|
1097
|
+
productTypeL1?: string | null;
|
|
1098
|
+
/**
|
|
1099
|
+
* Type (level 2) of the product.
|
|
1100
|
+
*/
|
|
1101
|
+
productTypeL2?: string | null;
|
|
1102
|
+
/**
|
|
1103
|
+
* Type (level 3) of the product.
|
|
1104
|
+
*/
|
|
1105
|
+
productTypeL3?: string | null;
|
|
1106
|
+
/**
|
|
1107
|
+
* Type (level 4) of the product.
|
|
1108
|
+
*/
|
|
1109
|
+
productTypeL4?: string | null;
|
|
1110
|
+
/**
|
|
1111
|
+
* Type (level 5) of the product.
|
|
1112
|
+
*/
|
|
1113
|
+
productTypeL5?: string | null;
|
|
754
1114
|
/**
|
|
755
1115
|
* Quarter as represented by the date of the first day of a quarter. Uses the calendar year for quarters, for example, the second quarter of 2018 starts on 2018-04-01. Formatted as yyyy-MM-dd.
|
|
756
1116
|
*/
|
|
@@ -863,6 +1223,15 @@ export namespace searchads360_v0 {
|
|
|
863
1223
|
*/
|
|
864
1224
|
targetSpendMicros?: string | null;
|
|
865
1225
|
}
|
|
1226
|
+
/**
|
|
1227
|
+
* A Text asset.
|
|
1228
|
+
*/
|
|
1229
|
+
export interface Schema$GoogleAdsSearchads360V0Common__TextAsset {
|
|
1230
|
+
/**
|
|
1231
|
+
* Text content of the text asset.
|
|
1232
|
+
*/
|
|
1233
|
+
text?: string | null;
|
|
1234
|
+
}
|
|
866
1235
|
/**
|
|
867
1236
|
* A type of label displaying text on a colored background.
|
|
868
1237
|
*/
|
|
@@ -877,98 +1246,252 @@ export namespace searchads360_v0 {
|
|
|
877
1246
|
description?: string | null;
|
|
878
1247
|
}
|
|
879
1248
|
/**
|
|
880
|
-
* A
|
|
1249
|
+
* A unified call asset.
|
|
881
1250
|
*/
|
|
882
|
-
export interface Schema$
|
|
1251
|
+
export interface Schema$GoogleAdsSearchads360V0Common__UnifiedCallAsset {
|
|
883
1252
|
/**
|
|
884
|
-
*
|
|
1253
|
+
* List of non-overlapping schedules specifying all time intervals for which the asset may serve. There can be a maximum of 6 schedules per day, 42 in total.
|
|
885
1254
|
*/
|
|
886
|
-
|
|
887
|
-
}
|
|
888
|
-
/**
|
|
889
|
-
* A generic data container.
|
|
890
|
-
*/
|
|
891
|
-
export interface Schema$GoogleAdsSearchads360V0Common__Value {
|
|
1255
|
+
adScheduleTargets?: Schema$GoogleAdsSearchads360V0Common__AdScheduleInfo[];
|
|
892
1256
|
/**
|
|
893
|
-
*
|
|
1257
|
+
* The conversion action to attribute a call conversion to. If not set, the default conversion action is used. This field only has effect if call_conversion_reporting_state is set to USE_RESOURCE_LEVEL_CALL_CONVERSION_ACTION.
|
|
894
1258
|
*/
|
|
895
|
-
|
|
1259
|
+
callConversionAction?: string | null;
|
|
896
1260
|
/**
|
|
897
|
-
*
|
|
1261
|
+
* Output only. Indicates whether this CallAsset should use its own call conversion setting, follow the account level setting, or disable call conversion.
|
|
898
1262
|
*/
|
|
899
|
-
|
|
1263
|
+
callConversionReportingState?: string | null;
|
|
900
1264
|
/**
|
|
901
|
-
*
|
|
1265
|
+
* Whether the call only shows the phone number without a link to the website. Applies to Microsoft Ads.
|
|
902
1266
|
*/
|
|
903
|
-
|
|
1267
|
+
callOnly?: boolean | null;
|
|
904
1268
|
/**
|
|
905
|
-
*
|
|
1269
|
+
* Whether the call should be enabled on call tracking. Applies to Microsoft Ads.
|
|
906
1270
|
*/
|
|
907
|
-
|
|
1271
|
+
callTrackingEnabled?: boolean | null;
|
|
908
1272
|
/**
|
|
909
|
-
*
|
|
1273
|
+
* Two-letter country code of the phone number. Examples: 'US', 'us'.
|
|
910
1274
|
*/
|
|
911
|
-
|
|
1275
|
+
countryCode?: string | null;
|
|
1276
|
+
/**
|
|
1277
|
+
* Last date of when this asset is effective and still serving, in yyyy-MM-dd format.
|
|
1278
|
+
*/
|
|
1279
|
+
endDate?: string | null;
|
|
1280
|
+
/**
|
|
1281
|
+
* The advertiser's raw phone number. Examples: '1234567890', '(123)456-7890'
|
|
1282
|
+
*/
|
|
1283
|
+
phoneNumber?: string | null;
|
|
1284
|
+
/**
|
|
1285
|
+
* Start date of when this asset is effective and can begin serving, in yyyy-MM-dd format.
|
|
1286
|
+
*/
|
|
1287
|
+
startDate?: string | null;
|
|
1288
|
+
/**
|
|
1289
|
+
* Whether to show the call extension in search user's time zone. Applies to Microsoft Ads.
|
|
1290
|
+
*/
|
|
1291
|
+
useSearcherTimeZone?: boolean | null;
|
|
912
1292
|
}
|
|
913
1293
|
/**
|
|
914
|
-
*
|
|
1294
|
+
* A unified callout asset.
|
|
915
1295
|
*/
|
|
916
|
-
export interface Schema$
|
|
1296
|
+
export interface Schema$GoogleAdsSearchads360V0Common__UnifiedCalloutAsset {
|
|
917
1297
|
/**
|
|
918
|
-
*
|
|
1298
|
+
* List of non-overlapping schedules specifying all time intervals for which the asset may serve. There can be a maximum of 6 schedules per day, 42 in total.
|
|
919
1299
|
*/
|
|
920
|
-
|
|
1300
|
+
adScheduleTargets?: Schema$GoogleAdsSearchads360V0Common__AdScheduleInfo[];
|
|
921
1301
|
/**
|
|
922
|
-
*
|
|
1302
|
+
* The callout text. The length of this string should be between 1 and 25, inclusive.
|
|
923
1303
|
*/
|
|
924
|
-
|
|
1304
|
+
calloutText?: string | null;
|
|
925
1305
|
/**
|
|
926
|
-
*
|
|
1306
|
+
* Last date of when this asset is effective and still serving, in yyyy-MM-dd format.
|
|
927
1307
|
*/
|
|
928
|
-
|
|
1308
|
+
endDate?: string | null;
|
|
1309
|
+
/**
|
|
1310
|
+
* Start date of when this asset is effective and can begin serving, in yyyy-MM-dd format.
|
|
1311
|
+
*/
|
|
1312
|
+
startDate?: string | null;
|
|
1313
|
+
/**
|
|
1314
|
+
* Whether to show the asset in search user's time zone. Applies to Microsoft Ads.
|
|
1315
|
+
*/
|
|
1316
|
+
useSearcherTimeZone?: boolean | null;
|
|
929
1317
|
}
|
|
930
1318
|
/**
|
|
931
|
-
*
|
|
1319
|
+
* A unified location asset.
|
|
932
1320
|
*/
|
|
933
|
-
export interface Schema$
|
|
1321
|
+
export interface Schema$GoogleAdsSearchads360V0Common__UnifiedLocationAsset {
|
|
934
1322
|
/**
|
|
935
|
-
*
|
|
1323
|
+
* The list of business locations for the customer. This will only be returned if the Location Asset is syncing from the Business Profile account. It is possible to have multiple Business Profile listings under the same account that point to the same Place ID.
|
|
936
1324
|
*/
|
|
937
|
-
|
|
1325
|
+
businessProfileLocations?: Schema$GoogleAdsSearchads360V0Common__BusinessProfileLocation[];
|
|
938
1326
|
/**
|
|
939
|
-
*
|
|
1327
|
+
* The type of location ownership. If the type is BUSINESS_OWNER, it will be served as a location extension. If the type is AFFILIATE, it will be served as an affiliate location.
|
|
940
1328
|
*/
|
|
941
|
-
|
|
1329
|
+
locationOwnershipType?: string | null;
|
|
942
1330
|
/**
|
|
943
|
-
*
|
|
1331
|
+
* Place IDs uniquely identify a place in the Google Places database and on Google Maps. This field is unique for a given customer ID and asset type. See https://developers.google.com/places/web-service/place-id to learn more about Place ID.
|
|
944
1332
|
*/
|
|
945
|
-
|
|
1333
|
+
placeId?: string | null;
|
|
946
1334
|
}
|
|
947
1335
|
/**
|
|
948
|
-
* A
|
|
1336
|
+
* A Unified Page Feed asset.
|
|
949
1337
|
*/
|
|
950
|
-
export interface Schema$
|
|
1338
|
+
export interface Schema$GoogleAdsSearchads360V0Common__UnifiedPageFeedAsset {
|
|
951
1339
|
/**
|
|
952
|
-
*
|
|
1340
|
+
* Labels used to group the page urls.
|
|
953
1341
|
*/
|
|
954
|
-
|
|
1342
|
+
labels?: string[] | null;
|
|
955
1343
|
/**
|
|
956
|
-
*
|
|
1344
|
+
* The webpage that advertisers want to target.
|
|
957
1345
|
*/
|
|
958
|
-
|
|
1346
|
+
pageUrl?: string | null;
|
|
959
1347
|
}
|
|
960
1348
|
/**
|
|
961
|
-
*
|
|
1349
|
+
* A unified sitelink asset.
|
|
962
1350
|
*/
|
|
963
|
-
export interface Schema$
|
|
1351
|
+
export interface Schema$GoogleAdsSearchads360V0Common__UnifiedSitelinkAsset {
|
|
964
1352
|
/**
|
|
965
|
-
*
|
|
1353
|
+
* List of non-overlapping schedules specifying all time intervals for which the asset may serve. There can be a maximum of 6 schedules per day, 42 in total.
|
|
966
1354
|
*/
|
|
967
|
-
|
|
1355
|
+
adScheduleTargets?: Schema$GoogleAdsSearchads360V0Common__AdScheduleInfo[];
|
|
968
1356
|
/**
|
|
969
|
-
*
|
|
1357
|
+
* First line of the description for the sitelink. If set, the length should be between 1 and 35, inclusive, and description2 must also be set.
|
|
970
1358
|
*/
|
|
971
|
-
|
|
1359
|
+
description1?: string | null;
|
|
1360
|
+
/**
|
|
1361
|
+
* Second line of the description for the sitelink. If set, the length should be between 1 and 35, inclusive, and description1 must also be set.
|
|
1362
|
+
*/
|
|
1363
|
+
description2?: string | null;
|
|
1364
|
+
/**
|
|
1365
|
+
* Last date of when this asset is effective and still serving, in yyyy-MM-dd format.
|
|
1366
|
+
*/
|
|
1367
|
+
endDate?: string | null;
|
|
1368
|
+
/**
|
|
1369
|
+
* URL display text for the sitelink. The length of this string should be between 1 and 25, inclusive.
|
|
1370
|
+
*/
|
|
1371
|
+
linkText?: string | null;
|
|
1372
|
+
/**
|
|
1373
|
+
* Whether the preference is for the sitelink asset to be displayed on mobile devices. Applies to Microsoft Ads.
|
|
1374
|
+
*/
|
|
1375
|
+
mobilePreferred?: boolean | null;
|
|
1376
|
+
/**
|
|
1377
|
+
* Start date of when this asset is effective and can begin serving, in yyyy-MM-dd format.
|
|
1378
|
+
*/
|
|
1379
|
+
startDate?: string | null;
|
|
1380
|
+
/**
|
|
1381
|
+
* ID used for tracking clicks for the sitelink asset. This is a Yahoo! Japan only field.
|
|
1382
|
+
*/
|
|
1383
|
+
trackingId?: string | null;
|
|
1384
|
+
/**
|
|
1385
|
+
* Whether to show the sitelink asset in search user's time zone. Applies to Microsoft Ads.
|
|
1386
|
+
*/
|
|
1387
|
+
useSearcherTimeZone?: boolean | null;
|
|
1388
|
+
}
|
|
1389
|
+
/**
|
|
1390
|
+
* A User List criterion. Represents a user list that is defined by the advertiser to be targeted.
|
|
1391
|
+
*/
|
|
1392
|
+
export interface Schema$GoogleAdsSearchads360V0Common__UserListInfo {
|
|
1393
|
+
/**
|
|
1394
|
+
* The User List resource name.
|
|
1395
|
+
*/
|
|
1396
|
+
userList?: string | null;
|
|
1397
|
+
}
|
|
1398
|
+
/**
|
|
1399
|
+
* A generic data container.
|
|
1400
|
+
*/
|
|
1401
|
+
export interface Schema$GoogleAdsSearchads360V0Common__Value {
|
|
1402
|
+
/**
|
|
1403
|
+
* A boolean.
|
|
1404
|
+
*/
|
|
1405
|
+
booleanValue?: boolean | null;
|
|
1406
|
+
/**
|
|
1407
|
+
* A double.
|
|
1408
|
+
*/
|
|
1409
|
+
doubleValue?: number | null;
|
|
1410
|
+
/**
|
|
1411
|
+
* A float.
|
|
1412
|
+
*/
|
|
1413
|
+
floatValue?: number | null;
|
|
1414
|
+
/**
|
|
1415
|
+
* An int64.
|
|
1416
|
+
*/
|
|
1417
|
+
int64Value?: string | null;
|
|
1418
|
+
/**
|
|
1419
|
+
* A string.
|
|
1420
|
+
*/
|
|
1421
|
+
stringValue?: string | null;
|
|
1422
|
+
}
|
|
1423
|
+
/**
|
|
1424
|
+
* Logical expression for targeting webpages of an advertiser's website.
|
|
1425
|
+
*/
|
|
1426
|
+
export interface Schema$GoogleAdsSearchads360V0Common__WebpageConditionInfo {
|
|
1427
|
+
/**
|
|
1428
|
+
* Argument of webpage targeting condition.
|
|
1429
|
+
*/
|
|
1430
|
+
argument?: string | null;
|
|
1431
|
+
/**
|
|
1432
|
+
* Operand of webpage targeting condition.
|
|
1433
|
+
*/
|
|
1434
|
+
operand?: string | null;
|
|
1435
|
+
/**
|
|
1436
|
+
* Operator of webpage targeting condition.
|
|
1437
|
+
*/
|
|
1438
|
+
operator?: string | null;
|
|
1439
|
+
}
|
|
1440
|
+
/**
|
|
1441
|
+
* Represents a criterion for targeting webpages of an advertiser's website.
|
|
1442
|
+
*/
|
|
1443
|
+
export interface Schema$GoogleAdsSearchads360V0Common__WebpageInfo {
|
|
1444
|
+
/**
|
|
1445
|
+
* Conditions, or logical expressions, for webpage targeting. The list of webpage targeting conditions are and-ed together when evaluated for targeting. An empty list of conditions indicates all pages of the campaign's website are targeted. This field is required for CREATE operations and is prohibited on UPDATE operations.
|
|
1446
|
+
*/
|
|
1447
|
+
conditions?: Schema$GoogleAdsSearchads360V0Common__WebpageConditionInfo[];
|
|
1448
|
+
/**
|
|
1449
|
+
* Website criteria coverage percentage. This is the computed percentage of website coverage based on the website target, negative website target and negative keywords in the ad group and campaign. For instance, when coverage returns as 1, it indicates it has 100% coverage. This field is read-only.
|
|
1450
|
+
*/
|
|
1451
|
+
coveragePercentage?: number | null;
|
|
1452
|
+
/**
|
|
1453
|
+
* The name of the criterion that is defined by this parameter. The name value will be used for identifying, sorting and filtering criteria with this type of parameters. This field is required for CREATE operations and is prohibited on UPDATE operations.
|
|
1454
|
+
*/
|
|
1455
|
+
criterionName?: string | null;
|
|
1456
|
+
}
|
|
1457
|
+
/**
|
|
1458
|
+
* A YouTube asset.
|
|
1459
|
+
*/
|
|
1460
|
+
export interface Schema$GoogleAdsSearchads360V0Common__YoutubeVideoAsset {
|
|
1461
|
+
/**
|
|
1462
|
+
* YouTube video id. This is the 11 character string value used in the YouTube video URL.
|
|
1463
|
+
*/
|
|
1464
|
+
youtubeVideoId?: string | null;
|
|
1465
|
+
/**
|
|
1466
|
+
* YouTube video title.
|
|
1467
|
+
*/
|
|
1468
|
+
youtubeVideoTitle?: string | null;
|
|
1469
|
+
}
|
|
1470
|
+
/**
|
|
1471
|
+
* A part of a field path.
|
|
1472
|
+
*/
|
|
1473
|
+
export interface Schema$GoogleAdsSearchads360V0Errors_ErrorLocation_FieldPathElement {
|
|
1474
|
+
/**
|
|
1475
|
+
* The name of a field or a oneof
|
|
1476
|
+
*/
|
|
1477
|
+
fieldName?: string | null;
|
|
1478
|
+
/**
|
|
1479
|
+
* If field_name is a repeated field, this is the element that failed
|
|
1480
|
+
*/
|
|
1481
|
+
index?: number | null;
|
|
1482
|
+
}
|
|
1483
|
+
/**
|
|
1484
|
+
* The error reason represented by type and enum.
|
|
1485
|
+
*/
|
|
1486
|
+
export interface Schema$GoogleAdsSearchads360V0Errors__ErrorCode {
|
|
1487
|
+
/**
|
|
1488
|
+
* Indicates failure to properly authenticate user.
|
|
1489
|
+
*/
|
|
1490
|
+
authenticationError?: string | null;
|
|
1491
|
+
/**
|
|
1492
|
+
* An error encountered when trying to authorize a user.
|
|
1493
|
+
*/
|
|
1494
|
+
authorizationError?: string | null;
|
|
972
1495
|
/**
|
|
973
1496
|
* The reasons for the custom column error
|
|
974
1497
|
*/
|
|
@@ -993,12 +1516,16 @@ export namespace searchads360_v0 {
|
|
|
993
1516
|
* An unexpected server-side error.
|
|
994
1517
|
*/
|
|
995
1518
|
internalError?: string | null;
|
|
1519
|
+
/**
|
|
1520
|
+
* The reasons for invalid parameter errors.
|
|
1521
|
+
*/
|
|
1522
|
+
invalidParameterError?: string | null;
|
|
996
1523
|
/**
|
|
997
1524
|
* An error with the query
|
|
998
1525
|
*/
|
|
999
1526
|
queryError?: string | null;
|
|
1000
1527
|
/**
|
|
1001
|
-
* An error with the
|
|
1528
|
+
* An error with the amount of quota remaining.
|
|
1002
1529
|
*/
|
|
1003
1530
|
quotaError?: string | null;
|
|
1004
1531
|
/**
|
|
@@ -1087,6 +1614,15 @@ export namespace searchads360_v0 {
|
|
|
1087
1614
|
*/
|
|
1088
1615
|
requestId?: string | null;
|
|
1089
1616
|
}
|
|
1617
|
+
/**
|
|
1618
|
+
* Estimates for criterion bids at various positions.
|
|
1619
|
+
*/
|
|
1620
|
+
export interface Schema$GoogleAdsSearchads360V0Resources_AdGroupCriterion_PositionEstimates {
|
|
1621
|
+
/**
|
|
1622
|
+
* Output only. The estimate of the CPC bid required for ad to be displayed at the top of the first page of search results.
|
|
1623
|
+
*/
|
|
1624
|
+
topOfPageCpcMicros?: string | null;
|
|
1625
|
+
}
|
|
1090
1626
|
/**
|
|
1091
1627
|
* A container for ad group criterion quality information.
|
|
1092
1628
|
*/
|
|
@@ -1157,7 +1693,7 @@ export namespace searchads360_v0 {
|
|
|
1157
1693
|
optimizationGoalTypes?: string[] | null;
|
|
1158
1694
|
}
|
|
1159
1695
|
/**
|
|
1160
|
-
* Selective optimization setting for this campaign, which includes a set of conversion actions to optimize this campaign towards.
|
|
1696
|
+
* Selective optimization setting for this campaign, which includes a set of conversion actions to optimize this campaign towards. This feature only applies to app campaigns that use MULTI_CHANNEL as AdvertisingChannelType and APP_CAMPAIGN or APP_CAMPAIGN_FOR_ENGAGEMENT as AdvertisingChannelSubType.
|
|
1161
1697
|
*/
|
|
1162
1698
|
export interface Schema$GoogleAdsSearchads360V0Resources_Campaign_SelectiveOptimization {
|
|
1163
1699
|
/**
|
|
@@ -1250,6 +1786,81 @@ export namespace searchads360_v0 {
|
|
|
1250
1786
|
*/
|
|
1251
1787
|
defaultValue?: number | null;
|
|
1252
1788
|
}
|
|
1789
|
+
/**
|
|
1790
|
+
* One element of a bidding category at a certain level. Top-level categories are at level 1, their children at level 2, and so on. We currently support up to 5 levels. The user must specify a dimension type that indicates the level of the category. All cases of the same subdivision must have the same dimension type (category level).
|
|
1791
|
+
*/
|
|
1792
|
+
export interface Schema$GoogleAdsSearchads360V0Resources_ListingGroupFilterDimension_ProductBiddingCategory {
|
|
1793
|
+
/**
|
|
1794
|
+
* ID of the product bidding category. This ID is equivalent to the google_product_category ID as described in this article: https://support.google.com/merchants/answer/6324436
|
|
1795
|
+
*/
|
|
1796
|
+
id?: string | null;
|
|
1797
|
+
/**
|
|
1798
|
+
* Indicates the level of the category in the taxonomy.
|
|
1799
|
+
*/
|
|
1800
|
+
level?: string | null;
|
|
1801
|
+
}
|
|
1802
|
+
/**
|
|
1803
|
+
* Brand of the product.
|
|
1804
|
+
*/
|
|
1805
|
+
export interface Schema$GoogleAdsSearchads360V0Resources_ListingGroupFilterDimension_ProductBrand {
|
|
1806
|
+
/**
|
|
1807
|
+
* String value of the product brand.
|
|
1808
|
+
*/
|
|
1809
|
+
value?: string | null;
|
|
1810
|
+
}
|
|
1811
|
+
/**
|
|
1812
|
+
* Locality of a product offer.
|
|
1813
|
+
*/
|
|
1814
|
+
export interface Schema$GoogleAdsSearchads360V0Resources_ListingGroupFilterDimension_ProductChannel {
|
|
1815
|
+
/**
|
|
1816
|
+
* Value of the locality.
|
|
1817
|
+
*/
|
|
1818
|
+
channel?: string | null;
|
|
1819
|
+
}
|
|
1820
|
+
/**
|
|
1821
|
+
* Condition of a product offer.
|
|
1822
|
+
*/
|
|
1823
|
+
export interface Schema$GoogleAdsSearchads360V0Resources_ListingGroupFilterDimension_ProductCondition {
|
|
1824
|
+
/**
|
|
1825
|
+
* Value of the condition.
|
|
1826
|
+
*/
|
|
1827
|
+
condition?: string | null;
|
|
1828
|
+
}
|
|
1829
|
+
/**
|
|
1830
|
+
* Custom attribute of a product offer.
|
|
1831
|
+
*/
|
|
1832
|
+
export interface Schema$GoogleAdsSearchads360V0Resources_ListingGroupFilterDimension_ProductCustomAttribute {
|
|
1833
|
+
/**
|
|
1834
|
+
* Indicates the index of the custom attribute.
|
|
1835
|
+
*/
|
|
1836
|
+
index?: string | null;
|
|
1837
|
+
/**
|
|
1838
|
+
* String value of the product custom attribute.
|
|
1839
|
+
*/
|
|
1840
|
+
value?: string | null;
|
|
1841
|
+
}
|
|
1842
|
+
/**
|
|
1843
|
+
* Item id of a product offer.
|
|
1844
|
+
*/
|
|
1845
|
+
export interface Schema$GoogleAdsSearchads360V0Resources_ListingGroupFilterDimension_ProductItemId {
|
|
1846
|
+
/**
|
|
1847
|
+
* Value of the id.
|
|
1848
|
+
*/
|
|
1849
|
+
value?: string | null;
|
|
1850
|
+
}
|
|
1851
|
+
/**
|
|
1852
|
+
* Type of a product offer.
|
|
1853
|
+
*/
|
|
1854
|
+
export interface Schema$GoogleAdsSearchads360V0Resources_ListingGroupFilterDimension_ProductType {
|
|
1855
|
+
/**
|
|
1856
|
+
* Level of the type.
|
|
1857
|
+
*/
|
|
1858
|
+
level?: string | null;
|
|
1859
|
+
/**
|
|
1860
|
+
* Value of the type.
|
|
1861
|
+
*/
|
|
1862
|
+
value?: string | null;
|
|
1863
|
+
}
|
|
1253
1864
|
/**
|
|
1254
1865
|
* An ad.
|
|
1255
1866
|
*/
|
|
@@ -1422,6 +2033,48 @@ export namespace searchads360_v0 {
|
|
|
1422
2033
|
*/
|
|
1423
2034
|
resourceName?: string | null;
|
|
1424
2035
|
}
|
|
2036
|
+
/**
|
|
2037
|
+
* A link between an ad group and an asset.
|
|
2038
|
+
*/
|
|
2039
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__AdGroupAsset {
|
|
2040
|
+
/**
|
|
2041
|
+
* Required. Immutable. The ad group to which the asset is linked.
|
|
2042
|
+
*/
|
|
2043
|
+
adGroup?: string | null;
|
|
2044
|
+
/**
|
|
2045
|
+
* Required. Immutable. The asset which is linked to the ad group.
|
|
2046
|
+
*/
|
|
2047
|
+
asset?: string | null;
|
|
2048
|
+
/**
|
|
2049
|
+
* Immutable. The resource name of the ad group asset. AdGroupAsset resource names have the form: `customers/{customer_id\}/adGroupAssets/{ad_group_id\}~{asset_id\}~{field_type\}`
|
|
2050
|
+
*/
|
|
2051
|
+
resourceName?: string | null;
|
|
2052
|
+
/**
|
|
2053
|
+
* Status of the ad group asset.
|
|
2054
|
+
*/
|
|
2055
|
+
status?: string | null;
|
|
2056
|
+
}
|
|
2057
|
+
/**
|
|
2058
|
+
* AdGroupAssetSet is the linkage between an ad group and an asset set. Creating an AdGroupAssetSet links an asset set with an ad group.
|
|
2059
|
+
*/
|
|
2060
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__AdGroupAssetSet {
|
|
2061
|
+
/**
|
|
2062
|
+
* Immutable. The ad group to which this asset set is linked.
|
|
2063
|
+
*/
|
|
2064
|
+
adGroup?: string | null;
|
|
2065
|
+
/**
|
|
2066
|
+
* Immutable. The asset set which is linked to the ad group.
|
|
2067
|
+
*/
|
|
2068
|
+
assetSet?: string | null;
|
|
2069
|
+
/**
|
|
2070
|
+
* Immutable. The resource name of the ad group asset set. Ad group asset set resource names have the form: `customers/{customer_id\}/adGroupAssetSets/{ad_group_id\}~{asset_set_id\}`
|
|
2071
|
+
*/
|
|
2072
|
+
resourceName?: string | null;
|
|
2073
|
+
/**
|
|
2074
|
+
* Output only. The status of the ad group asset set. Read-only.
|
|
2075
|
+
*/
|
|
2076
|
+
status?: string | null;
|
|
2077
|
+
}
|
|
1425
2078
|
/**
|
|
1426
2079
|
* An ad group audience view. Includes performance data from interests and remarketing lists for Display Network and YouTube Network ads, and remarketing lists for search ads (RLSA), aggregated at the audience level.
|
|
1427
2080
|
*/
|
|
@@ -1517,13 +2170,17 @@ export namespace searchads360_v0 {
|
|
|
1517
2170
|
*/
|
|
1518
2171
|
listingGroup?: Schema$GoogleAdsSearchads360V0Common__ListingGroupInfo;
|
|
1519
2172
|
/**
|
|
1520
|
-
*
|
|
2173
|
+
* Immutable. Location.
|
|
1521
2174
|
*/
|
|
1522
2175
|
location?: Schema$GoogleAdsSearchads360V0Common__LocationInfo;
|
|
1523
2176
|
/**
|
|
1524
2177
|
* Immutable. Whether to target (`false`) or exclude (`true`) the criterion. This field is immutable. To switch a criterion from positive to negative, remove then re-add it.
|
|
1525
2178
|
*/
|
|
1526
2179
|
negative?: boolean | null;
|
|
2180
|
+
/**
|
|
2181
|
+
* Output only. Estimates for criterion bids at various positions.
|
|
2182
|
+
*/
|
|
2183
|
+
positionEstimates?: Schema$GoogleAdsSearchads360V0Resources_AdGroupCriterion_PositionEstimates;
|
|
1527
2184
|
/**
|
|
1528
2185
|
* Output only. Information regarding the quality of the criterion.
|
|
1529
2186
|
*/
|
|
@@ -1600,6 +2257,18 @@ export namespace searchads360_v0 {
|
|
|
1600
2257
|
* Asset is a part of an ad which can be shared across multiple ads. It can be an image (ImageAsset), a video (YoutubeVideoAsset), etc. Assets are immutable and cannot be removed. To stop an asset from serving, remove the asset from the entity that is using it.
|
|
1601
2258
|
*/
|
|
1602
2259
|
export interface Schema$GoogleAdsSearchads360V0Resources__Asset {
|
|
2260
|
+
/**
|
|
2261
|
+
* Output only. A unified call asset.
|
|
2262
|
+
*/
|
|
2263
|
+
callAsset?: Schema$GoogleAdsSearchads360V0Common__UnifiedCallAsset;
|
|
2264
|
+
/**
|
|
2265
|
+
* Output only. A unified callout asset.
|
|
2266
|
+
*/
|
|
2267
|
+
calloutAsset?: Schema$GoogleAdsSearchads360V0Common__UnifiedCalloutAsset;
|
|
2268
|
+
/**
|
|
2269
|
+
* Immutable. A call to action asset.
|
|
2270
|
+
*/
|
|
2271
|
+
callToActionAsset?: Schema$GoogleAdsSearchads360V0Common__CallToActionAsset;
|
|
1603
2272
|
/**
|
|
1604
2273
|
* Output only. The timestamp when this asset was created. The timestamp is in the customer's time zone and in "yyyy-MM-dd HH:mm:ss" format.
|
|
1605
2274
|
*/
|
|
@@ -1616,22 +2285,46 @@ export namespace searchads360_v0 {
|
|
|
1616
2285
|
* Output only. The ID of the asset.
|
|
1617
2286
|
*/
|
|
1618
2287
|
id?: string | null;
|
|
2288
|
+
/**
|
|
2289
|
+
* Output only. An image asset.
|
|
2290
|
+
*/
|
|
2291
|
+
imageAsset?: Schema$GoogleAdsSearchads360V0Common__ImageAsset;
|
|
1619
2292
|
/**
|
|
1620
2293
|
* Output only. The datetime when this asset was last modified. The datetime is in the customer's time zone and in "yyyy-MM-dd HH:mm:ss.ssssss" format.
|
|
1621
2294
|
*/
|
|
1622
2295
|
lastModifiedTime?: string | null;
|
|
2296
|
+
/**
|
|
2297
|
+
* Output only. A unified location asset.
|
|
2298
|
+
*/
|
|
2299
|
+
locationAsset?: Schema$GoogleAdsSearchads360V0Common__UnifiedLocationAsset;
|
|
1623
2300
|
/**
|
|
1624
2301
|
* A mobile app asset.
|
|
1625
2302
|
*/
|
|
1626
2303
|
mobileAppAsset?: Schema$GoogleAdsSearchads360V0Common__MobileAppAsset;
|
|
2304
|
+
/**
|
|
2305
|
+
* Optional name of the asset.
|
|
2306
|
+
*/
|
|
2307
|
+
name?: string | null;
|
|
2308
|
+
/**
|
|
2309
|
+
* Output only. A unified page feed asset.
|
|
2310
|
+
*/
|
|
2311
|
+
pageFeedAsset?: Schema$GoogleAdsSearchads360V0Common__UnifiedPageFeedAsset;
|
|
1627
2312
|
/**
|
|
1628
2313
|
* Immutable. The resource name of the asset. Asset resource names have the form: `customers/{customer_id\}/assets/{asset_id\}`
|
|
1629
2314
|
*/
|
|
1630
2315
|
resourceName?: string | null;
|
|
2316
|
+
/**
|
|
2317
|
+
* Output only. A unified sitelink asset.
|
|
2318
|
+
*/
|
|
2319
|
+
sitelinkAsset?: Schema$GoogleAdsSearchads360V0Common__UnifiedSitelinkAsset;
|
|
1631
2320
|
/**
|
|
1632
2321
|
* Output only. The status of the asset.
|
|
1633
2322
|
*/
|
|
1634
2323
|
status?: string | null;
|
|
2324
|
+
/**
|
|
2325
|
+
* Output only. A text asset.
|
|
2326
|
+
*/
|
|
2327
|
+
textAsset?: Schema$GoogleAdsSearchads360V0Common__TextAsset;
|
|
1635
2328
|
/**
|
|
1636
2329
|
* URL template for constructing a tracking URL.
|
|
1637
2330
|
*/
|
|
@@ -1640,6 +2333,156 @@ export namespace searchads360_v0 {
|
|
|
1640
2333
|
* Output only. Type of the asset.
|
|
1641
2334
|
*/
|
|
1642
2335
|
type?: string | null;
|
|
2336
|
+
/**
|
|
2337
|
+
* Immutable. A YouTube video asset.
|
|
2338
|
+
*/
|
|
2339
|
+
youtubeVideoAsset?: Schema$GoogleAdsSearchads360V0Common__YoutubeVideoAsset;
|
|
2340
|
+
}
|
|
2341
|
+
/**
|
|
2342
|
+
* An asset group. AssetGroupAsset is used to link an asset to the asset group. AssetGroupSignal is used to associate a signal to an asset group.
|
|
2343
|
+
*/
|
|
2344
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__AssetGroup {
|
|
2345
|
+
/**
|
|
2346
|
+
* Output only. Overall ad strength of this asset group.
|
|
2347
|
+
*/
|
|
2348
|
+
adStrength?: string | null;
|
|
2349
|
+
/**
|
|
2350
|
+
* Immutable. The campaign with which this asset group is associated. The asset which is linked to the asset group.
|
|
2351
|
+
*/
|
|
2352
|
+
campaign?: string | null;
|
|
2353
|
+
/**
|
|
2354
|
+
* A list of final mobile URLs after all cross domain redirects. In performance max, by default, the urls are eligible for expansion unless opted out.
|
|
2355
|
+
*/
|
|
2356
|
+
finalMobileUrls?: string[] | null;
|
|
2357
|
+
/**
|
|
2358
|
+
* A list of final URLs after all cross domain redirects. In performance max, by default, the urls are eligible for expansion unless opted out.
|
|
2359
|
+
*/
|
|
2360
|
+
finalUrls?: string[] | null;
|
|
2361
|
+
/**
|
|
2362
|
+
* Output only. The ID of the asset group.
|
|
2363
|
+
*/
|
|
2364
|
+
id?: string | null;
|
|
2365
|
+
/**
|
|
2366
|
+
* Required. Name of the asset group. Required. It must have a minimum length of 1 and maximum length of 128. It must be unique under a campaign.
|
|
2367
|
+
*/
|
|
2368
|
+
name?: string | null;
|
|
2369
|
+
/**
|
|
2370
|
+
* First part of text that may appear appended to the url displayed in the ad.
|
|
2371
|
+
*/
|
|
2372
|
+
path1?: string | null;
|
|
2373
|
+
/**
|
|
2374
|
+
* Second part of text that may appear appended to the url displayed in the ad. This field can only be set when path1 is set.
|
|
2375
|
+
*/
|
|
2376
|
+
path2?: string | null;
|
|
2377
|
+
/**
|
|
2378
|
+
* Immutable. The resource name of the asset group. Asset group resource names have the form: `customers/{customer_id\}/assetGroups/{asset_group_id\}`
|
|
2379
|
+
*/
|
|
2380
|
+
resourceName?: string | null;
|
|
2381
|
+
/**
|
|
2382
|
+
* The status of the asset group.
|
|
2383
|
+
*/
|
|
2384
|
+
status?: string | null;
|
|
2385
|
+
}
|
|
2386
|
+
/**
|
|
2387
|
+
* AssetGroupAsset is the link between an asset and an asset group. Adding an AssetGroupAsset links an asset with an asset group.
|
|
2388
|
+
*/
|
|
2389
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__AssetGroupAsset {
|
|
2390
|
+
/**
|
|
2391
|
+
* Immutable. The asset which this asset group asset is linking.
|
|
2392
|
+
*/
|
|
2393
|
+
asset?: string | null;
|
|
2394
|
+
/**
|
|
2395
|
+
* Immutable. The asset group which this asset group asset is linking.
|
|
2396
|
+
*/
|
|
2397
|
+
assetGroup?: string | null;
|
|
2398
|
+
/**
|
|
2399
|
+
* The description of the placement of the asset within the asset group. For example: HEADLINE, YOUTUBE_VIDEO etc
|
|
2400
|
+
*/
|
|
2401
|
+
fieldType?: string | null;
|
|
2402
|
+
/**
|
|
2403
|
+
* Immutable. The resource name of the asset group asset. Asset group asset resource name have the form: `customers/{customer_id\}/assetGroupAssets/{asset_group_id\}~{asset_id\}~{field_type\}`
|
|
2404
|
+
*/
|
|
2405
|
+
resourceName?: string | null;
|
|
2406
|
+
/**
|
|
2407
|
+
* The status of the link between an asset and asset group.
|
|
2408
|
+
*/
|
|
2409
|
+
status?: string | null;
|
|
2410
|
+
}
|
|
2411
|
+
/**
|
|
2412
|
+
* Asset group asset combination data
|
|
2413
|
+
*/
|
|
2414
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__AssetGroupAssetCombinationData {
|
|
2415
|
+
/**
|
|
2416
|
+
* Output only. Served assets.
|
|
2417
|
+
*/
|
|
2418
|
+
assetCombinationServedAssets?: Schema$GoogleAdsSearchads360V0Common__AssetUsage[];
|
|
2419
|
+
}
|
|
2420
|
+
/**
|
|
2421
|
+
* AssetGroupListingGroupFilter represents a listing group filter tree node in an asset group.
|
|
2422
|
+
*/
|
|
2423
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__AssetGroupListingGroupFilter {
|
|
2424
|
+
/**
|
|
2425
|
+
* Immutable. The asset group which this asset group listing group filter is part of.
|
|
2426
|
+
*/
|
|
2427
|
+
assetGroup?: string | null;
|
|
2428
|
+
/**
|
|
2429
|
+
* Dimension value with which this listing group is refining its parent. Undefined for the root group.
|
|
2430
|
+
*/
|
|
2431
|
+
caseValue?: Schema$GoogleAdsSearchads360V0Resources__ListingGroupFilterDimension;
|
|
2432
|
+
/**
|
|
2433
|
+
* Output only. The ID of the ListingGroupFilter.
|
|
2434
|
+
*/
|
|
2435
|
+
id?: string | null;
|
|
2436
|
+
/**
|
|
2437
|
+
* Immutable. Resource name of the parent listing group subdivision. Null for the root listing group filter node.
|
|
2438
|
+
*/
|
|
2439
|
+
parentListingGroupFilter?: string | null;
|
|
2440
|
+
/**
|
|
2441
|
+
* Output only. The path of dimensions defining this listing group filter.
|
|
2442
|
+
*/
|
|
2443
|
+
path?: Schema$GoogleAdsSearchads360V0Resources__ListingGroupFilterDimensionPath;
|
|
2444
|
+
/**
|
|
2445
|
+
* Immutable. The resource name of the asset group listing group filter. Asset group listing group filter resource name have the form: `customers/{customer_id\}/assetGroupListingGroupFilters/{asset_group_id\}~{listing_group_filter_id\}`
|
|
2446
|
+
*/
|
|
2447
|
+
resourceName?: string | null;
|
|
2448
|
+
/**
|
|
2449
|
+
* Immutable. Type of a listing group filter node.
|
|
2450
|
+
*/
|
|
2451
|
+
type?: string | null;
|
|
2452
|
+
/**
|
|
2453
|
+
* Immutable. The vertical the current node tree represents. All nodes in the same tree must belong to the same vertical.
|
|
2454
|
+
*/
|
|
2455
|
+
vertical?: string | null;
|
|
2456
|
+
}
|
|
2457
|
+
/**
|
|
2458
|
+
* AssetGroupSignal represents a signal in an asset group. The existence of a signal tells the performance max campaign who's most likely to convert. Performance Max uses the signal to look for new people with similar or stronger intent to find conversions across Search, Display, Video, and more.
|
|
2459
|
+
*/
|
|
2460
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__AssetGroupSignal {
|
|
2461
|
+
/**
|
|
2462
|
+
* Immutable. The asset group which this asset group signal belongs to.
|
|
2463
|
+
*/
|
|
2464
|
+
assetGroup?: string | null;
|
|
2465
|
+
/**
|
|
2466
|
+
* Immutable. The audience signal to be used by the performance max campaign.
|
|
2467
|
+
*/
|
|
2468
|
+
audience?: Schema$GoogleAdsSearchads360V0Common__AudienceInfo;
|
|
2469
|
+
/**
|
|
2470
|
+
* Immutable. The resource name of the asset group signal. Asset group signal resource name have the form: `customers/{customer_id\}/assetGroupSignals/{asset_group_id\}~{signal_id\}`
|
|
2471
|
+
*/
|
|
2472
|
+
resourceName?: string | null;
|
|
2473
|
+
}
|
|
2474
|
+
/**
|
|
2475
|
+
* A view on the usage of ad group ad asset combination.
|
|
2476
|
+
*/
|
|
2477
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__AssetGroupTopCombinationView {
|
|
2478
|
+
/**
|
|
2479
|
+
* Output only. The top combinations of assets that served together.
|
|
2480
|
+
*/
|
|
2481
|
+
assetGroupTopCombinations?: Schema$GoogleAdsSearchads360V0Resources__AssetGroupAssetCombinationData[];
|
|
2482
|
+
/**
|
|
2483
|
+
* Output only. The resource name of the asset group top combination view. AssetGroup Top Combination view resource names have the form: `"customers/{customer_id\}/assetGroupTopCombinationViews/{asset_group_id\}~{asset_combination_category\}"
|
|
2484
|
+
*/
|
|
2485
|
+
resourceName?: string | null;
|
|
1643
2486
|
}
|
|
1644
2487
|
/**
|
|
1645
2488
|
* An asset set representing a collection of assets. Use AssetSetAsset to link an asset to the asset set.
|
|
@@ -1654,6 +2497,48 @@ export namespace searchads360_v0 {
|
|
|
1654
2497
|
*/
|
|
1655
2498
|
resourceName?: string | null;
|
|
1656
2499
|
}
|
|
2500
|
+
/**
|
|
2501
|
+
* AssetSetAsset is the link between an asset and an asset set. Adding an AssetSetAsset links an asset with an asset set.
|
|
2502
|
+
*/
|
|
2503
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__AssetSetAsset {
|
|
2504
|
+
/**
|
|
2505
|
+
* Immutable. The asset which this asset set asset is linking to.
|
|
2506
|
+
*/
|
|
2507
|
+
asset?: string | null;
|
|
2508
|
+
/**
|
|
2509
|
+
* Immutable. The asset set which this asset set asset is linking to.
|
|
2510
|
+
*/
|
|
2511
|
+
assetSet?: string | null;
|
|
2512
|
+
/**
|
|
2513
|
+
* Immutable. The resource name of the asset set asset. Asset set asset resource names have the form: `customers/{customer_id\}/assetSetAssets/{asset_set_id\}~{asset_id\}`
|
|
2514
|
+
*/
|
|
2515
|
+
resourceName?: string | null;
|
|
2516
|
+
/**
|
|
2517
|
+
* Output only. The status of the asset set asset. Read-only.
|
|
2518
|
+
*/
|
|
2519
|
+
status?: string | null;
|
|
2520
|
+
}
|
|
2521
|
+
/**
|
|
2522
|
+
* Audience is an effective targeting option that lets you intersect different segment attributes, such as detailed demographics and affinities, to create audiences that represent sections of your target segments.
|
|
2523
|
+
*/
|
|
2524
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__Audience {
|
|
2525
|
+
/**
|
|
2526
|
+
* Description of this audience.
|
|
2527
|
+
*/
|
|
2528
|
+
description?: string | null;
|
|
2529
|
+
/**
|
|
2530
|
+
* Output only. ID of the audience.
|
|
2531
|
+
*/
|
|
2532
|
+
id?: string | null;
|
|
2533
|
+
/**
|
|
2534
|
+
* Required. Name of the audience. It should be unique across all audiences. It must have a minimum length of 1 and maximum length of 255.
|
|
2535
|
+
*/
|
|
2536
|
+
name?: string | null;
|
|
2537
|
+
/**
|
|
2538
|
+
* Immutable. The resource name of the audience. Audience names have the form: `customers/{customer_id\}/audiences/{audience_id\}`
|
|
2539
|
+
*/
|
|
2540
|
+
resourceName?: string | null;
|
|
2541
|
+
}
|
|
1657
2542
|
/**
|
|
1658
2543
|
* A bidding strategy.
|
|
1659
2544
|
*/
|
|
@@ -1852,7 +2737,7 @@ export namespace searchads360_v0 {
|
|
|
1852
2737
|
*/
|
|
1853
2738
|
resourceName?: string | null;
|
|
1854
2739
|
/**
|
|
1855
|
-
* Selective optimization setting for this campaign, which includes a set of conversion actions to optimize this campaign towards.
|
|
2740
|
+
* Selective optimization setting for this campaign, which includes a set of conversion actions to optimize this campaign towards. This feature only applies to app campaigns that use MULTI_CHANNEL as AdvertisingChannelType and APP_CAMPAIGN or APP_CAMPAIGN_FOR_ENGAGEMENT as AdvertisingChannelSubType.
|
|
1856
2741
|
*/
|
|
1857
2742
|
selectiveOptimization?: Schema$GoogleAdsSearchads360V0Resources_Campaign_SelectiveOptimization;
|
|
1858
2743
|
/**
|
|
@@ -1904,9 +2789,51 @@ export namespace searchads360_v0 {
|
|
|
1904
2789
|
*/
|
|
1905
2790
|
urlCustomParameters?: Schema$GoogleAdsSearchads360V0Common__CustomParameter[];
|
|
1906
2791
|
/**
|
|
1907
|
-
* Represents opting out of URL expansion to more targeted URLs. If opted out (true), only the final URLs in the asset group or URLs specified in the advertiser's Google Merchant Center or business data feeds are targeted. If opted in (false), the entire domain will be targeted. This field can only be set for Performance Max campaigns, where the default value is false.
|
|
2792
|
+
* Represents opting out of URL expansion to more targeted URLs. If opted out (true), only the final URLs in the asset group or URLs specified in the advertiser's Google Merchant Center or business data feeds are targeted. If opted in (false), the entire domain will be targeted. This field can only be set for Performance Max campaigns, where the default value is false.
|
|
2793
|
+
*/
|
|
2794
|
+
urlExpansionOptOut?: boolean | null;
|
|
2795
|
+
}
|
|
2796
|
+
/**
|
|
2797
|
+
* A link between a Campaign and an Asset.
|
|
2798
|
+
*/
|
|
2799
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__CampaignAsset {
|
|
2800
|
+
/**
|
|
2801
|
+
* Immutable. The asset which is linked to the campaign.
|
|
2802
|
+
*/
|
|
2803
|
+
asset?: string | null;
|
|
2804
|
+
/**
|
|
2805
|
+
* Immutable. The campaign to which the asset is linked.
|
|
2806
|
+
*/
|
|
2807
|
+
campaign?: string | null;
|
|
2808
|
+
/**
|
|
2809
|
+
* Immutable. The resource name of the campaign asset. CampaignAsset resource names have the form: `customers/{customer_id\}/campaignAssets/{campaign_id\}~{asset_id\}~{field_type\}`
|
|
2810
|
+
*/
|
|
2811
|
+
resourceName?: string | null;
|
|
2812
|
+
/**
|
|
2813
|
+
* Output only. Status of the campaign asset.
|
|
2814
|
+
*/
|
|
2815
|
+
status?: string | null;
|
|
2816
|
+
}
|
|
2817
|
+
/**
|
|
2818
|
+
* CampaignAssetSet is the linkage between a campaign and an asset set. Adding a CampaignAssetSet links an asset set with a campaign.
|
|
2819
|
+
*/
|
|
2820
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__CampaignAssetSet {
|
|
2821
|
+
/**
|
|
2822
|
+
* Immutable. The asset set which is linked to the campaign.
|
|
2823
|
+
*/
|
|
2824
|
+
assetSet?: string | null;
|
|
2825
|
+
/**
|
|
2826
|
+
* Immutable. The campaign to which this asset set is linked.
|
|
2827
|
+
*/
|
|
2828
|
+
campaign?: string | null;
|
|
2829
|
+
/**
|
|
2830
|
+
* Immutable. The resource name of the campaign asset set. Asset set asset resource names have the form: `customers/{customer_id\}/campaignAssetSets/{campaign_id\}~{asset_set_id\}`
|
|
2831
|
+
*/
|
|
2832
|
+
resourceName?: string | null;
|
|
2833
|
+
/**
|
|
2834
|
+
* Output only. The status of the campaign asset set asset. Read-only.
|
|
1908
2835
|
*/
|
|
1909
|
-
|
|
2836
|
+
status?: string | null;
|
|
1910
2837
|
}
|
|
1911
2838
|
/**
|
|
1912
2839
|
* A campaign audience view. Includes performance data from interests and remarketing lists for Display Network and YouTube Network ads, and remarketing lists for search ads (RLSA), aggregated by campaign and audience criterion. This view only includes audiences attached at the campaign level.
|
|
@@ -2028,6 +2955,116 @@ export namespace searchads360_v0 {
|
|
|
2028
2955
|
*/
|
|
2029
2956
|
resourceName?: string | null;
|
|
2030
2957
|
}
|
|
2958
|
+
/**
|
|
2959
|
+
* Cart data sales view.
|
|
2960
|
+
*/
|
|
2961
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__CartDataSalesView {
|
|
2962
|
+
/**
|
|
2963
|
+
* Output only. The resource name of the Cart data sales view. Cart data sales view resource names have the form: `customers/{customer_id\}/cartDataSalesView`
|
|
2964
|
+
*/
|
|
2965
|
+
resourceName?: string | null;
|
|
2966
|
+
}
|
|
2967
|
+
/**
|
|
2968
|
+
* A conversion.
|
|
2969
|
+
*/
|
|
2970
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__Conversion {
|
|
2971
|
+
/**
|
|
2972
|
+
* Output only. Ad ID. A value of 0 indicates that the ad is unattributed.
|
|
2973
|
+
*/
|
|
2974
|
+
adId?: string | null;
|
|
2975
|
+
/**
|
|
2976
|
+
* Output only. For offline conversions, this is an ID provided by advertisers. If an advertiser doesn't specify such an ID, Search Ads 360 generates one. For online conversions, this is equal to the id column or the floodlight_order_id column depending on the advertiser's Floodlight instructions.
|
|
2977
|
+
*/
|
|
2978
|
+
advertiserConversionId?: string | null;
|
|
2979
|
+
/**
|
|
2980
|
+
* Output only. Asset field type of the conversion event.
|
|
2981
|
+
*/
|
|
2982
|
+
assetFieldType?: string | null;
|
|
2983
|
+
/**
|
|
2984
|
+
* Output only. ID of the asset which was interacted with during the conversion event.
|
|
2985
|
+
*/
|
|
2986
|
+
assetId?: string | null;
|
|
2987
|
+
/**
|
|
2988
|
+
* Output only. What the conversion is attributed to: Visit or Keyword+Ad.
|
|
2989
|
+
*/
|
|
2990
|
+
attributionType?: string | null;
|
|
2991
|
+
/**
|
|
2992
|
+
* Output only. A unique string, for the visit that the conversion is attributed to, that is passed to the landing page as the click id URL parameter.
|
|
2993
|
+
*/
|
|
2994
|
+
clickId?: string | null;
|
|
2995
|
+
/**
|
|
2996
|
+
* Output only. The timestamp of the conversion event.
|
|
2997
|
+
*/
|
|
2998
|
+
conversionDateTime?: string | null;
|
|
2999
|
+
/**
|
|
3000
|
+
* Output only. The timestamp of the last time the conversion was modified.
|
|
3001
|
+
*/
|
|
3002
|
+
conversionLastModifiedDateTime?: string | null;
|
|
3003
|
+
/**
|
|
3004
|
+
* Output only. The quantity of items recorded by the conversion, as determined by the qty url parameter. The advertiser is responsible for dynamically populating the parameter (such as number of items sold in the conversion), otherwise it defaults to 1.
|
|
3005
|
+
*/
|
|
3006
|
+
conversionQuantity?: string | null;
|
|
3007
|
+
/**
|
|
3008
|
+
* Output only. The adjusted revenue in micros for the conversion event. This will always be in the currency of the serving account.
|
|
3009
|
+
*/
|
|
3010
|
+
conversionRevenueMicros?: string | null;
|
|
3011
|
+
/**
|
|
3012
|
+
* Output only. The timestamp of the visit that the conversion is attributed to.
|
|
3013
|
+
*/
|
|
3014
|
+
conversionVisitDateTime?: string | null;
|
|
3015
|
+
/**
|
|
3016
|
+
* Output only. Search Ads 360 criterion ID. A value of 0 indicates that the criterion is unattributed.
|
|
3017
|
+
*/
|
|
3018
|
+
criterionId?: string | null;
|
|
3019
|
+
/**
|
|
3020
|
+
* Output only. The Floodlight order ID provided by the advertiser for the conversion.
|
|
3021
|
+
*/
|
|
3022
|
+
floodlightOrderId?: string | null;
|
|
3023
|
+
/**
|
|
3024
|
+
* Output only. The original, unchanged revenue associated with the Floodlight event (in the currency of the current report), before Floodlight currency instruction modifications.
|
|
3025
|
+
*/
|
|
3026
|
+
floodlightOriginalRevenue?: string | null;
|
|
3027
|
+
/**
|
|
3028
|
+
* Output only. The ID of the conversion
|
|
3029
|
+
*/
|
|
3030
|
+
id?: string | null;
|
|
3031
|
+
/**
|
|
3032
|
+
* Output only. The SearchAds360 inventory account ID containing the product that was clicked on. SearchAds360 generates this ID when you link an inventory account in SearchAds360.
|
|
3033
|
+
*/
|
|
3034
|
+
merchantId?: string | null;
|
|
3035
|
+
/**
|
|
3036
|
+
* Output only. The sales channel of the product that was clicked on: Online or Local.
|
|
3037
|
+
*/
|
|
3038
|
+
productChannel?: string | null;
|
|
3039
|
+
/**
|
|
3040
|
+
* Output only. The country (ISO-3166-format) registered for the inventory feed that contains the product clicked on.
|
|
3041
|
+
*/
|
|
3042
|
+
productCountryCode?: string | null;
|
|
3043
|
+
/**
|
|
3044
|
+
* Output only. The ID of the product clicked on.
|
|
3045
|
+
*/
|
|
3046
|
+
productId?: string | null;
|
|
3047
|
+
/**
|
|
3048
|
+
* Output only. The language (ISO-639-1) that has been set for the Merchant Center feed containing data about the product.
|
|
3049
|
+
*/
|
|
3050
|
+
productLanguageCode?: string | null;
|
|
3051
|
+
/**
|
|
3052
|
+
* Output only. The store in the Local Inventory Ad that was clicked on. This should match the store IDs used in your local products feed.
|
|
3053
|
+
*/
|
|
3054
|
+
productStoreId?: string | null;
|
|
3055
|
+
/**
|
|
3056
|
+
* Output only. The resource name of the conversion. Conversion resource names have the form: `customers/{customer_id\}/conversions/{ad_group_id\}~{criterion_id\}~{ds_conversion_id\}`
|
|
3057
|
+
*/
|
|
3058
|
+
resourceName?: string | null;
|
|
3059
|
+
/**
|
|
3060
|
+
* Output only. The status of the conversion, either ENABLED or REMOVED..
|
|
3061
|
+
*/
|
|
3062
|
+
status?: string | null;
|
|
3063
|
+
/**
|
|
3064
|
+
* Output only. The SearchAds360 visit ID that the conversion is attributed to.
|
|
3065
|
+
*/
|
|
3066
|
+
visitId?: string | null;
|
|
3067
|
+
}
|
|
2031
3068
|
/**
|
|
2032
3069
|
* A conversion action.
|
|
2033
3070
|
*/
|
|
@@ -2244,6 +3281,44 @@ export namespace searchads360_v0 {
|
|
|
2244
3281
|
*/
|
|
2245
3282
|
trackingUrlTemplate?: string | null;
|
|
2246
3283
|
}
|
|
3284
|
+
/**
|
|
3285
|
+
* A link between a customer and an asset.
|
|
3286
|
+
*/
|
|
3287
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__CustomerAsset {
|
|
3288
|
+
/**
|
|
3289
|
+
* Required. Immutable. The asset which is linked to the customer.
|
|
3290
|
+
*/
|
|
3291
|
+
asset?: string | null;
|
|
3292
|
+
/**
|
|
3293
|
+
* Immutable. The resource name of the customer asset. CustomerAsset resource names have the form: `customers/{customer_id\}/customerAssets/{asset_id\}~{field_type\}`
|
|
3294
|
+
*/
|
|
3295
|
+
resourceName?: string | null;
|
|
3296
|
+
/**
|
|
3297
|
+
* Status of the customer asset.
|
|
3298
|
+
*/
|
|
3299
|
+
status?: string | null;
|
|
3300
|
+
}
|
|
3301
|
+
/**
|
|
3302
|
+
* CustomerAssetSet is the linkage between a customer and an asset set. Adding a CustomerAssetSet links an asset set with a customer.
|
|
3303
|
+
*/
|
|
3304
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__CustomerAssetSet {
|
|
3305
|
+
/**
|
|
3306
|
+
* Immutable. The asset set which is linked to the customer.
|
|
3307
|
+
*/
|
|
3308
|
+
assetSet?: string | null;
|
|
3309
|
+
/**
|
|
3310
|
+
* Immutable. The customer to which this asset set is linked.
|
|
3311
|
+
*/
|
|
3312
|
+
customer?: string | null;
|
|
3313
|
+
/**
|
|
3314
|
+
* Immutable. The resource name of the customer asset set. Asset set asset resource names have the form: `customers/{customer_id\}/customerAssetSets/{asset_set_id\}`
|
|
3315
|
+
*/
|
|
3316
|
+
resourceName?: string | null;
|
|
3317
|
+
/**
|
|
3318
|
+
* Output only. The status of the customer asset set asset. Read-only.
|
|
3319
|
+
*/
|
|
3320
|
+
status?: string | null;
|
|
3321
|
+
}
|
|
2247
3322
|
/**
|
|
2248
3323
|
* A link between the given customer and a client customer. CustomerClients only exist for manager customers. All direct and indirect client customers are included, as well as the manager itself.
|
|
2249
3324
|
*/
|
|
@@ -2357,6 +3432,43 @@ export namespace searchads360_v0 {
|
|
|
2357
3432
|
*/
|
|
2358
3433
|
resourceName?: string | null;
|
|
2359
3434
|
}
|
|
3435
|
+
/**
|
|
3436
|
+
* A geo target constant.
|
|
3437
|
+
*/
|
|
3438
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__GeoTargetConstant {
|
|
3439
|
+
/**
|
|
3440
|
+
* Output only. The fully qualified English name, consisting of the target's name and that of its parent and country.
|
|
3441
|
+
*/
|
|
3442
|
+
canonicalName?: string | null;
|
|
3443
|
+
/**
|
|
3444
|
+
* Output only. The ISO-3166-1 alpha-2 country code that is associated with the target.
|
|
3445
|
+
*/
|
|
3446
|
+
countryCode?: string | null;
|
|
3447
|
+
/**
|
|
3448
|
+
* Output only. The ID of the geo target constant.
|
|
3449
|
+
*/
|
|
3450
|
+
id?: string | null;
|
|
3451
|
+
/**
|
|
3452
|
+
* Output only. Geo target constant English name.
|
|
3453
|
+
*/
|
|
3454
|
+
name?: string | null;
|
|
3455
|
+
/**
|
|
3456
|
+
* Output only. The resource name of the parent geo target constant. Geo target constant resource names have the form: `geoTargetConstants/{parent_geo_target_constant_id\}`
|
|
3457
|
+
*/
|
|
3458
|
+
parentGeoTarget?: string | null;
|
|
3459
|
+
/**
|
|
3460
|
+
* Output only. The resource name of the geo target constant. Geo target constant resource names have the form: `geoTargetConstants/{geo_target_constant_id\}`
|
|
3461
|
+
*/
|
|
3462
|
+
resourceName?: string | null;
|
|
3463
|
+
/**
|
|
3464
|
+
* Output only. Geo target constant status.
|
|
3465
|
+
*/
|
|
3466
|
+
status?: string | null;
|
|
3467
|
+
/**
|
|
3468
|
+
* Output only. Geo target constant target type.
|
|
3469
|
+
*/
|
|
3470
|
+
targetType?: string | null;
|
|
3471
|
+
}
|
|
2360
3472
|
/**
|
|
2361
3473
|
* A keyword view.
|
|
2362
3474
|
*/
|
|
@@ -2391,6 +3503,73 @@ export namespace searchads360_v0 {
|
|
|
2391
3503
|
*/
|
|
2392
3504
|
textLabel?: Schema$GoogleAdsSearchads360V0Common__TextLabel;
|
|
2393
3505
|
}
|
|
3506
|
+
/**
|
|
3507
|
+
* A language.
|
|
3508
|
+
*/
|
|
3509
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__LanguageConstant {
|
|
3510
|
+
/**
|
|
3511
|
+
* Output only. The language code, for example, "en_US", "en_AU", "es", "fr", etc.
|
|
3512
|
+
*/
|
|
3513
|
+
code?: string | null;
|
|
3514
|
+
/**
|
|
3515
|
+
* Output only. The ID of the language constant.
|
|
3516
|
+
*/
|
|
3517
|
+
id?: string | null;
|
|
3518
|
+
/**
|
|
3519
|
+
* Output only. The full name of the language in English, for example, "English (US)", "Spanish", etc.
|
|
3520
|
+
*/
|
|
3521
|
+
name?: string | null;
|
|
3522
|
+
/**
|
|
3523
|
+
* Output only. The resource name of the language constant. Language constant resource names have the form: `languageConstants/{criterion_id\}`
|
|
3524
|
+
*/
|
|
3525
|
+
resourceName?: string | null;
|
|
3526
|
+
/**
|
|
3527
|
+
* Output only. Whether the language is targetable.
|
|
3528
|
+
*/
|
|
3529
|
+
targetable?: boolean | null;
|
|
3530
|
+
}
|
|
3531
|
+
/**
|
|
3532
|
+
* Listing dimensions for the asset group listing group filter.
|
|
3533
|
+
*/
|
|
3534
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__ListingGroupFilterDimension {
|
|
3535
|
+
/**
|
|
3536
|
+
* Bidding category of a product offer.
|
|
3537
|
+
*/
|
|
3538
|
+
productBiddingCategory?: Schema$GoogleAdsSearchads360V0Resources_ListingGroupFilterDimension_ProductBiddingCategory;
|
|
3539
|
+
/**
|
|
3540
|
+
* Brand of a product offer.
|
|
3541
|
+
*/
|
|
3542
|
+
productBrand?: Schema$GoogleAdsSearchads360V0Resources_ListingGroupFilterDimension_ProductBrand;
|
|
3543
|
+
/**
|
|
3544
|
+
* Locality of a product offer.
|
|
3545
|
+
*/
|
|
3546
|
+
productChannel?: Schema$GoogleAdsSearchads360V0Resources_ListingGroupFilterDimension_ProductChannel;
|
|
3547
|
+
/**
|
|
3548
|
+
* Condition of a product offer.
|
|
3549
|
+
*/
|
|
3550
|
+
productCondition?: Schema$GoogleAdsSearchads360V0Resources_ListingGroupFilterDimension_ProductCondition;
|
|
3551
|
+
/**
|
|
3552
|
+
* Custom attribute of a product offer.
|
|
3553
|
+
*/
|
|
3554
|
+
productCustomAttribute?: Schema$GoogleAdsSearchads360V0Resources_ListingGroupFilterDimension_ProductCustomAttribute;
|
|
3555
|
+
/**
|
|
3556
|
+
* Item id of a product offer.
|
|
3557
|
+
*/
|
|
3558
|
+
productItemId?: Schema$GoogleAdsSearchads360V0Resources_ListingGroupFilterDimension_ProductItemId;
|
|
3559
|
+
/**
|
|
3560
|
+
* Type of a product offer.
|
|
3561
|
+
*/
|
|
3562
|
+
productType?: Schema$GoogleAdsSearchads360V0Resources_ListingGroupFilterDimension_ProductType;
|
|
3563
|
+
}
|
|
3564
|
+
/**
|
|
3565
|
+
* The path defining of dimensions defining a listing group filter.
|
|
3566
|
+
*/
|
|
3567
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__ListingGroupFilterDimensionPath {
|
|
3568
|
+
/**
|
|
3569
|
+
* Output only. The complete path of dimensions through the listing group filter hierarchy (excluding the root node) to this listing group filter.
|
|
3570
|
+
*/
|
|
3571
|
+
dimensions?: Schema$GoogleAdsSearchads360V0Resources__ListingGroupFilterDimension[];
|
|
3572
|
+
}
|
|
2394
3573
|
/**
|
|
2395
3574
|
* A location view summarizes the performance of campaigns by Location criteria.
|
|
2396
3575
|
*/
|
|
@@ -2400,6 +3579,43 @@ export namespace searchads360_v0 {
|
|
|
2400
3579
|
*/
|
|
2401
3580
|
resourceName?: string | null;
|
|
2402
3581
|
}
|
|
3582
|
+
/**
|
|
3583
|
+
* A Product Bidding Category.
|
|
3584
|
+
*/
|
|
3585
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__ProductBiddingCategoryConstant {
|
|
3586
|
+
/**
|
|
3587
|
+
* Output only. Two-letter upper-case country code of the product bidding category.
|
|
3588
|
+
*/
|
|
3589
|
+
countryCode?: string | null;
|
|
3590
|
+
/**
|
|
3591
|
+
* Output only. ID of the product bidding category. This ID is equivalent to the google_product_category ID as described in this article: https://support.google.com/merchants/answer/6324436.
|
|
3592
|
+
*/
|
|
3593
|
+
id?: string | null;
|
|
3594
|
+
/**
|
|
3595
|
+
* Output only. Language code of the product bidding category.
|
|
3596
|
+
*/
|
|
3597
|
+
languageCode?: string | null;
|
|
3598
|
+
/**
|
|
3599
|
+
* Output only. Level of the product bidding category.
|
|
3600
|
+
*/
|
|
3601
|
+
level?: string | null;
|
|
3602
|
+
/**
|
|
3603
|
+
* Output only. Display value of the product bidding category localized according to language_code.
|
|
3604
|
+
*/
|
|
3605
|
+
localizedName?: string | null;
|
|
3606
|
+
/**
|
|
3607
|
+
* Output only. Resource name of the parent product bidding category.
|
|
3608
|
+
*/
|
|
3609
|
+
productBiddingCategoryConstantParent?: string | null;
|
|
3610
|
+
/**
|
|
3611
|
+
* Output only. The resource name of the product bidding category. Product bidding category resource names have the form: `productBiddingCategoryConstants/{country_code\}~{level\}~{id\}`
|
|
3612
|
+
*/
|
|
3613
|
+
resourceName?: string | null;
|
|
3614
|
+
/**
|
|
3615
|
+
* Output only. Status of the product bidding category.
|
|
3616
|
+
*/
|
|
3617
|
+
status?: string | null;
|
|
3618
|
+
}
|
|
2403
3619
|
/**
|
|
2404
3620
|
* A product group view.
|
|
2405
3621
|
*/
|
|
@@ -2470,6 +3686,15 @@ export namespace searchads360_v0 {
|
|
|
2470
3686
|
*/
|
|
2471
3687
|
typeUrl?: string | null;
|
|
2472
3688
|
}
|
|
3689
|
+
/**
|
|
3690
|
+
* Shopping performance view. Provides Shopping campaign statistics aggregated at several product dimension levels. Product dimension values from Merchant Center such as brand, category, custom attributes, product condition and product type will reflect the state of each dimension as of the date and time when the corresponding event was recorded.
|
|
3691
|
+
*/
|
|
3692
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__ShoppingPerformanceView {
|
|
3693
|
+
/**
|
|
3694
|
+
* Output only. The resource name of the Shopping performance view. Shopping performance view resource names have the form: `customers/{customer_id\}/shoppingPerformanceView`
|
|
3695
|
+
*/
|
|
3696
|
+
resourceName?: string | null;
|
|
3697
|
+
}
|
|
2473
3698
|
/**
|
|
2474
3699
|
* A user list. This is a list of users a customer may target.
|
|
2475
3700
|
*/
|
|
@@ -2491,6 +3716,67 @@ export namespace searchads360_v0 {
|
|
|
2491
3716
|
*/
|
|
2492
3717
|
type?: string | null;
|
|
2493
3718
|
}
|
|
3719
|
+
/**
|
|
3720
|
+
* A visit.
|
|
3721
|
+
*/
|
|
3722
|
+
export interface Schema$GoogleAdsSearchads360V0Resources__Visit {
|
|
3723
|
+
/**
|
|
3724
|
+
* Output only. Ad ID. A value of 0 indicates that the ad is unattributed.
|
|
3725
|
+
*/
|
|
3726
|
+
adId?: string | null;
|
|
3727
|
+
/**
|
|
3728
|
+
* Output only. Asset field type of the visit event.
|
|
3729
|
+
*/
|
|
3730
|
+
assetFieldType?: string | null;
|
|
3731
|
+
/**
|
|
3732
|
+
* Output only. ID of the asset which was interacted with during the visit event.
|
|
3733
|
+
*/
|
|
3734
|
+
assetId?: string | null;
|
|
3735
|
+
/**
|
|
3736
|
+
* Output only. A unique string for each visit that is passed to the landing page as the click id URL parameter.
|
|
3737
|
+
*/
|
|
3738
|
+
clickId?: string | null;
|
|
3739
|
+
/**
|
|
3740
|
+
* Output only. Search Ads 360 keyword ID. A value of 0 indicates that the keyword is unattributed.
|
|
3741
|
+
*/
|
|
3742
|
+
criterionId?: string | null;
|
|
3743
|
+
/**
|
|
3744
|
+
* Output only. The ID of the visit.
|
|
3745
|
+
*/
|
|
3746
|
+
id?: string | null;
|
|
3747
|
+
/**
|
|
3748
|
+
* Output only. The Search Ads 360 inventory account ID containing the product that was clicked on. Search Ads 360 generates this ID when you link an inventory account in Search Ads 360.
|
|
3749
|
+
*/
|
|
3750
|
+
merchantId?: string | null;
|
|
3751
|
+
/**
|
|
3752
|
+
* Output only. The sales channel of the product that was clicked on: Online or Local.
|
|
3753
|
+
*/
|
|
3754
|
+
productChannel?: string | null;
|
|
3755
|
+
/**
|
|
3756
|
+
* Output only. The country (ISO-3166 format) registered for the inventory feed that contains the product clicked on.
|
|
3757
|
+
*/
|
|
3758
|
+
productCountryCode?: string | null;
|
|
3759
|
+
/**
|
|
3760
|
+
* Output only. The ID of the product clicked on.
|
|
3761
|
+
*/
|
|
3762
|
+
productId?: string | null;
|
|
3763
|
+
/**
|
|
3764
|
+
* Output only. The language (ISO-639-1) that has been set for the Merchant Center feed containing data about the product.
|
|
3765
|
+
*/
|
|
3766
|
+
productLanguageCode?: string | null;
|
|
3767
|
+
/**
|
|
3768
|
+
* Output only. The store in the Local Inventory Ad that was clicked on. This should match the store IDs used in your local products feed.
|
|
3769
|
+
*/
|
|
3770
|
+
productStoreId?: string | null;
|
|
3771
|
+
/**
|
|
3772
|
+
* Output only. The resource name of the visit. Visit resource names have the form: `customers/{customer_id\}/visits/{ad_group_id\}~{criterion_id\}~{ds_visit_id\}`
|
|
3773
|
+
*/
|
|
3774
|
+
resourceName?: string | null;
|
|
3775
|
+
/**
|
|
3776
|
+
* Output only. The timestamp of the visit event. The timestamp is in the customer's time zone and in "yyyy-MM-dd HH:mm:ss" format.
|
|
3777
|
+
*/
|
|
3778
|
+
visitDateTime?: string | null;
|
|
3779
|
+
}
|
|
2494
3780
|
/**
|
|
2495
3781
|
* A webpage view.
|
|
2496
3782
|
*/
|
|
@@ -2551,6 +3837,14 @@ export namespace searchads360_v0 {
|
|
|
2551
3837
|
* The ad group ad label referenced in the query.
|
|
2552
3838
|
*/
|
|
2553
3839
|
adGroupAdLabel?: Schema$GoogleAdsSearchads360V0Resources__AdGroupAdLabel;
|
|
3840
|
+
/**
|
|
3841
|
+
* The ad group asset referenced in the query.
|
|
3842
|
+
*/
|
|
3843
|
+
adGroupAsset?: Schema$GoogleAdsSearchads360V0Resources__AdGroupAsset;
|
|
3844
|
+
/**
|
|
3845
|
+
* The ad group asset set referenced in the query.
|
|
3846
|
+
*/
|
|
3847
|
+
adGroupAssetSet?: Schema$GoogleAdsSearchads360V0Resources__AdGroupAssetSet;
|
|
2554
3848
|
/**
|
|
2555
3849
|
* The ad group audience view referenced in the query.
|
|
2556
3850
|
*/
|
|
@@ -2579,10 +3873,38 @@ export namespace searchads360_v0 {
|
|
|
2579
3873
|
* The asset referenced in the query.
|
|
2580
3874
|
*/
|
|
2581
3875
|
asset?: Schema$GoogleAdsSearchads360V0Resources__Asset;
|
|
3876
|
+
/**
|
|
3877
|
+
* The asset group referenced in the query.
|
|
3878
|
+
*/
|
|
3879
|
+
assetGroup?: Schema$GoogleAdsSearchads360V0Resources__AssetGroup;
|
|
3880
|
+
/**
|
|
3881
|
+
* The asset group asset referenced in the query.
|
|
3882
|
+
*/
|
|
3883
|
+
assetGroupAsset?: Schema$GoogleAdsSearchads360V0Resources__AssetGroupAsset;
|
|
3884
|
+
/**
|
|
3885
|
+
* The asset group listing group filter referenced in the query.
|
|
3886
|
+
*/
|
|
3887
|
+
assetGroupListingGroupFilter?: Schema$GoogleAdsSearchads360V0Resources__AssetGroupListingGroupFilter;
|
|
3888
|
+
/**
|
|
3889
|
+
* The asset group signal referenced in the query.
|
|
3890
|
+
*/
|
|
3891
|
+
assetGroupSignal?: Schema$GoogleAdsSearchads360V0Resources__AssetGroupSignal;
|
|
3892
|
+
/**
|
|
3893
|
+
* The asset group top combination view referenced in the query.
|
|
3894
|
+
*/
|
|
3895
|
+
assetGroupTopCombinationView?: Schema$GoogleAdsSearchads360V0Resources__AssetGroupTopCombinationView;
|
|
2582
3896
|
/**
|
|
2583
3897
|
* The asset set referenced in the query.
|
|
2584
3898
|
*/
|
|
2585
3899
|
assetSet?: Schema$GoogleAdsSearchads360V0Resources__AssetSet;
|
|
3900
|
+
/**
|
|
3901
|
+
* The asset set asset referenced in the query.
|
|
3902
|
+
*/
|
|
3903
|
+
assetSetAsset?: Schema$GoogleAdsSearchads360V0Resources__AssetSetAsset;
|
|
3904
|
+
/**
|
|
3905
|
+
* The Audience referenced in the query.
|
|
3906
|
+
*/
|
|
3907
|
+
audience?: Schema$GoogleAdsSearchads360V0Resources__Audience;
|
|
2586
3908
|
/**
|
|
2587
3909
|
* The bidding strategy referenced in the query.
|
|
2588
3910
|
*/
|
|
@@ -2591,6 +3913,14 @@ export namespace searchads360_v0 {
|
|
|
2591
3913
|
* The campaign referenced in the query.
|
|
2592
3914
|
*/
|
|
2593
3915
|
campaign?: Schema$GoogleAdsSearchads360V0Resources__Campaign;
|
|
3916
|
+
/**
|
|
3917
|
+
* The campaign asset referenced in the query.
|
|
3918
|
+
*/
|
|
3919
|
+
campaignAsset?: Schema$GoogleAdsSearchads360V0Resources__CampaignAsset;
|
|
3920
|
+
/**
|
|
3921
|
+
* The campaign asset set referenced in the query.
|
|
3922
|
+
*/
|
|
3923
|
+
campaignAssetSet?: Schema$GoogleAdsSearchads360V0Resources__CampaignAssetSet;
|
|
2594
3924
|
/**
|
|
2595
3925
|
* The campaign audience view referenced in the query.
|
|
2596
3926
|
*/
|
|
@@ -2607,6 +3937,14 @@ export namespace searchads360_v0 {
|
|
|
2607
3937
|
* The campaign label referenced in the query.
|
|
2608
3938
|
*/
|
|
2609
3939
|
campaignLabel?: Schema$GoogleAdsSearchads360V0Resources__CampaignLabel;
|
|
3940
|
+
/**
|
|
3941
|
+
* The cart data sales view referenced in the query.
|
|
3942
|
+
*/
|
|
3943
|
+
cartDataSalesView?: Schema$GoogleAdsSearchads360V0Resources__CartDataSalesView;
|
|
3944
|
+
/**
|
|
3945
|
+
* The event level conversion referenced in the query.
|
|
3946
|
+
*/
|
|
3947
|
+
conversion?: Schema$GoogleAdsSearchads360V0Resources__Conversion;
|
|
2610
3948
|
/**
|
|
2611
3949
|
* The conversion action referenced in the query.
|
|
2612
3950
|
*/
|
|
@@ -2619,6 +3957,14 @@ export namespace searchads360_v0 {
|
|
|
2619
3957
|
* The customer referenced in the query.
|
|
2620
3958
|
*/
|
|
2621
3959
|
customer?: Schema$GoogleAdsSearchads360V0Resources__Customer;
|
|
3960
|
+
/**
|
|
3961
|
+
* The customer asset referenced in the query.
|
|
3962
|
+
*/
|
|
3963
|
+
customerAsset?: Schema$GoogleAdsSearchads360V0Resources__CustomerAsset;
|
|
3964
|
+
/**
|
|
3965
|
+
* The customer asset set referenced in the query.
|
|
3966
|
+
*/
|
|
3967
|
+
customerAssetSet?: Schema$GoogleAdsSearchads360V0Resources__CustomerAssetSet;
|
|
2622
3968
|
/**
|
|
2623
3969
|
* The CustomerClient referenced in the query.
|
|
2624
3970
|
*/
|
|
@@ -2635,6 +3981,10 @@ export namespace searchads360_v0 {
|
|
|
2635
3981
|
* The gender view referenced in the query.
|
|
2636
3982
|
*/
|
|
2637
3983
|
genderView?: Schema$GoogleAdsSearchads360V0Resources__GenderView;
|
|
3984
|
+
/**
|
|
3985
|
+
* The geo target constant referenced in the query.
|
|
3986
|
+
*/
|
|
3987
|
+
geoTargetConstant?: Schema$GoogleAdsSearchads360V0Resources__GeoTargetConstant;
|
|
2638
3988
|
/**
|
|
2639
3989
|
* The keyword view referenced in the query.
|
|
2640
3990
|
*/
|
|
@@ -2643,6 +3993,10 @@ export namespace searchads360_v0 {
|
|
|
2643
3993
|
* The label referenced in the query.
|
|
2644
3994
|
*/
|
|
2645
3995
|
label?: Schema$GoogleAdsSearchads360V0Resources__Label;
|
|
3996
|
+
/**
|
|
3997
|
+
* The language constant referenced in the query.
|
|
3998
|
+
*/
|
|
3999
|
+
languageConstant?: Schema$GoogleAdsSearchads360V0Resources__LanguageConstant;
|
|
2646
4000
|
/**
|
|
2647
4001
|
* The location view referenced in the query.
|
|
2648
4002
|
*/
|
|
@@ -2651,6 +4005,10 @@ export namespace searchads360_v0 {
|
|
|
2651
4005
|
* The metrics.
|
|
2652
4006
|
*/
|
|
2653
4007
|
metrics?: Schema$GoogleAdsSearchads360V0Common__Metrics;
|
|
4008
|
+
/**
|
|
4009
|
+
* The Product Bidding Category referenced in the query.
|
|
4010
|
+
*/
|
|
4011
|
+
productBiddingCategoryConstant?: Schema$GoogleAdsSearchads360V0Resources__ProductBiddingCategoryConstant;
|
|
2654
4012
|
/**
|
|
2655
4013
|
* The product group view referenced in the query.
|
|
2656
4014
|
*/
|
|
@@ -2659,10 +4017,18 @@ export namespace searchads360_v0 {
|
|
|
2659
4017
|
* The segments.
|
|
2660
4018
|
*/
|
|
2661
4019
|
segments?: Schema$GoogleAdsSearchads360V0Common__Segments;
|
|
4020
|
+
/**
|
|
4021
|
+
* The shopping performance view referenced in the query.
|
|
4022
|
+
*/
|
|
4023
|
+
shoppingPerformanceView?: Schema$GoogleAdsSearchads360V0Resources__ShoppingPerformanceView;
|
|
2662
4024
|
/**
|
|
2663
4025
|
* The user list referenced in the query.
|
|
2664
4026
|
*/
|
|
2665
4027
|
userList?: Schema$GoogleAdsSearchads360V0Resources__UserList;
|
|
4028
|
+
/**
|
|
4029
|
+
* The event level visit referenced in the query.
|
|
4030
|
+
*/
|
|
4031
|
+
visit?: Schema$GoogleAdsSearchads360V0Resources__Visit;
|
|
2666
4032
|
/**
|
|
2667
4033
|
* The webpage view referenced in the query.
|
|
2668
4034
|
*/
|