@google-shopping/reports 0.9.0 → 0.11.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.
@@ -26,6 +26,3762 @@ export namespace google {
26
26
  /** Namespace reports. */
27
27
  namespace reports {
28
28
 
29
+ /** Namespace v1alpha. */
30
+ namespace v1alpha {
31
+
32
+ /** Represents a ReportService */
33
+ class ReportService extends $protobuf.rpc.Service {
34
+
35
+ /**
36
+ * Constructs a new ReportService service.
37
+ * @param rpcImpl RPC implementation
38
+ * @param [requestDelimited=false] Whether requests are length-delimited
39
+ * @param [responseDelimited=false] Whether responses are length-delimited
40
+ */
41
+ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean);
42
+
43
+ /**
44
+ * Creates new ReportService service using the specified rpc implementation.
45
+ * @param rpcImpl RPC implementation
46
+ * @param [requestDelimited=false] Whether requests are length-delimited
47
+ * @param [responseDelimited=false] Whether responses are length-delimited
48
+ * @returns RPC service. Useful where requests and/or responses are streamed.
49
+ */
50
+ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): ReportService;
51
+
52
+ /**
53
+ * Calls Search.
54
+ * @param request SearchRequest message or plain object
55
+ * @param callback Node-style callback called with the error, if any, and SearchResponse
56
+ */
57
+ public search(request: google.shopping.merchant.reports.v1alpha.ISearchRequest, callback: google.shopping.merchant.reports.v1alpha.ReportService.SearchCallback): void;
58
+
59
+ /**
60
+ * Calls Search.
61
+ * @param request SearchRequest message or plain object
62
+ * @returns Promise
63
+ */
64
+ public search(request: google.shopping.merchant.reports.v1alpha.ISearchRequest): Promise<google.shopping.merchant.reports.v1alpha.SearchResponse>;
65
+ }
66
+
67
+ namespace ReportService {
68
+
69
+ /**
70
+ * Callback as used by {@link google.shopping.merchant.reports.v1alpha.ReportService|search}.
71
+ * @param error Error, if any
72
+ * @param [response] SearchResponse
73
+ */
74
+ type SearchCallback = (error: (Error|null), response?: google.shopping.merchant.reports.v1alpha.SearchResponse) => void;
75
+ }
76
+
77
+ /** Properties of a SearchRequest. */
78
+ interface ISearchRequest {
79
+
80
+ /** SearchRequest parent */
81
+ parent?: (string|null);
82
+
83
+ /** SearchRequest query */
84
+ query?: (string|null);
85
+
86
+ /** SearchRequest pageSize */
87
+ pageSize?: (number|null);
88
+
89
+ /** SearchRequest pageToken */
90
+ pageToken?: (string|null);
91
+ }
92
+
93
+ /** Represents a SearchRequest. */
94
+ class SearchRequest implements ISearchRequest {
95
+
96
+ /**
97
+ * Constructs a new SearchRequest.
98
+ * @param [properties] Properties to set
99
+ */
100
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.ISearchRequest);
101
+
102
+ /** SearchRequest parent. */
103
+ public parent: string;
104
+
105
+ /** SearchRequest query. */
106
+ public query: string;
107
+
108
+ /** SearchRequest pageSize. */
109
+ public pageSize: number;
110
+
111
+ /** SearchRequest pageToken. */
112
+ public pageToken: string;
113
+
114
+ /**
115
+ * Creates a new SearchRequest instance using the specified properties.
116
+ * @param [properties] Properties to set
117
+ * @returns SearchRequest instance
118
+ */
119
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.ISearchRequest): google.shopping.merchant.reports.v1alpha.SearchRequest;
120
+
121
+ /**
122
+ * Encodes the specified SearchRequest message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.SearchRequest.verify|verify} messages.
123
+ * @param message SearchRequest message or plain object to encode
124
+ * @param [writer] Writer to encode to
125
+ * @returns Writer
126
+ */
127
+ public static encode(message: google.shopping.merchant.reports.v1alpha.ISearchRequest, writer?: $protobuf.Writer): $protobuf.Writer;
128
+
129
+ /**
130
+ * Encodes the specified SearchRequest message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.SearchRequest.verify|verify} messages.
131
+ * @param message SearchRequest message or plain object to encode
132
+ * @param [writer] Writer to encode to
133
+ * @returns Writer
134
+ */
135
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.ISearchRequest, writer?: $protobuf.Writer): $protobuf.Writer;
136
+
137
+ /**
138
+ * Decodes a SearchRequest message from the specified reader or buffer.
139
+ * @param reader Reader or buffer to decode from
140
+ * @param [length] Message length if known beforehand
141
+ * @returns SearchRequest
142
+ * @throws {Error} If the payload is not a reader or valid buffer
143
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
144
+ */
145
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.SearchRequest;
146
+
147
+ /**
148
+ * Decodes a SearchRequest message from the specified reader or buffer, length delimited.
149
+ * @param reader Reader or buffer to decode from
150
+ * @returns SearchRequest
151
+ * @throws {Error} If the payload is not a reader or valid buffer
152
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
153
+ */
154
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.SearchRequest;
155
+
156
+ /**
157
+ * Verifies a SearchRequest message.
158
+ * @param message Plain object to verify
159
+ * @returns `null` if valid, otherwise the reason why it is not
160
+ */
161
+ public static verify(message: { [k: string]: any }): (string|null);
162
+
163
+ /**
164
+ * Creates a SearchRequest message from a plain object. Also converts values to their respective internal types.
165
+ * @param object Plain object
166
+ * @returns SearchRequest
167
+ */
168
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.SearchRequest;
169
+
170
+ /**
171
+ * Creates a plain object from a SearchRequest message. Also converts values to other types if specified.
172
+ * @param message SearchRequest
173
+ * @param [options] Conversion options
174
+ * @returns Plain object
175
+ */
176
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.SearchRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
177
+
178
+ /**
179
+ * Converts this SearchRequest to JSON.
180
+ * @returns JSON object
181
+ */
182
+ public toJSON(): { [k: string]: any };
183
+
184
+ /**
185
+ * Gets the default type url for SearchRequest
186
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
187
+ * @returns The default type url
188
+ */
189
+ public static getTypeUrl(typeUrlPrefix?: string): string;
190
+ }
191
+
192
+ /** Properties of a SearchResponse. */
193
+ interface ISearchResponse {
194
+
195
+ /** SearchResponse results */
196
+ results?: (google.shopping.merchant.reports.v1alpha.IReportRow[]|null);
197
+
198
+ /** SearchResponse nextPageToken */
199
+ nextPageToken?: (string|null);
200
+ }
201
+
202
+ /** Represents a SearchResponse. */
203
+ class SearchResponse implements ISearchResponse {
204
+
205
+ /**
206
+ * Constructs a new SearchResponse.
207
+ * @param [properties] Properties to set
208
+ */
209
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.ISearchResponse);
210
+
211
+ /** SearchResponse results. */
212
+ public results: google.shopping.merchant.reports.v1alpha.IReportRow[];
213
+
214
+ /** SearchResponse nextPageToken. */
215
+ public nextPageToken: string;
216
+
217
+ /**
218
+ * Creates a new SearchResponse instance using the specified properties.
219
+ * @param [properties] Properties to set
220
+ * @returns SearchResponse instance
221
+ */
222
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.ISearchResponse): google.shopping.merchant.reports.v1alpha.SearchResponse;
223
+
224
+ /**
225
+ * Encodes the specified SearchResponse message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.SearchResponse.verify|verify} messages.
226
+ * @param message SearchResponse message or plain object to encode
227
+ * @param [writer] Writer to encode to
228
+ * @returns Writer
229
+ */
230
+ public static encode(message: google.shopping.merchant.reports.v1alpha.ISearchResponse, writer?: $protobuf.Writer): $protobuf.Writer;
231
+
232
+ /**
233
+ * Encodes the specified SearchResponse message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.SearchResponse.verify|verify} messages.
234
+ * @param message SearchResponse message or plain object to encode
235
+ * @param [writer] Writer to encode to
236
+ * @returns Writer
237
+ */
238
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.ISearchResponse, writer?: $protobuf.Writer): $protobuf.Writer;
239
+
240
+ /**
241
+ * Decodes a SearchResponse message from the specified reader or buffer.
242
+ * @param reader Reader or buffer to decode from
243
+ * @param [length] Message length if known beforehand
244
+ * @returns SearchResponse
245
+ * @throws {Error} If the payload is not a reader or valid buffer
246
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
247
+ */
248
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.SearchResponse;
249
+
250
+ /**
251
+ * Decodes a SearchResponse message from the specified reader or buffer, length delimited.
252
+ * @param reader Reader or buffer to decode from
253
+ * @returns SearchResponse
254
+ * @throws {Error} If the payload is not a reader or valid buffer
255
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
256
+ */
257
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.SearchResponse;
258
+
259
+ /**
260
+ * Verifies a SearchResponse message.
261
+ * @param message Plain object to verify
262
+ * @returns `null` if valid, otherwise the reason why it is not
263
+ */
264
+ public static verify(message: { [k: string]: any }): (string|null);
265
+
266
+ /**
267
+ * Creates a SearchResponse message from a plain object. Also converts values to their respective internal types.
268
+ * @param object Plain object
269
+ * @returns SearchResponse
270
+ */
271
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.SearchResponse;
272
+
273
+ /**
274
+ * Creates a plain object from a SearchResponse message. Also converts values to other types if specified.
275
+ * @param message SearchResponse
276
+ * @param [options] Conversion options
277
+ * @returns Plain object
278
+ */
279
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.SearchResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
280
+
281
+ /**
282
+ * Converts this SearchResponse to JSON.
283
+ * @returns JSON object
284
+ */
285
+ public toJSON(): { [k: string]: any };
286
+
287
+ /**
288
+ * Gets the default type url for SearchResponse
289
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
290
+ * @returns The default type url
291
+ */
292
+ public static getTypeUrl(typeUrlPrefix?: string): string;
293
+ }
294
+
295
+ /** Properties of a ReportRow. */
296
+ interface IReportRow {
297
+
298
+ /** ReportRow productPerformanceView */
299
+ productPerformanceView?: (google.shopping.merchant.reports.v1alpha.IProductPerformanceView|null);
300
+
301
+ /** ReportRow nonProductPerformanceView */
302
+ nonProductPerformanceView?: (google.shopping.merchant.reports.v1alpha.INonProductPerformanceView|null);
303
+
304
+ /** ReportRow productView */
305
+ productView?: (google.shopping.merchant.reports.v1alpha.IProductView|null);
306
+
307
+ /** ReportRow priceCompetitivenessProductView */
308
+ priceCompetitivenessProductView?: (google.shopping.merchant.reports.v1alpha.IPriceCompetitivenessProductView|null);
309
+
310
+ /** ReportRow priceInsightsProductView */
311
+ priceInsightsProductView?: (google.shopping.merchant.reports.v1alpha.IPriceInsightsProductView|null);
312
+
313
+ /** ReportRow bestSellersProductClusterView */
314
+ bestSellersProductClusterView?: (google.shopping.merchant.reports.v1alpha.IBestSellersProductClusterView|null);
315
+
316
+ /** ReportRow bestSellersBrandView */
317
+ bestSellersBrandView?: (google.shopping.merchant.reports.v1alpha.IBestSellersBrandView|null);
318
+
319
+ /** ReportRow competitiveVisibilityCompetitorView */
320
+ competitiveVisibilityCompetitorView?: (google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityCompetitorView|null);
321
+
322
+ /** ReportRow competitiveVisibilityTopMerchantView */
323
+ competitiveVisibilityTopMerchantView?: (google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityTopMerchantView|null);
324
+
325
+ /** ReportRow competitiveVisibilityBenchmarkView */
326
+ competitiveVisibilityBenchmarkView?: (google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityBenchmarkView|null);
327
+
328
+ /** ReportRow youtubeCreatorPerformanceView */
329
+ youtubeCreatorPerformanceView?: (google.shopping.merchant.reports.v1alpha.IYoutubeCreatorPerformanceView|null);
330
+
331
+ /** ReportRow youtubeContentPerformanceView */
332
+ youtubeContentPerformanceView?: (google.shopping.merchant.reports.v1alpha.IYoutubeContentPerformanceView|null);
333
+
334
+ /** ReportRow youtubeProductPerformanceView */
335
+ youtubeProductPerformanceView?: (google.shopping.merchant.reports.v1alpha.IYoutubeProductPerformanceView|null);
336
+ }
337
+
338
+ /** Represents a ReportRow. */
339
+ class ReportRow implements IReportRow {
340
+
341
+ /**
342
+ * Constructs a new ReportRow.
343
+ * @param [properties] Properties to set
344
+ */
345
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.IReportRow);
346
+
347
+ /** ReportRow productPerformanceView. */
348
+ public productPerformanceView?: (google.shopping.merchant.reports.v1alpha.IProductPerformanceView|null);
349
+
350
+ /** ReportRow nonProductPerformanceView. */
351
+ public nonProductPerformanceView?: (google.shopping.merchant.reports.v1alpha.INonProductPerformanceView|null);
352
+
353
+ /** ReportRow productView. */
354
+ public productView?: (google.shopping.merchant.reports.v1alpha.IProductView|null);
355
+
356
+ /** ReportRow priceCompetitivenessProductView. */
357
+ public priceCompetitivenessProductView?: (google.shopping.merchant.reports.v1alpha.IPriceCompetitivenessProductView|null);
358
+
359
+ /** ReportRow priceInsightsProductView. */
360
+ public priceInsightsProductView?: (google.shopping.merchant.reports.v1alpha.IPriceInsightsProductView|null);
361
+
362
+ /** ReportRow bestSellersProductClusterView. */
363
+ public bestSellersProductClusterView?: (google.shopping.merchant.reports.v1alpha.IBestSellersProductClusterView|null);
364
+
365
+ /** ReportRow bestSellersBrandView. */
366
+ public bestSellersBrandView?: (google.shopping.merchant.reports.v1alpha.IBestSellersBrandView|null);
367
+
368
+ /** ReportRow competitiveVisibilityCompetitorView. */
369
+ public competitiveVisibilityCompetitorView?: (google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityCompetitorView|null);
370
+
371
+ /** ReportRow competitiveVisibilityTopMerchantView. */
372
+ public competitiveVisibilityTopMerchantView?: (google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityTopMerchantView|null);
373
+
374
+ /** ReportRow competitiveVisibilityBenchmarkView. */
375
+ public competitiveVisibilityBenchmarkView?: (google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityBenchmarkView|null);
376
+
377
+ /** ReportRow youtubeCreatorPerformanceView. */
378
+ public youtubeCreatorPerformanceView?: (google.shopping.merchant.reports.v1alpha.IYoutubeCreatorPerformanceView|null);
379
+
380
+ /** ReportRow youtubeContentPerformanceView. */
381
+ public youtubeContentPerformanceView?: (google.shopping.merchant.reports.v1alpha.IYoutubeContentPerformanceView|null);
382
+
383
+ /** ReportRow youtubeProductPerformanceView. */
384
+ public youtubeProductPerformanceView?: (google.shopping.merchant.reports.v1alpha.IYoutubeProductPerformanceView|null);
385
+
386
+ /**
387
+ * Creates a new ReportRow instance using the specified properties.
388
+ * @param [properties] Properties to set
389
+ * @returns ReportRow instance
390
+ */
391
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.IReportRow): google.shopping.merchant.reports.v1alpha.ReportRow;
392
+
393
+ /**
394
+ * Encodes the specified ReportRow message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.ReportRow.verify|verify} messages.
395
+ * @param message ReportRow message or plain object to encode
396
+ * @param [writer] Writer to encode to
397
+ * @returns Writer
398
+ */
399
+ public static encode(message: google.shopping.merchant.reports.v1alpha.IReportRow, writer?: $protobuf.Writer): $protobuf.Writer;
400
+
401
+ /**
402
+ * Encodes the specified ReportRow message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.ReportRow.verify|verify} messages.
403
+ * @param message ReportRow message or plain object to encode
404
+ * @param [writer] Writer to encode to
405
+ * @returns Writer
406
+ */
407
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.IReportRow, writer?: $protobuf.Writer): $protobuf.Writer;
408
+
409
+ /**
410
+ * Decodes a ReportRow message from the specified reader or buffer.
411
+ * @param reader Reader or buffer to decode from
412
+ * @param [length] Message length if known beforehand
413
+ * @returns ReportRow
414
+ * @throws {Error} If the payload is not a reader or valid buffer
415
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
416
+ */
417
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.ReportRow;
418
+
419
+ /**
420
+ * Decodes a ReportRow message from the specified reader or buffer, length delimited.
421
+ * @param reader Reader or buffer to decode from
422
+ * @returns ReportRow
423
+ * @throws {Error} If the payload is not a reader or valid buffer
424
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
425
+ */
426
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.ReportRow;
427
+
428
+ /**
429
+ * Verifies a ReportRow message.
430
+ * @param message Plain object to verify
431
+ * @returns `null` if valid, otherwise the reason why it is not
432
+ */
433
+ public static verify(message: { [k: string]: any }): (string|null);
434
+
435
+ /**
436
+ * Creates a ReportRow message from a plain object. Also converts values to their respective internal types.
437
+ * @param object Plain object
438
+ * @returns ReportRow
439
+ */
440
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.ReportRow;
441
+
442
+ /**
443
+ * Creates a plain object from a ReportRow message. Also converts values to other types if specified.
444
+ * @param message ReportRow
445
+ * @param [options] Conversion options
446
+ * @returns Plain object
447
+ */
448
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.ReportRow, options?: $protobuf.IConversionOptions): { [k: string]: any };
449
+
450
+ /**
451
+ * Converts this ReportRow to JSON.
452
+ * @returns JSON object
453
+ */
454
+ public toJSON(): { [k: string]: any };
455
+
456
+ /**
457
+ * Gets the default type url for ReportRow
458
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
459
+ * @returns The default type url
460
+ */
461
+ public static getTypeUrl(typeUrlPrefix?: string): string;
462
+ }
463
+
464
+ /** Properties of a ProductPerformanceView. */
465
+ interface IProductPerformanceView {
466
+
467
+ /** ProductPerformanceView marketingMethod */
468
+ marketingMethod?: (google.shopping.merchant.reports.v1alpha.MarketingMethod.MarketingMethodEnum|keyof typeof google.shopping.merchant.reports.v1alpha.MarketingMethod.MarketingMethodEnum|null);
469
+
470
+ /** ProductPerformanceView date */
471
+ date?: (google.type.IDate|null);
472
+
473
+ /** ProductPerformanceView week */
474
+ week?: (google.type.IDate|null);
475
+
476
+ /** ProductPerformanceView customerCountryCode */
477
+ customerCountryCode?: (string|null);
478
+
479
+ /** ProductPerformanceView offerId */
480
+ offerId?: (string|null);
481
+
482
+ /** ProductPerformanceView title */
483
+ title?: (string|null);
484
+
485
+ /** ProductPerformanceView brand */
486
+ brand?: (string|null);
487
+
488
+ /** ProductPerformanceView categoryL1 */
489
+ categoryL1?: (string|null);
490
+
491
+ /** ProductPerformanceView categoryL2 */
492
+ categoryL2?: (string|null);
493
+
494
+ /** ProductPerformanceView categoryL3 */
495
+ categoryL3?: (string|null);
496
+
497
+ /** ProductPerformanceView categoryL4 */
498
+ categoryL4?: (string|null);
499
+
500
+ /** ProductPerformanceView categoryL5 */
501
+ categoryL5?: (string|null);
502
+
503
+ /** ProductPerformanceView productTypeL1 */
504
+ productTypeL1?: (string|null);
505
+
506
+ /** ProductPerformanceView productTypeL2 */
507
+ productTypeL2?: (string|null);
508
+
509
+ /** ProductPerformanceView productTypeL3 */
510
+ productTypeL3?: (string|null);
511
+
512
+ /** ProductPerformanceView productTypeL4 */
513
+ productTypeL4?: (string|null);
514
+
515
+ /** ProductPerformanceView productTypeL5 */
516
+ productTypeL5?: (string|null);
517
+
518
+ /** ProductPerformanceView customLabel0 */
519
+ customLabel0?: (string|null);
520
+
521
+ /** ProductPerformanceView customLabel1 */
522
+ customLabel1?: (string|null);
523
+
524
+ /** ProductPerformanceView customLabel2 */
525
+ customLabel2?: (string|null);
526
+
527
+ /** ProductPerformanceView customLabel3 */
528
+ customLabel3?: (string|null);
529
+
530
+ /** ProductPerformanceView customLabel4 */
531
+ customLabel4?: (string|null);
532
+
533
+ /** ProductPerformanceView clicks */
534
+ clicks?: (number|Long|string|null);
535
+
536
+ /** ProductPerformanceView impressions */
537
+ impressions?: (number|Long|string|null);
538
+
539
+ /** ProductPerformanceView clickThroughRate */
540
+ clickThroughRate?: (number|null);
541
+
542
+ /** ProductPerformanceView conversions */
543
+ conversions?: (number|null);
544
+
545
+ /** ProductPerformanceView conversionValue */
546
+ conversionValue?: (google.shopping.type.IPrice|null);
547
+
548
+ /** ProductPerformanceView conversionRate */
549
+ conversionRate?: (number|null);
550
+ }
551
+
552
+ /** Represents a ProductPerformanceView. */
553
+ class ProductPerformanceView implements IProductPerformanceView {
554
+
555
+ /**
556
+ * Constructs a new ProductPerformanceView.
557
+ * @param [properties] Properties to set
558
+ */
559
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.IProductPerformanceView);
560
+
561
+ /** ProductPerformanceView marketingMethod. */
562
+ public marketingMethod?: (google.shopping.merchant.reports.v1alpha.MarketingMethod.MarketingMethodEnum|keyof typeof google.shopping.merchant.reports.v1alpha.MarketingMethod.MarketingMethodEnum|null);
563
+
564
+ /** ProductPerformanceView date. */
565
+ public date?: (google.type.IDate|null);
566
+
567
+ /** ProductPerformanceView week. */
568
+ public week?: (google.type.IDate|null);
569
+
570
+ /** ProductPerformanceView customerCountryCode. */
571
+ public customerCountryCode?: (string|null);
572
+
573
+ /** ProductPerformanceView offerId. */
574
+ public offerId?: (string|null);
575
+
576
+ /** ProductPerformanceView title. */
577
+ public title?: (string|null);
578
+
579
+ /** ProductPerformanceView brand. */
580
+ public brand?: (string|null);
581
+
582
+ /** ProductPerformanceView categoryL1. */
583
+ public categoryL1?: (string|null);
584
+
585
+ /** ProductPerformanceView categoryL2. */
586
+ public categoryL2?: (string|null);
587
+
588
+ /** ProductPerformanceView categoryL3. */
589
+ public categoryL3?: (string|null);
590
+
591
+ /** ProductPerformanceView categoryL4. */
592
+ public categoryL4?: (string|null);
593
+
594
+ /** ProductPerformanceView categoryL5. */
595
+ public categoryL5?: (string|null);
596
+
597
+ /** ProductPerformanceView productTypeL1. */
598
+ public productTypeL1?: (string|null);
599
+
600
+ /** ProductPerformanceView productTypeL2. */
601
+ public productTypeL2?: (string|null);
602
+
603
+ /** ProductPerformanceView productTypeL3. */
604
+ public productTypeL3?: (string|null);
605
+
606
+ /** ProductPerformanceView productTypeL4. */
607
+ public productTypeL4?: (string|null);
608
+
609
+ /** ProductPerformanceView productTypeL5. */
610
+ public productTypeL5?: (string|null);
611
+
612
+ /** ProductPerformanceView customLabel0. */
613
+ public customLabel0?: (string|null);
614
+
615
+ /** ProductPerformanceView customLabel1. */
616
+ public customLabel1?: (string|null);
617
+
618
+ /** ProductPerformanceView customLabel2. */
619
+ public customLabel2?: (string|null);
620
+
621
+ /** ProductPerformanceView customLabel3. */
622
+ public customLabel3?: (string|null);
623
+
624
+ /** ProductPerformanceView customLabel4. */
625
+ public customLabel4?: (string|null);
626
+
627
+ /** ProductPerformanceView clicks. */
628
+ public clicks?: (number|Long|string|null);
629
+
630
+ /** ProductPerformanceView impressions. */
631
+ public impressions?: (number|Long|string|null);
632
+
633
+ /** ProductPerformanceView clickThroughRate. */
634
+ public clickThroughRate?: (number|null);
635
+
636
+ /** ProductPerformanceView conversions. */
637
+ public conversions?: (number|null);
638
+
639
+ /** ProductPerformanceView conversionValue. */
640
+ public conversionValue?: (google.shopping.type.IPrice|null);
641
+
642
+ /** ProductPerformanceView conversionRate. */
643
+ public conversionRate?: (number|null);
644
+
645
+ /**
646
+ * Creates a new ProductPerformanceView instance using the specified properties.
647
+ * @param [properties] Properties to set
648
+ * @returns ProductPerformanceView instance
649
+ */
650
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.IProductPerformanceView): google.shopping.merchant.reports.v1alpha.ProductPerformanceView;
651
+
652
+ /**
653
+ * Encodes the specified ProductPerformanceView message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.ProductPerformanceView.verify|verify} messages.
654
+ * @param message ProductPerformanceView message or plain object to encode
655
+ * @param [writer] Writer to encode to
656
+ * @returns Writer
657
+ */
658
+ public static encode(message: google.shopping.merchant.reports.v1alpha.IProductPerformanceView, writer?: $protobuf.Writer): $protobuf.Writer;
659
+
660
+ /**
661
+ * Encodes the specified ProductPerformanceView message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.ProductPerformanceView.verify|verify} messages.
662
+ * @param message ProductPerformanceView message or plain object to encode
663
+ * @param [writer] Writer to encode to
664
+ * @returns Writer
665
+ */
666
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.IProductPerformanceView, writer?: $protobuf.Writer): $protobuf.Writer;
667
+
668
+ /**
669
+ * Decodes a ProductPerformanceView message from the specified reader or buffer.
670
+ * @param reader Reader or buffer to decode from
671
+ * @param [length] Message length if known beforehand
672
+ * @returns ProductPerformanceView
673
+ * @throws {Error} If the payload is not a reader or valid buffer
674
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
675
+ */
676
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.ProductPerformanceView;
677
+
678
+ /**
679
+ * Decodes a ProductPerformanceView message from the specified reader or buffer, length delimited.
680
+ * @param reader Reader or buffer to decode from
681
+ * @returns ProductPerformanceView
682
+ * @throws {Error} If the payload is not a reader or valid buffer
683
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
684
+ */
685
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.ProductPerformanceView;
686
+
687
+ /**
688
+ * Verifies a ProductPerformanceView message.
689
+ * @param message Plain object to verify
690
+ * @returns `null` if valid, otherwise the reason why it is not
691
+ */
692
+ public static verify(message: { [k: string]: any }): (string|null);
693
+
694
+ /**
695
+ * Creates a ProductPerformanceView message from a plain object. Also converts values to their respective internal types.
696
+ * @param object Plain object
697
+ * @returns ProductPerformanceView
698
+ */
699
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.ProductPerformanceView;
700
+
701
+ /**
702
+ * Creates a plain object from a ProductPerformanceView message. Also converts values to other types if specified.
703
+ * @param message ProductPerformanceView
704
+ * @param [options] Conversion options
705
+ * @returns Plain object
706
+ */
707
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.ProductPerformanceView, options?: $protobuf.IConversionOptions): { [k: string]: any };
708
+
709
+ /**
710
+ * Converts this ProductPerformanceView to JSON.
711
+ * @returns JSON object
712
+ */
713
+ public toJSON(): { [k: string]: any };
714
+
715
+ /**
716
+ * Gets the default type url for ProductPerformanceView
717
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
718
+ * @returns The default type url
719
+ */
720
+ public static getTypeUrl(typeUrlPrefix?: string): string;
721
+ }
722
+
723
+ /** Properties of a ProductView. */
724
+ interface IProductView {
725
+
726
+ /** ProductView id */
727
+ id?: (string|null);
728
+
729
+ /** ProductView channel */
730
+ channel?: (google.shopping.type.Channel.ChannelEnum|keyof typeof google.shopping.type.Channel.ChannelEnum|null);
731
+
732
+ /** ProductView languageCode */
733
+ languageCode?: (string|null);
734
+
735
+ /** ProductView feedLabel */
736
+ feedLabel?: (string|null);
737
+
738
+ /** ProductView offerId */
739
+ offerId?: (string|null);
740
+
741
+ /** ProductView title */
742
+ title?: (string|null);
743
+
744
+ /** ProductView brand */
745
+ brand?: (string|null);
746
+
747
+ /** ProductView categoryL1 */
748
+ categoryL1?: (string|null);
749
+
750
+ /** ProductView categoryL2 */
751
+ categoryL2?: (string|null);
752
+
753
+ /** ProductView categoryL3 */
754
+ categoryL3?: (string|null);
755
+
756
+ /** ProductView categoryL4 */
757
+ categoryL4?: (string|null);
758
+
759
+ /** ProductView categoryL5 */
760
+ categoryL5?: (string|null);
761
+
762
+ /** ProductView productTypeL1 */
763
+ productTypeL1?: (string|null);
764
+
765
+ /** ProductView productTypeL2 */
766
+ productTypeL2?: (string|null);
767
+
768
+ /** ProductView productTypeL3 */
769
+ productTypeL3?: (string|null);
770
+
771
+ /** ProductView productTypeL4 */
772
+ productTypeL4?: (string|null);
773
+
774
+ /** ProductView productTypeL5 */
775
+ productTypeL5?: (string|null);
776
+
777
+ /** ProductView price */
778
+ price?: (google.shopping.type.IPrice|null);
779
+
780
+ /** ProductView condition */
781
+ condition?: (string|null);
782
+
783
+ /** ProductView availability */
784
+ availability?: (string|null);
785
+
786
+ /** ProductView shippingLabel */
787
+ shippingLabel?: (string|null);
788
+
789
+ /** ProductView gtin */
790
+ gtin?: (string[]|null);
791
+
792
+ /** ProductView itemGroupId */
793
+ itemGroupId?: (string|null);
794
+
795
+ /** ProductView thumbnailLink */
796
+ thumbnailLink?: (string|null);
797
+
798
+ /** ProductView creationTime */
799
+ creationTime?: (google.protobuf.ITimestamp|null);
800
+
801
+ /** ProductView expirationDate */
802
+ expirationDate?: (google.type.IDate|null);
803
+
804
+ /** ProductView aggregatedReportingContextStatus */
805
+ aggregatedReportingContextStatus?: (google.shopping.merchant.reports.v1alpha.ProductView.AggregatedReportingContextStatus|keyof typeof google.shopping.merchant.reports.v1alpha.ProductView.AggregatedReportingContextStatus|null);
806
+
807
+ /** ProductView itemIssues */
808
+ itemIssues?: (google.shopping.merchant.reports.v1alpha.ProductView.IItemIssue[]|null);
809
+
810
+ /** ProductView clickPotential */
811
+ clickPotential?: (google.shopping.merchant.reports.v1alpha.ProductView.ClickPotential|keyof typeof google.shopping.merchant.reports.v1alpha.ProductView.ClickPotential|null);
812
+
813
+ /** ProductView clickPotentialRank */
814
+ clickPotentialRank?: (number|Long|string|null);
815
+ }
816
+
817
+ /** Represents a ProductView. */
818
+ class ProductView implements IProductView {
819
+
820
+ /**
821
+ * Constructs a new ProductView.
822
+ * @param [properties] Properties to set
823
+ */
824
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.IProductView);
825
+
826
+ /** ProductView id. */
827
+ public id?: (string|null);
828
+
829
+ /** ProductView channel. */
830
+ public channel?: (google.shopping.type.Channel.ChannelEnum|keyof typeof google.shopping.type.Channel.ChannelEnum|null);
831
+
832
+ /** ProductView languageCode. */
833
+ public languageCode?: (string|null);
834
+
835
+ /** ProductView feedLabel. */
836
+ public feedLabel?: (string|null);
837
+
838
+ /** ProductView offerId. */
839
+ public offerId?: (string|null);
840
+
841
+ /** ProductView title. */
842
+ public title?: (string|null);
843
+
844
+ /** ProductView brand. */
845
+ public brand?: (string|null);
846
+
847
+ /** ProductView categoryL1. */
848
+ public categoryL1?: (string|null);
849
+
850
+ /** ProductView categoryL2. */
851
+ public categoryL2?: (string|null);
852
+
853
+ /** ProductView categoryL3. */
854
+ public categoryL3?: (string|null);
855
+
856
+ /** ProductView categoryL4. */
857
+ public categoryL4?: (string|null);
858
+
859
+ /** ProductView categoryL5. */
860
+ public categoryL5?: (string|null);
861
+
862
+ /** ProductView productTypeL1. */
863
+ public productTypeL1?: (string|null);
864
+
865
+ /** ProductView productTypeL2. */
866
+ public productTypeL2?: (string|null);
867
+
868
+ /** ProductView productTypeL3. */
869
+ public productTypeL3?: (string|null);
870
+
871
+ /** ProductView productTypeL4. */
872
+ public productTypeL4?: (string|null);
873
+
874
+ /** ProductView productTypeL5. */
875
+ public productTypeL5?: (string|null);
876
+
877
+ /** ProductView price. */
878
+ public price?: (google.shopping.type.IPrice|null);
879
+
880
+ /** ProductView condition. */
881
+ public condition?: (string|null);
882
+
883
+ /** ProductView availability. */
884
+ public availability?: (string|null);
885
+
886
+ /** ProductView shippingLabel. */
887
+ public shippingLabel?: (string|null);
888
+
889
+ /** ProductView gtin. */
890
+ public gtin: string[];
891
+
892
+ /** ProductView itemGroupId. */
893
+ public itemGroupId?: (string|null);
894
+
895
+ /** ProductView thumbnailLink. */
896
+ public thumbnailLink?: (string|null);
897
+
898
+ /** ProductView creationTime. */
899
+ public creationTime?: (google.protobuf.ITimestamp|null);
900
+
901
+ /** ProductView expirationDate. */
902
+ public expirationDate?: (google.type.IDate|null);
903
+
904
+ /** ProductView aggregatedReportingContextStatus. */
905
+ public aggregatedReportingContextStatus?: (google.shopping.merchant.reports.v1alpha.ProductView.AggregatedReportingContextStatus|keyof typeof google.shopping.merchant.reports.v1alpha.ProductView.AggregatedReportingContextStatus|null);
906
+
907
+ /** ProductView itemIssues. */
908
+ public itemIssues: google.shopping.merchant.reports.v1alpha.ProductView.IItemIssue[];
909
+
910
+ /** ProductView clickPotential. */
911
+ public clickPotential: (google.shopping.merchant.reports.v1alpha.ProductView.ClickPotential|keyof typeof google.shopping.merchant.reports.v1alpha.ProductView.ClickPotential);
912
+
913
+ /** ProductView clickPotentialRank. */
914
+ public clickPotentialRank?: (number|Long|string|null);
915
+
916
+ /**
917
+ * Creates a new ProductView instance using the specified properties.
918
+ * @param [properties] Properties to set
919
+ * @returns ProductView instance
920
+ */
921
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.IProductView): google.shopping.merchant.reports.v1alpha.ProductView;
922
+
923
+ /**
924
+ * Encodes the specified ProductView message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.ProductView.verify|verify} messages.
925
+ * @param message ProductView message or plain object to encode
926
+ * @param [writer] Writer to encode to
927
+ * @returns Writer
928
+ */
929
+ public static encode(message: google.shopping.merchant.reports.v1alpha.IProductView, writer?: $protobuf.Writer): $protobuf.Writer;
930
+
931
+ /**
932
+ * Encodes the specified ProductView message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.ProductView.verify|verify} messages.
933
+ * @param message ProductView message or plain object to encode
934
+ * @param [writer] Writer to encode to
935
+ * @returns Writer
936
+ */
937
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.IProductView, writer?: $protobuf.Writer): $protobuf.Writer;
938
+
939
+ /**
940
+ * Decodes a ProductView message from the specified reader or buffer.
941
+ * @param reader Reader or buffer to decode from
942
+ * @param [length] Message length if known beforehand
943
+ * @returns ProductView
944
+ * @throws {Error} If the payload is not a reader or valid buffer
945
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
946
+ */
947
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.ProductView;
948
+
949
+ /**
950
+ * Decodes a ProductView message from the specified reader or buffer, length delimited.
951
+ * @param reader Reader or buffer to decode from
952
+ * @returns ProductView
953
+ * @throws {Error} If the payload is not a reader or valid buffer
954
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
955
+ */
956
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.ProductView;
957
+
958
+ /**
959
+ * Verifies a ProductView message.
960
+ * @param message Plain object to verify
961
+ * @returns `null` if valid, otherwise the reason why it is not
962
+ */
963
+ public static verify(message: { [k: string]: any }): (string|null);
964
+
965
+ /**
966
+ * Creates a ProductView message from a plain object. Also converts values to their respective internal types.
967
+ * @param object Plain object
968
+ * @returns ProductView
969
+ */
970
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.ProductView;
971
+
972
+ /**
973
+ * Creates a plain object from a ProductView message. Also converts values to other types if specified.
974
+ * @param message ProductView
975
+ * @param [options] Conversion options
976
+ * @returns Plain object
977
+ */
978
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.ProductView, options?: $protobuf.IConversionOptions): { [k: string]: any };
979
+
980
+ /**
981
+ * Converts this ProductView to JSON.
982
+ * @returns JSON object
983
+ */
984
+ public toJSON(): { [k: string]: any };
985
+
986
+ /**
987
+ * Gets the default type url for ProductView
988
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
989
+ * @returns The default type url
990
+ */
991
+ public static getTypeUrl(typeUrlPrefix?: string): string;
992
+ }
993
+
994
+ namespace ProductView {
995
+
996
+ /** Properties of an ItemIssue. */
997
+ interface IItemIssue {
998
+
999
+ /** ItemIssue type */
1000
+ type?: (google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.IItemIssueType|null);
1001
+
1002
+ /** ItemIssue severity */
1003
+ severity?: (google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.IItemIssueSeverity|null);
1004
+
1005
+ /** ItemIssue resolution */
1006
+ resolution?: (google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueResolution|keyof typeof google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueResolution|null);
1007
+ }
1008
+
1009
+ /** Represents an ItemIssue. */
1010
+ class ItemIssue implements IItemIssue {
1011
+
1012
+ /**
1013
+ * Constructs a new ItemIssue.
1014
+ * @param [properties] Properties to set
1015
+ */
1016
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.ProductView.IItemIssue);
1017
+
1018
+ /** ItemIssue type. */
1019
+ public type?: (google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.IItemIssueType|null);
1020
+
1021
+ /** ItemIssue severity. */
1022
+ public severity?: (google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.IItemIssueSeverity|null);
1023
+
1024
+ /** ItemIssue resolution. */
1025
+ public resolution?: (google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueResolution|keyof typeof google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueResolution|null);
1026
+
1027
+ /**
1028
+ * Creates a new ItemIssue instance using the specified properties.
1029
+ * @param [properties] Properties to set
1030
+ * @returns ItemIssue instance
1031
+ */
1032
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.ProductView.IItemIssue): google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue;
1033
+
1034
+ /**
1035
+ * Encodes the specified ItemIssue message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.verify|verify} messages.
1036
+ * @param message ItemIssue message or plain object to encode
1037
+ * @param [writer] Writer to encode to
1038
+ * @returns Writer
1039
+ */
1040
+ public static encode(message: google.shopping.merchant.reports.v1alpha.ProductView.IItemIssue, writer?: $protobuf.Writer): $protobuf.Writer;
1041
+
1042
+ /**
1043
+ * Encodes the specified ItemIssue message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.verify|verify} messages.
1044
+ * @param message ItemIssue message or plain object to encode
1045
+ * @param [writer] Writer to encode to
1046
+ * @returns Writer
1047
+ */
1048
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.ProductView.IItemIssue, writer?: $protobuf.Writer): $protobuf.Writer;
1049
+
1050
+ /**
1051
+ * Decodes an ItemIssue message from the specified reader or buffer.
1052
+ * @param reader Reader or buffer to decode from
1053
+ * @param [length] Message length if known beforehand
1054
+ * @returns ItemIssue
1055
+ * @throws {Error} If the payload is not a reader or valid buffer
1056
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1057
+ */
1058
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue;
1059
+
1060
+ /**
1061
+ * Decodes an ItemIssue message from the specified reader or buffer, length delimited.
1062
+ * @param reader Reader or buffer to decode from
1063
+ * @returns ItemIssue
1064
+ * @throws {Error} If the payload is not a reader or valid buffer
1065
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1066
+ */
1067
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue;
1068
+
1069
+ /**
1070
+ * Verifies an ItemIssue message.
1071
+ * @param message Plain object to verify
1072
+ * @returns `null` if valid, otherwise the reason why it is not
1073
+ */
1074
+ public static verify(message: { [k: string]: any }): (string|null);
1075
+
1076
+ /**
1077
+ * Creates an ItemIssue message from a plain object. Also converts values to their respective internal types.
1078
+ * @param object Plain object
1079
+ * @returns ItemIssue
1080
+ */
1081
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue;
1082
+
1083
+ /**
1084
+ * Creates a plain object from an ItemIssue message. Also converts values to other types if specified.
1085
+ * @param message ItemIssue
1086
+ * @param [options] Conversion options
1087
+ * @returns Plain object
1088
+ */
1089
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue, options?: $protobuf.IConversionOptions): { [k: string]: any };
1090
+
1091
+ /**
1092
+ * Converts this ItemIssue to JSON.
1093
+ * @returns JSON object
1094
+ */
1095
+ public toJSON(): { [k: string]: any };
1096
+
1097
+ /**
1098
+ * Gets the default type url for ItemIssue
1099
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
1100
+ * @returns The default type url
1101
+ */
1102
+ public static getTypeUrl(typeUrlPrefix?: string): string;
1103
+ }
1104
+
1105
+ namespace ItemIssue {
1106
+
1107
+ /** Properties of an ItemIssueType. */
1108
+ interface IItemIssueType {
1109
+
1110
+ /** ItemIssueType code */
1111
+ code?: (string|null);
1112
+
1113
+ /** ItemIssueType canonicalAttribute */
1114
+ canonicalAttribute?: (string|null);
1115
+ }
1116
+
1117
+ /** Represents an ItemIssueType. */
1118
+ class ItemIssueType implements IItemIssueType {
1119
+
1120
+ /**
1121
+ * Constructs a new ItemIssueType.
1122
+ * @param [properties] Properties to set
1123
+ */
1124
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.IItemIssueType);
1125
+
1126
+ /** ItemIssueType code. */
1127
+ public code?: (string|null);
1128
+
1129
+ /** ItemIssueType canonicalAttribute. */
1130
+ public canonicalAttribute?: (string|null);
1131
+
1132
+ /**
1133
+ * Creates a new ItemIssueType instance using the specified properties.
1134
+ * @param [properties] Properties to set
1135
+ * @returns ItemIssueType instance
1136
+ */
1137
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.IItemIssueType): google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueType;
1138
+
1139
+ /**
1140
+ * Encodes the specified ItemIssueType message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueType.verify|verify} messages.
1141
+ * @param message ItemIssueType message or plain object to encode
1142
+ * @param [writer] Writer to encode to
1143
+ * @returns Writer
1144
+ */
1145
+ public static encode(message: google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.IItemIssueType, writer?: $protobuf.Writer): $protobuf.Writer;
1146
+
1147
+ /**
1148
+ * Encodes the specified ItemIssueType message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueType.verify|verify} messages.
1149
+ * @param message ItemIssueType message or plain object to encode
1150
+ * @param [writer] Writer to encode to
1151
+ * @returns Writer
1152
+ */
1153
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.IItemIssueType, writer?: $protobuf.Writer): $protobuf.Writer;
1154
+
1155
+ /**
1156
+ * Decodes an ItemIssueType message from the specified reader or buffer.
1157
+ * @param reader Reader or buffer to decode from
1158
+ * @param [length] Message length if known beforehand
1159
+ * @returns ItemIssueType
1160
+ * @throws {Error} If the payload is not a reader or valid buffer
1161
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1162
+ */
1163
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueType;
1164
+
1165
+ /**
1166
+ * Decodes an ItemIssueType message from the specified reader or buffer, length delimited.
1167
+ * @param reader Reader or buffer to decode from
1168
+ * @returns ItemIssueType
1169
+ * @throws {Error} If the payload is not a reader or valid buffer
1170
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1171
+ */
1172
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueType;
1173
+
1174
+ /**
1175
+ * Verifies an ItemIssueType message.
1176
+ * @param message Plain object to verify
1177
+ * @returns `null` if valid, otherwise the reason why it is not
1178
+ */
1179
+ public static verify(message: { [k: string]: any }): (string|null);
1180
+
1181
+ /**
1182
+ * Creates an ItemIssueType message from a plain object. Also converts values to their respective internal types.
1183
+ * @param object Plain object
1184
+ * @returns ItemIssueType
1185
+ */
1186
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueType;
1187
+
1188
+ /**
1189
+ * Creates a plain object from an ItemIssueType message. Also converts values to other types if specified.
1190
+ * @param message ItemIssueType
1191
+ * @param [options] Conversion options
1192
+ * @returns Plain object
1193
+ */
1194
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueType, options?: $protobuf.IConversionOptions): { [k: string]: any };
1195
+
1196
+ /**
1197
+ * Converts this ItemIssueType to JSON.
1198
+ * @returns JSON object
1199
+ */
1200
+ public toJSON(): { [k: string]: any };
1201
+
1202
+ /**
1203
+ * Gets the default type url for ItemIssueType
1204
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
1205
+ * @returns The default type url
1206
+ */
1207
+ public static getTypeUrl(typeUrlPrefix?: string): string;
1208
+ }
1209
+
1210
+ /** Properties of an ItemIssueSeverity. */
1211
+ interface IItemIssueSeverity {
1212
+
1213
+ /** ItemIssueSeverity severityPerReportingContext */
1214
+ severityPerReportingContext?: (google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.IIssueSeverityPerReportingContext[]|null);
1215
+
1216
+ /** ItemIssueSeverity aggregatedSeverity */
1217
+ aggregatedSeverity?: (google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.AggregatedIssueSeverity|keyof typeof google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.AggregatedIssueSeverity|null);
1218
+ }
1219
+
1220
+ /** Represents an ItemIssueSeverity. */
1221
+ class ItemIssueSeverity implements IItemIssueSeverity {
1222
+
1223
+ /**
1224
+ * Constructs a new ItemIssueSeverity.
1225
+ * @param [properties] Properties to set
1226
+ */
1227
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.IItemIssueSeverity);
1228
+
1229
+ /** ItemIssueSeverity severityPerReportingContext. */
1230
+ public severityPerReportingContext: google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.IIssueSeverityPerReportingContext[];
1231
+
1232
+ /** ItemIssueSeverity aggregatedSeverity. */
1233
+ public aggregatedSeverity?: (google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.AggregatedIssueSeverity|keyof typeof google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.AggregatedIssueSeverity|null);
1234
+
1235
+ /**
1236
+ * Creates a new ItemIssueSeverity instance using the specified properties.
1237
+ * @param [properties] Properties to set
1238
+ * @returns ItemIssueSeverity instance
1239
+ */
1240
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.IItemIssueSeverity): google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity;
1241
+
1242
+ /**
1243
+ * Encodes the specified ItemIssueSeverity message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.verify|verify} messages.
1244
+ * @param message ItemIssueSeverity message or plain object to encode
1245
+ * @param [writer] Writer to encode to
1246
+ * @returns Writer
1247
+ */
1248
+ public static encode(message: google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.IItemIssueSeverity, writer?: $protobuf.Writer): $protobuf.Writer;
1249
+
1250
+ /**
1251
+ * Encodes the specified ItemIssueSeverity message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.verify|verify} messages.
1252
+ * @param message ItemIssueSeverity message or plain object to encode
1253
+ * @param [writer] Writer to encode to
1254
+ * @returns Writer
1255
+ */
1256
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.IItemIssueSeverity, writer?: $protobuf.Writer): $protobuf.Writer;
1257
+
1258
+ /**
1259
+ * Decodes an ItemIssueSeverity message from the specified reader or buffer.
1260
+ * @param reader Reader or buffer to decode from
1261
+ * @param [length] Message length if known beforehand
1262
+ * @returns ItemIssueSeverity
1263
+ * @throws {Error} If the payload is not a reader or valid buffer
1264
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1265
+ */
1266
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity;
1267
+
1268
+ /**
1269
+ * Decodes an ItemIssueSeverity message from the specified reader or buffer, length delimited.
1270
+ * @param reader Reader or buffer to decode from
1271
+ * @returns ItemIssueSeverity
1272
+ * @throws {Error} If the payload is not a reader or valid buffer
1273
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1274
+ */
1275
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity;
1276
+
1277
+ /**
1278
+ * Verifies an ItemIssueSeverity message.
1279
+ * @param message Plain object to verify
1280
+ * @returns `null` if valid, otherwise the reason why it is not
1281
+ */
1282
+ public static verify(message: { [k: string]: any }): (string|null);
1283
+
1284
+ /**
1285
+ * Creates an ItemIssueSeverity message from a plain object. Also converts values to their respective internal types.
1286
+ * @param object Plain object
1287
+ * @returns ItemIssueSeverity
1288
+ */
1289
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity;
1290
+
1291
+ /**
1292
+ * Creates a plain object from an ItemIssueSeverity message. Also converts values to other types if specified.
1293
+ * @param message ItemIssueSeverity
1294
+ * @param [options] Conversion options
1295
+ * @returns Plain object
1296
+ */
1297
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity, options?: $protobuf.IConversionOptions): { [k: string]: any };
1298
+
1299
+ /**
1300
+ * Converts this ItemIssueSeverity to JSON.
1301
+ * @returns JSON object
1302
+ */
1303
+ public toJSON(): { [k: string]: any };
1304
+
1305
+ /**
1306
+ * Gets the default type url for ItemIssueSeverity
1307
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
1308
+ * @returns The default type url
1309
+ */
1310
+ public static getTypeUrl(typeUrlPrefix?: string): string;
1311
+ }
1312
+
1313
+ namespace ItemIssueSeverity {
1314
+
1315
+ /** Properties of an IssueSeverityPerReportingContext. */
1316
+ interface IIssueSeverityPerReportingContext {
1317
+
1318
+ /** IssueSeverityPerReportingContext reportingContext */
1319
+ reportingContext?: (google.shopping.type.ReportingContext.ReportingContextEnum|keyof typeof google.shopping.type.ReportingContext.ReportingContextEnum|null);
1320
+
1321
+ /** IssueSeverityPerReportingContext disapprovedCountries */
1322
+ disapprovedCountries?: (string[]|null);
1323
+
1324
+ /** IssueSeverityPerReportingContext demotedCountries */
1325
+ demotedCountries?: (string[]|null);
1326
+ }
1327
+
1328
+ /** Represents an IssueSeverityPerReportingContext. */
1329
+ class IssueSeverityPerReportingContext implements IIssueSeverityPerReportingContext {
1330
+
1331
+ /**
1332
+ * Constructs a new IssueSeverityPerReportingContext.
1333
+ * @param [properties] Properties to set
1334
+ */
1335
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.IIssueSeverityPerReportingContext);
1336
+
1337
+ /** IssueSeverityPerReportingContext reportingContext. */
1338
+ public reportingContext?: (google.shopping.type.ReportingContext.ReportingContextEnum|keyof typeof google.shopping.type.ReportingContext.ReportingContextEnum|null);
1339
+
1340
+ /** IssueSeverityPerReportingContext disapprovedCountries. */
1341
+ public disapprovedCountries: string[];
1342
+
1343
+ /** IssueSeverityPerReportingContext demotedCountries. */
1344
+ public demotedCountries: string[];
1345
+
1346
+ /**
1347
+ * Creates a new IssueSeverityPerReportingContext instance using the specified properties.
1348
+ * @param [properties] Properties to set
1349
+ * @returns IssueSeverityPerReportingContext instance
1350
+ */
1351
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.IIssueSeverityPerReportingContext): google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.IssueSeverityPerReportingContext;
1352
+
1353
+ /**
1354
+ * Encodes the specified IssueSeverityPerReportingContext message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.IssueSeverityPerReportingContext.verify|verify} messages.
1355
+ * @param message IssueSeverityPerReportingContext message or plain object to encode
1356
+ * @param [writer] Writer to encode to
1357
+ * @returns Writer
1358
+ */
1359
+ public static encode(message: google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.IIssueSeverityPerReportingContext, writer?: $protobuf.Writer): $protobuf.Writer;
1360
+
1361
+ /**
1362
+ * Encodes the specified IssueSeverityPerReportingContext message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.IssueSeverityPerReportingContext.verify|verify} messages.
1363
+ * @param message IssueSeverityPerReportingContext message or plain object to encode
1364
+ * @param [writer] Writer to encode to
1365
+ * @returns Writer
1366
+ */
1367
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.IIssueSeverityPerReportingContext, writer?: $protobuf.Writer): $protobuf.Writer;
1368
+
1369
+ /**
1370
+ * Decodes an IssueSeverityPerReportingContext message from the specified reader or buffer.
1371
+ * @param reader Reader or buffer to decode from
1372
+ * @param [length] Message length if known beforehand
1373
+ * @returns IssueSeverityPerReportingContext
1374
+ * @throws {Error} If the payload is not a reader or valid buffer
1375
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1376
+ */
1377
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.IssueSeverityPerReportingContext;
1378
+
1379
+ /**
1380
+ * Decodes an IssueSeverityPerReportingContext message from the specified reader or buffer, length delimited.
1381
+ * @param reader Reader or buffer to decode from
1382
+ * @returns IssueSeverityPerReportingContext
1383
+ * @throws {Error} If the payload is not a reader or valid buffer
1384
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1385
+ */
1386
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.IssueSeverityPerReportingContext;
1387
+
1388
+ /**
1389
+ * Verifies an IssueSeverityPerReportingContext message.
1390
+ * @param message Plain object to verify
1391
+ * @returns `null` if valid, otherwise the reason why it is not
1392
+ */
1393
+ public static verify(message: { [k: string]: any }): (string|null);
1394
+
1395
+ /**
1396
+ * Creates an IssueSeverityPerReportingContext message from a plain object. Also converts values to their respective internal types.
1397
+ * @param object Plain object
1398
+ * @returns IssueSeverityPerReportingContext
1399
+ */
1400
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.IssueSeverityPerReportingContext;
1401
+
1402
+ /**
1403
+ * Creates a plain object from an IssueSeverityPerReportingContext message. Also converts values to other types if specified.
1404
+ * @param message IssueSeverityPerReportingContext
1405
+ * @param [options] Conversion options
1406
+ * @returns Plain object
1407
+ */
1408
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.ProductView.ItemIssue.ItemIssueSeverity.IssueSeverityPerReportingContext, options?: $protobuf.IConversionOptions): { [k: string]: any };
1409
+
1410
+ /**
1411
+ * Converts this IssueSeverityPerReportingContext to JSON.
1412
+ * @returns JSON object
1413
+ */
1414
+ public toJSON(): { [k: string]: any };
1415
+
1416
+ /**
1417
+ * Gets the default type url for IssueSeverityPerReportingContext
1418
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
1419
+ * @returns The default type url
1420
+ */
1421
+ public static getTypeUrl(typeUrlPrefix?: string): string;
1422
+ }
1423
+
1424
+ /** AggregatedIssueSeverity enum. */
1425
+ enum AggregatedIssueSeverity {
1426
+ AGGREGATED_ISSUE_SEVERITY_UNSPECIFIED = 0,
1427
+ DISAPPROVED = 1,
1428
+ DEMOTED = 2,
1429
+ PENDING = 3
1430
+ }
1431
+ }
1432
+
1433
+ /** ItemIssueResolution enum. */
1434
+ enum ItemIssueResolution {
1435
+ ITEM_ISSUE_RESOLUTION_UNSPECIFIED = 0,
1436
+ MERCHANT_ACTION = 1,
1437
+ PENDING_PROCESSING = 2
1438
+ }
1439
+ }
1440
+
1441
+ /** AggregatedReportingContextStatus enum. */
1442
+ enum AggregatedReportingContextStatus {
1443
+ AGGREGATED_REPORTING_CONTEXT_STATUS_UNSPECIFIED = 0,
1444
+ NOT_ELIGIBLE_OR_DISAPPROVED = 1,
1445
+ PENDING = 2,
1446
+ ELIGIBLE_LIMITED = 3,
1447
+ ELIGIBLE = 4
1448
+ }
1449
+
1450
+ /** ClickPotential enum. */
1451
+ enum ClickPotential {
1452
+ CLICK_POTENTIAL_UNSPECIFIED = 0,
1453
+ LOW = 1,
1454
+ MEDIUM = 2,
1455
+ HIGH = 3
1456
+ }
1457
+ }
1458
+
1459
+ /** Properties of a PriceCompetitivenessProductView. */
1460
+ interface IPriceCompetitivenessProductView {
1461
+
1462
+ /** PriceCompetitivenessProductView reportCountryCode */
1463
+ reportCountryCode?: (string|null);
1464
+
1465
+ /** PriceCompetitivenessProductView id */
1466
+ id?: (string|null);
1467
+
1468
+ /** PriceCompetitivenessProductView offerId */
1469
+ offerId?: (string|null);
1470
+
1471
+ /** PriceCompetitivenessProductView title */
1472
+ title?: (string|null);
1473
+
1474
+ /** PriceCompetitivenessProductView brand */
1475
+ brand?: (string|null);
1476
+
1477
+ /** PriceCompetitivenessProductView categoryL1 */
1478
+ categoryL1?: (string|null);
1479
+
1480
+ /** PriceCompetitivenessProductView categoryL2 */
1481
+ categoryL2?: (string|null);
1482
+
1483
+ /** PriceCompetitivenessProductView categoryL3 */
1484
+ categoryL3?: (string|null);
1485
+
1486
+ /** PriceCompetitivenessProductView categoryL4 */
1487
+ categoryL4?: (string|null);
1488
+
1489
+ /** PriceCompetitivenessProductView categoryL5 */
1490
+ categoryL5?: (string|null);
1491
+
1492
+ /** PriceCompetitivenessProductView productTypeL1 */
1493
+ productTypeL1?: (string|null);
1494
+
1495
+ /** PriceCompetitivenessProductView productTypeL2 */
1496
+ productTypeL2?: (string|null);
1497
+
1498
+ /** PriceCompetitivenessProductView productTypeL3 */
1499
+ productTypeL3?: (string|null);
1500
+
1501
+ /** PriceCompetitivenessProductView productTypeL4 */
1502
+ productTypeL4?: (string|null);
1503
+
1504
+ /** PriceCompetitivenessProductView productTypeL5 */
1505
+ productTypeL5?: (string|null);
1506
+
1507
+ /** PriceCompetitivenessProductView price */
1508
+ price?: (google.shopping.type.IPrice|null);
1509
+
1510
+ /** PriceCompetitivenessProductView benchmarkPrice */
1511
+ benchmarkPrice?: (google.shopping.type.IPrice|null);
1512
+ }
1513
+
1514
+ /** Represents a PriceCompetitivenessProductView. */
1515
+ class PriceCompetitivenessProductView implements IPriceCompetitivenessProductView {
1516
+
1517
+ /**
1518
+ * Constructs a new PriceCompetitivenessProductView.
1519
+ * @param [properties] Properties to set
1520
+ */
1521
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.IPriceCompetitivenessProductView);
1522
+
1523
+ /** PriceCompetitivenessProductView reportCountryCode. */
1524
+ public reportCountryCode?: (string|null);
1525
+
1526
+ /** PriceCompetitivenessProductView id. */
1527
+ public id?: (string|null);
1528
+
1529
+ /** PriceCompetitivenessProductView offerId. */
1530
+ public offerId?: (string|null);
1531
+
1532
+ /** PriceCompetitivenessProductView title. */
1533
+ public title?: (string|null);
1534
+
1535
+ /** PriceCompetitivenessProductView brand. */
1536
+ public brand?: (string|null);
1537
+
1538
+ /** PriceCompetitivenessProductView categoryL1. */
1539
+ public categoryL1?: (string|null);
1540
+
1541
+ /** PriceCompetitivenessProductView categoryL2. */
1542
+ public categoryL2?: (string|null);
1543
+
1544
+ /** PriceCompetitivenessProductView categoryL3. */
1545
+ public categoryL3?: (string|null);
1546
+
1547
+ /** PriceCompetitivenessProductView categoryL4. */
1548
+ public categoryL4?: (string|null);
1549
+
1550
+ /** PriceCompetitivenessProductView categoryL5. */
1551
+ public categoryL5?: (string|null);
1552
+
1553
+ /** PriceCompetitivenessProductView productTypeL1. */
1554
+ public productTypeL1?: (string|null);
1555
+
1556
+ /** PriceCompetitivenessProductView productTypeL2. */
1557
+ public productTypeL2?: (string|null);
1558
+
1559
+ /** PriceCompetitivenessProductView productTypeL3. */
1560
+ public productTypeL3?: (string|null);
1561
+
1562
+ /** PriceCompetitivenessProductView productTypeL4. */
1563
+ public productTypeL4?: (string|null);
1564
+
1565
+ /** PriceCompetitivenessProductView productTypeL5. */
1566
+ public productTypeL5?: (string|null);
1567
+
1568
+ /** PriceCompetitivenessProductView price. */
1569
+ public price?: (google.shopping.type.IPrice|null);
1570
+
1571
+ /** PriceCompetitivenessProductView benchmarkPrice. */
1572
+ public benchmarkPrice?: (google.shopping.type.IPrice|null);
1573
+
1574
+ /**
1575
+ * Creates a new PriceCompetitivenessProductView instance using the specified properties.
1576
+ * @param [properties] Properties to set
1577
+ * @returns PriceCompetitivenessProductView instance
1578
+ */
1579
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.IPriceCompetitivenessProductView): google.shopping.merchant.reports.v1alpha.PriceCompetitivenessProductView;
1580
+
1581
+ /**
1582
+ * Encodes the specified PriceCompetitivenessProductView message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.PriceCompetitivenessProductView.verify|verify} messages.
1583
+ * @param message PriceCompetitivenessProductView message or plain object to encode
1584
+ * @param [writer] Writer to encode to
1585
+ * @returns Writer
1586
+ */
1587
+ public static encode(message: google.shopping.merchant.reports.v1alpha.IPriceCompetitivenessProductView, writer?: $protobuf.Writer): $protobuf.Writer;
1588
+
1589
+ /**
1590
+ * Encodes the specified PriceCompetitivenessProductView message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.PriceCompetitivenessProductView.verify|verify} messages.
1591
+ * @param message PriceCompetitivenessProductView message or plain object to encode
1592
+ * @param [writer] Writer to encode to
1593
+ * @returns Writer
1594
+ */
1595
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.IPriceCompetitivenessProductView, writer?: $protobuf.Writer): $protobuf.Writer;
1596
+
1597
+ /**
1598
+ * Decodes a PriceCompetitivenessProductView message from the specified reader or buffer.
1599
+ * @param reader Reader or buffer to decode from
1600
+ * @param [length] Message length if known beforehand
1601
+ * @returns PriceCompetitivenessProductView
1602
+ * @throws {Error} If the payload is not a reader or valid buffer
1603
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1604
+ */
1605
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.PriceCompetitivenessProductView;
1606
+
1607
+ /**
1608
+ * Decodes a PriceCompetitivenessProductView message from the specified reader or buffer, length delimited.
1609
+ * @param reader Reader or buffer to decode from
1610
+ * @returns PriceCompetitivenessProductView
1611
+ * @throws {Error} If the payload is not a reader or valid buffer
1612
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1613
+ */
1614
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.PriceCompetitivenessProductView;
1615
+
1616
+ /**
1617
+ * Verifies a PriceCompetitivenessProductView message.
1618
+ * @param message Plain object to verify
1619
+ * @returns `null` if valid, otherwise the reason why it is not
1620
+ */
1621
+ public static verify(message: { [k: string]: any }): (string|null);
1622
+
1623
+ /**
1624
+ * Creates a PriceCompetitivenessProductView message from a plain object. Also converts values to their respective internal types.
1625
+ * @param object Plain object
1626
+ * @returns PriceCompetitivenessProductView
1627
+ */
1628
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.PriceCompetitivenessProductView;
1629
+
1630
+ /**
1631
+ * Creates a plain object from a PriceCompetitivenessProductView message. Also converts values to other types if specified.
1632
+ * @param message PriceCompetitivenessProductView
1633
+ * @param [options] Conversion options
1634
+ * @returns Plain object
1635
+ */
1636
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.PriceCompetitivenessProductView, options?: $protobuf.IConversionOptions): { [k: string]: any };
1637
+
1638
+ /**
1639
+ * Converts this PriceCompetitivenessProductView to JSON.
1640
+ * @returns JSON object
1641
+ */
1642
+ public toJSON(): { [k: string]: any };
1643
+
1644
+ /**
1645
+ * Gets the default type url for PriceCompetitivenessProductView
1646
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
1647
+ * @returns The default type url
1648
+ */
1649
+ public static getTypeUrl(typeUrlPrefix?: string): string;
1650
+ }
1651
+
1652
+ /** Properties of a PriceInsightsProductView. */
1653
+ interface IPriceInsightsProductView {
1654
+
1655
+ /** PriceInsightsProductView id */
1656
+ id?: (string|null);
1657
+
1658
+ /** PriceInsightsProductView offerId */
1659
+ offerId?: (string|null);
1660
+
1661
+ /** PriceInsightsProductView title */
1662
+ title?: (string|null);
1663
+
1664
+ /** PriceInsightsProductView brand */
1665
+ brand?: (string|null);
1666
+
1667
+ /** PriceInsightsProductView categoryL1 */
1668
+ categoryL1?: (string|null);
1669
+
1670
+ /** PriceInsightsProductView categoryL2 */
1671
+ categoryL2?: (string|null);
1672
+
1673
+ /** PriceInsightsProductView categoryL3 */
1674
+ categoryL3?: (string|null);
1675
+
1676
+ /** PriceInsightsProductView categoryL4 */
1677
+ categoryL4?: (string|null);
1678
+
1679
+ /** PriceInsightsProductView categoryL5 */
1680
+ categoryL5?: (string|null);
1681
+
1682
+ /** PriceInsightsProductView productTypeL1 */
1683
+ productTypeL1?: (string|null);
1684
+
1685
+ /** PriceInsightsProductView productTypeL2 */
1686
+ productTypeL2?: (string|null);
1687
+
1688
+ /** PriceInsightsProductView productTypeL3 */
1689
+ productTypeL3?: (string|null);
1690
+
1691
+ /** PriceInsightsProductView productTypeL4 */
1692
+ productTypeL4?: (string|null);
1693
+
1694
+ /** PriceInsightsProductView productTypeL5 */
1695
+ productTypeL5?: (string|null);
1696
+
1697
+ /** PriceInsightsProductView price */
1698
+ price?: (google.shopping.type.IPrice|null);
1699
+
1700
+ /** PriceInsightsProductView suggestedPrice */
1701
+ suggestedPrice?: (google.shopping.type.IPrice|null);
1702
+
1703
+ /** PriceInsightsProductView predictedImpressionsChangeFraction */
1704
+ predictedImpressionsChangeFraction?: (number|null);
1705
+
1706
+ /** PriceInsightsProductView predictedClicksChangeFraction */
1707
+ predictedClicksChangeFraction?: (number|null);
1708
+
1709
+ /** PriceInsightsProductView predictedConversionsChangeFraction */
1710
+ predictedConversionsChangeFraction?: (number|null);
1711
+
1712
+ /** PriceInsightsProductView effectiveness */
1713
+ effectiveness?: (google.shopping.merchant.reports.v1alpha.PriceInsightsProductView.Effectiveness|keyof typeof google.shopping.merchant.reports.v1alpha.PriceInsightsProductView.Effectiveness|null);
1714
+ }
1715
+
1716
+ /** Represents a PriceInsightsProductView. */
1717
+ class PriceInsightsProductView implements IPriceInsightsProductView {
1718
+
1719
+ /**
1720
+ * Constructs a new PriceInsightsProductView.
1721
+ * @param [properties] Properties to set
1722
+ */
1723
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.IPriceInsightsProductView);
1724
+
1725
+ /** PriceInsightsProductView id. */
1726
+ public id?: (string|null);
1727
+
1728
+ /** PriceInsightsProductView offerId. */
1729
+ public offerId?: (string|null);
1730
+
1731
+ /** PriceInsightsProductView title. */
1732
+ public title?: (string|null);
1733
+
1734
+ /** PriceInsightsProductView brand. */
1735
+ public brand?: (string|null);
1736
+
1737
+ /** PriceInsightsProductView categoryL1. */
1738
+ public categoryL1?: (string|null);
1739
+
1740
+ /** PriceInsightsProductView categoryL2. */
1741
+ public categoryL2?: (string|null);
1742
+
1743
+ /** PriceInsightsProductView categoryL3. */
1744
+ public categoryL3?: (string|null);
1745
+
1746
+ /** PriceInsightsProductView categoryL4. */
1747
+ public categoryL4?: (string|null);
1748
+
1749
+ /** PriceInsightsProductView categoryL5. */
1750
+ public categoryL5?: (string|null);
1751
+
1752
+ /** PriceInsightsProductView productTypeL1. */
1753
+ public productTypeL1?: (string|null);
1754
+
1755
+ /** PriceInsightsProductView productTypeL2. */
1756
+ public productTypeL2?: (string|null);
1757
+
1758
+ /** PriceInsightsProductView productTypeL3. */
1759
+ public productTypeL3?: (string|null);
1760
+
1761
+ /** PriceInsightsProductView productTypeL4. */
1762
+ public productTypeL4?: (string|null);
1763
+
1764
+ /** PriceInsightsProductView productTypeL5. */
1765
+ public productTypeL5?: (string|null);
1766
+
1767
+ /** PriceInsightsProductView price. */
1768
+ public price?: (google.shopping.type.IPrice|null);
1769
+
1770
+ /** PriceInsightsProductView suggestedPrice. */
1771
+ public suggestedPrice?: (google.shopping.type.IPrice|null);
1772
+
1773
+ /** PriceInsightsProductView predictedImpressionsChangeFraction. */
1774
+ public predictedImpressionsChangeFraction?: (number|null);
1775
+
1776
+ /** PriceInsightsProductView predictedClicksChangeFraction. */
1777
+ public predictedClicksChangeFraction?: (number|null);
1778
+
1779
+ /** PriceInsightsProductView predictedConversionsChangeFraction. */
1780
+ public predictedConversionsChangeFraction?: (number|null);
1781
+
1782
+ /** PriceInsightsProductView effectiveness. */
1783
+ public effectiveness: (google.shopping.merchant.reports.v1alpha.PriceInsightsProductView.Effectiveness|keyof typeof google.shopping.merchant.reports.v1alpha.PriceInsightsProductView.Effectiveness);
1784
+
1785
+ /**
1786
+ * Creates a new PriceInsightsProductView instance using the specified properties.
1787
+ * @param [properties] Properties to set
1788
+ * @returns PriceInsightsProductView instance
1789
+ */
1790
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.IPriceInsightsProductView): google.shopping.merchant.reports.v1alpha.PriceInsightsProductView;
1791
+
1792
+ /**
1793
+ * Encodes the specified PriceInsightsProductView message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.PriceInsightsProductView.verify|verify} messages.
1794
+ * @param message PriceInsightsProductView message or plain object to encode
1795
+ * @param [writer] Writer to encode to
1796
+ * @returns Writer
1797
+ */
1798
+ public static encode(message: google.shopping.merchant.reports.v1alpha.IPriceInsightsProductView, writer?: $protobuf.Writer): $protobuf.Writer;
1799
+
1800
+ /**
1801
+ * Encodes the specified PriceInsightsProductView message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.PriceInsightsProductView.verify|verify} messages.
1802
+ * @param message PriceInsightsProductView message or plain object to encode
1803
+ * @param [writer] Writer to encode to
1804
+ * @returns Writer
1805
+ */
1806
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.IPriceInsightsProductView, writer?: $protobuf.Writer): $protobuf.Writer;
1807
+
1808
+ /**
1809
+ * Decodes a PriceInsightsProductView message from the specified reader or buffer.
1810
+ * @param reader Reader or buffer to decode from
1811
+ * @param [length] Message length if known beforehand
1812
+ * @returns PriceInsightsProductView
1813
+ * @throws {Error} If the payload is not a reader or valid buffer
1814
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1815
+ */
1816
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.PriceInsightsProductView;
1817
+
1818
+ /**
1819
+ * Decodes a PriceInsightsProductView message from the specified reader or buffer, length delimited.
1820
+ * @param reader Reader or buffer to decode from
1821
+ * @returns PriceInsightsProductView
1822
+ * @throws {Error} If the payload is not a reader or valid buffer
1823
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1824
+ */
1825
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.PriceInsightsProductView;
1826
+
1827
+ /**
1828
+ * Verifies a PriceInsightsProductView message.
1829
+ * @param message Plain object to verify
1830
+ * @returns `null` if valid, otherwise the reason why it is not
1831
+ */
1832
+ public static verify(message: { [k: string]: any }): (string|null);
1833
+
1834
+ /**
1835
+ * Creates a PriceInsightsProductView message from a plain object. Also converts values to their respective internal types.
1836
+ * @param object Plain object
1837
+ * @returns PriceInsightsProductView
1838
+ */
1839
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.PriceInsightsProductView;
1840
+
1841
+ /**
1842
+ * Creates a plain object from a PriceInsightsProductView message. Also converts values to other types if specified.
1843
+ * @param message PriceInsightsProductView
1844
+ * @param [options] Conversion options
1845
+ * @returns Plain object
1846
+ */
1847
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.PriceInsightsProductView, options?: $protobuf.IConversionOptions): { [k: string]: any };
1848
+
1849
+ /**
1850
+ * Converts this PriceInsightsProductView to JSON.
1851
+ * @returns JSON object
1852
+ */
1853
+ public toJSON(): { [k: string]: any };
1854
+
1855
+ /**
1856
+ * Gets the default type url for PriceInsightsProductView
1857
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
1858
+ * @returns The default type url
1859
+ */
1860
+ public static getTypeUrl(typeUrlPrefix?: string): string;
1861
+ }
1862
+
1863
+ namespace PriceInsightsProductView {
1864
+
1865
+ /** Effectiveness enum. */
1866
+ enum Effectiveness {
1867
+ EFFECTIVENESS_UNSPECIFIED = 0,
1868
+ LOW = 1,
1869
+ MEDIUM = 2,
1870
+ HIGH = 3
1871
+ }
1872
+ }
1873
+
1874
+ /** Properties of a BestSellersProductClusterView. */
1875
+ interface IBestSellersProductClusterView {
1876
+
1877
+ /** BestSellersProductClusterView reportDate */
1878
+ reportDate?: (google.type.IDate|null);
1879
+
1880
+ /** BestSellersProductClusterView reportGranularity */
1881
+ reportGranularity?: (google.shopping.merchant.reports.v1alpha.ReportGranularity.ReportGranularityEnum|keyof typeof google.shopping.merchant.reports.v1alpha.ReportGranularity.ReportGranularityEnum|null);
1882
+
1883
+ /** BestSellersProductClusterView reportCountryCode */
1884
+ reportCountryCode?: (string|null);
1885
+
1886
+ /** BestSellersProductClusterView reportCategoryId */
1887
+ reportCategoryId?: (number|Long|string|null);
1888
+
1889
+ /** BestSellersProductClusterView title */
1890
+ title?: (string|null);
1891
+
1892
+ /** BestSellersProductClusterView brand */
1893
+ brand?: (string|null);
1894
+
1895
+ /** BestSellersProductClusterView categoryL1 */
1896
+ categoryL1?: (string|null);
1897
+
1898
+ /** BestSellersProductClusterView categoryL2 */
1899
+ categoryL2?: (string|null);
1900
+
1901
+ /** BestSellersProductClusterView categoryL3 */
1902
+ categoryL3?: (string|null);
1903
+
1904
+ /** BestSellersProductClusterView categoryL4 */
1905
+ categoryL4?: (string|null);
1906
+
1907
+ /** BestSellersProductClusterView categoryL5 */
1908
+ categoryL5?: (string|null);
1909
+
1910
+ /** BestSellersProductClusterView variantGtins */
1911
+ variantGtins?: (string[]|null);
1912
+
1913
+ /** BestSellersProductClusterView inventoryStatus */
1914
+ inventoryStatus?: (google.shopping.merchant.reports.v1alpha.BestSellersProductClusterView.InventoryStatus|keyof typeof google.shopping.merchant.reports.v1alpha.BestSellersProductClusterView.InventoryStatus|null);
1915
+
1916
+ /** BestSellersProductClusterView brandInventoryStatus */
1917
+ brandInventoryStatus?: (google.shopping.merchant.reports.v1alpha.BestSellersProductClusterView.InventoryStatus|keyof typeof google.shopping.merchant.reports.v1alpha.BestSellersProductClusterView.InventoryStatus|null);
1918
+
1919
+ /** BestSellersProductClusterView rank */
1920
+ rank?: (number|Long|string|null);
1921
+
1922
+ /** BestSellersProductClusterView previousRank */
1923
+ previousRank?: (number|Long|string|null);
1924
+
1925
+ /** BestSellersProductClusterView relativeDemand */
1926
+ relativeDemand?: (google.shopping.merchant.reports.v1alpha.RelativeDemand.RelativeDemandEnum|keyof typeof google.shopping.merchant.reports.v1alpha.RelativeDemand.RelativeDemandEnum|null);
1927
+
1928
+ /** BestSellersProductClusterView previousRelativeDemand */
1929
+ previousRelativeDemand?: (google.shopping.merchant.reports.v1alpha.RelativeDemand.RelativeDemandEnum|keyof typeof google.shopping.merchant.reports.v1alpha.RelativeDemand.RelativeDemandEnum|null);
1930
+
1931
+ /** BestSellersProductClusterView relativeDemandChange */
1932
+ relativeDemandChange?: (google.shopping.merchant.reports.v1alpha.RelativeDemandChangeType.RelativeDemandChangeTypeEnum|keyof typeof google.shopping.merchant.reports.v1alpha.RelativeDemandChangeType.RelativeDemandChangeTypeEnum|null);
1933
+ }
1934
+
1935
+ /** Represents a BestSellersProductClusterView. */
1936
+ class BestSellersProductClusterView implements IBestSellersProductClusterView {
1937
+
1938
+ /**
1939
+ * Constructs a new BestSellersProductClusterView.
1940
+ * @param [properties] Properties to set
1941
+ */
1942
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.IBestSellersProductClusterView);
1943
+
1944
+ /** BestSellersProductClusterView reportDate. */
1945
+ public reportDate?: (google.type.IDate|null);
1946
+
1947
+ /** BestSellersProductClusterView reportGranularity. */
1948
+ public reportGranularity?: (google.shopping.merchant.reports.v1alpha.ReportGranularity.ReportGranularityEnum|keyof typeof google.shopping.merchant.reports.v1alpha.ReportGranularity.ReportGranularityEnum|null);
1949
+
1950
+ /** BestSellersProductClusterView reportCountryCode. */
1951
+ public reportCountryCode?: (string|null);
1952
+
1953
+ /** BestSellersProductClusterView reportCategoryId. */
1954
+ public reportCategoryId?: (number|Long|string|null);
1955
+
1956
+ /** BestSellersProductClusterView title. */
1957
+ public title?: (string|null);
1958
+
1959
+ /** BestSellersProductClusterView brand. */
1960
+ public brand?: (string|null);
1961
+
1962
+ /** BestSellersProductClusterView categoryL1. */
1963
+ public categoryL1?: (string|null);
1964
+
1965
+ /** BestSellersProductClusterView categoryL2. */
1966
+ public categoryL2?: (string|null);
1967
+
1968
+ /** BestSellersProductClusterView categoryL3. */
1969
+ public categoryL3?: (string|null);
1970
+
1971
+ /** BestSellersProductClusterView categoryL4. */
1972
+ public categoryL4?: (string|null);
1973
+
1974
+ /** BestSellersProductClusterView categoryL5. */
1975
+ public categoryL5?: (string|null);
1976
+
1977
+ /** BestSellersProductClusterView variantGtins. */
1978
+ public variantGtins: string[];
1979
+
1980
+ /** BestSellersProductClusterView inventoryStatus. */
1981
+ public inventoryStatus?: (google.shopping.merchant.reports.v1alpha.BestSellersProductClusterView.InventoryStatus|keyof typeof google.shopping.merchant.reports.v1alpha.BestSellersProductClusterView.InventoryStatus|null);
1982
+
1983
+ /** BestSellersProductClusterView brandInventoryStatus. */
1984
+ public brandInventoryStatus?: (google.shopping.merchant.reports.v1alpha.BestSellersProductClusterView.InventoryStatus|keyof typeof google.shopping.merchant.reports.v1alpha.BestSellersProductClusterView.InventoryStatus|null);
1985
+
1986
+ /** BestSellersProductClusterView rank. */
1987
+ public rank?: (number|Long|string|null);
1988
+
1989
+ /** BestSellersProductClusterView previousRank. */
1990
+ public previousRank?: (number|Long|string|null);
1991
+
1992
+ /** BestSellersProductClusterView relativeDemand. */
1993
+ public relativeDemand?: (google.shopping.merchant.reports.v1alpha.RelativeDemand.RelativeDemandEnum|keyof typeof google.shopping.merchant.reports.v1alpha.RelativeDemand.RelativeDemandEnum|null);
1994
+
1995
+ /** BestSellersProductClusterView previousRelativeDemand. */
1996
+ public previousRelativeDemand?: (google.shopping.merchant.reports.v1alpha.RelativeDemand.RelativeDemandEnum|keyof typeof google.shopping.merchant.reports.v1alpha.RelativeDemand.RelativeDemandEnum|null);
1997
+
1998
+ /** BestSellersProductClusterView relativeDemandChange. */
1999
+ public relativeDemandChange?: (google.shopping.merchant.reports.v1alpha.RelativeDemandChangeType.RelativeDemandChangeTypeEnum|keyof typeof google.shopping.merchant.reports.v1alpha.RelativeDemandChangeType.RelativeDemandChangeTypeEnum|null);
2000
+
2001
+ /**
2002
+ * Creates a new BestSellersProductClusterView instance using the specified properties.
2003
+ * @param [properties] Properties to set
2004
+ * @returns BestSellersProductClusterView instance
2005
+ */
2006
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.IBestSellersProductClusterView): google.shopping.merchant.reports.v1alpha.BestSellersProductClusterView;
2007
+
2008
+ /**
2009
+ * Encodes the specified BestSellersProductClusterView message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.BestSellersProductClusterView.verify|verify} messages.
2010
+ * @param message BestSellersProductClusterView message or plain object to encode
2011
+ * @param [writer] Writer to encode to
2012
+ * @returns Writer
2013
+ */
2014
+ public static encode(message: google.shopping.merchant.reports.v1alpha.IBestSellersProductClusterView, writer?: $protobuf.Writer): $protobuf.Writer;
2015
+
2016
+ /**
2017
+ * Encodes the specified BestSellersProductClusterView message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.BestSellersProductClusterView.verify|verify} messages.
2018
+ * @param message BestSellersProductClusterView message or plain object to encode
2019
+ * @param [writer] Writer to encode to
2020
+ * @returns Writer
2021
+ */
2022
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.IBestSellersProductClusterView, writer?: $protobuf.Writer): $protobuf.Writer;
2023
+
2024
+ /**
2025
+ * Decodes a BestSellersProductClusterView message from the specified reader or buffer.
2026
+ * @param reader Reader or buffer to decode from
2027
+ * @param [length] Message length if known beforehand
2028
+ * @returns BestSellersProductClusterView
2029
+ * @throws {Error} If the payload is not a reader or valid buffer
2030
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2031
+ */
2032
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.BestSellersProductClusterView;
2033
+
2034
+ /**
2035
+ * Decodes a BestSellersProductClusterView message from the specified reader or buffer, length delimited.
2036
+ * @param reader Reader or buffer to decode from
2037
+ * @returns BestSellersProductClusterView
2038
+ * @throws {Error} If the payload is not a reader or valid buffer
2039
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2040
+ */
2041
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.BestSellersProductClusterView;
2042
+
2043
+ /**
2044
+ * Verifies a BestSellersProductClusterView message.
2045
+ * @param message Plain object to verify
2046
+ * @returns `null` if valid, otherwise the reason why it is not
2047
+ */
2048
+ public static verify(message: { [k: string]: any }): (string|null);
2049
+
2050
+ /**
2051
+ * Creates a BestSellersProductClusterView message from a plain object. Also converts values to their respective internal types.
2052
+ * @param object Plain object
2053
+ * @returns BestSellersProductClusterView
2054
+ */
2055
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.BestSellersProductClusterView;
2056
+
2057
+ /**
2058
+ * Creates a plain object from a BestSellersProductClusterView message. Also converts values to other types if specified.
2059
+ * @param message BestSellersProductClusterView
2060
+ * @param [options] Conversion options
2061
+ * @returns Plain object
2062
+ */
2063
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.BestSellersProductClusterView, options?: $protobuf.IConversionOptions): { [k: string]: any };
2064
+
2065
+ /**
2066
+ * Converts this BestSellersProductClusterView to JSON.
2067
+ * @returns JSON object
2068
+ */
2069
+ public toJSON(): { [k: string]: any };
2070
+
2071
+ /**
2072
+ * Gets the default type url for BestSellersProductClusterView
2073
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
2074
+ * @returns The default type url
2075
+ */
2076
+ public static getTypeUrl(typeUrlPrefix?: string): string;
2077
+ }
2078
+
2079
+ namespace BestSellersProductClusterView {
2080
+
2081
+ /** InventoryStatus enum. */
2082
+ enum InventoryStatus {
2083
+ INVENTORY_STATUS_UNSPECIFIED = 0,
2084
+ IN_STOCK = 1,
2085
+ OUT_OF_STOCK = 2,
2086
+ NOT_IN_INVENTORY = 3
2087
+ }
2088
+ }
2089
+
2090
+ /** Properties of a BestSellersBrandView. */
2091
+ interface IBestSellersBrandView {
2092
+
2093
+ /** BestSellersBrandView reportDate */
2094
+ reportDate?: (google.type.IDate|null);
2095
+
2096
+ /** BestSellersBrandView reportGranularity */
2097
+ reportGranularity?: (google.shopping.merchant.reports.v1alpha.ReportGranularity.ReportGranularityEnum|keyof typeof google.shopping.merchant.reports.v1alpha.ReportGranularity.ReportGranularityEnum|null);
2098
+
2099
+ /** BestSellersBrandView reportCountryCode */
2100
+ reportCountryCode?: (string|null);
2101
+
2102
+ /** BestSellersBrandView reportCategoryId */
2103
+ reportCategoryId?: (number|Long|string|null);
2104
+
2105
+ /** BestSellersBrandView brand */
2106
+ brand?: (string|null);
2107
+
2108
+ /** BestSellersBrandView rank */
2109
+ rank?: (number|Long|string|null);
2110
+
2111
+ /** BestSellersBrandView previousRank */
2112
+ previousRank?: (number|Long|string|null);
2113
+
2114
+ /** BestSellersBrandView relativeDemand */
2115
+ relativeDemand?: (google.shopping.merchant.reports.v1alpha.RelativeDemand.RelativeDemandEnum|keyof typeof google.shopping.merchant.reports.v1alpha.RelativeDemand.RelativeDemandEnum|null);
2116
+
2117
+ /** BestSellersBrandView previousRelativeDemand */
2118
+ previousRelativeDemand?: (google.shopping.merchant.reports.v1alpha.RelativeDemand.RelativeDemandEnum|keyof typeof google.shopping.merchant.reports.v1alpha.RelativeDemand.RelativeDemandEnum|null);
2119
+
2120
+ /** BestSellersBrandView relativeDemandChange */
2121
+ relativeDemandChange?: (google.shopping.merchant.reports.v1alpha.RelativeDemandChangeType.RelativeDemandChangeTypeEnum|keyof typeof google.shopping.merchant.reports.v1alpha.RelativeDemandChangeType.RelativeDemandChangeTypeEnum|null);
2122
+ }
2123
+
2124
+ /** Represents a BestSellersBrandView. */
2125
+ class BestSellersBrandView implements IBestSellersBrandView {
2126
+
2127
+ /**
2128
+ * Constructs a new BestSellersBrandView.
2129
+ * @param [properties] Properties to set
2130
+ */
2131
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.IBestSellersBrandView);
2132
+
2133
+ /** BestSellersBrandView reportDate. */
2134
+ public reportDate?: (google.type.IDate|null);
2135
+
2136
+ /** BestSellersBrandView reportGranularity. */
2137
+ public reportGranularity?: (google.shopping.merchant.reports.v1alpha.ReportGranularity.ReportGranularityEnum|keyof typeof google.shopping.merchant.reports.v1alpha.ReportGranularity.ReportGranularityEnum|null);
2138
+
2139
+ /** BestSellersBrandView reportCountryCode. */
2140
+ public reportCountryCode?: (string|null);
2141
+
2142
+ /** BestSellersBrandView reportCategoryId. */
2143
+ public reportCategoryId?: (number|Long|string|null);
2144
+
2145
+ /** BestSellersBrandView brand. */
2146
+ public brand?: (string|null);
2147
+
2148
+ /** BestSellersBrandView rank. */
2149
+ public rank?: (number|Long|string|null);
2150
+
2151
+ /** BestSellersBrandView previousRank. */
2152
+ public previousRank?: (number|Long|string|null);
2153
+
2154
+ /** BestSellersBrandView relativeDemand. */
2155
+ public relativeDemand?: (google.shopping.merchant.reports.v1alpha.RelativeDemand.RelativeDemandEnum|keyof typeof google.shopping.merchant.reports.v1alpha.RelativeDemand.RelativeDemandEnum|null);
2156
+
2157
+ /** BestSellersBrandView previousRelativeDemand. */
2158
+ public previousRelativeDemand?: (google.shopping.merchant.reports.v1alpha.RelativeDemand.RelativeDemandEnum|keyof typeof google.shopping.merchant.reports.v1alpha.RelativeDemand.RelativeDemandEnum|null);
2159
+
2160
+ /** BestSellersBrandView relativeDemandChange. */
2161
+ public relativeDemandChange?: (google.shopping.merchant.reports.v1alpha.RelativeDemandChangeType.RelativeDemandChangeTypeEnum|keyof typeof google.shopping.merchant.reports.v1alpha.RelativeDemandChangeType.RelativeDemandChangeTypeEnum|null);
2162
+
2163
+ /**
2164
+ * Creates a new BestSellersBrandView instance using the specified properties.
2165
+ * @param [properties] Properties to set
2166
+ * @returns BestSellersBrandView instance
2167
+ */
2168
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.IBestSellersBrandView): google.shopping.merchant.reports.v1alpha.BestSellersBrandView;
2169
+
2170
+ /**
2171
+ * Encodes the specified BestSellersBrandView message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.BestSellersBrandView.verify|verify} messages.
2172
+ * @param message BestSellersBrandView message or plain object to encode
2173
+ * @param [writer] Writer to encode to
2174
+ * @returns Writer
2175
+ */
2176
+ public static encode(message: google.shopping.merchant.reports.v1alpha.IBestSellersBrandView, writer?: $protobuf.Writer): $protobuf.Writer;
2177
+
2178
+ /**
2179
+ * Encodes the specified BestSellersBrandView message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.BestSellersBrandView.verify|verify} messages.
2180
+ * @param message BestSellersBrandView message or plain object to encode
2181
+ * @param [writer] Writer to encode to
2182
+ * @returns Writer
2183
+ */
2184
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.IBestSellersBrandView, writer?: $protobuf.Writer): $protobuf.Writer;
2185
+
2186
+ /**
2187
+ * Decodes a BestSellersBrandView message from the specified reader or buffer.
2188
+ * @param reader Reader or buffer to decode from
2189
+ * @param [length] Message length if known beforehand
2190
+ * @returns BestSellersBrandView
2191
+ * @throws {Error} If the payload is not a reader or valid buffer
2192
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2193
+ */
2194
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.BestSellersBrandView;
2195
+
2196
+ /**
2197
+ * Decodes a BestSellersBrandView message from the specified reader or buffer, length delimited.
2198
+ * @param reader Reader or buffer to decode from
2199
+ * @returns BestSellersBrandView
2200
+ * @throws {Error} If the payload is not a reader or valid buffer
2201
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2202
+ */
2203
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.BestSellersBrandView;
2204
+
2205
+ /**
2206
+ * Verifies a BestSellersBrandView message.
2207
+ * @param message Plain object to verify
2208
+ * @returns `null` if valid, otherwise the reason why it is not
2209
+ */
2210
+ public static verify(message: { [k: string]: any }): (string|null);
2211
+
2212
+ /**
2213
+ * Creates a BestSellersBrandView message from a plain object. Also converts values to their respective internal types.
2214
+ * @param object Plain object
2215
+ * @returns BestSellersBrandView
2216
+ */
2217
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.BestSellersBrandView;
2218
+
2219
+ /**
2220
+ * Creates a plain object from a BestSellersBrandView message. Also converts values to other types if specified.
2221
+ * @param message BestSellersBrandView
2222
+ * @param [options] Conversion options
2223
+ * @returns Plain object
2224
+ */
2225
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.BestSellersBrandView, options?: $protobuf.IConversionOptions): { [k: string]: any };
2226
+
2227
+ /**
2228
+ * Converts this BestSellersBrandView to JSON.
2229
+ * @returns JSON object
2230
+ */
2231
+ public toJSON(): { [k: string]: any };
2232
+
2233
+ /**
2234
+ * Gets the default type url for BestSellersBrandView
2235
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
2236
+ * @returns The default type url
2237
+ */
2238
+ public static getTypeUrl(typeUrlPrefix?: string): string;
2239
+ }
2240
+
2241
+ /** Properties of a NonProductPerformanceView. */
2242
+ interface INonProductPerformanceView {
2243
+
2244
+ /** NonProductPerformanceView date */
2245
+ date?: (google.type.IDate|null);
2246
+
2247
+ /** NonProductPerformanceView week */
2248
+ week?: (google.type.IDate|null);
2249
+
2250
+ /** NonProductPerformanceView clicks */
2251
+ clicks?: (number|Long|string|null);
2252
+
2253
+ /** NonProductPerformanceView impressions */
2254
+ impressions?: (number|Long|string|null);
2255
+
2256
+ /** NonProductPerformanceView clickThroughRate */
2257
+ clickThroughRate?: (number|null);
2258
+ }
2259
+
2260
+ /** Represents a NonProductPerformanceView. */
2261
+ class NonProductPerformanceView implements INonProductPerformanceView {
2262
+
2263
+ /**
2264
+ * Constructs a new NonProductPerformanceView.
2265
+ * @param [properties] Properties to set
2266
+ */
2267
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.INonProductPerformanceView);
2268
+
2269
+ /** NonProductPerformanceView date. */
2270
+ public date?: (google.type.IDate|null);
2271
+
2272
+ /** NonProductPerformanceView week. */
2273
+ public week?: (google.type.IDate|null);
2274
+
2275
+ /** NonProductPerformanceView clicks. */
2276
+ public clicks?: (number|Long|string|null);
2277
+
2278
+ /** NonProductPerformanceView impressions. */
2279
+ public impressions?: (number|Long|string|null);
2280
+
2281
+ /** NonProductPerformanceView clickThroughRate. */
2282
+ public clickThroughRate?: (number|null);
2283
+
2284
+ /**
2285
+ * Creates a new NonProductPerformanceView instance using the specified properties.
2286
+ * @param [properties] Properties to set
2287
+ * @returns NonProductPerformanceView instance
2288
+ */
2289
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.INonProductPerformanceView): google.shopping.merchant.reports.v1alpha.NonProductPerformanceView;
2290
+
2291
+ /**
2292
+ * Encodes the specified NonProductPerformanceView message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.NonProductPerformanceView.verify|verify} messages.
2293
+ * @param message NonProductPerformanceView message or plain object to encode
2294
+ * @param [writer] Writer to encode to
2295
+ * @returns Writer
2296
+ */
2297
+ public static encode(message: google.shopping.merchant.reports.v1alpha.INonProductPerformanceView, writer?: $protobuf.Writer): $protobuf.Writer;
2298
+
2299
+ /**
2300
+ * Encodes the specified NonProductPerformanceView message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.NonProductPerformanceView.verify|verify} messages.
2301
+ * @param message NonProductPerformanceView message or plain object to encode
2302
+ * @param [writer] Writer to encode to
2303
+ * @returns Writer
2304
+ */
2305
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.INonProductPerformanceView, writer?: $protobuf.Writer): $protobuf.Writer;
2306
+
2307
+ /**
2308
+ * Decodes a NonProductPerformanceView message from the specified reader or buffer.
2309
+ * @param reader Reader or buffer to decode from
2310
+ * @param [length] Message length if known beforehand
2311
+ * @returns NonProductPerformanceView
2312
+ * @throws {Error} If the payload is not a reader or valid buffer
2313
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2314
+ */
2315
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.NonProductPerformanceView;
2316
+
2317
+ /**
2318
+ * Decodes a NonProductPerformanceView message from the specified reader or buffer, length delimited.
2319
+ * @param reader Reader or buffer to decode from
2320
+ * @returns NonProductPerformanceView
2321
+ * @throws {Error} If the payload is not a reader or valid buffer
2322
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2323
+ */
2324
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.NonProductPerformanceView;
2325
+
2326
+ /**
2327
+ * Verifies a NonProductPerformanceView message.
2328
+ * @param message Plain object to verify
2329
+ * @returns `null` if valid, otherwise the reason why it is not
2330
+ */
2331
+ public static verify(message: { [k: string]: any }): (string|null);
2332
+
2333
+ /**
2334
+ * Creates a NonProductPerformanceView message from a plain object. Also converts values to their respective internal types.
2335
+ * @param object Plain object
2336
+ * @returns NonProductPerformanceView
2337
+ */
2338
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.NonProductPerformanceView;
2339
+
2340
+ /**
2341
+ * Creates a plain object from a NonProductPerformanceView message. Also converts values to other types if specified.
2342
+ * @param message NonProductPerformanceView
2343
+ * @param [options] Conversion options
2344
+ * @returns Plain object
2345
+ */
2346
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.NonProductPerformanceView, options?: $protobuf.IConversionOptions): { [k: string]: any };
2347
+
2348
+ /**
2349
+ * Converts this NonProductPerformanceView to JSON.
2350
+ * @returns JSON object
2351
+ */
2352
+ public toJSON(): { [k: string]: any };
2353
+
2354
+ /**
2355
+ * Gets the default type url for NonProductPerformanceView
2356
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
2357
+ * @returns The default type url
2358
+ */
2359
+ public static getTypeUrl(typeUrlPrefix?: string): string;
2360
+ }
2361
+
2362
+ /** Properties of a CompetitiveVisibilityCompetitorView. */
2363
+ interface ICompetitiveVisibilityCompetitorView {
2364
+
2365
+ /** CompetitiveVisibilityCompetitorView date */
2366
+ date?: (google.type.IDate|null);
2367
+
2368
+ /** CompetitiveVisibilityCompetitorView domain */
2369
+ domain?: (string|null);
2370
+
2371
+ /** CompetitiveVisibilityCompetitorView isYourDomain */
2372
+ isYourDomain?: (boolean|null);
2373
+
2374
+ /** CompetitiveVisibilityCompetitorView reportCountryCode */
2375
+ reportCountryCode?: (string|null);
2376
+
2377
+ /** CompetitiveVisibilityCompetitorView reportCategoryId */
2378
+ reportCategoryId?: (number|Long|string|null);
2379
+
2380
+ /** CompetitiveVisibilityCompetitorView trafficSource */
2381
+ trafficSource?: (google.shopping.merchant.reports.v1alpha.TrafficSource.TrafficSourceEnum|keyof typeof google.shopping.merchant.reports.v1alpha.TrafficSource.TrafficSourceEnum|null);
2382
+
2383
+ /** CompetitiveVisibilityCompetitorView rank */
2384
+ rank?: (number|Long|string|null);
2385
+
2386
+ /** CompetitiveVisibilityCompetitorView adsOrganicRatio */
2387
+ adsOrganicRatio?: (number|null);
2388
+
2389
+ /** CompetitiveVisibilityCompetitorView pageOverlapRate */
2390
+ pageOverlapRate?: (number|null);
2391
+
2392
+ /** CompetitiveVisibilityCompetitorView higherPositionRate */
2393
+ higherPositionRate?: (number|null);
2394
+
2395
+ /** CompetitiveVisibilityCompetitorView relativeVisibility */
2396
+ relativeVisibility?: (number|null);
2397
+ }
2398
+
2399
+ /** Represents a CompetitiveVisibilityCompetitorView. */
2400
+ class CompetitiveVisibilityCompetitorView implements ICompetitiveVisibilityCompetitorView {
2401
+
2402
+ /**
2403
+ * Constructs a new CompetitiveVisibilityCompetitorView.
2404
+ * @param [properties] Properties to set
2405
+ */
2406
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityCompetitorView);
2407
+
2408
+ /** CompetitiveVisibilityCompetitorView date. */
2409
+ public date?: (google.type.IDate|null);
2410
+
2411
+ /** CompetitiveVisibilityCompetitorView domain. */
2412
+ public domain?: (string|null);
2413
+
2414
+ /** CompetitiveVisibilityCompetitorView isYourDomain. */
2415
+ public isYourDomain?: (boolean|null);
2416
+
2417
+ /** CompetitiveVisibilityCompetitorView reportCountryCode. */
2418
+ public reportCountryCode?: (string|null);
2419
+
2420
+ /** CompetitiveVisibilityCompetitorView reportCategoryId. */
2421
+ public reportCategoryId?: (number|Long|string|null);
2422
+
2423
+ /** CompetitiveVisibilityCompetitorView trafficSource. */
2424
+ public trafficSource?: (google.shopping.merchant.reports.v1alpha.TrafficSource.TrafficSourceEnum|keyof typeof google.shopping.merchant.reports.v1alpha.TrafficSource.TrafficSourceEnum|null);
2425
+
2426
+ /** CompetitiveVisibilityCompetitorView rank. */
2427
+ public rank?: (number|Long|string|null);
2428
+
2429
+ /** CompetitiveVisibilityCompetitorView adsOrganicRatio. */
2430
+ public adsOrganicRatio?: (number|null);
2431
+
2432
+ /** CompetitiveVisibilityCompetitorView pageOverlapRate. */
2433
+ public pageOverlapRate?: (number|null);
2434
+
2435
+ /** CompetitiveVisibilityCompetitorView higherPositionRate. */
2436
+ public higherPositionRate?: (number|null);
2437
+
2438
+ /** CompetitiveVisibilityCompetitorView relativeVisibility. */
2439
+ public relativeVisibility?: (number|null);
2440
+
2441
+ /**
2442
+ * Creates a new CompetitiveVisibilityCompetitorView instance using the specified properties.
2443
+ * @param [properties] Properties to set
2444
+ * @returns CompetitiveVisibilityCompetitorView instance
2445
+ */
2446
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityCompetitorView): google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityCompetitorView;
2447
+
2448
+ /**
2449
+ * Encodes the specified CompetitiveVisibilityCompetitorView message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityCompetitorView.verify|verify} messages.
2450
+ * @param message CompetitiveVisibilityCompetitorView message or plain object to encode
2451
+ * @param [writer] Writer to encode to
2452
+ * @returns Writer
2453
+ */
2454
+ public static encode(message: google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityCompetitorView, writer?: $protobuf.Writer): $protobuf.Writer;
2455
+
2456
+ /**
2457
+ * Encodes the specified CompetitiveVisibilityCompetitorView message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityCompetitorView.verify|verify} messages.
2458
+ * @param message CompetitiveVisibilityCompetitorView message or plain object to encode
2459
+ * @param [writer] Writer to encode to
2460
+ * @returns Writer
2461
+ */
2462
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityCompetitorView, writer?: $protobuf.Writer): $protobuf.Writer;
2463
+
2464
+ /**
2465
+ * Decodes a CompetitiveVisibilityCompetitorView message from the specified reader or buffer.
2466
+ * @param reader Reader or buffer to decode from
2467
+ * @param [length] Message length if known beforehand
2468
+ * @returns CompetitiveVisibilityCompetitorView
2469
+ * @throws {Error} If the payload is not a reader or valid buffer
2470
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2471
+ */
2472
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityCompetitorView;
2473
+
2474
+ /**
2475
+ * Decodes a CompetitiveVisibilityCompetitorView message from the specified reader or buffer, length delimited.
2476
+ * @param reader Reader or buffer to decode from
2477
+ * @returns CompetitiveVisibilityCompetitorView
2478
+ * @throws {Error} If the payload is not a reader or valid buffer
2479
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2480
+ */
2481
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityCompetitorView;
2482
+
2483
+ /**
2484
+ * Verifies a CompetitiveVisibilityCompetitorView message.
2485
+ * @param message Plain object to verify
2486
+ * @returns `null` if valid, otherwise the reason why it is not
2487
+ */
2488
+ public static verify(message: { [k: string]: any }): (string|null);
2489
+
2490
+ /**
2491
+ * Creates a CompetitiveVisibilityCompetitorView message from a plain object. Also converts values to their respective internal types.
2492
+ * @param object Plain object
2493
+ * @returns CompetitiveVisibilityCompetitorView
2494
+ */
2495
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityCompetitorView;
2496
+
2497
+ /**
2498
+ * Creates a plain object from a CompetitiveVisibilityCompetitorView message. Also converts values to other types if specified.
2499
+ * @param message CompetitiveVisibilityCompetitorView
2500
+ * @param [options] Conversion options
2501
+ * @returns Plain object
2502
+ */
2503
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityCompetitorView, options?: $protobuf.IConversionOptions): { [k: string]: any };
2504
+
2505
+ /**
2506
+ * Converts this CompetitiveVisibilityCompetitorView to JSON.
2507
+ * @returns JSON object
2508
+ */
2509
+ public toJSON(): { [k: string]: any };
2510
+
2511
+ /**
2512
+ * Gets the default type url for CompetitiveVisibilityCompetitorView
2513
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
2514
+ * @returns The default type url
2515
+ */
2516
+ public static getTypeUrl(typeUrlPrefix?: string): string;
2517
+ }
2518
+
2519
+ /** Properties of a CompetitiveVisibilityTopMerchantView. */
2520
+ interface ICompetitiveVisibilityTopMerchantView {
2521
+
2522
+ /** CompetitiveVisibilityTopMerchantView date */
2523
+ date?: (google.type.IDate|null);
2524
+
2525
+ /** CompetitiveVisibilityTopMerchantView domain */
2526
+ domain?: (string|null);
2527
+
2528
+ /** CompetitiveVisibilityTopMerchantView isYourDomain */
2529
+ isYourDomain?: (boolean|null);
2530
+
2531
+ /** CompetitiveVisibilityTopMerchantView reportCountryCode */
2532
+ reportCountryCode?: (string|null);
2533
+
2534
+ /** CompetitiveVisibilityTopMerchantView reportCategoryId */
2535
+ reportCategoryId?: (number|Long|string|null);
2536
+
2537
+ /** CompetitiveVisibilityTopMerchantView trafficSource */
2538
+ trafficSource?: (google.shopping.merchant.reports.v1alpha.TrafficSource.TrafficSourceEnum|keyof typeof google.shopping.merchant.reports.v1alpha.TrafficSource.TrafficSourceEnum|null);
2539
+
2540
+ /** CompetitiveVisibilityTopMerchantView rank */
2541
+ rank?: (number|Long|string|null);
2542
+
2543
+ /** CompetitiveVisibilityTopMerchantView adsOrganicRatio */
2544
+ adsOrganicRatio?: (number|null);
2545
+
2546
+ /** CompetitiveVisibilityTopMerchantView pageOverlapRate */
2547
+ pageOverlapRate?: (number|null);
2548
+
2549
+ /** CompetitiveVisibilityTopMerchantView higherPositionRate */
2550
+ higherPositionRate?: (number|null);
2551
+ }
2552
+
2553
+ /** Represents a CompetitiveVisibilityTopMerchantView. */
2554
+ class CompetitiveVisibilityTopMerchantView implements ICompetitiveVisibilityTopMerchantView {
2555
+
2556
+ /**
2557
+ * Constructs a new CompetitiveVisibilityTopMerchantView.
2558
+ * @param [properties] Properties to set
2559
+ */
2560
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityTopMerchantView);
2561
+
2562
+ /** CompetitiveVisibilityTopMerchantView date. */
2563
+ public date?: (google.type.IDate|null);
2564
+
2565
+ /** CompetitiveVisibilityTopMerchantView domain. */
2566
+ public domain?: (string|null);
2567
+
2568
+ /** CompetitiveVisibilityTopMerchantView isYourDomain. */
2569
+ public isYourDomain?: (boolean|null);
2570
+
2571
+ /** CompetitiveVisibilityTopMerchantView reportCountryCode. */
2572
+ public reportCountryCode?: (string|null);
2573
+
2574
+ /** CompetitiveVisibilityTopMerchantView reportCategoryId. */
2575
+ public reportCategoryId?: (number|Long|string|null);
2576
+
2577
+ /** CompetitiveVisibilityTopMerchantView trafficSource. */
2578
+ public trafficSource?: (google.shopping.merchant.reports.v1alpha.TrafficSource.TrafficSourceEnum|keyof typeof google.shopping.merchant.reports.v1alpha.TrafficSource.TrafficSourceEnum|null);
2579
+
2580
+ /** CompetitiveVisibilityTopMerchantView rank. */
2581
+ public rank?: (number|Long|string|null);
2582
+
2583
+ /** CompetitiveVisibilityTopMerchantView adsOrganicRatio. */
2584
+ public adsOrganicRatio?: (number|null);
2585
+
2586
+ /** CompetitiveVisibilityTopMerchantView pageOverlapRate. */
2587
+ public pageOverlapRate?: (number|null);
2588
+
2589
+ /** CompetitiveVisibilityTopMerchantView higherPositionRate. */
2590
+ public higherPositionRate?: (number|null);
2591
+
2592
+ /**
2593
+ * Creates a new CompetitiveVisibilityTopMerchantView instance using the specified properties.
2594
+ * @param [properties] Properties to set
2595
+ * @returns CompetitiveVisibilityTopMerchantView instance
2596
+ */
2597
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityTopMerchantView): google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityTopMerchantView;
2598
+
2599
+ /**
2600
+ * Encodes the specified CompetitiveVisibilityTopMerchantView message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityTopMerchantView.verify|verify} messages.
2601
+ * @param message CompetitiveVisibilityTopMerchantView message or plain object to encode
2602
+ * @param [writer] Writer to encode to
2603
+ * @returns Writer
2604
+ */
2605
+ public static encode(message: google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityTopMerchantView, writer?: $protobuf.Writer): $protobuf.Writer;
2606
+
2607
+ /**
2608
+ * Encodes the specified CompetitiveVisibilityTopMerchantView message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityTopMerchantView.verify|verify} messages.
2609
+ * @param message CompetitiveVisibilityTopMerchantView message or plain object to encode
2610
+ * @param [writer] Writer to encode to
2611
+ * @returns Writer
2612
+ */
2613
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityTopMerchantView, writer?: $protobuf.Writer): $protobuf.Writer;
2614
+
2615
+ /**
2616
+ * Decodes a CompetitiveVisibilityTopMerchantView message from the specified reader or buffer.
2617
+ * @param reader Reader or buffer to decode from
2618
+ * @param [length] Message length if known beforehand
2619
+ * @returns CompetitiveVisibilityTopMerchantView
2620
+ * @throws {Error} If the payload is not a reader or valid buffer
2621
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2622
+ */
2623
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityTopMerchantView;
2624
+
2625
+ /**
2626
+ * Decodes a CompetitiveVisibilityTopMerchantView message from the specified reader or buffer, length delimited.
2627
+ * @param reader Reader or buffer to decode from
2628
+ * @returns CompetitiveVisibilityTopMerchantView
2629
+ * @throws {Error} If the payload is not a reader or valid buffer
2630
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2631
+ */
2632
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityTopMerchantView;
2633
+
2634
+ /**
2635
+ * Verifies a CompetitiveVisibilityTopMerchantView message.
2636
+ * @param message Plain object to verify
2637
+ * @returns `null` if valid, otherwise the reason why it is not
2638
+ */
2639
+ public static verify(message: { [k: string]: any }): (string|null);
2640
+
2641
+ /**
2642
+ * Creates a CompetitiveVisibilityTopMerchantView message from a plain object. Also converts values to their respective internal types.
2643
+ * @param object Plain object
2644
+ * @returns CompetitiveVisibilityTopMerchantView
2645
+ */
2646
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityTopMerchantView;
2647
+
2648
+ /**
2649
+ * Creates a plain object from a CompetitiveVisibilityTopMerchantView message. Also converts values to other types if specified.
2650
+ * @param message CompetitiveVisibilityTopMerchantView
2651
+ * @param [options] Conversion options
2652
+ * @returns Plain object
2653
+ */
2654
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityTopMerchantView, options?: $protobuf.IConversionOptions): { [k: string]: any };
2655
+
2656
+ /**
2657
+ * Converts this CompetitiveVisibilityTopMerchantView to JSON.
2658
+ * @returns JSON object
2659
+ */
2660
+ public toJSON(): { [k: string]: any };
2661
+
2662
+ /**
2663
+ * Gets the default type url for CompetitiveVisibilityTopMerchantView
2664
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
2665
+ * @returns The default type url
2666
+ */
2667
+ public static getTypeUrl(typeUrlPrefix?: string): string;
2668
+ }
2669
+
2670
+ /** Properties of a CompetitiveVisibilityBenchmarkView. */
2671
+ interface ICompetitiveVisibilityBenchmarkView {
2672
+
2673
+ /** CompetitiveVisibilityBenchmarkView date */
2674
+ date?: (google.type.IDate|null);
2675
+
2676
+ /** CompetitiveVisibilityBenchmarkView reportCountryCode */
2677
+ reportCountryCode?: (string|null);
2678
+
2679
+ /** CompetitiveVisibilityBenchmarkView reportCategoryId */
2680
+ reportCategoryId?: (number|Long|string|null);
2681
+
2682
+ /** CompetitiveVisibilityBenchmarkView trafficSource */
2683
+ trafficSource?: (google.shopping.merchant.reports.v1alpha.TrafficSource.TrafficSourceEnum|keyof typeof google.shopping.merchant.reports.v1alpha.TrafficSource.TrafficSourceEnum|null);
2684
+
2685
+ /** CompetitiveVisibilityBenchmarkView yourDomainVisibilityTrend */
2686
+ yourDomainVisibilityTrend?: (number|null);
2687
+
2688
+ /** CompetitiveVisibilityBenchmarkView categoryBenchmarkVisibilityTrend */
2689
+ categoryBenchmarkVisibilityTrend?: (number|null);
2690
+ }
2691
+
2692
+ /** Represents a CompetitiveVisibilityBenchmarkView. */
2693
+ class CompetitiveVisibilityBenchmarkView implements ICompetitiveVisibilityBenchmarkView {
2694
+
2695
+ /**
2696
+ * Constructs a new CompetitiveVisibilityBenchmarkView.
2697
+ * @param [properties] Properties to set
2698
+ */
2699
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityBenchmarkView);
2700
+
2701
+ /** CompetitiveVisibilityBenchmarkView date. */
2702
+ public date?: (google.type.IDate|null);
2703
+
2704
+ /** CompetitiveVisibilityBenchmarkView reportCountryCode. */
2705
+ public reportCountryCode?: (string|null);
2706
+
2707
+ /** CompetitiveVisibilityBenchmarkView reportCategoryId. */
2708
+ public reportCategoryId?: (number|Long|string|null);
2709
+
2710
+ /** CompetitiveVisibilityBenchmarkView trafficSource. */
2711
+ public trafficSource?: (google.shopping.merchant.reports.v1alpha.TrafficSource.TrafficSourceEnum|keyof typeof google.shopping.merchant.reports.v1alpha.TrafficSource.TrafficSourceEnum|null);
2712
+
2713
+ /** CompetitiveVisibilityBenchmarkView yourDomainVisibilityTrend. */
2714
+ public yourDomainVisibilityTrend?: (number|null);
2715
+
2716
+ /** CompetitiveVisibilityBenchmarkView categoryBenchmarkVisibilityTrend. */
2717
+ public categoryBenchmarkVisibilityTrend?: (number|null);
2718
+
2719
+ /**
2720
+ * Creates a new CompetitiveVisibilityBenchmarkView instance using the specified properties.
2721
+ * @param [properties] Properties to set
2722
+ * @returns CompetitiveVisibilityBenchmarkView instance
2723
+ */
2724
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityBenchmarkView): google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityBenchmarkView;
2725
+
2726
+ /**
2727
+ * Encodes the specified CompetitiveVisibilityBenchmarkView message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityBenchmarkView.verify|verify} messages.
2728
+ * @param message CompetitiveVisibilityBenchmarkView message or plain object to encode
2729
+ * @param [writer] Writer to encode to
2730
+ * @returns Writer
2731
+ */
2732
+ public static encode(message: google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityBenchmarkView, writer?: $protobuf.Writer): $protobuf.Writer;
2733
+
2734
+ /**
2735
+ * Encodes the specified CompetitiveVisibilityBenchmarkView message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityBenchmarkView.verify|verify} messages.
2736
+ * @param message CompetitiveVisibilityBenchmarkView message or plain object to encode
2737
+ * @param [writer] Writer to encode to
2738
+ * @returns Writer
2739
+ */
2740
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.ICompetitiveVisibilityBenchmarkView, writer?: $protobuf.Writer): $protobuf.Writer;
2741
+
2742
+ /**
2743
+ * Decodes a CompetitiveVisibilityBenchmarkView message from the specified reader or buffer.
2744
+ * @param reader Reader or buffer to decode from
2745
+ * @param [length] Message length if known beforehand
2746
+ * @returns CompetitiveVisibilityBenchmarkView
2747
+ * @throws {Error} If the payload is not a reader or valid buffer
2748
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2749
+ */
2750
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityBenchmarkView;
2751
+
2752
+ /**
2753
+ * Decodes a CompetitiveVisibilityBenchmarkView message from the specified reader or buffer, length delimited.
2754
+ * @param reader Reader or buffer to decode from
2755
+ * @returns CompetitiveVisibilityBenchmarkView
2756
+ * @throws {Error} If the payload is not a reader or valid buffer
2757
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2758
+ */
2759
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityBenchmarkView;
2760
+
2761
+ /**
2762
+ * Verifies a CompetitiveVisibilityBenchmarkView message.
2763
+ * @param message Plain object to verify
2764
+ * @returns `null` if valid, otherwise the reason why it is not
2765
+ */
2766
+ public static verify(message: { [k: string]: any }): (string|null);
2767
+
2768
+ /**
2769
+ * Creates a CompetitiveVisibilityBenchmarkView message from a plain object. Also converts values to their respective internal types.
2770
+ * @param object Plain object
2771
+ * @returns CompetitiveVisibilityBenchmarkView
2772
+ */
2773
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityBenchmarkView;
2774
+
2775
+ /**
2776
+ * Creates a plain object from a CompetitiveVisibilityBenchmarkView message. Also converts values to other types if specified.
2777
+ * @param message CompetitiveVisibilityBenchmarkView
2778
+ * @param [options] Conversion options
2779
+ * @returns Plain object
2780
+ */
2781
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.CompetitiveVisibilityBenchmarkView, options?: $protobuf.IConversionOptions): { [k: string]: any };
2782
+
2783
+ /**
2784
+ * Converts this CompetitiveVisibilityBenchmarkView to JSON.
2785
+ * @returns JSON object
2786
+ */
2787
+ public toJSON(): { [k: string]: any };
2788
+
2789
+ /**
2790
+ * Gets the default type url for CompetitiveVisibilityBenchmarkView
2791
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
2792
+ * @returns The default type url
2793
+ */
2794
+ public static getTypeUrl(typeUrlPrefix?: string): string;
2795
+ }
2796
+
2797
+ /** Properties of a MarketingMethod. */
2798
+ interface IMarketingMethod {
2799
+ }
2800
+
2801
+ /** Represents a MarketingMethod. */
2802
+ class MarketingMethod implements IMarketingMethod {
2803
+
2804
+ /**
2805
+ * Constructs a new MarketingMethod.
2806
+ * @param [properties] Properties to set
2807
+ */
2808
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.IMarketingMethod);
2809
+
2810
+ /**
2811
+ * Creates a new MarketingMethod instance using the specified properties.
2812
+ * @param [properties] Properties to set
2813
+ * @returns MarketingMethod instance
2814
+ */
2815
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.IMarketingMethod): google.shopping.merchant.reports.v1alpha.MarketingMethod;
2816
+
2817
+ /**
2818
+ * Encodes the specified MarketingMethod message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.MarketingMethod.verify|verify} messages.
2819
+ * @param message MarketingMethod message or plain object to encode
2820
+ * @param [writer] Writer to encode to
2821
+ * @returns Writer
2822
+ */
2823
+ public static encode(message: google.shopping.merchant.reports.v1alpha.IMarketingMethod, writer?: $protobuf.Writer): $protobuf.Writer;
2824
+
2825
+ /**
2826
+ * Encodes the specified MarketingMethod message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.MarketingMethod.verify|verify} messages.
2827
+ * @param message MarketingMethod message or plain object to encode
2828
+ * @param [writer] Writer to encode to
2829
+ * @returns Writer
2830
+ */
2831
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.IMarketingMethod, writer?: $protobuf.Writer): $protobuf.Writer;
2832
+
2833
+ /**
2834
+ * Decodes a MarketingMethod message from the specified reader or buffer.
2835
+ * @param reader Reader or buffer to decode from
2836
+ * @param [length] Message length if known beforehand
2837
+ * @returns MarketingMethod
2838
+ * @throws {Error} If the payload is not a reader or valid buffer
2839
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2840
+ */
2841
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.MarketingMethod;
2842
+
2843
+ /**
2844
+ * Decodes a MarketingMethod message from the specified reader or buffer, length delimited.
2845
+ * @param reader Reader or buffer to decode from
2846
+ * @returns MarketingMethod
2847
+ * @throws {Error} If the payload is not a reader or valid buffer
2848
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2849
+ */
2850
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.MarketingMethod;
2851
+
2852
+ /**
2853
+ * Verifies a MarketingMethod message.
2854
+ * @param message Plain object to verify
2855
+ * @returns `null` if valid, otherwise the reason why it is not
2856
+ */
2857
+ public static verify(message: { [k: string]: any }): (string|null);
2858
+
2859
+ /**
2860
+ * Creates a MarketingMethod message from a plain object. Also converts values to their respective internal types.
2861
+ * @param object Plain object
2862
+ * @returns MarketingMethod
2863
+ */
2864
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.MarketingMethod;
2865
+
2866
+ /**
2867
+ * Creates a plain object from a MarketingMethod message. Also converts values to other types if specified.
2868
+ * @param message MarketingMethod
2869
+ * @param [options] Conversion options
2870
+ * @returns Plain object
2871
+ */
2872
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.MarketingMethod, options?: $protobuf.IConversionOptions): { [k: string]: any };
2873
+
2874
+ /**
2875
+ * Converts this MarketingMethod to JSON.
2876
+ * @returns JSON object
2877
+ */
2878
+ public toJSON(): { [k: string]: any };
2879
+
2880
+ /**
2881
+ * Gets the default type url for MarketingMethod
2882
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
2883
+ * @returns The default type url
2884
+ */
2885
+ public static getTypeUrl(typeUrlPrefix?: string): string;
2886
+ }
2887
+
2888
+ namespace MarketingMethod {
2889
+
2890
+ /** MarketingMethodEnum enum. */
2891
+ enum MarketingMethodEnum {
2892
+ MARKETING_METHOD_ENUM_UNSPECIFIED = 0,
2893
+ ORGANIC = 1,
2894
+ ADS = 2
2895
+ }
2896
+ }
2897
+
2898
+ /** Properties of a ReportGranularity. */
2899
+ interface IReportGranularity {
2900
+ }
2901
+
2902
+ /** Represents a ReportGranularity. */
2903
+ class ReportGranularity implements IReportGranularity {
2904
+
2905
+ /**
2906
+ * Constructs a new ReportGranularity.
2907
+ * @param [properties] Properties to set
2908
+ */
2909
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.IReportGranularity);
2910
+
2911
+ /**
2912
+ * Creates a new ReportGranularity instance using the specified properties.
2913
+ * @param [properties] Properties to set
2914
+ * @returns ReportGranularity instance
2915
+ */
2916
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.IReportGranularity): google.shopping.merchant.reports.v1alpha.ReportGranularity;
2917
+
2918
+ /**
2919
+ * Encodes the specified ReportGranularity message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.ReportGranularity.verify|verify} messages.
2920
+ * @param message ReportGranularity message or plain object to encode
2921
+ * @param [writer] Writer to encode to
2922
+ * @returns Writer
2923
+ */
2924
+ public static encode(message: google.shopping.merchant.reports.v1alpha.IReportGranularity, writer?: $protobuf.Writer): $protobuf.Writer;
2925
+
2926
+ /**
2927
+ * Encodes the specified ReportGranularity message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.ReportGranularity.verify|verify} messages.
2928
+ * @param message ReportGranularity message or plain object to encode
2929
+ * @param [writer] Writer to encode to
2930
+ * @returns Writer
2931
+ */
2932
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.IReportGranularity, writer?: $protobuf.Writer): $protobuf.Writer;
2933
+
2934
+ /**
2935
+ * Decodes a ReportGranularity message from the specified reader or buffer.
2936
+ * @param reader Reader or buffer to decode from
2937
+ * @param [length] Message length if known beforehand
2938
+ * @returns ReportGranularity
2939
+ * @throws {Error} If the payload is not a reader or valid buffer
2940
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2941
+ */
2942
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.ReportGranularity;
2943
+
2944
+ /**
2945
+ * Decodes a ReportGranularity message from the specified reader or buffer, length delimited.
2946
+ * @param reader Reader or buffer to decode from
2947
+ * @returns ReportGranularity
2948
+ * @throws {Error} If the payload is not a reader or valid buffer
2949
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2950
+ */
2951
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.ReportGranularity;
2952
+
2953
+ /**
2954
+ * Verifies a ReportGranularity message.
2955
+ * @param message Plain object to verify
2956
+ * @returns `null` if valid, otherwise the reason why it is not
2957
+ */
2958
+ public static verify(message: { [k: string]: any }): (string|null);
2959
+
2960
+ /**
2961
+ * Creates a ReportGranularity message from a plain object. Also converts values to their respective internal types.
2962
+ * @param object Plain object
2963
+ * @returns ReportGranularity
2964
+ */
2965
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.ReportGranularity;
2966
+
2967
+ /**
2968
+ * Creates a plain object from a ReportGranularity message. Also converts values to other types if specified.
2969
+ * @param message ReportGranularity
2970
+ * @param [options] Conversion options
2971
+ * @returns Plain object
2972
+ */
2973
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.ReportGranularity, options?: $protobuf.IConversionOptions): { [k: string]: any };
2974
+
2975
+ /**
2976
+ * Converts this ReportGranularity to JSON.
2977
+ * @returns JSON object
2978
+ */
2979
+ public toJSON(): { [k: string]: any };
2980
+
2981
+ /**
2982
+ * Gets the default type url for ReportGranularity
2983
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
2984
+ * @returns The default type url
2985
+ */
2986
+ public static getTypeUrl(typeUrlPrefix?: string): string;
2987
+ }
2988
+
2989
+ namespace ReportGranularity {
2990
+
2991
+ /** ReportGranularityEnum enum. */
2992
+ enum ReportGranularityEnum {
2993
+ REPORT_GRANULARITY_ENUM_UNSPECIFIED = 0,
2994
+ WEEKLY = 1,
2995
+ MONTHLY = 2
2996
+ }
2997
+ }
2998
+
2999
+ /** Properties of a RelativeDemand. */
3000
+ interface IRelativeDemand {
3001
+ }
3002
+
3003
+ /** Represents a RelativeDemand. */
3004
+ class RelativeDemand implements IRelativeDemand {
3005
+
3006
+ /**
3007
+ * Constructs a new RelativeDemand.
3008
+ * @param [properties] Properties to set
3009
+ */
3010
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.IRelativeDemand);
3011
+
3012
+ /**
3013
+ * Creates a new RelativeDemand instance using the specified properties.
3014
+ * @param [properties] Properties to set
3015
+ * @returns RelativeDemand instance
3016
+ */
3017
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.IRelativeDemand): google.shopping.merchant.reports.v1alpha.RelativeDemand;
3018
+
3019
+ /**
3020
+ * Encodes the specified RelativeDemand message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.RelativeDemand.verify|verify} messages.
3021
+ * @param message RelativeDemand message or plain object to encode
3022
+ * @param [writer] Writer to encode to
3023
+ * @returns Writer
3024
+ */
3025
+ public static encode(message: google.shopping.merchant.reports.v1alpha.IRelativeDemand, writer?: $protobuf.Writer): $protobuf.Writer;
3026
+
3027
+ /**
3028
+ * Encodes the specified RelativeDemand message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.RelativeDemand.verify|verify} messages.
3029
+ * @param message RelativeDemand message or plain object to encode
3030
+ * @param [writer] Writer to encode to
3031
+ * @returns Writer
3032
+ */
3033
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.IRelativeDemand, writer?: $protobuf.Writer): $protobuf.Writer;
3034
+
3035
+ /**
3036
+ * Decodes a RelativeDemand message from the specified reader or buffer.
3037
+ * @param reader Reader or buffer to decode from
3038
+ * @param [length] Message length if known beforehand
3039
+ * @returns RelativeDemand
3040
+ * @throws {Error} If the payload is not a reader or valid buffer
3041
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3042
+ */
3043
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.RelativeDemand;
3044
+
3045
+ /**
3046
+ * Decodes a RelativeDemand message from the specified reader or buffer, length delimited.
3047
+ * @param reader Reader or buffer to decode from
3048
+ * @returns RelativeDemand
3049
+ * @throws {Error} If the payload is not a reader or valid buffer
3050
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3051
+ */
3052
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.RelativeDemand;
3053
+
3054
+ /**
3055
+ * Verifies a RelativeDemand message.
3056
+ * @param message Plain object to verify
3057
+ * @returns `null` if valid, otherwise the reason why it is not
3058
+ */
3059
+ public static verify(message: { [k: string]: any }): (string|null);
3060
+
3061
+ /**
3062
+ * Creates a RelativeDemand message from a plain object. Also converts values to their respective internal types.
3063
+ * @param object Plain object
3064
+ * @returns RelativeDemand
3065
+ */
3066
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.RelativeDemand;
3067
+
3068
+ /**
3069
+ * Creates a plain object from a RelativeDemand message. Also converts values to other types if specified.
3070
+ * @param message RelativeDemand
3071
+ * @param [options] Conversion options
3072
+ * @returns Plain object
3073
+ */
3074
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.RelativeDemand, options?: $protobuf.IConversionOptions): { [k: string]: any };
3075
+
3076
+ /**
3077
+ * Converts this RelativeDemand to JSON.
3078
+ * @returns JSON object
3079
+ */
3080
+ public toJSON(): { [k: string]: any };
3081
+
3082
+ /**
3083
+ * Gets the default type url for RelativeDemand
3084
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
3085
+ * @returns The default type url
3086
+ */
3087
+ public static getTypeUrl(typeUrlPrefix?: string): string;
3088
+ }
3089
+
3090
+ namespace RelativeDemand {
3091
+
3092
+ /** RelativeDemandEnum enum. */
3093
+ enum RelativeDemandEnum {
3094
+ RELATIVE_DEMAND_ENUM_UNSPECIFIED = 0,
3095
+ VERY_LOW = 10,
3096
+ LOW = 20,
3097
+ MEDIUM = 30,
3098
+ HIGH = 40,
3099
+ VERY_HIGH = 50
3100
+ }
3101
+ }
3102
+
3103
+ /** Properties of a RelativeDemandChangeType. */
3104
+ interface IRelativeDemandChangeType {
3105
+ }
3106
+
3107
+ /** Represents a RelativeDemandChangeType. */
3108
+ class RelativeDemandChangeType implements IRelativeDemandChangeType {
3109
+
3110
+ /**
3111
+ * Constructs a new RelativeDemandChangeType.
3112
+ * @param [properties] Properties to set
3113
+ */
3114
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.IRelativeDemandChangeType);
3115
+
3116
+ /**
3117
+ * Creates a new RelativeDemandChangeType instance using the specified properties.
3118
+ * @param [properties] Properties to set
3119
+ * @returns RelativeDemandChangeType instance
3120
+ */
3121
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.IRelativeDemandChangeType): google.shopping.merchant.reports.v1alpha.RelativeDemandChangeType;
3122
+
3123
+ /**
3124
+ * Encodes the specified RelativeDemandChangeType message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.RelativeDemandChangeType.verify|verify} messages.
3125
+ * @param message RelativeDemandChangeType message or plain object to encode
3126
+ * @param [writer] Writer to encode to
3127
+ * @returns Writer
3128
+ */
3129
+ public static encode(message: google.shopping.merchant.reports.v1alpha.IRelativeDemandChangeType, writer?: $protobuf.Writer): $protobuf.Writer;
3130
+
3131
+ /**
3132
+ * Encodes the specified RelativeDemandChangeType message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.RelativeDemandChangeType.verify|verify} messages.
3133
+ * @param message RelativeDemandChangeType message or plain object to encode
3134
+ * @param [writer] Writer to encode to
3135
+ * @returns Writer
3136
+ */
3137
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.IRelativeDemandChangeType, writer?: $protobuf.Writer): $protobuf.Writer;
3138
+
3139
+ /**
3140
+ * Decodes a RelativeDemandChangeType message from the specified reader or buffer.
3141
+ * @param reader Reader or buffer to decode from
3142
+ * @param [length] Message length if known beforehand
3143
+ * @returns RelativeDemandChangeType
3144
+ * @throws {Error} If the payload is not a reader or valid buffer
3145
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3146
+ */
3147
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.RelativeDemandChangeType;
3148
+
3149
+ /**
3150
+ * Decodes a RelativeDemandChangeType message from the specified reader or buffer, length delimited.
3151
+ * @param reader Reader or buffer to decode from
3152
+ * @returns RelativeDemandChangeType
3153
+ * @throws {Error} If the payload is not a reader or valid buffer
3154
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3155
+ */
3156
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.RelativeDemandChangeType;
3157
+
3158
+ /**
3159
+ * Verifies a RelativeDemandChangeType message.
3160
+ * @param message Plain object to verify
3161
+ * @returns `null` if valid, otherwise the reason why it is not
3162
+ */
3163
+ public static verify(message: { [k: string]: any }): (string|null);
3164
+
3165
+ /**
3166
+ * Creates a RelativeDemandChangeType message from a plain object. Also converts values to their respective internal types.
3167
+ * @param object Plain object
3168
+ * @returns RelativeDemandChangeType
3169
+ */
3170
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.RelativeDemandChangeType;
3171
+
3172
+ /**
3173
+ * Creates a plain object from a RelativeDemandChangeType message. Also converts values to other types if specified.
3174
+ * @param message RelativeDemandChangeType
3175
+ * @param [options] Conversion options
3176
+ * @returns Plain object
3177
+ */
3178
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.RelativeDemandChangeType, options?: $protobuf.IConversionOptions): { [k: string]: any };
3179
+
3180
+ /**
3181
+ * Converts this RelativeDemandChangeType to JSON.
3182
+ * @returns JSON object
3183
+ */
3184
+ public toJSON(): { [k: string]: any };
3185
+
3186
+ /**
3187
+ * Gets the default type url for RelativeDemandChangeType
3188
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
3189
+ * @returns The default type url
3190
+ */
3191
+ public static getTypeUrl(typeUrlPrefix?: string): string;
3192
+ }
3193
+
3194
+ namespace RelativeDemandChangeType {
3195
+
3196
+ /** RelativeDemandChangeTypeEnum enum. */
3197
+ enum RelativeDemandChangeTypeEnum {
3198
+ RELATIVE_DEMAND_CHANGE_TYPE_ENUM_UNSPECIFIED = 0,
3199
+ SINKER = 1,
3200
+ FLAT = 2,
3201
+ RISER = 3
3202
+ }
3203
+ }
3204
+
3205
+ /** Properties of a TrafficSource. */
3206
+ interface ITrafficSource {
3207
+ }
3208
+
3209
+ /** Represents a TrafficSource. */
3210
+ class TrafficSource implements ITrafficSource {
3211
+
3212
+ /**
3213
+ * Constructs a new TrafficSource.
3214
+ * @param [properties] Properties to set
3215
+ */
3216
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.ITrafficSource);
3217
+
3218
+ /**
3219
+ * Creates a new TrafficSource instance using the specified properties.
3220
+ * @param [properties] Properties to set
3221
+ * @returns TrafficSource instance
3222
+ */
3223
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.ITrafficSource): google.shopping.merchant.reports.v1alpha.TrafficSource;
3224
+
3225
+ /**
3226
+ * Encodes the specified TrafficSource message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.TrafficSource.verify|verify} messages.
3227
+ * @param message TrafficSource message or plain object to encode
3228
+ * @param [writer] Writer to encode to
3229
+ * @returns Writer
3230
+ */
3231
+ public static encode(message: google.shopping.merchant.reports.v1alpha.ITrafficSource, writer?: $protobuf.Writer): $protobuf.Writer;
3232
+
3233
+ /**
3234
+ * Encodes the specified TrafficSource message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.TrafficSource.verify|verify} messages.
3235
+ * @param message TrafficSource message or plain object to encode
3236
+ * @param [writer] Writer to encode to
3237
+ * @returns Writer
3238
+ */
3239
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.ITrafficSource, writer?: $protobuf.Writer): $protobuf.Writer;
3240
+
3241
+ /**
3242
+ * Decodes a TrafficSource message from the specified reader or buffer.
3243
+ * @param reader Reader or buffer to decode from
3244
+ * @param [length] Message length if known beforehand
3245
+ * @returns TrafficSource
3246
+ * @throws {Error} If the payload is not a reader or valid buffer
3247
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3248
+ */
3249
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.TrafficSource;
3250
+
3251
+ /**
3252
+ * Decodes a TrafficSource message from the specified reader or buffer, length delimited.
3253
+ * @param reader Reader or buffer to decode from
3254
+ * @returns TrafficSource
3255
+ * @throws {Error} If the payload is not a reader or valid buffer
3256
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3257
+ */
3258
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.TrafficSource;
3259
+
3260
+ /**
3261
+ * Verifies a TrafficSource message.
3262
+ * @param message Plain object to verify
3263
+ * @returns `null` if valid, otherwise the reason why it is not
3264
+ */
3265
+ public static verify(message: { [k: string]: any }): (string|null);
3266
+
3267
+ /**
3268
+ * Creates a TrafficSource message from a plain object. Also converts values to their respective internal types.
3269
+ * @param object Plain object
3270
+ * @returns TrafficSource
3271
+ */
3272
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.TrafficSource;
3273
+
3274
+ /**
3275
+ * Creates a plain object from a TrafficSource message. Also converts values to other types if specified.
3276
+ * @param message TrafficSource
3277
+ * @param [options] Conversion options
3278
+ * @returns Plain object
3279
+ */
3280
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.TrafficSource, options?: $protobuf.IConversionOptions): { [k: string]: any };
3281
+
3282
+ /**
3283
+ * Converts this TrafficSource to JSON.
3284
+ * @returns JSON object
3285
+ */
3286
+ public toJSON(): { [k: string]: any };
3287
+
3288
+ /**
3289
+ * Gets the default type url for TrafficSource
3290
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
3291
+ * @returns The default type url
3292
+ */
3293
+ public static getTypeUrl(typeUrlPrefix?: string): string;
3294
+ }
3295
+
3296
+ namespace TrafficSource {
3297
+
3298
+ /** TrafficSourceEnum enum. */
3299
+ enum TrafficSourceEnum {
3300
+ TRAFFIC_SOURCE_ENUM_UNSPECIFIED = 0,
3301
+ ORGANIC = 1,
3302
+ ADS = 2,
3303
+ ALL = 3
3304
+ }
3305
+ }
3306
+
3307
+ /** Properties of a YoutubeCreatorPerformanceView. */
3308
+ interface IYoutubeCreatorPerformanceView {
3309
+
3310
+ /** YoutubeCreatorPerformanceView date */
3311
+ date?: (google.type.IDate|null);
3312
+
3313
+ /** YoutubeCreatorPerformanceView title */
3314
+ title?: (string|null);
3315
+
3316
+ /** YoutubeCreatorPerformanceView channelId */
3317
+ channelId?: (string|null);
3318
+
3319
+ /** YoutubeCreatorPerformanceView grossSales */
3320
+ grossSales?: (google.shopping.type.IPrice|null);
3321
+
3322
+ /** YoutubeCreatorPerformanceView commissions */
3323
+ commissions?: (google.shopping.type.IPrice|null);
3324
+
3325
+ /** YoutubeCreatorPerformanceView orders */
3326
+ orders?: (number|Long|string|null);
3327
+
3328
+ /** YoutubeCreatorPerformanceView views */
3329
+ views?: (number|Long|string|null);
3330
+
3331
+ /** YoutubeCreatorPerformanceView clicks */
3332
+ clicks?: (number|Long|string|null);
3333
+
3334
+ /** YoutubeCreatorPerformanceView netSales */
3335
+ netSales?: (google.shopping.type.IPrice|null);
3336
+ }
3337
+
3338
+ /** Represents a YoutubeCreatorPerformanceView. */
3339
+ class YoutubeCreatorPerformanceView implements IYoutubeCreatorPerformanceView {
3340
+
3341
+ /**
3342
+ * Constructs a new YoutubeCreatorPerformanceView.
3343
+ * @param [properties] Properties to set
3344
+ */
3345
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.IYoutubeCreatorPerformanceView);
3346
+
3347
+ /** YoutubeCreatorPerformanceView date. */
3348
+ public date?: (google.type.IDate|null);
3349
+
3350
+ /** YoutubeCreatorPerformanceView title. */
3351
+ public title?: (string|null);
3352
+
3353
+ /** YoutubeCreatorPerformanceView channelId. */
3354
+ public channelId?: (string|null);
3355
+
3356
+ /** YoutubeCreatorPerformanceView grossSales. */
3357
+ public grossSales?: (google.shopping.type.IPrice|null);
3358
+
3359
+ /** YoutubeCreatorPerformanceView commissions. */
3360
+ public commissions?: (google.shopping.type.IPrice|null);
3361
+
3362
+ /** YoutubeCreatorPerformanceView orders. */
3363
+ public orders?: (number|Long|string|null);
3364
+
3365
+ /** YoutubeCreatorPerformanceView views. */
3366
+ public views?: (number|Long|string|null);
3367
+
3368
+ /** YoutubeCreatorPerformanceView clicks. */
3369
+ public clicks?: (number|Long|string|null);
3370
+
3371
+ /** YoutubeCreatorPerformanceView netSales. */
3372
+ public netSales?: (google.shopping.type.IPrice|null);
3373
+
3374
+ /**
3375
+ * Creates a new YoutubeCreatorPerformanceView instance using the specified properties.
3376
+ * @param [properties] Properties to set
3377
+ * @returns YoutubeCreatorPerformanceView instance
3378
+ */
3379
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.IYoutubeCreatorPerformanceView): google.shopping.merchant.reports.v1alpha.YoutubeCreatorPerformanceView;
3380
+
3381
+ /**
3382
+ * Encodes the specified YoutubeCreatorPerformanceView message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.YoutubeCreatorPerformanceView.verify|verify} messages.
3383
+ * @param message YoutubeCreatorPerformanceView message or plain object to encode
3384
+ * @param [writer] Writer to encode to
3385
+ * @returns Writer
3386
+ */
3387
+ public static encode(message: google.shopping.merchant.reports.v1alpha.IYoutubeCreatorPerformanceView, writer?: $protobuf.Writer): $protobuf.Writer;
3388
+
3389
+ /**
3390
+ * Encodes the specified YoutubeCreatorPerformanceView message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.YoutubeCreatorPerformanceView.verify|verify} messages.
3391
+ * @param message YoutubeCreatorPerformanceView message or plain object to encode
3392
+ * @param [writer] Writer to encode to
3393
+ * @returns Writer
3394
+ */
3395
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.IYoutubeCreatorPerformanceView, writer?: $protobuf.Writer): $protobuf.Writer;
3396
+
3397
+ /**
3398
+ * Decodes a YoutubeCreatorPerformanceView message from the specified reader or buffer.
3399
+ * @param reader Reader or buffer to decode from
3400
+ * @param [length] Message length if known beforehand
3401
+ * @returns YoutubeCreatorPerformanceView
3402
+ * @throws {Error} If the payload is not a reader or valid buffer
3403
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3404
+ */
3405
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.YoutubeCreatorPerformanceView;
3406
+
3407
+ /**
3408
+ * Decodes a YoutubeCreatorPerformanceView message from the specified reader or buffer, length delimited.
3409
+ * @param reader Reader or buffer to decode from
3410
+ * @returns YoutubeCreatorPerformanceView
3411
+ * @throws {Error} If the payload is not a reader or valid buffer
3412
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3413
+ */
3414
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.YoutubeCreatorPerformanceView;
3415
+
3416
+ /**
3417
+ * Verifies a YoutubeCreatorPerformanceView message.
3418
+ * @param message Plain object to verify
3419
+ * @returns `null` if valid, otherwise the reason why it is not
3420
+ */
3421
+ public static verify(message: { [k: string]: any }): (string|null);
3422
+
3423
+ /**
3424
+ * Creates a YoutubeCreatorPerformanceView message from a plain object. Also converts values to their respective internal types.
3425
+ * @param object Plain object
3426
+ * @returns YoutubeCreatorPerformanceView
3427
+ */
3428
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.YoutubeCreatorPerformanceView;
3429
+
3430
+ /**
3431
+ * Creates a plain object from a YoutubeCreatorPerformanceView message. Also converts values to other types if specified.
3432
+ * @param message YoutubeCreatorPerformanceView
3433
+ * @param [options] Conversion options
3434
+ * @returns Plain object
3435
+ */
3436
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.YoutubeCreatorPerformanceView, options?: $protobuf.IConversionOptions): { [k: string]: any };
3437
+
3438
+ /**
3439
+ * Converts this YoutubeCreatorPerformanceView to JSON.
3440
+ * @returns JSON object
3441
+ */
3442
+ public toJSON(): { [k: string]: any };
3443
+
3444
+ /**
3445
+ * Gets the default type url for YoutubeCreatorPerformanceView
3446
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
3447
+ * @returns The default type url
3448
+ */
3449
+ public static getTypeUrl(typeUrlPrefix?: string): string;
3450
+ }
3451
+
3452
+ /** Properties of a YoutubeContentPerformanceView. */
3453
+ interface IYoutubeContentPerformanceView {
3454
+
3455
+ /** YoutubeContentPerformanceView date */
3456
+ date?: (google.type.IDate|null);
3457
+
3458
+ /** YoutubeContentPerformanceView title */
3459
+ title?: (string|null);
3460
+
3461
+ /** YoutubeContentPerformanceView videoId */
3462
+ videoId?: (string|null);
3463
+
3464
+ /** YoutubeContentPerformanceView channelTitle */
3465
+ channelTitle?: (string|null);
3466
+
3467
+ /** YoutubeContentPerformanceView channelId */
3468
+ channelId?: (string|null);
3469
+
3470
+ /** YoutubeContentPerformanceView grossSales */
3471
+ grossSales?: (google.shopping.type.IPrice|null);
3472
+
3473
+ /** YoutubeContentPerformanceView commissions */
3474
+ commissions?: (google.shopping.type.IPrice|null);
3475
+
3476
+ /** YoutubeContentPerformanceView orders */
3477
+ orders?: (number|Long|string|null);
3478
+
3479
+ /** YoutubeContentPerformanceView views */
3480
+ views?: (number|Long|string|null);
3481
+
3482
+ /** YoutubeContentPerformanceView clicks */
3483
+ clicks?: (number|Long|string|null);
3484
+
3485
+ /** YoutubeContentPerformanceView netSales */
3486
+ netSales?: (google.shopping.type.IPrice|null);
3487
+
3488
+ /** YoutubeContentPerformanceView taggedProductIds */
3489
+ taggedProductIds?: (string[]|null);
3490
+ }
3491
+
3492
+ /** Represents a YoutubeContentPerformanceView. */
3493
+ class YoutubeContentPerformanceView implements IYoutubeContentPerformanceView {
3494
+
3495
+ /**
3496
+ * Constructs a new YoutubeContentPerformanceView.
3497
+ * @param [properties] Properties to set
3498
+ */
3499
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.IYoutubeContentPerformanceView);
3500
+
3501
+ /** YoutubeContentPerformanceView date. */
3502
+ public date?: (google.type.IDate|null);
3503
+
3504
+ /** YoutubeContentPerformanceView title. */
3505
+ public title?: (string|null);
3506
+
3507
+ /** YoutubeContentPerformanceView videoId. */
3508
+ public videoId?: (string|null);
3509
+
3510
+ /** YoutubeContentPerformanceView channelTitle. */
3511
+ public channelTitle?: (string|null);
3512
+
3513
+ /** YoutubeContentPerformanceView channelId. */
3514
+ public channelId?: (string|null);
3515
+
3516
+ /** YoutubeContentPerformanceView grossSales. */
3517
+ public grossSales?: (google.shopping.type.IPrice|null);
3518
+
3519
+ /** YoutubeContentPerformanceView commissions. */
3520
+ public commissions?: (google.shopping.type.IPrice|null);
3521
+
3522
+ /** YoutubeContentPerformanceView orders. */
3523
+ public orders?: (number|Long|string|null);
3524
+
3525
+ /** YoutubeContentPerformanceView views. */
3526
+ public views?: (number|Long|string|null);
3527
+
3528
+ /** YoutubeContentPerformanceView clicks. */
3529
+ public clicks?: (number|Long|string|null);
3530
+
3531
+ /** YoutubeContentPerformanceView netSales. */
3532
+ public netSales?: (google.shopping.type.IPrice|null);
3533
+
3534
+ /** YoutubeContentPerformanceView taggedProductIds. */
3535
+ public taggedProductIds: string[];
3536
+
3537
+ /**
3538
+ * Creates a new YoutubeContentPerformanceView instance using the specified properties.
3539
+ * @param [properties] Properties to set
3540
+ * @returns YoutubeContentPerformanceView instance
3541
+ */
3542
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.IYoutubeContentPerformanceView): google.shopping.merchant.reports.v1alpha.YoutubeContentPerformanceView;
3543
+
3544
+ /**
3545
+ * Encodes the specified YoutubeContentPerformanceView message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.YoutubeContentPerformanceView.verify|verify} messages.
3546
+ * @param message YoutubeContentPerformanceView message or plain object to encode
3547
+ * @param [writer] Writer to encode to
3548
+ * @returns Writer
3549
+ */
3550
+ public static encode(message: google.shopping.merchant.reports.v1alpha.IYoutubeContentPerformanceView, writer?: $protobuf.Writer): $protobuf.Writer;
3551
+
3552
+ /**
3553
+ * Encodes the specified YoutubeContentPerformanceView message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.YoutubeContentPerformanceView.verify|verify} messages.
3554
+ * @param message YoutubeContentPerformanceView message or plain object to encode
3555
+ * @param [writer] Writer to encode to
3556
+ * @returns Writer
3557
+ */
3558
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.IYoutubeContentPerformanceView, writer?: $protobuf.Writer): $protobuf.Writer;
3559
+
3560
+ /**
3561
+ * Decodes a YoutubeContentPerformanceView message from the specified reader or buffer.
3562
+ * @param reader Reader or buffer to decode from
3563
+ * @param [length] Message length if known beforehand
3564
+ * @returns YoutubeContentPerformanceView
3565
+ * @throws {Error} If the payload is not a reader or valid buffer
3566
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3567
+ */
3568
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.YoutubeContentPerformanceView;
3569
+
3570
+ /**
3571
+ * Decodes a YoutubeContentPerformanceView message from the specified reader or buffer, length delimited.
3572
+ * @param reader Reader or buffer to decode from
3573
+ * @returns YoutubeContentPerformanceView
3574
+ * @throws {Error} If the payload is not a reader or valid buffer
3575
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3576
+ */
3577
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.YoutubeContentPerformanceView;
3578
+
3579
+ /**
3580
+ * Verifies a YoutubeContentPerformanceView message.
3581
+ * @param message Plain object to verify
3582
+ * @returns `null` if valid, otherwise the reason why it is not
3583
+ */
3584
+ public static verify(message: { [k: string]: any }): (string|null);
3585
+
3586
+ /**
3587
+ * Creates a YoutubeContentPerformanceView message from a plain object. Also converts values to their respective internal types.
3588
+ * @param object Plain object
3589
+ * @returns YoutubeContentPerformanceView
3590
+ */
3591
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.YoutubeContentPerformanceView;
3592
+
3593
+ /**
3594
+ * Creates a plain object from a YoutubeContentPerformanceView message. Also converts values to other types if specified.
3595
+ * @param message YoutubeContentPerformanceView
3596
+ * @param [options] Conversion options
3597
+ * @returns Plain object
3598
+ */
3599
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.YoutubeContentPerformanceView, options?: $protobuf.IConversionOptions): { [k: string]: any };
3600
+
3601
+ /**
3602
+ * Converts this YoutubeContentPerformanceView to JSON.
3603
+ * @returns JSON object
3604
+ */
3605
+ public toJSON(): { [k: string]: any };
3606
+
3607
+ /**
3608
+ * Gets the default type url for YoutubeContentPerformanceView
3609
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
3610
+ * @returns The default type url
3611
+ */
3612
+ public static getTypeUrl(typeUrlPrefix?: string): string;
3613
+ }
3614
+
3615
+ /** Properties of a YoutubeProductPerformanceView. */
3616
+ interface IYoutubeProductPerformanceView {
3617
+
3618
+ /** YoutubeProductPerformanceView date */
3619
+ date?: (google.type.IDate|null);
3620
+
3621
+ /** YoutubeProductPerformanceView title */
3622
+ title?: (string|null);
3623
+
3624
+ /** YoutubeProductPerformanceView offerId */
3625
+ offerId?: (string|null);
3626
+
3627
+ /** YoutubeProductPerformanceView distinctVideoCount */
3628
+ distinctVideoCount?: (number|Long|string|null);
3629
+
3630
+ /** YoutubeProductPerformanceView distinctCreatorCount */
3631
+ distinctCreatorCount?: (number|Long|string|null);
3632
+
3633
+ /** YoutubeProductPerformanceView grossSales */
3634
+ grossSales?: (google.shopping.type.IPrice|null);
3635
+
3636
+ /** YoutubeProductPerformanceView commissions */
3637
+ commissions?: (google.shopping.type.IPrice|null);
3638
+
3639
+ /** YoutubeProductPerformanceView orders */
3640
+ orders?: (number|Long|string|null);
3641
+
3642
+ /** YoutubeProductPerformanceView views */
3643
+ views?: (number|Long|string|null);
3644
+
3645
+ /** YoutubeProductPerformanceView clicks */
3646
+ clicks?: (number|Long|string|null);
3647
+
3648
+ /** YoutubeProductPerformanceView netSales */
3649
+ netSales?: (google.shopping.type.IPrice|null);
3650
+
3651
+ /** YoutubeProductPerformanceView taggedCreatorCount */
3652
+ taggedCreatorCount?: (number|Long|string|null);
3653
+
3654
+ /** YoutubeProductPerformanceView taggedVideoCount */
3655
+ taggedVideoCount?: (number|Long|string|null);
3656
+ }
3657
+
3658
+ /** Represents a YoutubeProductPerformanceView. */
3659
+ class YoutubeProductPerformanceView implements IYoutubeProductPerformanceView {
3660
+
3661
+ /**
3662
+ * Constructs a new YoutubeProductPerformanceView.
3663
+ * @param [properties] Properties to set
3664
+ */
3665
+ constructor(properties?: google.shopping.merchant.reports.v1alpha.IYoutubeProductPerformanceView);
3666
+
3667
+ /** YoutubeProductPerformanceView date. */
3668
+ public date?: (google.type.IDate|null);
3669
+
3670
+ /** YoutubeProductPerformanceView title. */
3671
+ public title?: (string|null);
3672
+
3673
+ /** YoutubeProductPerformanceView offerId. */
3674
+ public offerId?: (string|null);
3675
+
3676
+ /** YoutubeProductPerformanceView distinctVideoCount. */
3677
+ public distinctVideoCount?: (number|Long|string|null);
3678
+
3679
+ /** YoutubeProductPerformanceView distinctCreatorCount. */
3680
+ public distinctCreatorCount?: (number|Long|string|null);
3681
+
3682
+ /** YoutubeProductPerformanceView grossSales. */
3683
+ public grossSales?: (google.shopping.type.IPrice|null);
3684
+
3685
+ /** YoutubeProductPerformanceView commissions. */
3686
+ public commissions?: (google.shopping.type.IPrice|null);
3687
+
3688
+ /** YoutubeProductPerformanceView orders. */
3689
+ public orders?: (number|Long|string|null);
3690
+
3691
+ /** YoutubeProductPerformanceView views. */
3692
+ public views?: (number|Long|string|null);
3693
+
3694
+ /** YoutubeProductPerformanceView clicks. */
3695
+ public clicks?: (number|Long|string|null);
3696
+
3697
+ /** YoutubeProductPerformanceView netSales. */
3698
+ public netSales?: (google.shopping.type.IPrice|null);
3699
+
3700
+ /** YoutubeProductPerformanceView taggedCreatorCount. */
3701
+ public taggedCreatorCount?: (number|Long|string|null);
3702
+
3703
+ /** YoutubeProductPerformanceView taggedVideoCount. */
3704
+ public taggedVideoCount?: (number|Long|string|null);
3705
+
3706
+ /**
3707
+ * Creates a new YoutubeProductPerformanceView instance using the specified properties.
3708
+ * @param [properties] Properties to set
3709
+ * @returns YoutubeProductPerformanceView instance
3710
+ */
3711
+ public static create(properties?: google.shopping.merchant.reports.v1alpha.IYoutubeProductPerformanceView): google.shopping.merchant.reports.v1alpha.YoutubeProductPerformanceView;
3712
+
3713
+ /**
3714
+ * Encodes the specified YoutubeProductPerformanceView message. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.YoutubeProductPerformanceView.verify|verify} messages.
3715
+ * @param message YoutubeProductPerformanceView message or plain object to encode
3716
+ * @param [writer] Writer to encode to
3717
+ * @returns Writer
3718
+ */
3719
+ public static encode(message: google.shopping.merchant.reports.v1alpha.IYoutubeProductPerformanceView, writer?: $protobuf.Writer): $protobuf.Writer;
3720
+
3721
+ /**
3722
+ * Encodes the specified YoutubeProductPerformanceView message, length delimited. Does not implicitly {@link google.shopping.merchant.reports.v1alpha.YoutubeProductPerformanceView.verify|verify} messages.
3723
+ * @param message YoutubeProductPerformanceView message or plain object to encode
3724
+ * @param [writer] Writer to encode to
3725
+ * @returns Writer
3726
+ */
3727
+ public static encodeDelimited(message: google.shopping.merchant.reports.v1alpha.IYoutubeProductPerformanceView, writer?: $protobuf.Writer): $protobuf.Writer;
3728
+
3729
+ /**
3730
+ * Decodes a YoutubeProductPerformanceView message from the specified reader or buffer.
3731
+ * @param reader Reader or buffer to decode from
3732
+ * @param [length] Message length if known beforehand
3733
+ * @returns YoutubeProductPerformanceView
3734
+ * @throws {Error} If the payload is not a reader or valid buffer
3735
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3736
+ */
3737
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.reports.v1alpha.YoutubeProductPerformanceView;
3738
+
3739
+ /**
3740
+ * Decodes a YoutubeProductPerformanceView message from the specified reader or buffer, length delimited.
3741
+ * @param reader Reader or buffer to decode from
3742
+ * @returns YoutubeProductPerformanceView
3743
+ * @throws {Error} If the payload is not a reader or valid buffer
3744
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3745
+ */
3746
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.reports.v1alpha.YoutubeProductPerformanceView;
3747
+
3748
+ /**
3749
+ * Verifies a YoutubeProductPerformanceView message.
3750
+ * @param message Plain object to verify
3751
+ * @returns `null` if valid, otherwise the reason why it is not
3752
+ */
3753
+ public static verify(message: { [k: string]: any }): (string|null);
3754
+
3755
+ /**
3756
+ * Creates a YoutubeProductPerformanceView message from a plain object. Also converts values to their respective internal types.
3757
+ * @param object Plain object
3758
+ * @returns YoutubeProductPerformanceView
3759
+ */
3760
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.reports.v1alpha.YoutubeProductPerformanceView;
3761
+
3762
+ /**
3763
+ * Creates a plain object from a YoutubeProductPerformanceView message. Also converts values to other types if specified.
3764
+ * @param message YoutubeProductPerformanceView
3765
+ * @param [options] Conversion options
3766
+ * @returns Plain object
3767
+ */
3768
+ public static toObject(message: google.shopping.merchant.reports.v1alpha.YoutubeProductPerformanceView, options?: $protobuf.IConversionOptions): { [k: string]: any };
3769
+
3770
+ /**
3771
+ * Converts this YoutubeProductPerformanceView to JSON.
3772
+ * @returns JSON object
3773
+ */
3774
+ public toJSON(): { [k: string]: any };
3775
+
3776
+ /**
3777
+ * Gets the default type url for YoutubeProductPerformanceView
3778
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
3779
+ * @returns The default type url
3780
+ */
3781
+ public static getTypeUrl(typeUrlPrefix?: string): string;
3782
+ }
3783
+ }
3784
+
29
3785
  /** Namespace v1beta. */
