File: merchantapi_products_v1beta.accounts.productInputs.html

package info (click to toggle)
python-googleapi 2.180.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 527,124 kB
  • sloc: python: 11,076; javascript: 249; sh: 114; makefile: 59
file content (1393 lines) | stat: -rw-r--r-- 176,194 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
<html><body>
<style>

body, h1, h2, h3, div, span, p, pre, a {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

body {
  font-size: 13px;
  padding: 1em;
}

h1 {
  font-size: 26px;
  margin-bottom: 1em;
}

h2 {
  font-size: 24px;
  margin-bottom: 1em;
}

h3 {
  font-size: 20px;
  margin-bottom: 1em;
  margin-top: 1em;
}

pre, code {
  line-height: 1.5;
  font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}

pre {
  margin-top: 0.5em;
}

h1, h2, h3, p {
  font-family: Arial, sans serif;
}

h1, h2, h3 {
  border-bottom: solid #CCC 1px;
}

.toc_element {
  margin-top: 0.5em;
}

.firstline {
  margin-left: 2 em;
}

.method  {
  margin-top: 1em;
  border: solid 1px #CCC;
  padding: 1em;
  background: #EEE;
}

.details {
  font-weight: bold;
  font-size: 14px;
}

</style>

<h1><a href="merchantapi_products_v1beta.html">Merchant API</a> . <a href="merchantapi_products_v1beta.accounts.html">accounts</a> . <a href="merchantapi_products_v1beta.accounts.productInputs.html">productInputs</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
  <code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
  <code><a href="#delete">delete(name, dataSource=None, x__xgafv=None)</a></code></p>
<p class="firstline">Deletes a product input from your Merchant Center account. After inserting, updating, or deleting a product input, it may take several minutes before the processed product can be retrieved.</p>
<p class="toc_element">
  <code><a href="#insert">insert(parent, body=None, dataSource=None, x__xgafv=None)</a></code></p>
<p class="firstline">[Uploads a product input to your Merchant Center account](/merchant/api/guides/products/add-manage#add_a_product). You must have a products [data source](/merchant/api/guides/data-sources/api-sources#create-primary-data-source) to be able to insert a product. The unique identifier of the data source is passed as a query parameter in the request URL. If a product input with the same contentLanguage, offerId, and dataSource already exists, then the product input inserted by this method replaces that entry. After inserting, updating, or deleting a product input, it may take several minutes before the processed product can be retrieved.</p>
<p class="toc_element">
  <code><a href="#patch">patch(name, body=None, dataSource=None, updateMask=None, x__xgafv=None)</a></code></p>
<p class="firstline">Updates the existing product input in your Merchant Center account. After inserting, updating, or deleting a product input, it may take several minutes before the processed product can be retrieved.</p>
<h3>Method Details</h3>
<div class="method">
    <code class="details" id="close">close()</code>
  <pre>Close httplib2 connections.</pre>
</div>

<div class="method">
    <code class="details" id="delete">delete(name, dataSource=None, x__xgafv=None)</code>
  <pre>Deletes a product input from your Merchant Center account. After inserting, updating, or deleting a product input, it may take several minutes before the processed product can be retrieved.

Args:
  name: string, Required. The name of the product input resource to delete. Format: `accounts/{account}/productInputs/{product}` where the last section `product` consists of: `content_language~feed_label~offer_id` example for product name is `accounts/123/productInputs/en~US~sku123`. (required)
  dataSource: string, Required. The primary or supplemental data source from which the product input should be deleted. Format: `accounts/{account}/dataSources/{datasource}`. For example, `accounts/123456/dataSources/104628`.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }
}</pre>
</div>