30
3786
  namespace v1beta {
31
3787
 
@@ -4309,6 +8065,9 @@ export namespace google {
4309
8065
 
4310
8066
  /** CommonLanguageSettings destinations */
4311
8067
  destinations?: (google.api.ClientLibraryDestination[]|null);
8068
+
8069
+ /** CommonLanguageSettings selectiveGapicGeneration */
8070
+ selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
4312
8071
  }
4313
8072
 
4314
8073
  /** Represents a CommonLanguageSettings. */
@@ -4326,6 +8085,9 @@ export namespace google {
4326
8085
  /** CommonLanguageSettings destinations. */
4327
8086
  public destinations: google.api.ClientLibraryDestination[];
4328
8087
 
8088
+ /** CommonLanguageSettings selectiveGapicGeneration. */
8089
+ public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
8090
+
4329
8091
  /**
4330
8092
  * Creates a new CommonLanguageSettings instance using the specified properties.
4331
8093
  * @param [properties] Properties to set
@@ -5026,6 +8788,9 @@ export namespace google {
5026
8788
 
5027
8789
  /** PythonSettings common */
5028
8790
  common?: (google.api.ICommonLanguageSettings|null);
8791
+
8792
+ /** PythonSettings experimentalFeatures */
8793
+ experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
5029
8794
  }
5030
8795
 
5031
8796
  /** Represents a PythonSettings. */
@@ -5040,6 +8805,9 @@ export namespace google {
5040
8805
  /** PythonSettings common. */
5041
8806
  public common?: (google.api.ICommonLanguageSettings|null);
5042
8807
 
8808
+ /** PythonSettings experimentalFeatures. */
8809
+ public experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
8810
+
5043
8811
  /**
5044
8812
  * Creates a new PythonSettings instance using the specified properties.
5045
8813
  * @param [properties] Properties to set
@@ -5096,26 +8864,138 @@ export namespace google {
5096
8864
  */
5097
8865
  public static fromObject(object: { [k: string]: any }): google.api.PythonSettings;
5098
8866
 
5099
- /**
5100
- * Creates a plain object from a PythonSettings message. Also converts values to other types if specified.
5101
- * @param message PythonSettings
5102
- * @param [options] Conversion options
5103
- * @returns Plain object
5104
- */
5105
- public static toObject(message: google.api.PythonSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
8867
+ /**
8868
+ * Creates a plain object from a PythonSettings message. Also converts values to other types if specified.
8869
+ * @param message PythonSettings
8870
+ * @param [options] Conversion options
8871
+ * @returns Plain object
8872
+ */
8873
+ public static toObject(message: google.api.PythonSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
8874
+
8875
+ /**
8876
+ * Converts this PythonSettings to JSON.
8877
+ * @returns JSON object
8878
+ */
8879
+ public toJSON(): { [k: string]: any };
8880
+
8881
+ /**
8882
+ * Gets the default type url for PythonSettings
8883
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
8884
+ * @returns The default type url
8885
+ */
8886
+ public static getTypeUrl(typeUrlPrefix?: string): string;
8887
+ }
8888
+
8889
+ namespace PythonSettings {
8890
+
8891
+ /** Properties of an ExperimentalFeatures. */
8892
+ interface IExperimentalFeatures {
8893
+
8894
+ /** ExperimentalFeatures restAsyncIoEnabled */
8895
+ restAsyncIoEnabled?: (boolean|null);
8896
+
8897
+ /** ExperimentalFeatures protobufPythonicTypesEnabled */
8898
+ protobufPythonicTypesEnabled?: (boolean|null);
8899
+
8900
+ /** ExperimentalFeatures unversionedPackageDisabled */
8901
+ unversionedPackageDisabled?: (boolean|null);
8902
+ }
8903
+
8904
+ /** Represents an ExperimentalFeatures. */
8905
+ class ExperimentalFeatures implements IExperimentalFeatures {
8906
+
8907
+ /**
8908
+ * Constructs a new ExperimentalFeatures.
8909
+ * @param [properties] Properties to set
8910
+ */
8911
+ constructor(properties?: google.api.PythonSettings.IExperimentalFeatures);
8912
+
8913
+ /** ExperimentalFeatures restAsyncIoEnabled. */
8914
+ public restAsyncIoEnabled: boolean;
8915
+
8916
+ /** ExperimentalFeatures protobufPythonicTypesEnabled. */
8917
+ public protobufPythonicTypesEnabled: boolean;
8918
+
8919
+ /** ExperimentalFeatures unversionedPackageDisabled. */
8920
+ public unversionedPackageDisabled: boolean;
8921
+
8922
+ /**
8923
+ * Creates a new ExperimentalFeatures instance using the specified properties.
8924
+ * @param [properties] Properties to set
8925
+ * @returns ExperimentalFeatures instance
8926
+ */
8927
+ public static create(properties?: google.api.PythonSettings.IExperimentalFeatures): google.api.PythonSettings.ExperimentalFeatures;
8928
+
8929
+ /**
8930
+ * Encodes the specified ExperimentalFeatures message. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
8931
+ * @param message ExperimentalFeatures message or plain object to encode
8932
+ * @param [writer] Writer to encode to
8933
+ * @returns Writer
8934
+ */
8935
+ public static encode(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
8936
+
8937
+ /**
8938
+ * Encodes the specified ExperimentalFeatures message, length delimited. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
8939
+ * @param message ExperimentalFeatures message or plain object to encode
8940
+ * @param [writer] Writer to encode to
8941
+ * @returns Writer
8942
+ */
8943
+ public static encodeDelimited(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
8944
+
8945
+ /**
8946
+ * Decodes an ExperimentalFeatures message from the specified reader or buffer.
8947
+ * @param reader Reader or buffer to decode from
8948
+ * @param [length] Message length if known beforehand
8949
+ * @returns ExperimentalFeatures
8950
+ * @throws {Error} If the payload is not a reader or valid buffer
8951
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
8952
+ */
8953
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings.ExperimentalFeatures;
8954
+
8955
+ /**
8956
+ * Decodes an ExperimentalFeatures message from the specified reader or buffer, length delimited.
8957
+ * @param reader Reader or buffer to decode from
8958
+ * @returns ExperimentalFeatures
8959
+ * @throws {Error} If the payload is not a reader or valid buffer
8960
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
8961
+ */
8962
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings.ExperimentalFeatures;
8963
+
8964
+ /**
8965
+ * Verifies an ExperimentalFeatures message.
8966
+ * @param message Plain object to verify
8967
+ * @returns `null` if valid, otherwise the reason why it is not
8968
+ */
8969
+ public static verify(message: { [k: string]: any }): (string|null);
8970
+
8971
+ /**
8972
+ * Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
8973
+ * @param object Plain object
8974
+ * @returns ExperimentalFeatures
8975
+ */
8976
+ public static fromObject(object: { [k: string]: any }): google.api.PythonSettings.ExperimentalFeatures;
8977
+
8978
+ /**
8979
+ * Creates a plain object from an ExperimentalFeatures message. Also converts values to other types if specified.
8980
+ * @param message ExperimentalFeatures
8981
+ * @param [options] Conversion options
8982
+ * @returns Plain object
8983
+ */
8984
+ public static toObject(message: google.api.PythonSettings.ExperimentalFeatures, options?: $protobuf.IConversionOptions): { [k: string]: any };
5106
8985
 
5107
- /**
5108
- * Converts this PythonSettings to JSON.
5109
- * @returns JSON object
5110
- */
5111
- public toJSON(): { [k: string]: any };
8986
+ /**
8987
+ * Converts this ExperimentalFeatures to JSON.
8988
+ * @returns JSON object
8989
+ */
8990
+ public toJSON(): { [k: string]: any };
5112
8991
 
5113
- /**
5114
- * Gets the default type url for PythonSettings
5115
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5116
- * @returns The default type url
5117
- */
5118
- public static getTypeUrl(typeUrlPrefix?: string): string;
8992
+ /**
8993
+ * Gets the default type url for ExperimentalFeatures
8994
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
8995
+ * @returns The default type url
8996
+ */
8997
+ public static getTypeUrl(typeUrlPrefix?: string): string;
8998
+ }
5119
8999
  }
5120
9000
 
5121
9001
  /** Properties of a NodeSettings. */
@@ -5444,6 +9324,9 @@ export namespace google {
5444
9324
 
5445
9325
  /** GoSettings common */
5446
9326
  common?: (google.api.ICommonLanguageSettings|null);
9327
+
9328
+ /** GoSettings renamedServices */
9329
+ renamedServices?: ({ [k: string]: string }|null);
5447
9330
  }
5448
9331
 
5449
9332
  /** Represents a GoSettings. */
@@ -5458,6 +9341,9 @@ export namespace google {
5458
9341
  /** GoSettings common. */
5459
9342
  public common?: (google.api.ICommonLanguageSettings|null);
5460
9343
 
9344
+ /** GoSettings renamedServices. */
9345
+ public renamedServices: { [k: string]: string };
9346
+
5461
9347
  /**
5462
9348
  * Creates a new GoSettings instance using the specified properties.
5463
9349
  * @param [properties] Properties to set
@@ -5782,6 +9668,109 @@ export namespace google {
5782
9668
  PACKAGE_MANAGER = 20
5783
9669
  }
5784
9670
 
9671
+ /** Properties of a SelectiveGapicGeneration. */
9672
+ interface ISelectiveGapicGeneration {
9673
+
9674
+ /** SelectiveGapicGeneration methods */
9675
+ methods?: (string[]|null);
9676
+
9677
+ /** SelectiveGapicGeneration generateOmittedAsInternal */
9678
+ generateOmittedAsInternal?: (boolean|null);
9679
+ }
9680
+
9681
+ /** Represents a SelectiveGapicGeneration. */
9682
+ class SelectiveGapicGeneration implements ISelectiveGapicGeneration {
9683
+
9684
+ /**
9685
+ * Constructs a new SelectiveGapicGeneration.
9686
+ * @param [properties] Properties to set
9687
+ */
9688
+ constructor(properties?: google.api.ISelectiveGapicGeneration);
9689
+
9690
+ /** SelectiveGapicGeneration methods. */
9691
+ public methods: string[];
9692
+
9693
+ /** SelectiveGapicGeneration generateOmittedAsInternal. */
9694
+ public generateOmittedAsInternal: boolean;
9695
+
9696
+ /**
9697
+ * Creates a new SelectiveGapicGeneration instance using the specified properties.
9698
+ * @param [properties] Properties to set
9699
+ * @returns SelectiveGapicGeneration instance
9700
+ */
9701
+ public static create(properties?: google.api.ISelectiveGapicGeneration): google.api.SelectiveGapicGeneration;
9702
+
9703
+ /**
9704
+ * Encodes the specified SelectiveGapicGeneration message. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
9705
+ * @param message SelectiveGapicGeneration message or plain object to encode
9706
+ * @param [writer] Writer to encode to
9707
+ * @returns Writer
9708
+ */
9709
+ public static encode(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
9710
+
9711
+ /**
9712
+ * Encodes the specified SelectiveGapicGeneration message, length delimited. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
9713
+ * @param message SelectiveGapicGeneration message or plain object to encode
9714
+ * @param [writer] Writer to encode to
9715
+ * @returns Writer
9716
+ */
9717
+ public static encodeDelimited(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
9718
+
9719
+ /**
9720
+ * Decodes a SelectiveGapicGeneration message from the specified reader or buffer.
9721
+ * @param reader Reader or buffer to decode from
9722
+ * @param [length] Message length if known beforehand
9723
+ * @returns SelectiveGapicGeneration
9724
+ * @throws {Error} If the payload is not a reader or valid buffer
9725
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9726
+ */
9727
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.SelectiveGapicGeneration;
9728
+
9729
+ /**
9730
+ * Decodes a SelectiveGapicGeneration message from the specified reader or buffer, length delimited.
9731
+ * @param reader Reader or buffer to decode from
9732
+ * @returns SelectiveGapicGeneration
9733
+ * @throws {Error} If the payload is not a reader or valid buffer
9734
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9735
+ */
9736
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.SelectiveGapicGeneration;
9737
+
9738
+ /**
9739
+ * Verifies a SelectiveGapicGeneration message.
9740
+ * @param message Plain object to verify
9741
+ * @returns `null` if valid, otherwise the reason why it is not
9742
+ */
9743
+ public static verify(message: { [k: string]: any }): (string|null);
9744
+
9745
+ /**
9746
+ * Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
9747
+ * @param object Plain object
9748
+ * @returns SelectiveGapicGeneration
9749
+ */
9750
+ public static fromObject(object: { [k: string]: any }): google.api.SelectiveGapicGeneration;
9751
+
9752
+ /**
9753
+ * Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
9754
+ * @param message SelectiveGapicGeneration
9755
+ * @param [options] Conversion options
9756
+ * @returns Plain object
9757
+ */
9758
+ public static toObject(message: google.api.SelectiveGapicGeneration, options?: $protobuf.IConversionOptions): { [k: string]: any };
9759
+
9760
+ /**
9761
+ * Converts this SelectiveGapicGeneration to JSON.
9762
+ * @returns JSON object
9763
+ */
9764
+ public toJSON(): { [k: string]: any };
9765
+
9766
+ /**
9767
+ * Gets the default type url for SelectiveGapicGeneration
9768
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
9769
+ * @returns The default type url
9770
+ */
9771
+ public static getTypeUrl(typeUrlPrefix?: string): string;
9772
+ }
9773
+
5785
9774
  /** LaunchStage enum. */
5786
9775
  enum LaunchStage {
5787
9776
  LAUNCH_STAGE_UNSPECIFIED = 0,
@@ -5911,6 +9900,7 @@ export namespace google {
5911
9900
  /** Edition enum. */
5912
9901
  enum Edition {
5913
9902
  EDITION_UNKNOWN = 0,
9903
+ EDITION_LEGACY = 900,
5914
9904
  EDITION_PROTO2 = 998,
5915
9905
  EDITION_PROTO3 = 999,
5916
9906
  EDITION_2023 = 1000,
@@ -5941,6 +9931,9 @@ export namespace google {
5941
9931
  /** FileDescriptorProto weakDependency */
5942
9932
  weakDependency?: (number[]|null);
5943
9933
 
9934
+ /** FileDescriptorProto optionDependency */
9935
+ optionDependency?: (string[]|null);
9936
+
5944
9937
  /** FileDescriptorProto messageType */
5945
9938
  messageType?: (google.protobuf.IDescriptorProto[]|null);
5946
9939
 
@@ -5990,6 +9983,9 @@ export namespace google {
5990
9983
  /** FileDescriptorProto weakDependency. */
5991
9984
  public weakDependency: number[];
5992
9985
 
9986
+ /** FileDescriptorProto optionDependency. */
9987
+ public optionDependency: string[];
9988
+
5993
9989
  /** FileDescriptorProto messageType. */
5994
9990
  public messageType: google.protobuf.IDescriptorProto[];
5995
9991
 
@@ -6124,6 +10120,9 @@ export namespace google {
6124
10120
 
6125
10121
  /** DescriptorProto reservedName */
6126
10122
  reservedName?: (string[]|null);
10123
+
10124
+ /** DescriptorProto visibility */
10125
+ visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
6127
10126
  }
6128
10127
 
6129
10128
  /** Represents a DescriptorProto. */
@@ -6165,6 +10164,9 @@ export namespace google {
6165
10164
  /** DescriptorProto reservedName. */
6166
10165
  public reservedName: string[];
6167
10166
 
10167
+ /** DescriptorProto visibility. */
10168
+ public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
10169
+
6168
10170
  /**
6169
10171
  * Creates a new DescriptorProto instance using the specified properties.
6170
10172
  * @param [properties] Properties to set
@@ -7012,6 +11014,9 @@ export namespace google {
7012
11014
 
7013
11015
  /** EnumDescriptorProto reservedName */
7014
11016
  reservedName?: (string[]|null);
11017
+
11018
+ /** EnumDescriptorProto visibility */
11019
+ visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
7015
11020
  }
7016
11021
 
7017
11022
  /** Represents an EnumDescriptorProto. */
@@ -7038,6 +11043,9 @@ export namespace google {
7038
11043
  /** EnumDescriptorProto reservedName. */
7039
11044
  public reservedName: string[];
7040
11045
 
11046
+ /** EnumDescriptorProto visibility. */
11047
+ public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
11048
+
7041
11049
  /**
7042
11050
  * Creates a new EnumDescriptorProto instance using the specified properties.
7043
11051
  * @param [properties] Properties to set
@@ -7966,6 +11974,9 @@ export namespace google {
7966
11974
  /** FieldOptions features */
7967
11975
  features?: (google.protobuf.IFeatureSet|null);
7968
11976
 
11977
+ /** FieldOptions featureSupport */
11978
+ featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
11979
+
7969
11980
  /** FieldOptions uninterpretedOption */
7970
11981
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
7971
11982
 
@@ -8018,6 +12029,9 @@ export namespace google {
8018
12029
  /** FieldOptions features. */
8019
12030
  public features?: (google.protobuf.IFeatureSet|null);
8020
12031
 
12032
+ /** FieldOptions featureSupport. */
12033
+ public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
12034
+
8021
12035
  /** FieldOptions uninterpretedOption. */
8022
12036
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
8023
12037
 
@@ -8238,6 +12252,121 @@ export namespace google {
8238
12252
  */
8239
12253
  public static getTypeUrl(typeUrlPrefix?: string): string;
8240
12254
  }
12255
+
12256
+ /** Properties of a FeatureSupport. */
12257
+ interface IFeatureSupport {
12258
+
12259
+ /** FeatureSupport editionIntroduced */
12260
+ editionIntroduced?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
12261
+
12262
+ /** FeatureSupport editionDeprecated */
12263
+ editionDeprecated?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
12264
+
12265
+ /** FeatureSupport deprecationWarning */
12266
+ deprecationWarning?: (string|null);
12267
+
12268
+ /** FeatureSupport editionRemoved */
12269
+ editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
12270
+ }
12271
+
12272
+ /** Represents a FeatureSupport. */
12273
+ class FeatureSupport implements IFeatureSupport {
12274
+
12275
+ /**
12276
+ * Constructs a new FeatureSupport.
12277
+ * @param [properties] Properties to set
12278
+ */
12279
+ constructor(properties?: google.protobuf.FieldOptions.IFeatureSupport);
12280
+
12281
+ /** FeatureSupport editionIntroduced. */
12282
+ public editionIntroduced: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
12283
+
12284
+ /** FeatureSupport editionDeprecated. */
12285
+ public editionDeprecated: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
12286
+
12287
+ /** FeatureSupport deprecationWarning. */
12288
+ public deprecationWarning: string;
12289
+
12290
+ /** FeatureSupport editionRemoved. */
12291
+ public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
12292
+
12293
+ /**
12294
+ * Creates a new FeatureSupport instance using the specified properties.
12295
+ * @param [properties] Properties to set
12296
+ * @returns FeatureSupport instance
12297
+ */
12298
+ public static create(properties?: google.protobuf.FieldOptions.IFeatureSupport): google.protobuf.FieldOptions.FeatureSupport;
12299
+
12300
+ /**
12301
+ * Encodes the specified FeatureSupport message. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
12302
+ * @param message FeatureSupport message or plain object to encode
12303
+ * @param [writer] Writer to encode to
12304
+ * @returns Writer
12305
+ */
12306
+ public static encode(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
12307
+
12308
+ /**
12309
+ * Encodes the specified FeatureSupport message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
12310
+ * @param message FeatureSupport message or plain object to encode
12311
+ * @param [writer] Writer to encode to
12312
+ * @returns Writer
12313
+ */
12314
+ public static encodeDelimited(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
12315
+
12316
+ /**
12317
+ * Decodes a FeatureSupport message from the specified reader or buffer.
12318
+ * @param reader Reader or buffer to decode from
12319
+ * @param [length] Message length if known beforehand
12320
+ * @returns FeatureSupport
12321
+ * @throws {Error} If the payload is not a reader or valid buffer
12322
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
12323
+ */
12324
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.FeatureSupport;
12325
+
12326
+ /**
12327
+ * Decodes a FeatureSupport message from the specified reader or buffer, length delimited.
12328
+ * @param reader Reader or buffer to decode from
12329
+ * @returns FeatureSupport
12330
+ * @throws {Error} If the payload is not a reader or valid buffer
12331
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
12332
+ */
12333
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.FeatureSupport;
12334
+
12335
+ /**
12336
+ * Verifies a FeatureSupport message.
12337
+ * @param message Plain object to verify
12338
+ * @returns `null` if valid, otherwise the reason why it is not
12339
+ */
12340
+ public static verify(message: { [k: string]: any }): (string|null);
12341
+
12342
+ /**
12343
+ * Creates a FeatureSupport message from a plain object. Also converts values to their respective internal types.
12344
+ * @param object Plain object
12345
+ * @returns FeatureSupport
12346
+ */
12347
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.FeatureSupport;
12348
+
12349
+ /**
12350
+ * Creates a plain object from a FeatureSupport message. Also converts values to other types if specified.
12351
+ * @param message FeatureSupport
12352
+ * @param [options] Conversion options
12353
+ * @returns Plain object
12354
+ */
12355
+ public static toObject(message: google.protobuf.FieldOptions.FeatureSupport, options?: $protobuf.IConversionOptions): { [k: string]: any };
12356
+
12357
+ /**
12358
+ * Converts this FeatureSupport to JSON.
12359
+ * @returns JSON object
12360
+ */
12361
+ public toJSON(): { [k: string]: any };
12362
+
12363
+ /**
12364
+ * Gets the default type url for FeatureSupport
12365
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
12366
+ * @returns The default type url
12367
+ */
12368
+ public static getTypeUrl(typeUrlPrefix?: string): string;
12369
+ }
8241
12370
  }
8242
12371
 
8243
12372
  /** Properties of an OneofOptions. */
@@ -8476,6 +12605,9 @@ export namespace google {
8476
12605
  /** EnumValueOptions debugRedact */
8477
12606
  debugRedact?: (boolean|null);
8478
12607
 
12608
+ /** EnumValueOptions featureSupport */
12609
+ featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
12610
+
8479
12611
  /** EnumValueOptions uninterpretedOption */
8480
12612
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
8481
12613
  }
@@ -8498,6 +12630,9 @@ export namespace google {
8498
12630
  /** EnumValueOptions debugRedact. */
8499
12631
  public debugRedact: boolean;
8500
12632
 
12633
+ /** EnumValueOptions featureSupport. */
12634
+ public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
12635
+
8501
12636
  /** EnumValueOptions uninterpretedOption. */
8502
12637
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
8503
12638
 
@@ -9087,6 +13222,12 @@ export namespace google {
9087
13222
 
9088
13223
  /** FeatureSet jsonFormat */
9089
13224
  jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
13225
+
13226
+ /** FeatureSet enforceNamingStyle */
13227
+ enforceNamingStyle?: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle|null);
13228
+
13229
+ /** FeatureSet defaultSymbolVisibility */
13230
+ defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
9090
13231
  }
9091
13232
 
9092
13233
  /** Represents a FeatureSet. */
@@ -9116,6 +13257,12 @@ export namespace google {
9116
13257
  /** FeatureSet jsonFormat. */
9117
13258
  public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
9118
13259
 
13260
+ /** FeatureSet enforceNamingStyle. */
13261
+ public enforceNamingStyle: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle);
13262
+
13263
+ /** FeatureSet defaultSymbolVisibility. */
13264
+ public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
13265
+
9119
13266
  /**
9120
13267
  * Creates a new FeatureSet instance using the specified properties.
9121
13268
  * @param [properties] Properties to set
@@ -9238,6 +13385,116 @@ export namespace google {
9238
13385
  ALLOW = 1,
9239
13386
  LEGACY_BEST_EFFORT = 2
9240
13387
  }
13388
+
13389
+ /** EnforceNamingStyle enum. */
13390
+ enum EnforceNamingStyle {
13391
+ ENFORCE_NAMING_STYLE_UNKNOWN = 0,
13392
+ STYLE2024 = 1,
13393
+ STYLE_LEGACY = 2
13394
+ }
13395
+
13396
+ /** Properties of a VisibilityFeature. */
13397
+ interface IVisibilityFeature {
13398
+ }
13399
+
13400
+ /** Represents a VisibilityFeature. */
13401
+ class VisibilityFeature implements IVisibilityFeature {
13402
+
13403
+ /**
13404
+ * Constructs a new VisibilityFeature.
13405
+ * @param [properties] Properties to set
13406
+ */
13407
+ constructor(properties?: google.protobuf.FeatureSet.IVisibilityFeature);
13408
+
13409
+ /**
13410
+ * Creates a new VisibilityFeature instance using the specified properties.
13411
+ * @param [properties] Properties to set
13412
+ * @returns VisibilityFeature instance
13413
+ */
13414
+ public static create(properties?: google.protobuf.FeatureSet.IVisibilityFeature): google.protobuf.FeatureSet.VisibilityFeature;
13415
+
13416
+ /**
13417
+ * Encodes the specified VisibilityFeature message. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
13418
+ * @param message VisibilityFeature message or plain object to encode
13419
+ * @param [writer] Writer to encode to
13420
+ * @returns Writer
13421
+ */
13422
+ public static encode(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
13423
+
13424
+ /**
13425
+ * Encodes the specified VisibilityFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
13426
+ * @param message VisibilityFeature message or plain object to encode
13427
+ * @param [writer] Writer to encode to
13428
+ * @returns Writer
13429
+ */
13430
+ public static encodeDelimited(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
13431
+
13432
+ /**
13433
+ * Decodes a VisibilityFeature message from the specified reader or buffer.
13434
+ * @param reader Reader or buffer to decode from
13435
+ * @param [length] Message length if known beforehand
13436
+ * @returns VisibilityFeature
13437
+ * @throws {Error} If the payload is not a reader or valid buffer
13438
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
13439
+ */
13440
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.VisibilityFeature;
13441
+
13442
+ /**
13443
+ * Decodes a VisibilityFeature message from the specified reader or buffer, length delimited.
13444
+ * @param reader Reader or buffer to decode from
13445
+ * @returns VisibilityFeature
13446
+ * @throws {Error} If the payload is not a reader or valid buffer
13447
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
13448
+ */
13449
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.VisibilityFeature;
13450
+
13451
+ /**
13452
+ * Verifies a VisibilityFeature message.
13453
+ * @param message Plain object to verify
13454
+ * @returns `null` if valid, otherwise the reason why it is not
13455
+ */
13456
+ public static verify(message: { [k: string]: any }): (string|null);
13457
+
13458
+ /**
13459
+ * Creates a VisibilityFeature message from a plain object. Also converts values to their respective internal types.
13460
+ * @param object Plain object
13461
+ * @returns VisibilityFeature
13462
+ */
13463
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.VisibilityFeature;
13464
+
13465
+ /**
13466
+ * Creates a plain object from a VisibilityFeature message. Also converts values to other types if specified.
13467
+ * @param message VisibilityFeature
13468
+ * @param [options] Conversion options
13469
+ * @returns Plain object
13470
+ */
13471
+ public static toObject(message: google.protobuf.FeatureSet.VisibilityFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
13472
+
13473
+ /**
13474
+ * Converts this VisibilityFeature to JSON.
13475
+ * @returns JSON object
13476
+ */
13477
+ public toJSON(): { [k: string]: any };
13478
+
13479
+ /**
13480
+ * Gets the default type url for VisibilityFeature
13481
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
13482
+ * @returns The default type url
13483
+ */
13484
+ public static getTypeUrl(typeUrlPrefix?: string): string;
13485
+ }
13486
+
13487
+ namespace VisibilityFeature {
13488
+
13489
+ /** DefaultSymbolVisibility enum. */
13490
+ enum DefaultSymbolVisibility {
13491
+ DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
13492
+ EXPORT_ALL = 1,
13493
+ EXPORT_TOP_LEVEL = 2,
13494
+ LOCAL_ALL = 3,
13495
+ STRICT = 4
13496
+ }
13497
+ }
9241
13498
  }
9242
13499
 
9243
13500
  /** Properties of a FeatureSetDefaults. */
@@ -9357,8 +13614,11 @@ export namespace google {
9357
13614
  /** FeatureSetEditionDefault edition */
9358
13615
  edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
9359
13616
 
9360
- /** FeatureSetEditionDefault features */
9361
- features?: (google.protobuf.IFeatureSet|null);
13617
+ /** FeatureSetEditionDefault overridableFeatures */
13618
+ overridableFeatures?: (google.protobuf.IFeatureSet|null);
13619
+
13620
+ /** FeatureSetEditionDefault fixedFeatures */
13621
+ fixedFeatures?: (google.protobuf.IFeatureSet|null);
9362
13622
  }
9363
13623
 
9364
13624
  /** Represents a FeatureSetEditionDefault. */
@@ -9373,8 +13633,11 @@ export namespace google {
9373
13633
  /** FeatureSetEditionDefault edition. */
9374
13634
  public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
9375
13635
 
9376
- /** FeatureSetEditionDefault features. */
9377
- public features?: (google.protobuf.IFeatureSet|null);
13636
+ /** FeatureSetEditionDefault overridableFeatures. */
13637
+ public overridableFeatures?: (google.protobuf.IFeatureSet|null);
13638
+
13639
+ /** FeatureSetEditionDefault fixedFeatures. */
13640
+ public fixedFeatures?: (google.protobuf.IFeatureSet|null);
9378
13641
 
9379
13642
  /**
9380
13643
  * Creates a new FeatureSetEditionDefault instance using the specified properties.
@@ -9907,6 +14170,13 @@ export namespace google {
9907
14170
  }
9908
14171
  }
9909
14172
 
14173
+ /** SymbolVisibility enum. */
14174
+ enum SymbolVisibility {
14175
+ VISIBILITY_UNSET = 0,
14176
+ VISIBILITY_LOCAL = 1,
14177
+ VISIBILITY_EXPORT = 2
14178
+ }
14179
+
9910
14180
  /** Properties of a Duration. */
9911
14181
  interface IDuration {
9912
14182