<div class="method">
    <code class="details" id="insert">insert(parent, body=None, dataSource=None, x__xgafv=None)</code>
  <pre>[Uploads a product input to your Merchant Center account](/merchant/api/guides/products/add-manage#add_a_product). You must have a products [data source](/merchant/api/guides/data-sources/api-sources#create-primary-data-source) to be able to insert a product. The unique identifier of the data source is passed as a query parameter in the request URL. If a product input with the same contentLanguage, offerId, and dataSource already exists, then the product input inserted by this method replaces that entry. After inserting, updating, or deleting a product input, it may take several minutes before the processed product can be retrieved.

Args:
  parent: string, Required. The account where this product will be inserted. Format: `accounts/{account}` (required)
  body: object, The request body.
    The object takes the form of:

{ # This resource represents input data you submit for a product, not the processed product that you see in Merchant Center, in Shopping ads, or across Google surfaces. Product inputs, rules and supplemental data source data are combined to create the processed Product. For more information, see [Manage products](/merchant/api/guides/products/overview). Required product input attributes to pass data validation checks are primarily defined in the [Products Data Specification](https://support.google.com/merchants/answer/188494). The following attributes are required: feedLabel, contentLanguage and offerId. After inserting, updating, or deleting a product input, it may take several minutes before the processed product can be retrieved. All fields in the product input and its sub-messages match the English name of their corresponding attribute in the [Products Data Specification](https://support.google.com/merchants/answer/188494) with [some exceptions](https://support.google.com/merchants/answer/7052112). The following reference documentation lists the field names in the **camelCase** casing style while the Products Data Specification lists the names in the **snake_case** casing style.
  &quot;attributes&quot;: { # Attributes. # Optional. A list of product attributes.
    &quot;additionalImageLinks&quot;: [ # Additional URLs of images of the item.
      &quot;A String&quot;,
    ],
    &quot;adsGrouping&quot;: &quot;A String&quot;, # Used to group items in an arbitrary way. Only for CPA, discouraged otherwise. For more information, see [Display ads attribute](https://support.google.com/merchants/answer/6069387).
    &quot;adsLabels&quot;: [ # Similar to ads_grouping, but only works on CPC.
      &quot;A String&quot;,
    ],
    &quot;adsRedirect&quot;: &quot;A String&quot;, # Allows advertisers to override the item URL when the product is shown within the context of Product ads.
    &quot;adult&quot;: True or False, # Set to true if the item is targeted towards adults.
    &quot;ageGroup&quot;: &quot;A String&quot;, # Target [age group](https://support.google.com/merchants/answer/6324463) of the item.
    &quot;autoPricingMinPrice&quot;: { # The price represented as a number and currency. # A safeguard in the [automated discounts] (https://support.google.com/merchants/answer/10295759) and [&quot;dynamic promotions&quot;](https://support.google.com/merchants/answer/13949249) projects, ensuring that discounts on business offers do not fall below this value, thereby preserving the offer&#x27;s value and profitability.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;availability&quot;: &quot;A String&quot;, # [Availability](https://support.google.com/merchants/answer/6324448) status of the item. For example, &quot;in_stock&quot; or &quot;out_of_stock&quot;.
    &quot;availabilityDate&quot;: &quot;A String&quot;, # The day a pre-ordered product becomes available for delivery, in [ISO 8601](http://en.wikipedia.org/wiki/ISO_8601) format.
    &quot;brand&quot;: &quot;A String&quot;, # [Brand](https://support.google.com/merchants/answer/6324351) of the item. For example, &quot;Google&quot;.
    &quot;canonicalLink&quot;: &quot;A String&quot;, # URL for the canonical version of your item&#x27;s landing page.
    &quot;certifications&quot;: [ # Product Certifications, for example for energy efficiency labeling of products recorded in the [EU EPREL](https://eprel.ec.europa.eu/screen/home) database. See the [Help Center](https://support.google.com/merchants/answer/13528839) article for more information.
      { # Product [certification](https://support.google.com/merchants/answer/13528839), initially introduced for EU energy efficiency labeling compliance using the EU EPREL database.
        &quot;certificationAuthority&quot;: &quot;A String&quot;, # The certification authority, for example &quot;European_Commission&quot;. Maximum length is 2000 characters.
        &quot;certificationCode&quot;: &quot;A String&quot;, # The certification code. Maximum length is 2000 characters.
        &quot;certificationName&quot;: &quot;A String&quot;, # The name of the certification, for example &quot;EPREL&quot;. Maximum length is 2000 characters.
        &quot;certificationValue&quot;: &quot;A String&quot;, # The certification value (also known as class, level or grade), for example &quot;A+&quot;, &quot;C&quot;, &quot;gold&quot;. Maximum length is 2000 characters.
      },
    ],
    &quot;cloudExportAdditionalProperties&quot;: [ # Extra fields to export to the Cloud Retail program.
      { # Product property for the Cloud Retail API. For example, properties for a TV product could be &quot;Screen-Resolution&quot; or &quot;Screen-Size&quot;.
        &quot;boolValue&quot;: True or False, # Boolean value of the given property. For example for a TV product, &quot;True&quot; or &quot;False&quot; if the screen is UHD.
        &quot;floatValue&quot;: [ # Float values of the given property. For example for a TV product 1.2345. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order.
          3.14,
        ],
        &quot;intValue&quot;: [ # Integer values of the given property. For example, 1080 for a TV product&#x27;s Screen Resolution. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order.
          &quot;A String&quot;,
        ],
        &quot;maxValue&quot;: 3.14, # Maximum float value of the given property. For example for a TV product 100.00.
        &quot;minValue&quot;: 3.14, # Minimum float value of the given property. For example for a TV product 1.00.
        &quot;propertyName&quot;: &quot;A String&quot;, # Name of the given property. For example, &quot;Screen-Resolution&quot; for a TV product. Maximum string size is 256 characters.
        &quot;textValue&quot;: [ # Text value of the given property. For example, &quot;8K(UHD)&quot; could be a text value for a TV product. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order. Maximum string size is 256 characters.
          &quot;A String&quot;,
        ],
        &quot;unitCode&quot;: &quot;A String&quot;, # Unit of the given property. For example, &quot;Pixels&quot; for a TV product. Maximum string size is 256B.
      },
    ],
    &quot;color&quot;: &quot;A String&quot;, # [Color](https://support.google.com/merchants/answer/6324487) of the item. For example, &quot;red&quot;.
    &quot;condition&quot;: &quot;A String&quot;, # [Condition](https://support.google.com/merchants/answer/6324469) or state of the item. For example, &quot;new&quot; or &quot;used&quot;.
    &quot;costOfGoodsSold&quot;: { # The price represented as a number and currency. # Cost of goods sold. Used for gross profit reporting.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;customLabel0&quot;: &quot;A String&quot;, # [Custom label 0](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;customLabel1&quot;: &quot;A String&quot;, # [Custom label 1](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;customLabel2&quot;: &quot;A String&quot;, # [Custom label 2](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;customLabel3&quot;: &quot;A String&quot;, # [Custom label 3](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;customLabel4&quot;: &quot;A String&quot;, # [Custom label 4](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;description&quot;: &quot;A String&quot;, # Description of the item.
    &quot;disclosureDate&quot;: &quot;A String&quot;, # The date time when an offer becomes visible in search results across Google’s YouTube surfaces, in [ISO 8601](http://en.wikipedia.org/wiki/ISO_8601) format. See [Disclosure date](https://support.google.com/merchants/answer/13034208) for more information.
    &quot;displayAdsId&quot;: &quot;A String&quot;, # An identifier for an item for dynamic remarketing campaigns.
    &quot;displayAdsLink&quot;: &quot;A String&quot;, # URL directly to your item&#x27;s landing page for dynamic remarketing campaigns.
    &quot;displayAdsSimilarIds&quot;: [ # Advertiser-specified recommendations. For more information, see [Display ads attribute specification](https://support.google.com/merchants/answer/6069387).
      &quot;A String&quot;,
    ],
    &quot;displayAdsTitle&quot;: &quot;A String&quot;, # Title of an item for dynamic remarketing campaigns.
    &quot;displayAdsValue&quot;: 3.14, # Offer margin for dynamic remarketing campaigns. For more information, see [Display ads attribute](https://support.google.com/merchants/answer/6069387).
    &quot;energyEfficiencyClass&quot;: &quot;A String&quot;, # The energy efficiency class as defined in EU directive 2010/30/EU.
    &quot;excludedDestinations&quot;: [ # Destinations also known as [Marketing methods](https://support.google.com/merchants/answer/15130232) selections. The list of destinations to exclude for this target (corresponds to unchecked check boxes in Merchant Center). For more information, see [Excluded destination](https://support.google.com/merchants/answer/6324486). Note: We recommend setting destinations on datasources level for most use cases. Use this field within products to only setup exceptions.
      &quot;A String&quot;,
    ],
    &quot;expirationDate&quot;: &quot;A String&quot;, # Date on which the item should expire, as specified upon insertion, in [ISO 8601](http://en.wikipedia.org/wiki/ISO_8601) format. The actual expiration date is exposed in `productstatuses` as [googleExpirationDate](https://support.google.com/merchants/answer/6324499) and might be earlier if `expirationDate` is too far in the future.
    &quot;externalSellerId&quot;: &quot;A String&quot;, # Required for multi-seller accounts. Use this attribute if you&#x27;re a marketplace uploading products for various sellers to your multi-seller account.
    &quot;freeShippingThreshold&quot;: [ # Conditions to be met for a product to have free shipping.
      { # Conditions to be met for a product to have free shipping.
        &quot;country&quot;: &quot;A String&quot;, # The [CLDR territory code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) of the country to which an item will ship.
        &quot;priceThreshold&quot;: { # The price represented as a number and currency. # The minimum product price for the shipping cost to become free. Represented as a number.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
      },
    ],
    &quot;gender&quot;: &quot;A String&quot;, # Target [gender](https://support.google.com/merchants/answer/6324479) of the item. For example, &quot;male&quot; or &quot;female&quot;.
    &quot;googleProductCategory&quot;: &quot;A String&quot;, # Google&#x27;s category of the item (see [Google product taxonomy](https://support.google.com/merchants/answer/1705911)). When querying products, this field will contain the user provided value. There is currently no way to get back the auto assigned google product categories through the API.
    &quot;gtin&quot;: [ # Global Trade Item Numbers ([GTIN](https://support.google.com/merchants/answer/188494#gtin)) of the item. You can provide up to 10 GTINs. Deprecated: Use `gtins` instead.
      &quot;A String&quot;,
    ],
    &quot;gtins&quot;: [ # A list of Global Trade Item Numbers ([GTIN](https://support.google.com/merchants/answer/188494#gtin)) of the item. You can provide up to 10 GTINs.
      &quot;A String&quot;,
    ],
    &quot;identifierExists&quot;: True or False, # Set this value to false when the item does not have unique product identifiers appropriate to its category, such as GTIN, MPN, and brand. Defaults to true, if not provided.
    &quot;imageLink&quot;: &quot;A String&quot;, # URL of an image of the item.
    &quot;includedDestinations&quot;: [ # Destinations also known as [Marketing methods](https://support.google.com/merchants/answer/15130232) selections. The list of destinations to include for this target (corresponds to checked check boxes in Merchant Center). Default destinations are always included unless provided in `excludedDestinations`. For more information, see [Included destination](https://support.google.com/merchants/answer/7501026). Note: We recommend setting destinations on datasources level for most use cases. Use this field within products to only setup exceptions.
      &quot;A String&quot;,
    ],
    &quot;installment&quot;: { # A message that represents installment. # Number and amount of installments to pay for an item.
      &quot;amount&quot;: { # The price represented as a number and currency. # The amount the buyer has to pay per month.
        &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
        &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
      },
      &quot;creditType&quot;: &quot;A String&quot;, # Type of installment payments. Supported values are: * &quot;`finance`&quot; * &quot;`lease`&quot;
      &quot;downpayment&quot;: { # The price represented as a number and currency. # The up-front down payment amount the buyer has to pay.
        &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
        &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
      },
      &quot;months&quot;: &quot;A String&quot;, # The number of installments the buyer has to pay.
    },
    &quot;isBundle&quot;: True or False, # Whether the item is a business-defined sub-API. A [sub-API] (https://support.google.com/merchants/answer/6324449) is a custom grouping of different products sold by a business for a single price.
    &quot;itemGroupId&quot;: &quot;A String&quot;, # Shared identifier for all variants of the same product.
    &quot;lifestyleImageLinks&quot;: [ # Additional URLs of lifestyle images of the item, used to explicitly identify images that showcase your item in a real-world context. See the [Help Center article](https://support.google.com/merchants/answer/9103186) for more information.
      &quot;A String&quot;,
    ],
    &quot;link&quot;: &quot;A String&quot;, # URL directly linking to your item&#x27;s page on your online store.
    &quot;linkTemplate&quot;: &quot;A String&quot;, # [Link template](https://support.google.com/merchants/answer/13871172) for business hosted local storefront.
    &quot;loyaltyPoints&quot;: { # A message that represents loyalty points. # Loyalty points that users receive after purchasing the item. Japan only.
      &quot;name&quot;: &quot;A String&quot;, # Name of loyalty points program. It is recommended to limit the name to 12 full-width characters or 24 Roman characters.
      &quot;pointsValue&quot;: &quot;A String&quot;, # The retailer&#x27;s loyalty points in absolute value.
      &quot;ratio&quot;: 3.14, # The ratio of a point when converted to currency. Google assumes currency based on Merchant Center settings. If ratio is left out, it defaults to 1.0.
    },
    &quot;loyaltyPrograms&quot;: [ # A list of loyalty program information that is used to surface loyalty benefits (for example, better pricing, points, etc) to the user of this item.
      { # A message that represents loyalty program.
        &quot;cashbackForFutureUse&quot;: { # The price represented as a number and currency. # The cashback that can be used for future purchases.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
        &quot;loyaltyPoints&quot;: &quot;A String&quot;, # The amount of loyalty points earned on a purchase.
        &quot;memberPriceEffectiveDate&quot;: { # Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time. # A date range during which the item is eligible for member price. If not specified, the member price is always applicable. The date range is represented by a pair of ISO 8601 dates separated by a space, comma, or slash.
          &quot;endTime&quot;: &quot;A String&quot;, # Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end.
          &quot;startTime&quot;: &quot;A String&quot;, # Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start.
        },
        &quot;price&quot;: { # The price represented as a number and currency. # The price for members of the given tier, that is, the instant discount price. Must be smaller or equal to the regular price.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
        &quot;programLabel&quot;: &quot;A String&quot;, # The label of the loyalty program. This is an internal label that uniquely identifies the relationship between a business entity and a loyalty program entity. The label must be provided so that the system can associate the assets below (for example, price and points) with a business. The corresponding program must be linked to the Merchant Center account.
        &quot;shippingLabel&quot;: &quot;A String&quot;, # The label of the shipping benefit. If the field has value, this offer has loyalty shipping benefit. If the field value isn&#x27;t provided, the item is not eligible for loyalty shipping for the given loyalty tier.
        &quot;tierLabel&quot;: &quot;A String&quot;, # The label of the tier within the loyalty program. Must match one of the labels within the program.
      },
    ],
    &quot;material&quot;: &quot;A String&quot;, # The [material](https://support.google.com/merchants/answer/6324410) of which the item is made. For example, &quot;Leather&quot; or &quot;Cotton&quot;.
    &quot;maxEnergyEfficiencyClass&quot;: &quot;A String&quot;, # The energy efficiency class as defined in EU directive 2010/30/EU.
    &quot;maxHandlingTime&quot;: &quot;A String&quot;, # Maximal product handling time (in business days).
    &quot;maximumRetailPrice&quot;: { # The price represented as a number and currency. # Maximum retail price (MRP) of the item. Applicable to India only.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;minEnergyEfficiencyClass&quot;: &quot;A String&quot;, # The energy efficiency class as defined in EU directive 2010/30/EU.
    &quot;minHandlingTime&quot;: &quot;A String&quot;, # Minimal product handling time (in business days).
    &quot;mobileLink&quot;: &quot;A String&quot;, # URL for the mobile-optimized version of your item&#x27;s landing page.
    &quot;mobileLinkTemplate&quot;: &quot;A String&quot;, # [Link template](https://support.google.com/merchants/answer/13870216) for business hosted local storefront optimized for mobile devices.
    &quot;mpn&quot;: &quot;A String&quot;, # Manufacturer Part Number ([MPN](https://support.google.com/merchants/answer/188494#mpn)) of the item.
    &quot;multipack&quot;: &quot;A String&quot;, # The number of identical products in a business-defined multipack.
    &quot;pattern&quot;: &quot;A String&quot;, # The item&#x27;s [pattern](https://support.google.com/merchants/answer/6324483). For example, polka dots.
    &quot;pause&quot;: &quot;A String&quot;, # Publication of this item will be temporarily [paused](https://support.google.com/merchants/answer/11909930).
    &quot;pickupMethod&quot;: &quot;A String&quot;, # The [pickup](https://support.google.com/merchants/answer/14634021) option for the item.
    &quot;pickupSla&quot;: &quot;A String&quot;, # Item store pickup timeline. For more information, see [Pickup SLA](https://support.google.com/merchants/answer/14635400).
    &quot;price&quot;: { # The price represented as a number and currency. # Price of the item.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;productDetails&quot;: [ # Technical specification or additional product details.
      { # The product details.
        &quot;attributeName&quot;: &quot;A String&quot;, # The name of the product detail.
        &quot;attributeValue&quot;: &quot;A String&quot;, # The value of the product detail.
        &quot;sectionName&quot;: &quot;A String&quot;, # The section header used to group a set of product details.
      },
    ],
    &quot;productHeight&quot;: { # The dimension of the product. # The height of the product in the units provided. The value must be between 0 (exclusive) and 3000 (inclusive).
      &quot;unit&quot;: &quot;A String&quot;, # Required. The dimension units. Acceptable values are: * &quot;`in`&quot; * &quot;`cm`&quot;
      &quot;value&quot;: 3.14, # Required. The dimension value represented as a number. The value can have a maximum precision of four decimal places.
    },
    &quot;productHighlights&quot;: [ # Bullet points describing the most relevant [product highlights](https://support.google.com/merchants/answer/9216100).
      &quot;A String&quot;,
    ],
    &quot;productLength&quot;: { # The dimension of the product. # The length of the product in the units provided. The value must be between 0 (exclusive) and 3000 (inclusive).
      &quot;unit&quot;: &quot;A String&quot;, # Required. The dimension units. Acceptable values are: * &quot;`in`&quot; * &quot;`cm`&quot;
      &quot;value&quot;: 3.14, # Required. The dimension value represented as a number. The value can have a maximum precision of four decimal places.
    },
    &quot;productTypes&quot;: [ # Categories of the item (formatted as in [product data specification](https://support.google.com/merchants/answer/7052112#product_category)).
      &quot;A String&quot;,
    ],
    &quot;productWeight&quot;: { # The weight of the product. # The weight of the product in the units provided. The value must be between 0 (exclusive) and 2000 (inclusive).
      &quot;unit&quot;: &quot;A String&quot;, # Required. The weight unit. Acceptable values are: * &quot;`g`&quot; * &quot;`kg`&quot; * &quot;`oz`&quot; * &quot;`lb`&quot;
      &quot;value&quot;: 3.14, # Required. The weight represented as a number. The weight can have a maximum precision of four decimal places.
    },
    &quot;productWidth&quot;: { # The dimension of the product. # The width of the product in the units provided. The value must be between 0 (exclusive) and 3000 (inclusive).
      &quot;unit&quot;: &quot;A String&quot;, # Required. The dimension units. Acceptable values are: * &quot;`in`&quot; * &quot;`cm`&quot;
      &quot;value&quot;: 3.14, # Required. The dimension value represented as a number. The value can have a maximum precision of four decimal places.
    },
    &quot;promotionIds&quot;: [ # The unique ID of a promotion.
      &quot;A String&quot;,
    ],
    &quot;salePrice&quot;: { # The price represented as a number and currency. # Advertised sale price of the item.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;salePriceEffectiveDate&quot;: { # Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time. # Date range during which the item is on sale, see [product data specification](https://support.google.com/merchants/answer/7052112#price_and_availability).
      &quot;endTime&quot;: &quot;A String&quot;, # Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end.
      &quot;startTime&quot;: &quot;A String&quot;, # Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start.
    },
    &quot;sellOnGoogleQuantity&quot;: &quot;A String&quot;, # The quantity of the product that is available for selling on Google. Supported only for online products.
    &quot;shipping&quot;: [ # Shipping rules.
      { # The Shipping of the product.
        &quot;country&quot;: &quot;A String&quot;, # The [CLDR territory code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) of the country to which an item will ship.
        &quot;locationGroupName&quot;: &quot;A String&quot;, # The location where the shipping is applicable, represented by a location group name.
        &quot;locationId&quot;: &quot;A String&quot;, # The numeric ID of a location that the shipping rate applies to as defined in the [AdWords API](https://developers.google.com/adwords/api/docs/appendix/geotargeting).
        &quot;maxHandlingTime&quot;: &quot;A String&quot;, # Maximum handling time (inclusive) between when the order is received and shipped in business days. 0 means that the order is shipped on the same day as it is received if it happens before the cut-off time. Both maxHandlingTime and maxTransitTime are required if providing shipping speeds. minHandlingTime is optional if maxHandlingTime is present.
        &quot;maxTransitTime&quot;: &quot;A String&quot;, # Maximum transit time (inclusive) between when the order has shipped and when it is delivered in business days. 0 means that the order is delivered on the same day as it ships. Both maxHandlingTime and maxTransitTime are required if providing shipping speeds. minTransitTime is optional if maxTransitTime is present.
        &quot;minHandlingTime&quot;: &quot;A String&quot;, # Minimum handling time (inclusive) between when the order is received and shipped in business days. 0 means that the order is shipped on the same day as it is received if it happens before the cut-off time. minHandlingTime can only be present together with maxHandlingTime; but it is not required if maxHandlingTime is present.
        &quot;minTransitTime&quot;: &quot;A String&quot;, # Minimum transit time (inclusive) between when the order has shipped and when it is delivered in business days. 0 means that the order is delivered on the same day as it ships. minTransitTime can only be present together with maxTransitTime; but it is not required if maxTransitTime is present.
        &quot;postalCode&quot;: &quot;A String&quot;, # The postal code range that the shipping rate applies to, represented by a postal code, a postal code prefix followed by a * wildcard, a range between two postal codes or two postal code prefixes of equal length.
        &quot;price&quot;: { # The price represented as a number and currency. # Fixed shipping price, represented as a number.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
        &quot;region&quot;: &quot;A String&quot;, # The geographic region to which a shipping rate applies. See [region](https://support.google.com/merchants/answer/6324484) for more information.
        &quot;service&quot;: &quot;A String&quot;, # A free-form description of the service class or delivery speed.
      },
    ],
    &quot;shippingHeight&quot;: { # The ShippingDimension of the product. # Height of the item for shipping.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of value.
      &quot;value&quot;: 3.14, # The dimension of the product used to calculate the shipping cost of the item.
    },
    &quot;shippingLabel&quot;: &quot;A String&quot;, # The shipping label of the product, used to group product in account-level shipping rules.
    &quot;shippingLength&quot;: { # The ShippingDimension of the product. # Length of the item for shipping.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of value.
      &quot;value&quot;: 3.14, # The dimension of the product used to calculate the shipping cost of the item.
    },
    &quot;shippingWeight&quot;: { # The ShippingWeight of the product. # Weight of the item for shipping.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of value.
      &quot;value&quot;: 3.14, # The weight of the product used to calculate the shipping cost of the item.
    },
    &quot;shippingWidth&quot;: { # The ShippingDimension of the product. # Width of the item for shipping.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of value.
      &quot;value&quot;: 3.14, # The dimension of the product used to calculate the shipping cost of the item.
    },
    &quot;shoppingAdsExcludedCountries&quot;: [ # List of country codes [(ISO 3166-1 alpha-2)](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) to exclude the offer from Shopping Ads destination. Countries from this list are removed from countries configured in data source settings.
      &quot;A String&quot;,
    ],
    &quot;size&quot;: &quot;A String&quot;, # Size of the item. Only one value is allowed. For variants with different sizes, insert a separate product for each size with the same `itemGroupId` value, see [Size](https://support.google.com/merchants/answer/6324492).
    &quot;sizeSystem&quot;: &quot;A String&quot;, # System in which the size is specified. Recommended for apparel items. For example, &quot;US&quot;, &quot;UK&quot;, &quot;DE&quot;. For more information, see [Size system](https://support.google.com/merchants/answer/6324502).
    &quot;sizeTypes&quot;: [ # The cut of the item. It can be used to represent combined size types for apparel items. Maximum two of size types can be provided, see [Size type](https://support.google.com/merchants/answer/6324497). For example, &quot;petite&quot;, &quot;plus size&quot;.
      &quot;A String&quot;,
    ],
    &quot;structuredDescription&quot;: { # Structured description, for algorithmically (AI)-generated descriptions. # Structured description, for algorithmically (AI)-generated descriptions.
      &quot;content&quot;: &quot;A String&quot;, # The description text Maximum length is 5000 characters
      &quot;digitalSourceType&quot;: &quot;A String&quot;, # The digital source type, for example &quot;trained_algorithmic_media&quot;. Following [IPTC](https://cv.iptc.org/newscodes/digitalsourcetype). Maximum length is 40 characters.
    },
    &quot;structuredTitle&quot;: { # Structured title, for algorithmically (AI)-generated titles. # Structured title, for algorithmically (AI)-generated titles.
      &quot;content&quot;: &quot;A String&quot;, # The title text Maximum length is 150 characters
      &quot;digitalSourceType&quot;: &quot;A String&quot;, # The digital source type, for example &quot;trained_algorithmic_media&quot;. Following [IPTC](https://cv.iptc.org/newscodes/digitalsourcetype). Maximum length is 40 characters.
    },
    &quot;subscriptionCost&quot;: { # The SubscriptionCost of the product. # Number of periods (months or years) and amount of payment per period for an item with an associated subscription contract.
      &quot;amount&quot;: { # The price represented as a number and currency. # The amount the buyer has to pay per subscription period.
        &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
        &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
      },
      &quot;period&quot;: &quot;A String&quot;, # The type of subscription period. Supported values are: * &quot;`month`&quot; * &quot;`year`&quot;
      &quot;periodLength&quot;: &quot;A String&quot;, # The number of subscription periods the buyer has to pay.
    },
    &quot;sustainabilityIncentives&quot;: [ # The list of sustainability incentive programs.
      { # Information regarding sustainability-related incentive programs such as rebates or tax relief.
        &quot;amount&quot;: { # The price represented as a number and currency. # The fixed amount of the incentive.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
        &quot;percentage&quot;: 3.14, # The percentage of the sale price that the incentive is applied to.
        &quot;type&quot;: &quot;A String&quot;, # Sustainability incentive program.
      },
    ],
    &quot;taxCategory&quot;: &quot;A String&quot;, # The [tax category](https://support.google.com/merchants/answer/7569847) of the product.
    &quot;taxes&quot;: [ # Tax information.
      { # The Tax of the product.
        &quot;country&quot;: &quot;A String&quot;, # The country within which the item is taxed, specified as a [CLDR territory code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml).
        &quot;locationId&quot;: &quot;A String&quot;, # The numeric ID of a location that the tax rate applies to as defined in the [AdWords API](https://developers.google.com/adwords/api/docs/appendix/geotargeting).
        &quot;postalCode&quot;: &quot;A String&quot;, # The postal code range that the tax rate applies to, represented by a ZIP code, a ZIP code prefix using * wildcard, a range between two ZIP codes or two ZIP code prefixes of equal length. Examples: 94114, 94*, 94002-95460, 94*-95*.
        &quot;rate&quot;: 3.14, # The percentage of tax rate that applies to the item price.
        &quot;region&quot;: &quot;A String&quot;, # The geographic region to which the tax rate applies.
        &quot;taxShip&quot;: True or False, # Set to true if tax is charged on shipping.
      },
    ],
    &quot;title&quot;: &quot;A String&quot;, # Title of the item.
    &quot;transitTimeLabel&quot;: &quot;A String&quot;, # The transit time label of the product, used to group product in account-level transit time tables.
    &quot;unitPricingBaseMeasure&quot;: { # The UnitPricingBaseMeasure of the product. # The preference of the denominator of the unit price.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of the denominator.
      &quot;value&quot;: &quot;A String&quot;, # The denominator of the unit price.
    },
    &quot;unitPricingMeasure&quot;: { # The UnitPricingMeasure of the product. # The measure and dimension of an item.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of the measure.
      &quot;value&quot;: 3.14, # The measure of an item.
    },
    &quot;virtualModelLink&quot;: &quot;A String&quot;, # URL of the 3D image of the item. See the [Help Center article](https://support.google.com/merchants/answer/13674896) for more information.
  },
  &quot;channel&quot;: &quot;A String&quot;, # Immutable. The [channel](https://support.google.com/merchants/answer/7361332) of the product.
  &quot;contentLanguage&quot;: &quot;A String&quot;, # Required. Immutable. The two-letter [ISO 639-1](http://en.wikipedia.org/wiki/ISO_639-1) language code for the product.
  &quot;customAttributes&quot;: [ # Optional. A list of custom (merchant-provided) attributes. It can also be used for submitting any attribute of the data specification in its generic form (for example, `{ &quot;name&quot;: &quot;size type&quot;, &quot;value&quot;: &quot;regular&quot; }`). This is useful for submitting attributes not explicitly exposed by the API. Maximum allowed number of characters for each custom attribute is 10240 (represents sum of characters for name and value). Maximum 2500 custom attributes can be set per product, with total size of 102.4kB. Underscores in custom attribute names are replaced by spaces upon insertion.
    { # A message that represents custom attributes. Exactly one of `value` or `group_values` must not be empty.
      &quot;groupValues&quot;: [ # Subattributes within this attribute group. If `group_values` is not empty, `value` must be empty.
        # Object with schema name: CustomAttribute
      ],
      &quot;name&quot;: &quot;A String&quot;, # The name of the attribute.
      &quot;value&quot;: &quot;A String&quot;, # The value of the attribute. If `value` is not empty, `group_values` must be empty.
    },
  ],
  &quot;feedLabel&quot;: &quot;A String&quot;, # Required. Immutable. The feed label that lets you categorize and identify your products. The maximum allowed characters are 20, and the supported characters are `A-Z`, `0-9`, hyphen, and underscore. The feed label must not include any spaces. For more information, see [Using feed labels](//support.google.com/merchants/answer/14994087).
  &quot;name&quot;: &quot;A String&quot;, # Identifier. The name of the product input. Format: `accounts/{account}/productInputs/{productinput}` where the last section `productinput` consists of: `content_language~feed_label~offer_id` example for product input name is `accounts/123/productInputs/en~US~sku123`. A legacy local product input name would be `accounts/123/productInputs/local~en~US~sku123`. Note: For calls to the v1beta version, the `productInput` section consists of: `channel~content_language~feed_label~offer_id`, for example: `accounts/123/productInputs/online~en~US~sku123`.
  &quot;offerId&quot;: &quot;A String&quot;, # Required. Immutable. Your unique identifier for the product. This is the same for the product input and processed product. Leading and trailing whitespaces are stripped and multiple whitespaces are replaced by a single whitespace upon submission. See the [products data specification](https://support.google.com/merchants/answer/188494#id) for details.
  &quot;product&quot;: &quot;A String&quot;, # Output only. The name of the processed product. Format: `accounts/{account}/products/{product}`
  &quot;versionNumber&quot;: &quot;A String&quot;, # Optional. Immutable. Represents the existing version (freshness) of the product, which can be used to preserve the right order when multiple updates are done at the same time. If set, the insertion is prevented when version number is lower than the current version number of the existing product. Re-insertion (for example, product refresh after 30 days) can be performed with the current `version_number`. Only supported for insertions into primary data sources. Do not set this field for updates. Do not set this field for insertions into supplemental data sources. If the operation is prevented, the aborted exception will be thrown.
}

  dataSource: string, Required. The primary or supplemental product data source name. If the product already exists and data source provided is different, then the product will be moved to a new data source. For more information, see [Create a primary data source](/merchant/api/guides/data-sources/api-sources#create-primary-data-source). Only API data sources are supported. Format: `accounts/{account}/dataSources/{datasource}`. For example, `accounts/123456/dataSources/104628`.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # This resource represents input data you submit for a product, not the processed product that you see in Merchant Center, in Shopping ads, or across Google surfaces. Product inputs, rules and supplemental data source data are combined to create the processed Product. For more information, see [Manage products](/merchant/api/guides/products/overview). Required product input attributes to pass data validation checks are primarily defined in the [Products Data Specification](https://support.google.com/merchants/answer/188494). The following attributes are required: feedLabel, contentLanguage and offerId. After inserting, updating, or deleting a product input, it may take several minutes before the processed product can be retrieved. All fields in the product input and its sub-messages match the English name of their corresponding attribute in the [Products Data Specification](https://support.google.com/merchants/answer/188494) with [some exceptions](https://support.google.com/merchants/answer/7052112). The following reference documentation lists the field names in the **camelCase** casing style while the Products Data Specification lists the names in the **snake_case** casing style.
  &quot;attributes&quot;: { # Attributes. # Optional. A list of product attributes.
    &quot;additionalImageLinks&quot;: [ # Additional URLs of images of the item.
      &quot;A String&quot;,
    ],
    &quot;adsGrouping&quot;: &quot;A String&quot;, # Used to group items in an arbitrary way. Only for CPA, discouraged otherwise. For more information, see [Display ads attribute](https://support.google.com/merchants/answer/6069387).
    &quot;adsLabels&quot;: [ # Similar to ads_grouping, but only works on CPC.
      &quot;A String&quot;,
    ],
    &quot;adsRedirect&quot;: &quot;A String&quot;, # Allows advertisers to override the item URL when the product is shown within the context of Product ads.
    &quot;adult&quot;: True or False, # Set to true if the item is targeted towards adults.
    &quot;ageGroup&quot;: &quot;A String&quot;, # Target [age group](https://support.google.com/merchants/answer/6324463) of the item.
    &quot;autoPricingMinPrice&quot;: { # The price represented as a number and currency. # A safeguard in the [automated discounts] (https://support.google.com/merchants/answer/10295759) and [&quot;dynamic promotions&quot;](https://support.google.com/merchants/answer/13949249) projects, ensuring that discounts on business offers do not fall below this value, thereby preserving the offer&#x27;s value and profitability.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;availability&quot;: &quot;A String&quot;, # [Availability](https://support.google.com/merchants/answer/6324448) status of the item. For example, &quot;in_stock&quot; or &quot;out_of_stock&quot;.
    &quot;availabilityDate&quot;: &quot;A String&quot;, # The day a pre-ordered product becomes available for delivery, in [ISO 8601](http://en.wikipedia.org/wiki/ISO_8601) format.
    &quot;brand&quot;: &quot;A String&quot;, # [Brand](https://support.google.com/merchants/answer/6324351) of the item. For example, &quot;Google&quot;.
    &quot;canonicalLink&quot;: &quot;A String&quot;, # URL for the canonical version of your item&#x27;s landing page.
    &quot;certifications&quot;: [ # Product Certifications, for example for energy efficiency labeling of products recorded in the [EU EPREL](https://eprel.ec.europa.eu/screen/home) database. See the [Help Center](https://support.google.com/merchants/answer/13528839) article for more information.
      { # Product [certification](https://support.google.com/merchants/answer/13528839), initially introduced for EU energy efficiency labeling compliance using the EU EPREL database.
        &quot;certificationAuthority&quot;: &quot;A String&quot;, # The certification authority, for example &quot;European_Commission&quot;. Maximum length is 2000 characters.
        &quot;certificationCode&quot;: &quot;A String&quot;, # The certification code. Maximum length is 2000 characters.
        &quot;certificationName&quot;: &quot;A String&quot;, # The name of the certification, for example &quot;EPREL&quot;. Maximum length is 2000 characters.
        &quot;certificationValue&quot;: &quot;A String&quot;, # The certification value (also known as class, level or grade), for example &quot;A+&quot;, &quot;C&quot;, &quot;gold&quot;. Maximum length is 2000 characters.
      },
    ],
    &quot;cloudExportAdditionalProperties&quot;: [ # Extra fields to export to the Cloud Retail program.
      { # Product property for the Cloud Retail API. For example, properties for a TV product could be &quot;Screen-Resolution&quot; or &quot;Screen-Size&quot;.
        &quot;boolValue&quot;: True or False, # Boolean value of the given property. For example for a TV product, &quot;True&quot; or &quot;False&quot; if the screen is UHD.
        &quot;floatValue&quot;: [ # Float values of the given property. For example for a TV product 1.2345. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order.
          3.14,
        ],
        &quot;intValue&quot;: [ # Integer values of the given property. For example, 1080 for a TV product&#x27;s Screen Resolution. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order.
          &quot;A String&quot;,
        ],
        &quot;maxValue&quot;: 3.14, # Maximum float value of the given property. For example for a TV product 100.00.
        &quot;minValue&quot;: 3.14, # Minimum float value of the given property. For example for a TV product 1.00.
        &quot;propertyName&quot;: &quot;A String&quot;, # Name of the given property. For example, &quot;Screen-Resolution&quot; for a TV product. Maximum string size is 256 characters.
        &quot;textValue&quot;: [ # Text value of the given property. For example, &quot;8K(UHD)&quot; could be a text value for a TV product. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order. Maximum string size is 256 characters.
          &quot;A String&quot;,
        ],
        &quot;unitCode&quot;: &quot;A String&quot;, # Unit of the given property. For example, &quot;Pixels&quot; for a TV product. Maximum string size is 256B.
      },
    ],
    &quot;color&quot;: &quot;A String&quot;, # [Color](https://support.google.com/merchants/answer/6324487) of the item. For example, &quot;red&quot;.
    &quot;condition&quot;: &quot;A String&quot;, # [Condition](https://support.google.com/merchants/answer/6324469) or state of the item. For example, &quot;new&quot; or &quot;used&quot;.
    &quot;costOfGoodsSold&quot;: { # The price represented as a number and currency. # Cost of goods sold. Used for gross profit reporting.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;customLabel0&quot;: &quot;A String&quot;, # [Custom label 0](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;customLabel1&quot;: &quot;A String&quot;, # [Custom label 1](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;customLabel2&quot;: &quot;A String&quot;, # [Custom label 2](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;customLabel3&quot;: &quot;A String&quot;, # [Custom label 3](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;customLabel4&quot;: &quot;A String&quot;, # [Custom label 4](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;description&quot;: &quot;A String&quot;, # Description of the item.
    &quot;disclosureDate&quot;: &quot;A String&quot;, # The date time when an offer becomes visible in search results across Google’s YouTube surfaces, in [ISO 8601](http://en.wikipedia.org/wiki/ISO_8601) format. See [Disclosure date](https://support.google.com/merchants/answer/13034208) for more information.
    &quot;displayAdsId&quot;: &quot;A String&quot;, # An identifier for an item for dynamic remarketing campaigns.
    &quot;displayAdsLink&quot;: &quot;A String&quot;, # URL directly to your item&#x27;s landing page for dynamic remarketing campaigns.
    &quot;displayAdsSimilarIds&quot;: [ # Advertiser-specified recommendations. For more information, see [Display ads attribute specification](https://support.google.com/merchants/answer/6069387).
      &quot;A String&quot;,
    ],
    &quot;displayAdsTitle&quot;: &quot;A String&quot;, # Title of an item for dynamic remarketing campaigns.
    &quot;displayAdsValue&quot;: 3.14, # Offer margin for dynamic remarketing campaigns. For more information, see [Display ads attribute](https://support.google.com/merchants/answer/6069387).
    &quot;energyEfficiencyClass&quot;: &quot;A String&quot;, # The energy efficiency class as defined in EU directive 2010/30/EU.
    &quot;excludedDestinations&quot;: [ # Destinations also known as [Marketing methods](https://support.google.com/merchants/answer/15130232) selections. The list of destinations to exclude for this target (corresponds to unchecked check boxes in Merchant Center). For more information, see [Excluded destination](https://support.google.com/merchants/answer/6324486). Note: We recommend setting destinations on datasources level for most use cases. Use this field within products to only setup exceptions.
      &quot;A String&quot;,
    ],
    &quot;expirationDate&quot;: &quot;A String&quot;, # Date on which the item should expire, as specified upon insertion, in [ISO 8601](http://en.wikipedia.org/wiki/ISO_8601) format. The actual expiration date is exposed in `productstatuses` as [googleExpirationDate](https://support.google.com/merchants/answer/6324499) and might be earlier if `expirationDate` is too far in the future.
    &quot;externalSellerId&quot;: &quot;A String&quot;, # Required for multi-seller accounts. Use this attribute if you&#x27;re a marketplace uploading products for various sellers to your multi-seller account.
    &quot;freeShippingThreshold&quot;: [ # Conditions to be met for a product to have free shipping.
      { # Conditions to be met for a product to have free shipping.
        &quot;country&quot;: &quot;A String&quot;, # The [CLDR territory code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) of the country to which an item will ship.
        &quot;priceThreshold&quot;: { # The price represented as a number and currency. # The minimum product price for the shipping cost to become free. Represented as a number.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
      },
    ],
    &quot;gender&quot;: &quot;A String&quot;, # Target [gender](https://support.google.com/merchants/answer/6324479) of the item. For example, &quot;male&quot; or &quot;female&quot;.
    &quot;googleProductCategory&quot;: &quot;A String&quot;, # Google&#x27;s category of the item (see [Google product taxonomy](https://support.google.com/merchants/answer/1705911)). When querying products, this field will contain the user provided value. There is currently no way to get back the auto assigned google product categories through the API.
    &quot;gtin&quot;: [ # Global Trade Item Numbers ([GTIN](https://support.google.com/merchants/answer/188494#gtin)) of the item. You can provide up to 10 GTINs. Deprecated: Use `gtins` instead.
      &quot;A String&quot;,
    ],
    &quot;gtins&quot;: [ # A list of Global Trade Item Numbers ([GTIN](https://support.google.com/merchants/answer/188494#gtin)) of the item. You can provide up to 10 GTINs.
      &quot;A String&quot;,
    ],
    &quot;identifierExists&quot;: True or False, # Set this value to false when the item does not have unique product identifiers appropriate to its category, such as GTIN, MPN, and brand. Defaults to true, if not provided.
    &quot;imageLink&quot;: &quot;A String&quot;, # URL of an image of the item.
    &quot;includedDestinations&quot;: [ # Destinations also known as [Marketing methods](https://support.google.com/merchants/answer/15130232) selections. The list of destinations to include for this target (corresponds to checked check boxes in Merchant Center). Default destinations are always included unless provided in `excludedDestinations`. For more information, see [Included destination](https://support.google.com/merchants/answer/7501026). Note: We recommend setting destinations on datasources level for most use cases. Use this field within products to only setup exceptions.
      &quot;A String&quot;,
    ],
    &quot;installment&quot;: { # A message that represents installment. # Number and amount of installments to pay for an item.
      &quot;amount&quot;: { # The price represented as a number and currency. # The amount the buyer has to pay per month.
        &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
        &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
      },
      &quot;creditType&quot;: &quot;A String&quot;, # Type of installment payments. Supported values are: * &quot;`finance`&quot; * &quot;`lease`&quot;
      &quot;downpayment&quot;: { # The price represented as a number and currency. # The up-front down payment amount the buyer has to pay.
        &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
        &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
      },
      &quot;months&quot;: &quot;A String&quot;, # The number of installments the buyer has to pay.
    },
    &quot;isBundle&quot;: True or False, # Whether the item is a business-defined sub-API. A [sub-API] (https://support.google.com/merchants/answer/6324449) is a custom grouping of different products sold by a business for a single price.
    &quot;itemGroupId&quot;: &quot;A String&quot;, # Shared identifier for all variants of the same product.
    &quot;lifestyleImageLinks&quot;: [ # Additional URLs of lifestyle images of the item, used to explicitly identify images that showcase your item in a real-world context. See the [Help Center article](https://support.google.com/merchants/answer/9103186) for more information.
      &quot;A String&quot;,
    ],
    &quot;link&quot;: &quot;A String&quot;, # URL directly linking to your item&#x27;s page on your online store.
    &quot;linkTemplate&quot;: &quot;A String&quot;, # [Link template](https://support.google.com/merchants/answer/13871172) for business hosted local storefront.
    &quot;loyaltyPoints&quot;: { # A message that represents loyalty points. # Loyalty points that users receive after purchasing the item. Japan only.
      &quot;name&quot;: &quot;A String&quot;, # Name of loyalty points program. It is recommended to limit the name to 12 full-width characters or 24 Roman characters.
      &quot;pointsValue&quot;: &quot;A String&quot;, # The retailer&#x27;s loyalty points in absolute value.
      &quot;ratio&quot;: 3.14, # The ratio of a point when converted to currency. Google assumes currency based on Merchant Center settings. If ratio is left out, it defaults to 1.0.
    },
    &quot;loyaltyPrograms&quot;: [ # A list of loyalty program information that is used to surface loyalty benefits (for example, better pricing, points, etc) to the user of this item.
      { # A message that represents loyalty program.
        &quot;cashbackForFutureUse&quot;: { # The price represented as a number and currency. # The cashback that can be used for future purchases.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
        &quot;loyaltyPoints&quot;: &quot;A String&quot;, # The amount of loyalty points earned on a purchase.
        &quot;memberPriceEffectiveDate&quot;: { # Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time. # A date range during which the item is eligible for member price. If not specified, the member price is always applicable. The date range is represented by a pair of ISO 8601 dates separated by a space, comma, or slash.
          &quot;endTime&quot;: &quot;A String&quot;, # Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end.
          &quot;startTime&quot;: &quot;A String&quot;, # Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start.
        },
        &quot;price&quot;: { # The price represented as a number and currency. # The price for members of the given tier, that is, the instant discount price. Must be smaller or equal to the regular price.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
        &quot;programLabel&quot;: &quot;A String&quot;, # The label of the loyalty program. This is an internal label that uniquely identifies the relationship between a business entity and a loyalty program entity. The label must be provided so that the system can associate the assets below (for example, price and points) with a business. The corresponding program must be linked to the Merchant Center account.
        &quot;shippingLabel&quot;: &quot;A String&quot;, # The label of the shipping benefit. If the field has value, this offer has loyalty shipping benefit. If the field value isn&#x27;t provided, the item is not eligible for loyalty shipping for the given loyalty tier.
        &quot;tierLabel&quot;: &quot;A String&quot;, # The label of the tier within the loyalty program. Must match one of the labels within the program.
      },
    ],
    &quot;material&quot;: &quot;A String&quot;, # The [material](https://support.google.com/merchants/answer/6324410) of which the item is made. For example, &quot;Leather&quot; or &quot;Cotton&quot;.
    &quot;maxEnergyEfficiencyClass&quot;: &quot;A String&quot;, # The energy efficiency class as defined in EU directive 2010/30/EU.
    &quot;maxHandlingTime&quot;: &quot;A String&quot;, # Maximal product handling time (in business days).
    &quot;maximumRetailPrice&quot;: { # The price represented as a number and currency. # Maximum retail price (MRP) of the item. Applicable to India only.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;minEnergyEfficiencyClass&quot;: &quot;A String&quot;, # The energy efficiency class as defined in EU directive 2010/30/EU.
    &quot;minHandlingTime&quot;: &quot;A String&quot;, # Minimal product handling time (in business days).
    &quot;mobileLink&quot;: &quot;A String&quot;, # URL for the mobile-optimized version of your item&#x27;s landing page.
    &quot;mobileLinkTemplate&quot;: &quot;A String&quot;, # [Link template](https://support.google.com/merchants/answer/13870216) for business hosted local storefront optimized for mobile devices.
    &quot;mpn&quot;: &quot;A String&quot;, # Manufacturer Part Number ([MPN](https://support.google.com/merchants/answer/188494#mpn)) of the item.
    &quot;multipack&quot;: &quot;A String&quot;, # The number of identical products in a business-defined multipack.
    &quot;pattern&quot;: &quot;A String&quot;, # The item&#x27;s [pattern](https://support.google.com/merchants/answer/6324483). For example, polka dots.
    &quot;pause&quot;: &quot;A String&quot;, # Publication of this item will be temporarily [paused](https://support.google.com/merchants/answer/11909930).
    &quot;pickupMethod&quot;: &quot;A String&quot;, # The [pickup](https://support.google.com/merchants/answer/14634021) option for the item.
    &quot;pickupSla&quot;: &quot;A String&quot;, # Item store pickup timeline. For more information, see [Pickup SLA](https://support.google.com/merchants/answer/14635400).
    &quot;price&quot;: { # The price represented as a number and currency. # Price of the item.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;productDetails&quot;: [ # Technical specification or additional product details.
      { # The product details.
        &quot;attributeName&quot;: &quot;A String&quot;, # The name of the product detail.
        &quot;attributeValue&quot;: &quot;A String&quot;, # The value of the product detail.
        &quot;sectionName&quot;: &quot;A String&quot;, # The section header used to group a set of product details.
      },
    ],
    &quot;productHeight&quot;: { # The dimension of the product. # The height of the product in the units provided. The value must be between 0 (exclusive) and 3000 (inclusive).
      &quot;unit&quot;: &quot;A String&quot;, # Required. The dimension units. Acceptable values are: * &quot;`in`&quot; * &quot;`cm`&quot;
      &quot;value&quot;: 3.14, # Required. The dimension value represented as a number. The value can have a maximum precision of four decimal places.
    },
    &quot;productHighlights&quot;: [ # Bullet points describing the most relevant [product highlights](https://support.google.com/merchants/answer/9216100).
      &quot;A String&quot;,
    ],
    &quot;productLength&quot;: { # The dimension of the product. # The length of the product in the units provided. The value must be between 0 (exclusive) and 3000 (inclusive).
      &quot;unit&quot;: &quot;A String&quot;, # Required. The dimension units. Acceptable values are: * &quot;`in`&quot; * &quot;`cm`&quot;
      &quot;value&quot;: 3.14, # Required. The dimension value represented as a number. The value can have a maximum precision of four decimal places.
    },
    &quot;productTypes&quot;: [ # Categories of the item (formatted as in [product data specification](https://support.google.com/merchants/answer/7052112#product_category)).
      &quot;A String&quot;,
    ],
    &quot;productWeight&quot;: { # The weight of the product. # The weight of the product in the units provided. The value must be between 0 (exclusive) and 2000 (inclusive).
      &quot;unit&quot;: &quot;A String&quot;, # Required. The weight unit. Acceptable values are: * &quot;`g`&quot; * &quot;`kg`&quot; * &quot;`oz`&quot; * &quot;`lb`&quot;
      &quot;value&quot;: 3.14, # Required. The weight represented as a number. The weight can have a maximum precision of four decimal places.
    },
    &quot;productWidth&quot;: { # The dimension of the product. # The width of the product in the units provided. The value must be between 0 (exclusive) and 3000 (inclusive).
      &quot;unit&quot;: &quot;A String&quot;, # Required. The dimension units. Acceptable values are: * &quot;`in`&quot; * &quot;`cm`&quot;
      &quot;value&quot;: 3.14, # Required. The dimension value represented as a number. The value can have a maximum precision of four decimal places.
    },
    &quot;promotionIds&quot;: [ # The unique ID of a promotion.
      &quot;A String&quot;,
    ],
    &quot;salePrice&quot;: { # The price represented as a number and currency. # Advertised sale price of the item.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;salePriceEffectiveDate&quot;: { # Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time. # Date range during which the item is on sale, see [product data specification](https://support.google.com/merchants/answer/7052112#price_and_availability).
      &quot;endTime&quot;: &quot;A String&quot;, # Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end.
      &quot;startTime&quot;: &quot;A String&quot;, # Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start.
    },
    &quot;sellOnGoogleQuantity&quot;: &quot;A String&quot;, # The quantity of the product that is available for selling on Google. Supported only for online products.
    &quot;shipping&quot;: [ # Shipping rules.
      { # The Shipping of the product.
        &quot;country&quot;: &quot;A String&quot;, # The [CLDR territory code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) of the country to which an item will ship.
        &quot;locationGroupName&quot;: &quot;A String&quot;, # The location where the shipping is applicable, represented by a location group name.
        &quot;locationId&quot;: &quot;A String&quot;, # The numeric ID of a location that the shipping rate applies to as defined in the [AdWords API](https://developers.google.com/adwords/api/docs/appendix/geotargeting).
        &quot;maxHandlingTime&quot;: &quot;A String&quot;, # Maximum handling time (inclusive) between when the order is received and shipped in business days. 0 means that the order is shipped on the same day as it is received if it happens before the cut-off time. Both maxHandlingTime and maxTransitTime are required if providing shipping speeds. minHandlingTime is optional if maxHandlingTime is present.
        &quot;maxTransitTime&quot;: &quot;A String&quot;, # Maximum transit time (inclusive) between when the order has shipped and when it is delivered in business days. 0 means that the order is delivered on the same day as it ships. Both maxHandlingTime and maxTransitTime are required if providing shipping speeds. minTransitTime is optional if maxTransitTime is present.
        &quot;minHandlingTime&quot;: &quot;A String&quot;, # Minimum handling time (inclusive) between when the order is received and shipped in business days. 0 means that the order is shipped on the same day as it is received if it happens before the cut-off time. minHandlingTime can only be present together with maxHandlingTime; but it is not required if maxHandlingTime is present.
        &quot;minTransitTime&quot;: &quot;A String&quot;, # Minimum transit time (inclusive) between when the order has shipped and when it is delivered in business days. 0 means that the order is delivered on the same day as it ships. minTransitTime can only be present together with maxTransitTime; but it is not required if maxTransitTime is present.
        &quot;postalCode&quot;: &quot;A String&quot;, # The postal code range that the shipping rate applies to, represented by a postal code, a postal code prefix followed by a * wildcard, a range between two postal codes or two postal code prefixes of equal length.
        &quot;price&quot;: { # The price represented as a number and currency. # Fixed shipping price, represented as a number.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
        &quot;region&quot;: &quot;A String&quot;, # The geographic region to which a shipping rate applies. See [region](https://support.google.com/merchants/answer/6324484) for more information.
        &quot;service&quot;: &quot;A String&quot;, # A free-form description of the service class or delivery speed.
      },
    ],
    &quot;shippingHeight&quot;: { # The ShippingDimension of the product. # Height of the item for shipping.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of value.
      &quot;value&quot;: 3.14, # The dimension of the product used to calculate the shipping cost of the item.
    },
    &quot;shippingLabel&quot;: &quot;A String&quot;, # The shipping label of the product, used to group product in account-level shipping rules.
    &quot;shippingLength&quot;: { # The ShippingDimension of the product. # Length of the item for shipping.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of value.
      &quot;value&quot;: 3.14, # The dimension of the product used to calculate the shipping cost of the item.
    },
    &quot;shippingWeight&quot;: { # The ShippingWeight of the product. # Weight of the item for shipping.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of value.
      &quot;value&quot;: 3.14, # The weight of the product used to calculate the shipping cost of the item.
    },
    &quot;shippingWidth&quot;: { # The ShippingDimension of the product. # Width of the item for shipping.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of value.
      &quot;value&quot;: 3.14, # The dimension of the product used to calculate the shipping cost of the item.
    },
    &quot;shoppingAdsExcludedCountries&quot;: [ # List of country codes [(ISO 3166-1 alpha-2)](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) to exclude the offer from Shopping Ads destination. Countries from this list are removed from countries configured in data source settings.
      &quot;A String&quot;,
    ],
    &quot;size&quot;: &quot;A String&quot;, # Size of the item. Only one value is allowed. For variants with different sizes, insert a separate product for each size with the same `itemGroupId` value, see [Size](https://support.google.com/merchants/answer/6324492).
    &quot;sizeSystem&quot;: &quot;A String&quot;, # System in which the size is specified. Recommended for apparel items. For example, &quot;US&quot;, &quot;UK&quot;, &quot;DE&quot;. For more information, see [Size system](https://support.google.com/merchants/answer/6324502).
    &quot;sizeTypes&quot;: [ # The cut of the item. It can be used to represent combined size types for apparel items. Maximum two of size types can be provided, see [Size type](https://support.google.com/merchants/answer/6324497). For example, &quot;petite&quot;, &quot;plus size&quot;.
      &quot;A String&quot;,
    ],
    &quot;structuredDescription&quot;: { # Structured description, for algorithmically (AI)-generated descriptions. # Structured description, for algorithmically (AI)-generated descriptions.
      &quot;content&quot;: &quot;A String&quot;, # The description text Maximum length is 5000 characters
      &quot;digitalSourceType&quot;: &quot;A String&quot;, # The digital source type, for example &quot;trained_algorithmic_media&quot;. Following [IPTC](https://cv.iptc.org/newscodes/digitalsourcetype). Maximum length is 40 characters.
    },
    &quot;structuredTitle&quot;: { # Structured title, for algorithmically (AI)-generated titles. # Structured title, for algorithmically (AI)-generated titles.
      &quot;content&quot;: &quot;A String&quot;, # The title text Maximum length is 150 characters
      &quot;digitalSourceType&quot;: &quot;A String&quot;, # The digital source type, for example &quot;trained_algorithmic_media&quot;. Following [IPTC](https://cv.iptc.org/newscodes/digitalsourcetype). Maximum length is 40 characters.
    },
    &quot;subscriptionCost&quot;: { # The SubscriptionCost of the product. # Number of periods (months or years) and amount of payment per period for an item with an associated subscription contract.
      &quot;amount&quot;: { # The price represented as a number and currency. # The amount the buyer has to pay per subscription period.
        &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
        &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
      },
      &quot;period&quot;: &quot;A String&quot;, # The type of subscription period. Supported values are: * &quot;`month`&quot; * &quot;`year`&quot;
      &quot;periodLength&quot;: &quot;A String&quot;, # The number of subscription periods the buyer has to pay.
    },
    &quot;sustainabilityIncentives&quot;: [ # The list of sustainability incentive programs.
      { # Information regarding sustainability-related incentive programs such as rebates or tax relief.
        &quot;amount&quot;: { # The price represented as a number and currency. # The fixed amount of the incentive.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
        &quot;percentage&quot;: 3.14, # The percentage of the sale price that the incentive is applied to.
        &quot;type&quot;: &quot;A String&quot;, # Sustainability incentive program.
      },
    ],
    &quot;taxCategory&quot;: &quot;A String&quot;, # The [tax category](https://support.google.com/merchants/answer/7569847) of the product.
    &quot;taxes&quot;: [ # Tax information.
      { # The Tax of the product.
        &quot;country&quot;: &quot;A String&quot;, # The country within which the item is taxed, specified as a [CLDR territory code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml).
        &quot;locationId&quot;: &quot;A String&quot;, # The numeric ID of a location that the tax rate applies to as defined in the [AdWords API](https://developers.google.com/adwords/api/docs/appendix/geotargeting).
        &quot;postalCode&quot;: &quot;A String&quot;, # The postal code range that the tax rate applies to, represented by a ZIP code, a ZIP code prefix using * wildcard, a range between two ZIP codes or two ZIP code prefixes of equal length. Examples: 94114, 94*, 94002-95460, 94*-95*.
        &quot;rate&quot;: 3.14, # The percentage of tax rate that applies to the item price.
        &quot;region&quot;: &quot;A String&quot;, # The geographic region to which the tax rate applies.
        &quot;taxShip&quot;: True or False, # Set to true if tax is charged on shipping.
      },
    ],
    &quot;title&quot;: &quot;A String&quot;, # Title of the item.
    &quot;transitTimeLabel&quot;: &quot;A String&quot;, # The transit time label of the product, used to group product in account-level transit time tables.
    &quot;unitPricingBaseMeasure&quot;: { # The UnitPricingBaseMeasure of the product. # The preference of the denominator of the unit price.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of the denominator.
      &quot;value&quot;: &quot;A String&quot;, # The denominator of the unit price.
    },
    &quot;unitPricingMeasure&quot;: { # The UnitPricingMeasure of the product. # The measure and dimension of an item.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of the measure.
      &quot;value&quot;: 3.14, # The measure of an item.
    },
    &quot;virtualModelLink&quot;: &quot;A String&quot;, # URL of the 3D image of the item. See the [Help Center article](https://support.google.com/merchants/answer/13674896) for more information.
  },
  &quot;channel&quot;: &quot;A String&quot;, # Immutable. The [channel](https://support.google.com/merchants/answer/7361332) of the product.
  &quot;contentLanguage&quot;: &quot;A String&quot;, # Required. Immutable. The two-letter [ISO 639-1](http://en.wikipedia.org/wiki/ISO_639-1) language code for the product.
  &quot;customAttributes&quot;: [ # Optional. A list of custom (merchant-provided) attributes. It can also be used for submitting any attribute of the data specification in its generic form (for example, `{ &quot;name&quot;: &quot;size type&quot;, &quot;value&quot;: &quot;regular&quot; }`). This is useful for submitting attributes not explicitly exposed by the API. Maximum allowed number of characters for each custom attribute is 10240 (represents sum of characters for name and value). Maximum 2500 custom attributes can be set per product, with total size of 102.4kB. Underscores in custom attribute names are replaced by spaces upon insertion.
    { # A message that represents custom attributes. Exactly one of `value` or `group_values` must not be empty.
      &quot;groupValues&quot;: [ # Subattributes within this attribute group. If `group_values` is not empty, `value` must be empty.
        # Object with schema name: CustomAttribute
      ],
      &quot;name&quot;: &quot;A String&quot;, # The name of the attribute.
      &quot;value&quot;: &quot;A String&quot;, # The value of the attribute. If `value` is not empty, `group_values` must be empty.
    },
  ],
  &quot;feedLabel&quot;: &quot;A String&quot;, # Required. Immutable. The feed label that lets you categorize and identify your products. The maximum allowed characters are 20, and the supported characters are `A-Z`, `0-9`, hyphen, and underscore. The feed label must not include any spaces. For more information, see [Using feed labels](//support.google.com/merchants/answer/14994087).
  &quot;name&quot;: &quot;A String&quot;, # Identifier. The name of the product input. Format: `accounts/{account}/productInputs/{productinput}` where the last section `productinput` consists of: `content_language~feed_label~offer_id` example for product input name is `accounts/123/productInputs/en~US~sku123`. A legacy local product input name would be `accounts/123/productInputs/local~en~US~sku123`. Note: For calls to the v1beta version, the `productInput` section consists of: `channel~content_language~feed_label~offer_id`, for example: `accounts/123/productInputs/online~en~US~sku123`.
  &quot;offerId&quot;: &quot;A String&quot;, # Required. Immutable. Your unique identifier for the product. This is the same for the product input and processed product. Leading and trailing whitespaces are stripped and multiple whitespaces are replaced by a single whitespace upon submission. See the [products data specification](https://support.google.com/merchants/answer/188494#id) for details.
  &quot;product&quot;: &quot;A String&quot;, # Output only. The name of the processed product. Format: `accounts/{account}/products/{product}`
  &quot;versionNumber&quot;: &quot;A String&quot;, # Optional. Immutable. Represents the existing version (freshness) of the product, which can be used to preserve the right order when multiple updates are done at the same time. If set, the insertion is prevented when version number is lower than the current version number of the existing product. Re-insertion (for example, product refresh after 30 days) can be performed with the current `version_number`. Only supported for insertions into primary data sources. Do not set this field for updates. Do not set this field for insertions into supplemental data sources. If the operation is prevented, the aborted exception will be thrown.
}</pre>
</div>

<div class="method">
    <code class="details" id="patch">patch(name, body=None, dataSource=None, updateMask=None, x__xgafv=None)</code>
  <pre>Updates the existing product input in your Merchant Center account. After inserting, updating, or deleting a product input, it may take several minutes before the processed product can be retrieved.

Args:
  name: string, Identifier. The name of the product input. Format: `accounts/{account}/productInputs/{productinput}` where the last section `productinput` consists of: `content_language~feed_label~offer_id` example for product input name is `accounts/123/productInputs/en~US~sku123`. A legacy local product input name would be `accounts/123/productInputs/local~en~US~sku123`. Note: For calls to the v1beta version, the `productInput` section consists of: `channel~content_language~feed_label~offer_id`, for example: `accounts/123/productInputs/online~en~US~sku123`. (required)
  body: object, The request body.
    The object takes the form of:

{ # This resource represents input data you submit for a product, not the processed product that you see in Merchant Center, in Shopping ads, or across Google surfaces. Product inputs, rules and supplemental data source data are combined to create the processed Product. For more information, see [Manage products](/merchant/api/guides/products/overview). Required product input attributes to pass data validation checks are primarily defined in the [Products Data Specification](https://support.google.com/merchants/answer/188494). The following attributes are required: feedLabel, contentLanguage and offerId. After inserting, updating, or deleting a product input, it may take several minutes before the processed product can be retrieved. All fields in the product input and its sub-messages match the English name of their corresponding attribute in the [Products Data Specification](https://support.google.com/merchants/answer/188494) with [some exceptions](https://support.google.com/merchants/answer/7052112). The following reference documentation lists the field names in the **camelCase** casing style while the Products Data Specification lists the names in the **snake_case** casing style.
  &quot;attributes&quot;: { # Attributes. # Optional. A list of product attributes.
    &quot;additionalImageLinks&quot;: [ # Additional URLs of images of the item.
      &quot;A String&quot;,
    ],
    &quot;adsGrouping&quot;: &quot;A String&quot;, # Used to group items in an arbitrary way. Only for CPA, discouraged otherwise. For more information, see [Display ads attribute](https://support.google.com/merchants/answer/6069387).
    &quot;adsLabels&quot;: [ # Similar to ads_grouping, but only works on CPC.
      &quot;A String&quot;,
    ],
    &quot;adsRedirect&quot;: &quot;A String&quot;, # Allows advertisers to override the item URL when the product is shown within the context of Product ads.
    &quot;adult&quot;: True or False, # Set to true if the item is targeted towards adults.
    &quot;ageGroup&quot;: &quot;A String&quot;, # Target [age group](https://support.google.com/merchants/answer/6324463) of the item.
    &quot;autoPricingMinPrice&quot;: { # The price represented as a number and currency. # A safeguard in the [automated discounts] (https://support.google.com/merchants/answer/10295759) and [&quot;dynamic promotions&quot;](https://support.google.com/merchants/answer/13949249) projects, ensuring that discounts on business offers do not fall below this value, thereby preserving the offer&#x27;s value and profitability.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;availability&quot;: &quot;A String&quot;, # [Availability](https://support.google.com/merchants/answer/6324448) status of the item. For example, &quot;in_stock&quot; or &quot;out_of_stock&quot;.
    &quot;availabilityDate&quot;: &quot;A String&quot;, # The day a pre-ordered product becomes available for delivery, in [ISO 8601](http://en.wikipedia.org/wiki/ISO_8601) format.
    &quot;brand&quot;: &quot;A String&quot;, # [Brand](https://support.google.com/merchants/answer/6324351) of the item. For example, &quot;Google&quot;.
    &quot;canonicalLink&quot;: &quot;A String&quot;, # URL for the canonical version of your item&#x27;s landing page.
    &quot;certifications&quot;: [ # Product Certifications, for example for energy efficiency labeling of products recorded in the [EU EPREL](https://eprel.ec.europa.eu/screen/home) database. See the [Help Center](https://support.google.com/merchants/answer/13528839) article for more information.
      { # Product [certification](https://support.google.com/merchants/answer/13528839), initially introduced for EU energy efficiency labeling compliance using the EU EPREL database.
        &quot;certificationAuthority&quot;: &quot;A String&quot;, # The certification authority, for example &quot;European_Commission&quot;. Maximum length is 2000 characters.
        &quot;certificationCode&quot;: &quot;A String&quot;, # The certification code. Maximum length is 2000 characters.
        &quot;certificationName&quot;: &quot;A String&quot;, # The name of the certification, for example &quot;EPREL&quot;. Maximum length is 2000 characters.
        &quot;certificationValue&quot;: &quot;A String&quot;, # The certification value (also known as class, level or grade), for example &quot;A+&quot;, &quot;C&quot;, &quot;gold&quot;. Maximum length is 2000 characters.
      },
    ],
    &quot;cloudExportAdditionalProperties&quot;: [ # Extra fields to export to the Cloud Retail program.
      { # Product property for the Cloud Retail API. For example, properties for a TV product could be &quot;Screen-Resolution&quot; or &quot;Screen-Size&quot;.
        &quot;boolValue&quot;: True or False, # Boolean value of the given property. For example for a TV product, &quot;True&quot; or &quot;False&quot; if the screen is UHD.
        &quot;floatValue&quot;: [ # Float values of the given property. For example for a TV product 1.2345. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order.
          3.14,
        ],
        &quot;intValue&quot;: [ # Integer values of the given property. For example, 1080 for a TV product&#x27;s Screen Resolution. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order.
          &quot;A String&quot;,
        ],
        &quot;maxValue&quot;: 3.14, # Maximum float value of the given property. For example for a TV product 100.00.
        &quot;minValue&quot;: 3.14, # Minimum float value of the given property. For example for a TV product 1.00.
        &quot;propertyName&quot;: &quot;A String&quot;, # Name of the given property. For example, &quot;Screen-Resolution&quot; for a TV product. Maximum string size is 256 characters.
        &quot;textValue&quot;: [ # Text value of the given property. For example, &quot;8K(UHD)&quot; could be a text value for a TV product. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order. Maximum string size is 256 characters.
          &quot;A String&quot;,
        ],
        &quot;unitCode&quot;: &quot;A String&quot;, # Unit of the given property. For example, &quot;Pixels&quot; for a TV product. Maximum string size is 256B.
      },
    ],
    &quot;color&quot;: &quot;A String&quot;, # [Color](https://support.google.com/merchants/answer/6324487) of the item. For example, &quot;red&quot;.
    &quot;condition&quot;: &quot;A String&quot;, # [Condition](https://support.google.com/merchants/answer/6324469) or state of the item. For example, &quot;new&quot; or &quot;used&quot;.
    &quot;costOfGoodsSold&quot;: { # The price represented as a number and currency. # Cost of goods sold. Used for gross profit reporting.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;customLabel0&quot;: &quot;A String&quot;, # [Custom label 0](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;customLabel1&quot;: &quot;A String&quot;, # [Custom label 1](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;customLabel2&quot;: &quot;A String&quot;, # [Custom label 2](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;customLabel3&quot;: &quot;A String&quot;, # [Custom label 3](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;customLabel4&quot;: &quot;A String&quot;, # [Custom label 4](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;description&quot;: &quot;A String&quot;, # Description of the item.
    &quot;disclosureDate&quot;: &quot;A String&quot;, # The date time when an offer becomes visible in search results across Google’s YouTube surfaces, in [ISO 8601](http://en.wikipedia.org/wiki/ISO_8601) format. See [Disclosure date](https://support.google.com/merchants/answer/13034208) for more information.
    &quot;displayAdsId&quot;: &quot;A String&quot;, # An identifier for an item for dynamic remarketing campaigns.
    &quot;displayAdsLink&quot;: &quot;A String&quot;, # URL directly to your item&#x27;s landing page for dynamic remarketing campaigns.
    &quot;displayAdsSimilarIds&quot;: [ # Advertiser-specified recommendations. For more information, see [Display ads attribute specification](https://support.google.com/merchants/answer/6069387).
      &quot;A String&quot;,
    ],
    &quot;displayAdsTitle&quot;: &quot;A String&quot;, # Title of an item for dynamic remarketing campaigns.
    &quot;displayAdsValue&quot;: 3.14, # Offer margin for dynamic remarketing campaigns. For more information, see [Display ads attribute](https://support.google.com/merchants/answer/6069387).
    &quot;energyEfficiencyClass&quot;: &quot;A String&quot;, # The energy efficiency class as defined in EU directive 2010/30/EU.
    &quot;excludedDestinations&quot;: [ # Destinations also known as [Marketing methods](https://support.google.com/merchants/answer/15130232) selections. The list of destinations to exclude for this target (corresponds to unchecked check boxes in Merchant Center). For more information, see [Excluded destination](https://support.google.com/merchants/answer/6324486). Note: We recommend setting destinations on datasources level for most use cases. Use this field within products to only setup exceptions.
      &quot;A String&quot;,
    ],
    &quot;expirationDate&quot;: &quot;A String&quot;, # Date on which the item should expire, as specified upon insertion, in [ISO 8601](http://en.wikipedia.org/wiki/ISO_8601) format. The actual expiration date is exposed in `productstatuses` as [googleExpirationDate](https://support.google.com/merchants/answer/6324499) and might be earlier if `expirationDate` is too far in the future.
    &quot;externalSellerId&quot;: &quot;A String&quot;, # Required for multi-seller accounts. Use this attribute if you&#x27;re a marketplace uploading products for various sellers to your multi-seller account.
    &quot;freeShippingThreshold&quot;: [ # Conditions to be met for a product to have free shipping.
      { # Conditions to be met for a product to have free shipping.
        &quot;country&quot;: &quot;A String&quot;, # The [CLDR territory code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) of the country to which an item will ship.
        &quot;priceThreshold&quot;: { # The price represented as a number and currency. # The minimum product price for the shipping cost to become free. Represented as a number.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
      },
    ],
    &quot;gender&quot;: &quot;A String&quot;, # Target [gender](https://support.google.com/merchants/answer/6324479) of the item. For example, &quot;male&quot; or &quot;female&quot;.
    &quot;googleProductCategory&quot;: &quot;A String&quot;, # Google&#x27;s category of the item (see [Google product taxonomy](https://support.google.com/merchants/answer/1705911)). When querying products, this field will contain the user provided value. There is currently no way to get back the auto assigned google product categories through the API.
    &quot;gtin&quot;: [ # Global Trade Item Numbers ([GTIN](https://support.google.com/merchants/answer/188494#gtin)) of the item. You can provide up to 10 GTINs. Deprecated: Use `gtins` instead.
      &quot;A String&quot;,
    ],
    &quot;gtins&quot;: [ # A list of Global Trade Item Numbers ([GTIN](https://support.google.com/merchants/answer/188494#gtin)) of the item. You can provide up to 10 GTINs.
      &quot;A String&quot;,
    ],
    &quot;identifierExists&quot;: True or False, # Set this value to false when the item does not have unique product identifiers appropriate to its category, such as GTIN, MPN, and brand. Defaults to true, if not provided.
    &quot;imageLink&quot;: &quot;A String&quot;, # URL of an image of the item.
    &quot;includedDestinations&quot;: [ # Destinations also known as [Marketing methods](https://support.google.com/merchants/answer/15130232) selections. The list of destinations to include for this target (corresponds to checked check boxes in Merchant Center). Default destinations are always included unless provided in `excludedDestinations`. For more information, see [Included destination](https://support.google.com/merchants/answer/7501026). Note: We recommend setting destinations on datasources level for most use cases. Use this field within products to only setup exceptions.
      &quot;A String&quot;,
    ],
    &quot;installment&quot;: { # A message that represents installment. # Number and amount of installments to pay for an item.
      &quot;amount&quot;: { # The price represented as a number and currency. # The amount the buyer has to pay per month.
        &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
        &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
      },
      &quot;creditType&quot;: &quot;A String&quot;, # Type of installment payments. Supported values are: * &quot;`finance`&quot; * &quot;`lease`&quot;
      &quot;downpayment&quot;: { # The price represented as a number and currency. # The up-front down payment amount the buyer has to pay.
        &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
        &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
      },
      &quot;months&quot;: &quot;A String&quot;, # The number of installments the buyer has to pay.
    },
    &quot;isBundle&quot;: True or False, # Whether the item is a business-defined sub-API. A [sub-API] (https://support.google.com/merchants/answer/6324449) is a custom grouping of different products sold by a business for a single price.
    &quot;itemGroupId&quot;: &quot;A String&quot;, # Shared identifier for all variants of the same product.
    &quot;lifestyleImageLinks&quot;: [ # Additional URLs of lifestyle images of the item, used to explicitly identify images that showcase your item in a real-world context. See the [Help Center article](https://support.google.com/merchants/answer/9103186) for more information.
      &quot;A String&quot;,
    ],
    &quot;link&quot;: &quot;A String&quot;, # URL directly linking to your item&#x27;s page on your online store.
    &quot;linkTemplate&quot;: &quot;A String&quot;, # [Link template](https://support.google.com/merchants/answer/13871172) for business hosted local storefront.
    &quot;loyaltyPoints&quot;: { # A message that represents loyalty points. # Loyalty points that users receive after purchasing the item. Japan only.
      &quot;name&quot;: &quot;A String&quot;, # Name of loyalty points program. It is recommended to limit the name to 12 full-width characters or 24 Roman characters.
      &quot;pointsValue&quot;: &quot;A String&quot;, # The retailer&#x27;s loyalty points in absolute value.
      &quot;ratio&quot;: 3.14, # The ratio of a point when converted to currency. Google assumes currency based on Merchant Center settings. If ratio is left out, it defaults to 1.0.
    },
    &quot;loyaltyPrograms&quot;: [ # A list of loyalty program information that is used to surface loyalty benefits (for example, better pricing, points, etc) to the user of this item.
      { # A message that represents loyalty program.
        &quot;cashbackForFutureUse&quot;: { # The price represented as a number and currency. # The cashback that can be used for future purchases.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
        &quot;loyaltyPoints&quot;: &quot;A String&quot;, # The amount of loyalty points earned on a purchase.
        &quot;memberPriceEffectiveDate&quot;: { # Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time. # A date range during which the item is eligible for member price. If not specified, the member price is always applicable. The date range is represented by a pair of ISO 8601 dates separated by a space, comma, or slash.
          &quot;endTime&quot;: &quot;A String&quot;, # Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end.
          &quot;startTime&quot;: &quot;A String&quot;, # Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start.
        },
        &quot;price&quot;: { # The price represented as a number and currency. # The price for members of the given tier, that is, the instant discount price. Must be smaller or equal to the regular price.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
        &quot;programLabel&quot;: &quot;A String&quot;, # The label of the loyalty program. This is an internal label that uniquely identifies the relationship between a business entity and a loyalty program entity. The label must be provided so that the system can associate the assets below (for example, price and points) with a business. The corresponding program must be linked to the Merchant Center account.
        &quot;shippingLabel&quot;: &quot;A String&quot;, # The label of the shipping benefit. If the field has value, this offer has loyalty shipping benefit. If the field value isn&#x27;t provided, the item is not eligible for loyalty shipping for the given loyalty tier.
        &quot;tierLabel&quot;: &quot;A String&quot;, # The label of the tier within the loyalty program. Must match one of the labels within the program.
      },
    ],
    &quot;material&quot;: &quot;A String&quot;, # The [material](https://support.google.com/merchants/answer/6324410) of which the item is made. For example, &quot;Leather&quot; or &quot;Cotton&quot;.
    &quot;maxEnergyEfficiencyClass&quot;: &quot;A String&quot;, # The energy efficiency class as defined in EU directive 2010/30/EU.
    &quot;maxHandlingTime&quot;: &quot;A String&quot;, # Maximal product handling time (in business days).
    &quot;maximumRetailPrice&quot;: { # The price represented as a number and currency. # Maximum retail price (MRP) of the item. Applicable to India only.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;minEnergyEfficiencyClass&quot;: &quot;A String&quot;, # The energy efficiency class as defined in EU directive 2010/30/EU.
    &quot;minHandlingTime&quot;: &quot;A String&quot;, # Minimal product handling time (in business days).
    &quot;mobileLink&quot;: &quot;A String&quot;, # URL for the mobile-optimized version of your item&#x27;s landing page.
    &quot;mobileLinkTemplate&quot;: &quot;A String&quot;, # [Link template](https://support.google.com/merchants/answer/13870216) for business hosted local storefront optimized for mobile devices.
    &quot;mpn&quot;: &quot;A String&quot;, # Manufacturer Part Number ([MPN](https://support.google.com/merchants/answer/188494#mpn)) of the item.
    &quot;multipack&quot;: &quot;A String&quot;, # The number of identical products in a business-defined multipack.
    &quot;pattern&quot;: &quot;A String&quot;, # The item&#x27;s [pattern](https://support.google.com/merchants/answer/6324483). For example, polka dots.
    &quot;pause&quot;: &quot;A String&quot;, # Publication of this item will be temporarily [paused](https://support.google.com/merchants/answer/11909930).
    &quot;pickupMethod&quot;: &quot;A String&quot;, # The [pickup](https://support.google.com/merchants/answer/14634021) option for the item.
    &quot;pickupSla&quot;: &quot;A String&quot;, # Item store pickup timeline. For more information, see [Pickup SLA](https://support.google.com/merchants/answer/14635400).
    &quot;price&quot;: { # The price represented as a number and currency. # Price of the item.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;productDetails&quot;: [ # Technical specification or additional product details.
      { # The product details.
        &quot;attributeName&quot;: &quot;A String&quot;, # The name of the product detail.
        &quot;attributeValue&quot;: &quot;A String&quot;, # The value of the product detail.
        &quot;sectionName&quot;: &quot;A String&quot;, # The section header used to group a set of product details.
      },
    ],
    &quot;productHeight&quot;: { # The dimension of the product. # The height of the product in the units provided. The value must be between 0 (exclusive) and 3000 (inclusive).
      &quot;unit&quot;: &quot;A String&quot;, # Required. The dimension units. Acceptable values are: * &quot;`in`&quot; * &quot;`cm`&quot;
      &quot;value&quot;: 3.14, # Required. The dimension value represented as a number. The value can have a maximum precision of four decimal places.
    },
    &quot;productHighlights&quot;: [ # Bullet points describing the most relevant [product highlights](https://support.google.com/merchants/answer/9216100).
      &quot;A String&quot;,
    ],
    &quot;productLength&quot;: { # The dimension of the product. # The length of the product in the units provided. The value must be between 0 (exclusive) and 3000 (inclusive).
      &quot;unit&quot;: &quot;A String&quot;, # Required. The dimension units. Acceptable values are: * &quot;`in`&quot; * &quot;`cm`&quot;
      &quot;value&quot;: 3.14, # Required. The dimension value represented as a number. The value can have a maximum precision of four decimal places.
    },
    &quot;productTypes&quot;: [ # Categories of the item (formatted as in [product data specification](https://support.google.com/merchants/answer/7052112#product_category)).
      &quot;A String&quot;,
    ],
    &quot;productWeight&quot;: { # The weight of the product. # The weight of the product in the units provided. The value must be between 0 (exclusive) and 2000 (inclusive).
      &quot;unit&quot;: &quot;A String&quot;, # Required. The weight unit. Acceptable values are: * &quot;`g`&quot; * &quot;`kg`&quot; * &quot;`oz`&quot; * &quot;`lb`&quot;
      &quot;value&quot;: 3.14, # Required. The weight represented as a number. The weight can have a maximum precision of four decimal places.
    },
    &quot;productWidth&quot;: { # The dimension of the product. # The width of the product in the units provided. The value must be between 0 (exclusive) and 3000 (inclusive).
      &quot;unit&quot;: &quot;A String&quot;, # Required. The dimension units. Acceptable values are: * &quot;`in`&quot; * &quot;`cm`&quot;
      &quot;value&quot;: 3.14, # Required. The dimension value represented as a number. The value can have a maximum precision of four decimal places.
    },
    &quot;promotionIds&quot;: [ # The unique ID of a promotion.
      &quot;A String&quot;,
    ],
    &quot;salePrice&quot;: { # The price represented as a number and currency. # Advertised sale price of the item.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;salePriceEffectiveDate&quot;: { # Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time. # Date range during which the item is on sale, see [product data specification](https://support.google.com/merchants/answer/7052112#price_and_availability).
      &quot;endTime&quot;: &quot;A String&quot;, # Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end.
      &quot;startTime&quot;: &quot;A String&quot;, # Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start.
    },
    &quot;sellOnGoogleQuantity&quot;: &quot;A String&quot;, # The quantity of the product that is available for selling on Google. Supported only for online products.
    &quot;shipping&quot;: [ # Shipping rules.
      { # The Shipping of the product.
        &quot;country&quot;: &quot;A String&quot;, # The [CLDR territory code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) of the country to which an item will ship.
        &quot;locationGroupName&quot;: &quot;A String&quot;, # The location where the shipping is applicable, represented by a location group name.
        &quot;locationId&quot;: &quot;A String&quot;, # The numeric ID of a location that the shipping rate applies to as defined in the [AdWords API](https://developers.google.com/adwords/api/docs/appendix/geotargeting).
        &quot;maxHandlingTime&quot;: &quot;A String&quot;, # Maximum handling time (inclusive) between when the order is received and shipped in business days. 0 means that the order is shipped on the same day as it is received if it happens before the cut-off time. Both maxHandlingTime and maxTransitTime are required if providing shipping speeds. minHandlingTime is optional if maxHandlingTime is present.
        &quot;maxTransitTime&quot;: &quot;A String&quot;, # Maximum transit time (inclusive) between when the order has shipped and when it is delivered in business days. 0 means that the order is delivered on the same day as it ships. Both maxHandlingTime and maxTransitTime are required if providing shipping speeds. minTransitTime is optional if maxTransitTime is present.
        &quot;minHandlingTime&quot;: &quot;A String&quot;, # Minimum handling time (inclusive) between when the order is received and shipped in business days. 0 means that the order is shipped on the same day as it is received if it happens before the cut-off time. minHandlingTime can only be present together with maxHandlingTime; but it is not required if maxHandlingTime is present.
        &quot;minTransitTime&quot;: &quot;A String&quot;, # Minimum transit time (inclusive) between when the order has shipped and when it is delivered in business days. 0 means that the order is delivered on the same day as it ships. minTransitTime can only be present together with maxTransitTime; but it is not required if maxTransitTime is present.
        &quot;postalCode&quot;: &quot;A String&quot;, # The postal code range that the shipping rate applies to, represented by a postal code, a postal code prefix followed by a * wildcard, a range between two postal codes or two postal code prefixes of equal length.
        &quot;price&quot;: { # The price represented as a number and currency. # Fixed shipping price, represented as a number.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
        &quot;region&quot;: &quot;A String&quot;, # The geographic region to which a shipping rate applies. See [region](https://support.google.com/merchants/answer/6324484) for more information.
        &quot;service&quot;: &quot;A String&quot;, # A free-form description of the service class or delivery speed.
      },
    ],
    &quot;shippingHeight&quot;: { # The ShippingDimension of the product. # Height of the item for shipping.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of value.
      &quot;value&quot;: 3.14, # The dimension of the product used to calculate the shipping cost of the item.
    },
    &quot;shippingLabel&quot;: &quot;A String&quot;, # The shipping label of the product, used to group product in account-level shipping rules.
    &quot;shippingLength&quot;: { # The ShippingDimension of the product. # Length of the item for shipping.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of value.
      &quot;value&quot;: 3.14, # The dimension of the product used to calculate the shipping cost of the item.
    },
    &quot;shippingWeight&quot;: { # The ShippingWeight of the product. # Weight of the item for shipping.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of value.
      &quot;value&quot;: 3.14, # The weight of the product used to calculate the shipping cost of the item.
    },
    &quot;shippingWidth&quot;: { # The ShippingDimension of the product. # Width of the item for shipping.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of value.
      &quot;value&quot;: 3.14, # The dimension of the product used to calculate the shipping cost of the item.
    },
    &quot;shoppingAdsExcludedCountries&quot;: [ # List of country codes [(ISO 3166-1 alpha-2)](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) to exclude the offer from Shopping Ads destination. Countries from this list are removed from countries configured in data source settings.
      &quot;A String&quot;,
    ],
    &quot;size&quot;: &quot;A String&quot;, # Size of the item. Only one value is allowed. For variants with different sizes, insert a separate product for each size with the same `itemGroupId` value, see [Size](https://support.google.com/merchants/answer/6324492).
    &quot;sizeSystem&quot;: &quot;A String&quot;, # System in which the size is specified. Recommended for apparel items. For example, &quot;US&quot;, &quot;UK&quot;, &quot;DE&quot;. For more information, see [Size system](https://support.google.com/merchants/answer/6324502).
    &quot;sizeTypes&quot;: [ # The cut of the item. It can be used to represent combined size types for apparel items. Maximum two of size types can be provided, see [Size type](https://support.google.com/merchants/answer/6324497). For example, &quot;petite&quot;, &quot;plus size&quot;.
      &quot;A String&quot;,
    ],
    &quot;structuredDescription&quot;: { # Structured description, for algorithmically (AI)-generated descriptions. # Structured description, for algorithmically (AI)-generated descriptions.
      &quot;content&quot;: &quot;A String&quot;, # The description text Maximum length is 5000 characters
      &quot;digitalSourceType&quot;: &quot;A String&quot;, # The digital source type, for example &quot;trained_algorithmic_media&quot;. Following [IPTC](https://cv.iptc.org/newscodes/digitalsourcetype). Maximum length is 40 characters.
    },
    &quot;structuredTitle&quot;: { # Structured title, for algorithmically (AI)-generated titles. # Structured title, for algorithmically (AI)-generated titles.
      &quot;content&quot;: &quot;A String&quot;, # The title text Maximum length is 150 characters
      &quot;digitalSourceType&quot;: &quot;A String&quot;, # The digital source type, for example &quot;trained_algorithmic_media&quot;. Following [IPTC](https://cv.iptc.org/newscodes/digitalsourcetype). Maximum length is 40 characters.
    },
    &quot;subscriptionCost&quot;: { # The SubscriptionCost of the product. # Number of periods (months or years) and amount of payment per period for an item with an associated subscription contract.
      &quot;amount&quot;: { # The price represented as a number and currency. # The amount the buyer has to pay per subscription period.
        &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
        &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
      },
      &quot;period&quot;: &quot;A String&quot;, # The type of subscription period. Supported values are: * &quot;`month`&quot; * &quot;`year`&quot;
      &quot;periodLength&quot;: &quot;A String&quot;, # The number of subscription periods the buyer has to pay.
    },
    &quot;sustainabilityIncentives&quot;: [ # The list of sustainability incentive programs.
      { # Information regarding sustainability-related incentive programs such as rebates or tax relief.
        &quot;amount&quot;: { # The price represented as a number and currency. # The fixed amount of the incentive.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
        &quot;percentage&quot;: 3.14, # The percentage of the sale price that the incentive is applied to.
        &quot;type&quot;: &quot;A String&quot;, # Sustainability incentive program.
      },
    ],
    &quot;taxCategory&quot;: &quot;A String&quot;, # The [tax category](https://support.google.com/merchants/answer/7569847) of the product.
    &quot;taxes&quot;: [ # Tax information.
      { # The Tax of the product.
        &quot;country&quot;: &quot;A String&quot;, # The country within which the item is taxed, specified as a [CLDR territory code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml).
        &quot;locationId&quot;: &quot;A String&quot;, # The numeric ID of a location that the tax rate applies to as defined in the [AdWords API](https://developers.google.com/adwords/api/docs/appendix/geotargeting).
        &quot;postalCode&quot;: &quot;A String&quot;, # The postal code range that the tax rate applies to, represented by a ZIP code, a ZIP code prefix using * wildcard, a range between two ZIP codes or two ZIP code prefixes of equal length. Examples: 94114, 94*, 94002-95460, 94*-95*.
        &quot;rate&quot;: 3.14, # The percentage of tax rate that applies to the item price.
        &quot;region&quot;: &quot;A String&quot;, # The geographic region to which the tax rate applies.
        &quot;taxShip&quot;: True or False, # Set to true if tax is charged on shipping.
      },
    ],
    &quot;title&quot;: &quot;A String&quot;, # Title of the item.
    &quot;transitTimeLabel&quot;: &quot;A String&quot;, # The transit time label of the product, used to group product in account-level transit time tables.
    &quot;unitPricingBaseMeasure&quot;: { # The UnitPricingBaseMeasure of the product. # The preference of the denominator of the unit price.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of the denominator.
      &quot;value&quot;: &quot;A String&quot;, # The denominator of the unit price.
    },
    &quot;unitPricingMeasure&quot;: { # The UnitPricingMeasure of the product. # The measure and dimension of an item.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of the measure.
      &quot;value&quot;: 3.14, # The measure of an item.
    },
    &quot;virtualModelLink&quot;: &quot;A String&quot;, # URL of the 3D image of the item. See the [Help Center article](https://support.google.com/merchants/answer/13674896) for more information.
  },
  &quot;channel&quot;: &quot;A String&quot;, # Immutable. The [channel](https://support.google.com/merchants/answer/7361332) of the product.
  &quot;contentLanguage&quot;: &quot;A String&quot;, # Required. Immutable. The two-letter [ISO 639-1](http://en.wikipedia.org/wiki/ISO_639-1) language code for the product.
  &quot;customAttributes&quot;: [ # Optional. A list of custom (merchant-provided) attributes. It can also be used for submitting any attribute of the data specification in its generic form (for example, `{ &quot;name&quot;: &quot;size type&quot;, &quot;value&quot;: &quot;regular&quot; }`). This is useful for submitting attributes not explicitly exposed by the API. Maximum allowed number of characters for each custom attribute is 10240 (represents sum of characters for name and value). Maximum 2500 custom attributes can be set per product, with total size of 102.4kB. Underscores in custom attribute names are replaced by spaces upon insertion.
    { # A message that represents custom attributes. Exactly one of `value` or `group_values` must not be empty.
      &quot;groupValues&quot;: [ # Subattributes within this attribute group. If `group_values` is not empty, `value` must be empty.
        # Object with schema name: CustomAttribute
      ],
      &quot;name&quot;: &quot;A String&quot;, # The name of the attribute.
      &quot;value&quot;: &quot;A String&quot;, # The value of the attribute. If `value` is not empty, `group_values` must be empty.
    },
  ],
  &quot;feedLabel&quot;: &quot;A String&quot;, # Required. Immutable. The feed label that lets you categorize and identify your products. The maximum allowed characters are 20, and the supported characters are `A-Z`, `0-9`, hyphen, and underscore. The feed label must not include any spaces. For more information, see [Using feed labels](//support.google.com/merchants/answer/14994087).
  &quot;name&quot;: &quot;A String&quot;, # Identifier. The name of the product input. Format: `accounts/{account}/productInputs/{productinput}` where the last section `productinput` consists of: `content_language~feed_label~offer_id` example for product input name is `accounts/123/productInputs/en~US~sku123`. A legacy local product input name would be `accounts/123/productInputs/local~en~US~sku123`. Note: For calls to the v1beta version, the `productInput` section consists of: `channel~content_language~feed_label~offer_id`, for example: `accounts/123/productInputs/online~en~US~sku123`.
  &quot;offerId&quot;: &quot;A String&quot;, # Required. Immutable. Your unique identifier for the product. This is the same for the product input and processed product. Leading and trailing whitespaces are stripped and multiple whitespaces are replaced by a single whitespace upon submission. See the [products data specification](https://support.google.com/merchants/answer/188494#id) for details.
  &quot;product&quot;: &quot;A String&quot;, # Output only. The name of the processed product. Format: `accounts/{account}/products/{product}`
  &quot;versionNumber&quot;: &quot;A String&quot;, # Optional. Immutable. Represents the existing version (freshness) of the product, which can be used to preserve the right order when multiple updates are done at the same time. If set, the insertion is prevented when version number is lower than the current version number of the existing product. Re-insertion (for example, product refresh after 30 days) can be performed with the current `version_number`. Only supported for insertions into primary data sources. Do not set this field for updates. Do not set this field for insertions into supplemental data sources. If the operation is prevented, the aborted exception will be thrown.
}

  dataSource: string, Required. The primary or supplemental product data source where `data_source` name identifies the product input to be updated. Only API data sources are supported. Format: `accounts/{account}/dataSources/{datasource}`. For example, `accounts/123456/dataSources/104628`.
  updateMask: string, Optional. The list of product attributes to be updated. If the update mask is omitted, then it is treated as implied field mask equivalent to all fields that are populated (have a non-empty value). Attributes specified in the update mask without a value specified in the body will be deleted from the product. Update mask can only be specified for top level fields in attributes and custom attributes. To specify the update mask for custom attributes you need to add the `custom_attribute.` prefix. Providing special &quot;*&quot; value for full product replacement is not supported.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # This resource represents input data you submit for a product, not the processed product that you see in Merchant Center, in Shopping ads, or across Google surfaces. Product inputs, rules and supplemental data source data are combined to create the processed Product. For more information, see [Manage products](/merchant/api/guides/products/overview). Required product input attributes to pass data validation checks are primarily defined in the [Products Data Specification](https://support.google.com/merchants/answer/188494). The following attributes are required: feedLabel, contentLanguage and offerId. After inserting, updating, or deleting a product input, it may take several minutes before the processed product can be retrieved. All fields in the product input and its sub-messages match the English name of their corresponding attribute in the [Products Data Specification](https://support.google.com/merchants/answer/188494) with [some exceptions](https://support.google.com/merchants/answer/7052112). The following reference documentation lists the field names in the **camelCase** casing style while the Products Data Specification lists the names in the **snake_case** casing style.
  &quot;attributes&quot;: { # Attributes. # Optional. A list of product attributes.
    &quot;additionalImageLinks&quot;: [ # Additional URLs of images of the item.
      &quot;A String&quot;,
    ],
    &quot;adsGrouping&quot;: &quot;A String&quot;, # Used to group items in an arbitrary way. Only for CPA, discouraged otherwise. For more information, see [Display ads attribute](https://support.google.com/merchants/answer/6069387).
    &quot;adsLabels&quot;: [ # Similar to ads_grouping, but only works on CPC.
      &quot;A String&quot;,
    ],
    &quot;adsRedirect&quot;: &quot;A String&quot;, # Allows advertisers to override the item URL when the product is shown within the context of Product ads.
    &quot;adult&quot;: True or False, # Set to true if the item is targeted towards adults.
    &quot;ageGroup&quot;: &quot;A String&quot;, # Target [age group](https://support.google.com/merchants/answer/6324463) of the item.
    &quot;autoPricingMinPrice&quot;: { # The price represented as a number and currency. # A safeguard in the [automated discounts] (https://support.google.com/merchants/answer/10295759) and [&quot;dynamic promotions&quot;](https://support.google.com/merchants/answer/13949249) projects, ensuring that discounts on business offers do not fall below this value, thereby preserving the offer&#x27;s value and profitability.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;availability&quot;: &quot;A String&quot;, # [Availability](https://support.google.com/merchants/answer/6324448) status of the item. For example, &quot;in_stock&quot; or &quot;out_of_stock&quot;.
    &quot;availabilityDate&quot;: &quot;A String&quot;, # The day a pre-ordered product becomes available for delivery, in [ISO 8601](http://en.wikipedia.org/wiki/ISO_8601) format.
    &quot;brand&quot;: &quot;A String&quot;, # [Brand](https://support.google.com/merchants/answer/6324351) of the item. For example, &quot;Google&quot;.
    &quot;canonicalLink&quot;: &quot;A String&quot;, # URL for the canonical version of your item&#x27;s landing page.
    &quot;certifications&quot;: [ # Product Certifications, for example for energy efficiency labeling of products recorded in the [EU EPREL](https://eprel.ec.europa.eu/screen/home) database. See the [Help Center](https://support.google.com/merchants/answer/13528839) article for more information.
      { # Product [certification](https://support.google.com/merchants/answer/13528839), initially introduced for EU energy efficiency labeling compliance using the EU EPREL database.
        &quot;certificationAuthority&quot;: &quot;A String&quot;, # The certification authority, for example &quot;European_Commission&quot;. Maximum length is 2000 characters.
        &quot;certificationCode&quot;: &quot;A String&quot;, # The certification code. Maximum length is 2000 characters.
        &quot;certificationName&quot;: &quot;A String&quot;, # The name of the certification, for example &quot;EPREL&quot;. Maximum length is 2000 characters.
        &quot;certificationValue&quot;: &quot;A String&quot;, # The certification value (also known as class, level or grade), for example &quot;A+&quot;, &quot;C&quot;, &quot;gold&quot;. Maximum length is 2000 characters.
      },
    ],
    &quot;cloudExportAdditionalProperties&quot;: [ # Extra fields to export to the Cloud Retail program.
      { # Product property for the Cloud Retail API. For example, properties for a TV product could be &quot;Screen-Resolution&quot; or &quot;Screen-Size&quot;.
        &quot;boolValue&quot;: True or False, # Boolean value of the given property. For example for a TV product, &quot;True&quot; or &quot;False&quot; if the screen is UHD.
        &quot;floatValue&quot;: [ # Float values of the given property. For example for a TV product 1.2345. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order.
          3.14,
        ],
        &quot;intValue&quot;: [ # Integer values of the given property. For example, 1080 for a TV product&#x27;s Screen Resolution. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order.
          &quot;A String&quot;,
        ],
        &quot;maxValue&quot;: 3.14, # Maximum float value of the given property. For example for a TV product 100.00.
        &quot;minValue&quot;: 3.14, # Minimum float value of the given property. For example for a TV product 1.00.
        &quot;propertyName&quot;: &quot;A String&quot;, # Name of the given property. For example, &quot;Screen-Resolution&quot; for a TV product. Maximum string size is 256 characters.
        &quot;textValue&quot;: [ # Text value of the given property. For example, &quot;8K(UHD)&quot; could be a text value for a TV product. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order. Maximum string size is 256 characters.
          &quot;A String&quot;,
        ],
        &quot;unitCode&quot;: &quot;A String&quot;, # Unit of the given property. For example, &quot;Pixels&quot; for a TV product. Maximum string size is 256B.
      },
    ],
    &quot;color&quot;: &quot;A String&quot;, # [Color](https://support.google.com/merchants/answer/6324487) of the item. For example, &quot;red&quot;.
    &quot;condition&quot;: &quot;A String&quot;, # [Condition](https://support.google.com/merchants/answer/6324469) or state of the item. For example, &quot;new&quot; or &quot;used&quot;.
    &quot;costOfGoodsSold&quot;: { # The price represented as a number and currency. # Cost of goods sold. Used for gross profit reporting.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;customLabel0&quot;: &quot;A String&quot;, # [Custom label 0](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;customLabel1&quot;: &quot;A String&quot;, # [Custom label 1](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;customLabel2&quot;: &quot;A String&quot;, # [Custom label 2](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;customLabel3&quot;: &quot;A String&quot;, # [Custom label 3](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;customLabel4&quot;: &quot;A String&quot;, # [Custom label 4](https://support.google.com/merchants/answer/6324473) for custom grouping of items in a Shopping campaign.
    &quot;description&quot;: &quot;A String&quot;, # Description of the item.
    &quot;disclosureDate&quot;: &quot;A String&quot;, # The date time when an offer becomes visible in search results across Google’s YouTube surfaces, in [ISO 8601](http://en.wikipedia.org/wiki/ISO_8601) format. See [Disclosure date](https://support.google.com/merchants/answer/13034208) for more information.
    &quot;displayAdsId&quot;: &quot;A String&quot;, # An identifier for an item for dynamic remarketing campaigns.
    &quot;displayAdsLink&quot;: &quot;A String&quot;, # URL directly to your item&#x27;s landing page for dynamic remarketing campaigns.
    &quot;displayAdsSimilarIds&quot;: [ # Advertiser-specified recommendations. For more information, see [Display ads attribute specification](https://support.google.com/merchants/answer/6069387).
      &quot;A String&quot;,
    ],
    &quot;displayAdsTitle&quot;: &quot;A String&quot;, # Title of an item for dynamic remarketing campaigns.
    &quot;displayAdsValue&quot;: 3.14, # Offer margin for dynamic remarketing campaigns. For more information, see [Display ads attribute](https://support.google.com/merchants/answer/6069387).
    &quot;energyEfficiencyClass&quot;: &quot;A String&quot;, # The energy efficiency class as defined in EU directive 2010/30/EU.
    &quot;excludedDestinations&quot;: [ # Destinations also known as [Marketing methods](https://support.google.com/merchants/answer/15130232) selections. The list of destinations to exclude for this target (corresponds to unchecked check boxes in Merchant Center). For more information, see [Excluded destination](https://support.google.com/merchants/answer/6324486). Note: We recommend setting destinations on datasources level for most use cases. Use this field within products to only setup exceptions.
      &quot;A String&quot;,
    ],
    &quot;expirationDate&quot;: &quot;A String&quot;, # Date on which the item should expire, as specified upon insertion, in [ISO 8601](http://en.wikipedia.org/wiki/ISO_8601) format. The actual expiration date is exposed in `productstatuses` as [googleExpirationDate](https://support.google.com/merchants/answer/6324499) and might be earlier if `expirationDate` is too far in the future.
    &quot;externalSellerId&quot;: &quot;A String&quot;, # Required for multi-seller accounts. Use this attribute if you&#x27;re a marketplace uploading products for various sellers to your multi-seller account.
    &quot;freeShippingThreshold&quot;: [ # Conditions to be met for a product to have free shipping.
      { # Conditions to be met for a product to have free shipping.
        &quot;country&quot;: &quot;A String&quot;, # The [CLDR territory code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) of the country to which an item will ship.
        &quot;priceThreshold&quot;: { # The price represented as a number and currency. # The minimum product price for the shipping cost to become free. Represented as a number.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
      },
    ],
    &quot;gender&quot;: &quot;A String&quot;, # Target [gender](https://support.google.com/merchants/answer/6324479) of the item. For example, &quot;male&quot; or &quot;female&quot;.
    &quot;googleProductCategory&quot;: &quot;A String&quot;, # Google&#x27;s category of the item (see [Google product taxonomy](https://support.google.com/merchants/answer/1705911)). When querying products, this field will contain the user provided value. There is currently no way to get back the auto assigned google product categories through the API.
    &quot;gtin&quot;: [ # Global Trade Item Numbers ([GTIN](https://support.google.com/merchants/answer/188494#gtin)) of the item. You can provide up to 10 GTINs. Deprecated: Use `gtins` instead.
      &quot;A String&quot;,
    ],
    &quot;gtins&quot;: [ # A list of Global Trade Item Numbers ([GTIN](https://support.google.com/merchants/answer/188494#gtin)) of the item. You can provide up to 10 GTINs.
      &quot;A String&quot;,
    ],
    &quot;identifierExists&quot;: True or False, # Set this value to false when the item does not have unique product identifiers appropriate to its category, such as GTIN, MPN, and brand. Defaults to true, if not provided.
    &quot;imageLink&quot;: &quot;A String&quot;, # URL of an image of the item.
    &quot;includedDestinations&quot;: [ # Destinations also known as [Marketing methods](https://support.google.com/merchants/answer/15130232) selections. The list of destinations to include for this target (corresponds to checked check boxes in Merchant Center). Default destinations are always included unless provided in `excludedDestinations`. For more information, see [Included destination](https://support.google.com/merchants/answer/7501026). Note: We recommend setting destinations on datasources level for most use cases. Use this field within products to only setup exceptions.
      &quot;A String&quot;,
    ],
    &quot;installment&quot;: { # A message that represents installment. # Number and amount of installments to pay for an item.
      &quot;amount&quot;: { # The price represented as a number and currency. # The amount the buyer has to pay per month.
        &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
        &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
      },
      &quot;creditType&quot;: &quot;A String&quot;, # Type of installment payments. Supported values are: * &quot;`finance`&quot; * &quot;`lease`&quot;
      &quot;downpayment&quot;: { # The price represented as a number and currency. # The up-front down payment amount the buyer has to pay.
        &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
        &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
      },
      &quot;months&quot;: &quot;A String&quot;, # The number of installments the buyer has to pay.
    },
    &quot;isBundle&quot;: True or False, # Whether the item is a business-defined sub-API. A [sub-API] (https://support.google.com/merchants/answer/6324449) is a custom grouping of different products sold by a business for a single price.
    &quot;itemGroupId&quot;: &quot;A String&quot;, # Shared identifier for all variants of the same product.
    &quot;lifestyleImageLinks&quot;: [ # Additional URLs of lifestyle images of the item, used to explicitly identify images that showcase your item in a real-world context. See the [Help Center article](https://support.google.com/merchants/answer/9103186) for more information.
      &quot;A String&quot;,
    ],
    &quot;link&quot;: &quot;A String&quot;, # URL directly linking to your item&#x27;s page on your online store.
    &quot;linkTemplate&quot;: &quot;A String&quot;, # [Link template](https://support.google.com/merchants/answer/13871172) for business hosted local storefront.
    &quot;loyaltyPoints&quot;: { # A message that represents loyalty points. # Loyalty points that users receive after purchasing the item. Japan only.
      &quot;name&quot;: &quot;A String&quot;, # Name of loyalty points program. It is recommended to limit the name to 12 full-width characters or 24 Roman characters.
      &quot;pointsValue&quot;: &quot;A String&quot;, # The retailer&#x27;s loyalty points in absolute value.
      &quot;ratio&quot;: 3.14, # The ratio of a point when converted to currency. Google assumes currency based on Merchant Center settings. If ratio is left out, it defaults to 1.0.
    },
    &quot;loyaltyPrograms&quot;: [ # A list of loyalty program information that is used to surface loyalty benefits (for example, better pricing, points, etc) to the user of this item.
      { # A message that represents loyalty program.
        &quot;cashbackForFutureUse&quot;: { # The price represented as a number and currency. # The cashback that can be used for future purchases.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
        &quot;loyaltyPoints&quot;: &quot;A String&quot;, # The amount of loyalty points earned on a purchase.
        &quot;memberPriceEffectiveDate&quot;: { # Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time. # A date range during which the item is eligible for member price. If not specified, the member price is always applicable. The date range is represented by a pair of ISO 8601 dates separated by a space, comma, or slash.
          &quot;endTime&quot;: &quot;A String&quot;, # Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end.
          &quot;startTime&quot;: &quot;A String&quot;, # Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start.
        },
        &quot;price&quot;: { # The price represented as a number and currency. # The price for members of the given tier, that is, the instant discount price. Must be smaller or equal to the regular price.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
        &quot;programLabel&quot;: &quot;A String&quot;, # The label of the loyalty program. This is an internal label that uniquely identifies the relationship between a business entity and a loyalty program entity. The label must be provided so that the system can associate the assets below (for example, price and points) with a business. The corresponding program must be linked to the Merchant Center account.
        &quot;shippingLabel&quot;: &quot;A String&quot;, # The label of the shipping benefit. If the field has value, this offer has loyalty shipping benefit. If the field value isn&#x27;t provided, the item is not eligible for loyalty shipping for the given loyalty tier.
        &quot;tierLabel&quot;: &quot;A String&quot;, # The label of the tier within the loyalty program. Must match one of the labels within the program.
      },
    ],
    &quot;material&quot;: &quot;A String&quot;, # The [material](https://support.google.com/merchants/answer/6324410) of which the item is made. For example, &quot;Leather&quot; or &quot;Cotton&quot;.
    &quot;maxEnergyEfficiencyClass&quot;: &quot;A String&quot;, # The energy efficiency class as defined in EU directive 2010/30/EU.
    &quot;maxHandlingTime&quot;: &quot;A String&quot;, # Maximal product handling time (in business days).
    &quot;maximumRetailPrice&quot;: { # The price represented as a number and currency. # Maximum retail price (MRP) of the item. Applicable to India only.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;minEnergyEfficiencyClass&quot;: &quot;A String&quot;, # The energy efficiency class as defined in EU directive 2010/30/EU.
    &quot;minHandlingTime&quot;: &quot;A String&quot;, # Minimal product handling time (in business days).
    &quot;mobileLink&quot;: &quot;A String&quot;, # URL for the mobile-optimized version of your item&#x27;s landing page.
    &quot;mobileLinkTemplate&quot;: &quot;A String&quot;, # [Link template](https://support.google.com/merchants/answer/13870216) for business hosted local storefront optimized for mobile devices.
    &quot;mpn&quot;: &quot;A String&quot;, # Manufacturer Part Number ([MPN](https://support.google.com/merchants/answer/188494#mpn)) of the item.
    &quot;multipack&quot;: &quot;A String&quot;, # The number of identical products in a business-defined multipack.
    &quot;pattern&quot;: &quot;A String&quot;, # The item&#x27;s [pattern](https://support.google.com/merchants/answer/6324483). For example, polka dots.
    &quot;pause&quot;: &quot;A String&quot;, # Publication of this item will be temporarily [paused](https://support.google.com/merchants/answer/11909930).
    &quot;pickupMethod&quot;: &quot;A String&quot;, # The [pickup](https://support.google.com/merchants/answer/14634021) option for the item.
    &quot;pickupSla&quot;: &quot;A String&quot;, # Item store pickup timeline. For more information, see [Pickup SLA](https://support.google.com/merchants/answer/14635400).
    &quot;price&quot;: { # The price represented as a number and currency. # Price of the item.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;productDetails&quot;: [ # Technical specification or additional product details.
      { # The product details.
        &quot;attributeName&quot;: &quot;A String&quot;, # The name of the product detail.
        &quot;attributeValue&quot;: &quot;A String&quot;, # The value of the product detail.
        &quot;sectionName&quot;: &quot;A String&quot;, # The section header used to group a set of product details.
      },
    ],
    &quot;productHeight&quot;: { # The dimension of the product. # The height of the product in the units provided. The value must be between 0 (exclusive) and 3000 (inclusive).
      &quot;unit&quot;: &quot;A String&quot;, # Required. The dimension units. Acceptable values are: * &quot;`in`&quot; * &quot;`cm`&quot;
      &quot;value&quot;: 3.14, # Required. The dimension value represented as a number. The value can have a maximum precision of four decimal places.
    },
    &quot;productHighlights&quot;: [ # Bullet points describing the most relevant [product highlights](https://support.google.com/merchants/answer/9216100).
      &quot;A String&quot;,
    ],
    &quot;productLength&quot;: { # The dimension of the product. # The length of the product in the units provided. The value must be between 0 (exclusive) and 3000 (inclusive).
      &quot;unit&quot;: &quot;A String&quot;, # Required. The dimension units. Acceptable values are: * &quot;`in`&quot; * &quot;`cm`&quot;
      &quot;value&quot;: 3.14, # Required. The dimension value represented as a number. The value can have a maximum precision of four decimal places.
    },
    &quot;productTypes&quot;: [ # Categories of the item (formatted as in [product data specification](https://support.google.com/merchants/answer/7052112#product_category)).
      &quot;A String&quot;,
    ],
    &quot;productWeight&quot;: { # The weight of the product. # The weight of the product in the units provided. The value must be between 0 (exclusive) and 2000 (inclusive).
      &quot;unit&quot;: &quot;A String&quot;, # Required. The weight unit. Acceptable values are: * &quot;`g`&quot; * &quot;`kg`&quot; * &quot;`oz`&quot; * &quot;`lb`&quot;
      &quot;value&quot;: 3.14, # Required. The weight represented as a number. The weight can have a maximum precision of four decimal places.
    },
    &quot;productWidth&quot;: { # The dimension of the product. # The width of the product in the units provided. The value must be between 0 (exclusive) and 3000 (inclusive).
      &quot;unit&quot;: &quot;A String&quot;, # Required. The dimension units. Acceptable values are: * &quot;`in`&quot; * &quot;`cm`&quot;
      &quot;value&quot;: 3.14, # Required. The dimension value represented as a number. The value can have a maximum precision of four decimal places.
    },
    &quot;promotionIds&quot;: [ # The unique ID of a promotion.
      &quot;A String&quot;,
    ],
    &quot;salePrice&quot;: { # The price represented as a number and currency. # Advertised sale price of the item.
      &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
      &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
    },
    &quot;salePriceEffectiveDate&quot;: { # Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time. # Date range during which the item is on sale, see [product data specification](https://support.google.com/merchants/answer/7052112#price_and_availability).
      &quot;endTime&quot;: &quot;A String&quot;, # Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end.
      &quot;startTime&quot;: &quot;A String&quot;, # Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start.
    },
    &quot;sellOnGoogleQuantity&quot;: &quot;A String&quot;, # The quantity of the product that is available for selling on Google. Supported only for online products.
    &quot;shipping&quot;: [ # Shipping rules.
      { # The Shipping of the product.
        &quot;country&quot;: &quot;A String&quot;, # The [CLDR territory code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) of the country to which an item will ship.
        &quot;locationGroupName&quot;: &quot;A String&quot;, # The location where the shipping is applicable, represented by a location group name.
        &quot;locationId&quot;: &quot;A String&quot;, # The numeric ID of a location that the shipping rate applies to as defined in the [AdWords API](https://developers.google.com/adwords/api/docs/appendix/geotargeting).
        &quot;maxHandlingTime&quot;: &quot;A String&quot;, # Maximum handling time (inclusive) between when the order is received and shipped in business days. 0 means that the order is shipped on the same day as it is received if it happens before the cut-off time. Both maxHandlingTime and maxTransitTime are required if providing shipping speeds. minHandlingTime is optional if maxHandlingTime is present.
        &quot;maxTransitTime&quot;: &quot;A String&quot;, # Maximum transit time (inclusive) between when the order has shipped and when it is delivered in business days. 0 means that the order is delivered on the same day as it ships. Both maxHandlingTime and maxTransitTime are required if providing shipping speeds. minTransitTime is optional if maxTransitTime is present.
        &quot;minHandlingTime&quot;: &quot;A String&quot;, # Minimum handling time (inclusive) between when the order is received and shipped in business days. 0 means that the order is shipped on the same day as it is received if it happens before the cut-off time. minHandlingTime can only be present together with maxHandlingTime; but it is not required if maxHandlingTime is present.
        &quot;minTransitTime&quot;: &quot;A String&quot;, # Minimum transit time (inclusive) between when the order has shipped and when it is delivered in business days. 0 means that the order is delivered on the same day as it ships. minTransitTime can only be present together with maxTransitTime; but it is not required if maxTransitTime is present.
        &quot;postalCode&quot;: &quot;A String&quot;, # The postal code range that the shipping rate applies to, represented by a postal code, a postal code prefix followed by a * wildcard, a range between two postal codes or two postal code prefixes of equal length.
        &quot;price&quot;: { # The price represented as a number and currency. # Fixed shipping price, represented as a number.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
        &quot;region&quot;: &quot;A String&quot;, # The geographic region to which a shipping rate applies. See [region](https://support.google.com/merchants/answer/6324484) for more information.
        &quot;service&quot;: &quot;A String&quot;, # A free-form description of the service class or delivery speed.
      },
    ],
    &quot;shippingHeight&quot;: { # The ShippingDimension of the product. # Height of the item for shipping.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of value.
      &quot;value&quot;: 3.14, # The dimension of the product used to calculate the shipping cost of the item.
    },
    &quot;shippingLabel&quot;: &quot;A String&quot;, # The shipping label of the product, used to group product in account-level shipping rules.
    &quot;shippingLength&quot;: { # The ShippingDimension of the product. # Length of the item for shipping.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of value.
      &quot;value&quot;: 3.14, # The dimension of the product used to calculate the shipping cost of the item.
    },
    &quot;shippingWeight&quot;: { # The ShippingWeight of the product. # Weight of the item for shipping.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of value.
      &quot;value&quot;: 3.14, # The weight of the product used to calculate the shipping cost of the item.
    },
    &quot;shippingWidth&quot;: { # The ShippingDimension of the product. # Width of the item for shipping.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of value.
      &quot;value&quot;: 3.14, # The dimension of the product used to calculate the shipping cost of the item.
    },
    &quot;shoppingAdsExcludedCountries&quot;: [ # List of country codes [(ISO 3166-1 alpha-2)](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) to exclude the offer from Shopping Ads destination. Countries from this list are removed from countries configured in data source settings.
      &quot;A String&quot;,
    ],
    &quot;size&quot;: &quot;A String&quot;, # Size of the item. Only one value is allowed. For variants with different sizes, insert a separate product for each size with the same `itemGroupId` value, see [Size](https://support.google.com/merchants/answer/6324492).
    &quot;sizeSystem&quot;: &quot;A String&quot;, # System in which the size is specified. Recommended for apparel items. For example, &quot;US&quot;, &quot;UK&quot;, &quot;DE&quot;. For more information, see [Size system](https://support.google.com/merchants/answer/6324502).
    &quot;sizeTypes&quot;: [ # The cut of the item. It can be used to represent combined size types for apparel items. Maximum two of size types can be provided, see [Size type](https://support.google.com/merchants/answer/6324497). For example, &quot;petite&quot;, &quot;plus size&quot;.
      &quot;A String&quot;,
    ],
    &quot;structuredDescription&quot;: { # Structured description, for algorithmically (AI)-generated descriptions. # Structured description, for algorithmically (AI)-generated descriptions.
      &quot;content&quot;: &quot;A String&quot;, # The description text Maximum length is 5000 characters
      &quot;digitalSourceType&quot;: &quot;A String&quot;, # The digital source type, for example &quot;trained_algorithmic_media&quot;. Following [IPTC](https://cv.iptc.org/newscodes/digitalsourcetype). Maximum length is 40 characters.
    },
    &quot;structuredTitle&quot;: { # Structured title, for algorithmically (AI)-generated titles. # Structured title, for algorithmically (AI)-generated titles.
      &quot;content&quot;: &quot;A String&quot;, # The title text Maximum length is 150 characters
      &quot;digitalSourceType&quot;: &quot;A String&quot;, # The digital source type, for example &quot;trained_algorithmic_media&quot;. Following [IPTC](https://cv.iptc.org/newscodes/digitalsourcetype). Maximum length is 40 characters.
    },
    &quot;subscriptionCost&quot;: { # The SubscriptionCost of the product. # Number of periods (months or years) and amount of payment per period for an item with an associated subscription contract.
      &quot;amount&quot;: { # The price represented as a number and currency. # The amount the buyer has to pay per subscription period.
        &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
        &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
      },
      &quot;period&quot;: &quot;A String&quot;, # The type of subscription period. Supported values are: * &quot;`month`&quot; * &quot;`year`&quot;
      &quot;periodLength&quot;: &quot;A String&quot;, # The number of subscription periods the buyer has to pay.
    },
    &quot;sustainabilityIncentives&quot;: [ # The list of sustainability incentive programs.
      { # Information regarding sustainability-related incentive programs such as rebates or tax relief.
        &quot;amount&quot;: { # The price represented as a number and currency. # The fixed amount of the incentive.
          &quot;amountMicros&quot;: &quot;A String&quot;, # The price represented as a number in micros (1 million micros is an equivalent to one&#x27;s currency standard unit, for example, 1 USD = 1000000 micros).
          &quot;currencyCode&quot;: &quot;A String&quot;, # The currency of the price using three-letter acronyms according to [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217).
        },
        &quot;percentage&quot;: 3.14, # The percentage of the sale price that the incentive is applied to.
        &quot;type&quot;: &quot;A String&quot;, # Sustainability incentive program.
      },
    ],
    &quot;taxCategory&quot;: &quot;A String&quot;, # The [tax category](https://support.google.com/merchants/answer/7569847) of the product.
    &quot;taxes&quot;: [ # Tax information.
      { # The Tax of the product.
        &quot;country&quot;: &quot;A String&quot;, # The country within which the item is taxed, specified as a [CLDR territory code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml).
        &quot;locationId&quot;: &quot;A String&quot;, # The numeric ID of a location that the tax rate applies to as defined in the [AdWords API](https://developers.google.com/adwords/api/docs/appendix/geotargeting).
        &quot;postalCode&quot;: &quot;A String&quot;, # The postal code range that the tax rate applies to, represented by a ZIP code, a ZIP code prefix using * wildcard, a range between two ZIP codes or two ZIP code prefixes of equal length. Examples: 94114, 94*, 94002-95460, 94*-95*.
        &quot;rate&quot;: 3.14, # The percentage of tax rate that applies to the item price.
        &quot;region&quot;: &quot;A String&quot;, # The geographic region to which the tax rate applies.
        &quot;taxShip&quot;: True or False, # Set to true if tax is charged on shipping.
      },
    ],
    &quot;title&quot;: &quot;A String&quot;, # Title of the item.
    &quot;transitTimeLabel&quot;: &quot;A String&quot;, # The transit time label of the product, used to group product in account-level transit time tables.
    &quot;unitPricingBaseMeasure&quot;: { # The UnitPricingBaseMeasure of the product. # The preference of the denominator of the unit price.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of the denominator.
      &quot;value&quot;: &quot;A String&quot;, # The denominator of the unit price.
    },
    &quot;unitPricingMeasure&quot;: { # The UnitPricingMeasure of the product. # The measure and dimension of an item.
      &quot;unit&quot;: &quot;A String&quot;, # The unit of the measure.
      &quot;value&quot;: 3.14, # The measure of an item.
    },
    &quot;virtualModelLink&quot;: &quot;A String&quot;, # URL of the 3D image of the item. See the [Help Center article](https://support.google.com/merchants/answer/13674896) for more information.
  },
  &quot;channel&quot;: &quot;A String&quot;, # Immutable. The [channel](https://support.google.com/merchants/answer/7361332) of the product.
  &quot;contentLanguage&quot;: &quot;A String&quot;, # Required. Immutable. The two-letter [ISO 639-1](http://en.wikipedia.org/wiki/ISO_639-1) language code for the product.
  &quot;customAttributes&quot;: [ # Optional. A list of custom (merchant-provided) attributes. It can also be used for submitting any attribute of the data specification in its generic form (for example, `{ &quot;name&quot;: &quot;size type&quot;, &quot;value&quot;: &quot;regular&quot; }`). This is useful for submitting attributes not explicitly exposed by the API. Maximum allowed number of characters for each custom attribute is 10240 (represents sum of characters for name and value). Maximum 2500 custom attributes can be set per product, with total size of 102.4kB. Underscores in custom attribute names are replaced by spaces upon insertion.
    { # A message that represents custom attributes. Exactly one of `value` or `group_values` must not be empty.
      &quot;groupValues&quot;: [ # Subattributes within this attribute group. If `group_values` is not empty, `value` must be empty.
        # Object with schema name: CustomAttribute
      ],
      &quot;name&quot;: &quot;A String&quot;, # The name of the attribute.
      &quot;value&quot;: &quot;A String&quot;, # The value of the attribute. If `value` is not empty, `group_values` must be empty.
    },
  ],
  &quot;feedLabel&quot;: &quot;A String&quot;, # Required. Immutable. The feed label that lets you categorize and identify your products. The maximum allowed characters are 20, and the supported characters are `A-Z`, `0-9`, hyphen, and underscore. The feed label must not include any spaces. For more information, see [Using feed labels](//support.google.com/merchants/answer/14994087).
  &quot;name&quot;: &quot;A String&quot;, # Identifier. The name of the product input. Format: `accounts/{account}/productInputs/{productinput}` where the last section `productinput` consists of: `content_language~feed_label~offer_id` example for product input name is `accounts/123/productInputs/en~US~sku123`. A legacy local product input name would be `accounts/123/productInputs/local~en~US~sku123`. Note: For calls to the v1beta version, the `productInput` section consists of: `channel~content_language~feed_label~offer_id`, for example: `accounts/123/productInputs/online~en~US~sku123`.
  &quot;offerId&quot;: &quot;A String&quot;, # Required. Immutable. Your unique identifier for the product. This is the same for the product input and processed product. Leading and trailing whitespaces are stripped and multiple whitespaces are replaced by a single whitespace upon submission. See the [products data specification](https://support.google.com/merchants/answer/188494#id) for details.
  &quot;product&quot;: &quot;A String&quot;, # Output only. The name of the processed product. Format: `accounts/{account}/products/{product}`
  &quot;versionNumber&quot;: &quot;A String&quot;, # Optional. Immutable. Represents the existing version (freshness) of the product, which can be used to preserve the right order when multiple updates are done at the same time. If set, the insertion is prevented when version number is lower than the current version number of the existing product. Re-insertion (for example, product refresh after 30 days) can be performed with the current `version_number`. Only supported for insertions into primary data sources. Do not set this field for updates. Do not set this field for insertions into supplemental data sources. If the operation is prevented, the aborted exception will be thrown.
}</pre>
</div>

</body></html>