google-apis-datamanager_v1 0.8.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f0f14fcca9505e9482d6142d1f26808a901e4106738bb548c97d4a3cd374d646
4
- data.tar.gz: c70f13667d53156edc1074474b26cd94818ada4ceda6a616ea7cfb1ab385b760
3
+ metadata.gz: 2b5d8a723c2e163cc57111a60fde8346117df361e60f820455551d62b60fd067
4
+ data.tar.gz: 93991d224602710bc58e82f748fa7c6181c9f8b030b201babe70be47623cbfbe
5
5
  SHA512:
6
- metadata.gz: 45ccfe1d65eb6dff791be2adbf7512ff6285d32f263556c42cd2c9388dd1073fde0499c1345bd5927e495babfd6a59372d800bf11ad1658fa8250dab4ce34d3f
7
- data.tar.gz: 5b30403c7e55ff59a7e8c4feda36d137cdb105c6979b521513f86b668e9edcfb51c7c8d537b08a3edaf9097e0c5e70bb911febbe265c3e8eab4115e9f5fa65b4
6
+ metadata.gz: 468cc5bd3e5e403f4df4917273e2f5ac645b1c45f40ce7574facbfef28a362253e89fed04e906a4b119200bd73619242619acce02132570a9e62a904f6ae829f
7
+ data.tar.gz: 8898b7570689e19d0c259c92647556b3ae46f1a67c5e86195b8f419cc232a04bda8feec0a73f5155c323fef3e0f99d515366bce1d6157867ec301ce2ccbb8526
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datamanager_v1
2
2
 
3
+ ### v0.9.0 (2026-05-17)
4
+
5
+ * Regenerated from discovery document revision 20260507
6
+
3
7
  ### v0.8.0 (2026-04-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20260420
@@ -43,6 +43,12 @@ module Google
43
43
  # @return [Google::Apis::DatamanagerV1::DeviceInfo]
44
44
  attr_accessor :landing_page_device_info
45
45
 
46
+ # Optional. The mobile identifier for advertisers. This would be IDFA on iOS,
47
+ # AdID on Android, or other platforms’ identifiers for advertisers.
48
+ # Corresponds to the JSON property `mobileDeviceId`
49
+ # @return [String]
50
+ attr_accessor :mobile_device_id
51
+
46
52
  # Optional. Session attributes for event attribution and modeling.
47
53
  # Corresponds to the JSON property `sessionAttributes`
48
54
  # @return [String]
@@ -63,6 +69,7 @@ module Google
63
69
  @gbraid = args[:gbraid] if args.key?(:gbraid)
64
70
  @gclid = args[:gclid] if args.key?(:gclid)
65
71
  @landing_page_device_info = args[:landing_page_device_info] if args.key?(:landing_page_device_info)
72
+ @mobile_device_id = args[:mobile_device_id] if args.key?(:mobile_device_id)
66
73
  @session_attributes = args[:session_attributes] if args.key?(:session_attributes)
67
74
  @wbraid = args[:wbraid] if args.key?(:wbraid)
68
75
  end
@@ -239,6 +246,14 @@ module Google
239
246
  class CartData
240
247
  include Google::Apis::Core::Hashable
241
248
 
249
+ # Optional. The list of coupon codes that were applied to the cart. Cart-level
250
+ # and item-level coupon codes are independent. If the event is for a Google
251
+ # Analytics destination, only provide a single coupon code. Google Analytics
252
+ # ignores additional coupon codes.
253
+ # Corresponds to the JSON property `couponCodes`
254
+ # @return [Array<String>]
255
+ attr_accessor :coupon_codes
256
+
242
257
  # Optional. The list of items associated with the event.
243
258
  # Corresponds to the JSON property `items`
244
259
  # @return [Array<Google::Apis::DatamanagerV1::Item>]
@@ -271,6 +286,7 @@ module Google
271
286
 
272
287
  # Update properties of this object
273
288
  def update!(**args)
289
+ @coupon_codes = args[:coupon_codes] if args.key?(:coupon_codes)
274
290
  @items = args[:items] if args.key?(:items)
275
291
  @merchant_feed_label = args[:merchant_feed_label] if args.key?(:merchant_feed_label)
276
292
  @merchant_feed_language_code = args[:merchant_feed_language_code] if args.key?(:merchant_feed_language_code)
@@ -415,6 +431,27 @@ module Google
415
431
  class DeviceInfo
416
432
  include Google::Apis::Core::Hashable
417
433
 
434
+ # Optional. The brand of the device.
435
+ # Corresponds to the JSON property `brand`
436
+ # @return [String]
437
+ attr_accessor :brand
438
+
439
+ # Optional. The brand or type of the browser.
440
+ # Corresponds to the JSON property `browser`
441
+ # @return [String]
442
+ attr_accessor :browser
443
+
444
+ # Optional. The version of the browser.
445
+ # Corresponds to the JSON property `browserVersion`
446
+ # @return [String]
447
+ attr_accessor :browser_version
448
+
449
+ # Optional. The category of device. For example, “desktop”, “tablet”, “mobile”, “
450
+ # smart TV”.
451
+ # Corresponds to the JSON property `category`
452
+ # @return [String]
453
+ attr_accessor :category
454
+
418
455
  # Optional. The IP address of the device for the given context. **Note:** Google
419
456
  # Ads does not support IP address matching for end users in the European
420
457
  # Economic Area (EEA), United Kingdom (UK), or Switzerland (CH). Add logic to
@@ -428,6 +465,36 @@ module Google
428
465
  # @return [String]
429
466
  attr_accessor :ip_address
430
467
 
468
+ # Optional. The language the device uses in ISO 639-1 format.
469
+ # Corresponds to the JSON property `languageCode`
470
+ # @return [String]
471
+ attr_accessor :language_code
472
+
473
+ # Optional. The model of the device.
474
+ # Corresponds to the JSON property `model`
475
+ # @return [String]
476
+ attr_accessor :model
477
+
478
+ # Optional. The operating system or platform of the device.
479
+ # Corresponds to the JSON property `operatingSystem`
480
+ # @return [String]
481
+ attr_accessor :operating_system
482
+
483
+ # Optional. The version of the operating system or platform.
484
+ # Corresponds to the JSON property `operatingSystemVersion`
485
+ # @return [String]
486
+ attr_accessor :operating_system_version
487
+
488
+ # Optional. The height of the screen in pixels.
489
+ # Corresponds to the JSON property `screenHeight`
490
+ # @return [Fixnum]
491
+ attr_accessor :screen_height
492
+
493
+ # Optional. The width of the screen in pixels.
494
+ # Corresponds to the JSON property `screenWidth`
495
+ # @return [Fixnum]
496
+ attr_accessor :screen_width
497
+
431
498
  # Optional. The user-agent string of the device for the given context.
432
499
  # Corresponds to the JSON property `userAgent`
433
500
  # @return [String]
@@ -439,7 +506,17 @@ module Google
439
506
 
440
507
  # Update properties of this object
441
508
  def update!(**args)
509
+ @brand = args[:brand] if args.key?(:brand)
510
+ @browser = args[:browser] if args.key?(:browser)
511
+ @browser_version = args[:browser_version] if args.key?(:browser_version)
512
+ @category = args[:category] if args.key?(:category)
442
513
  @ip_address = args[:ip_address] if args.key?(:ip_address)
514
+ @language_code = args[:language_code] if args.key?(:language_code)
515
+ @model = args[:model] if args.key?(:model)
516
+ @operating_system = args[:operating_system] if args.key?(:operating_system)
517
+ @operating_system_version = args[:operating_system_version] if args.key?(:operating_system_version)
518
+ @screen_height = args[:screen_height] if args.key?(:screen_height)
519
+ @screen_width = args[:screen_width] if args.key?(:screen_width)
443
520
  @user_agent = args[:user_agent] if args.key?(:user_agent)
444
521
  end
445
522
  end
@@ -547,6 +624,12 @@ module Google
547
624
  # @return [Array<Google::Apis::DatamanagerV1::EventParameter>]
548
625
  attr_accessor :additional_event_parameters
549
626
 
627
+ # Optional. A unique identifier for the user instance of an app client for this
628
+ # GA4 app stream.
629
+ # Corresponds to the JSON property `appInstanceId`
630
+ # @return [String]
631
+ attr_accessor :app_instance_id
632
+
550
633
  # The cart data associated with the event.
551
634
  # Corresponds to the JSON property `cartData`
552
635
  # @return [Google::Apis::DatamanagerV1::CartData]
@@ -593,6 +676,11 @@ module Google
593
676
  # @return [Google::Apis::DatamanagerV1::DeviceInfo]
594
677
  attr_accessor :event_device_info
595
678
 
679
+ # The location where the event occurred.
680
+ # Corresponds to the JSON property `eventLocation`
681
+ # @return [Google::Apis::DatamanagerV1::EventLocation]
682
+ attr_accessor :event_location
683
+
596
684
  # Optional. The name of the event. Required for GA4 events.
597
685
  # Corresponds to the JSON property `eventName`
598
686
  # @return [String]
@@ -619,8 +707,13 @@ module Google
619
707
  # @return [String]
620
708
  attr_accessor :last_updated_timestamp
621
709
 
622
- # Optional. The unique identifier for this event. Required for conversions using
623
- # multiple data sources.
710
+ # Data that identifies the user. At least one identifier is required.
711
+ # Corresponds to the JSON property `thirdPartyUserData`
712
+ # @return [Google::Apis::DatamanagerV1::UserData]
713
+ attr_accessor :third_party_user_data
714
+
715
+ # Optional. The unique identifier for this event. Required for events sent as an
716
+ # additional data source for tag conversions.
624
717
  # Corresponds to the JSON property `transactionId`
625
718
  # @return [String]
626
719
  attr_accessor :transaction_id
@@ -650,6 +743,7 @@ module Google
650
743
  def update!(**args)
651
744
  @ad_identifiers = args[:ad_identifiers] if args.key?(:ad_identifiers)
652
745
  @additional_event_parameters = args[:additional_event_parameters] if args.key?(:additional_event_parameters)
746
+ @app_instance_id = args[:app_instance_id] if args.key?(:app_instance_id)
653
747
  @cart_data = args[:cart_data] if args.key?(:cart_data)
654
748
  @client_id = args[:client_id] if args.key?(:client_id)
655
749
  @consent = args[:consent] if args.key?(:consent)
@@ -658,11 +752,13 @@ module Google
658
752
  @custom_variables = args[:custom_variables] if args.key?(:custom_variables)
659
753
  @destination_references = args[:destination_references] if args.key?(:destination_references)
660
754
  @event_device_info = args[:event_device_info] if args.key?(:event_device_info)
755
+ @event_location = args[:event_location] if args.key?(:event_location)
661
756
  @event_name = args[:event_name] if args.key?(:event_name)
662
757
  @event_source = args[:event_source] if args.key?(:event_source)
663
758
  @event_timestamp = args[:event_timestamp] if args.key?(:event_timestamp)
664
759
  @experimental_fields = args[:experimental_fields] if args.key?(:experimental_fields)
665
760
  @last_updated_timestamp = args[:last_updated_timestamp] if args.key?(:last_updated_timestamp)
761
+ @third_party_user_data = args[:third_party_user_data] if args.key?(:third_party_user_data)
666
762
  @transaction_id = args[:transaction_id] if args.key?(:transaction_id)
667
763
  @user_data = args[:user_data] if args.key?(:user_data)
668
764
  @user_id = args[:user_id] if args.key?(:user_id)
@@ -670,6 +766,56 @@ module Google
670
766
  end
671
767
  end
672
768
 
769
+ # The location where the event occurred.
770
+ class EventLocation
771
+ include Google::Apis::Core::Hashable
772
+
773
+ # Optional. The name of the city where the event occurred.
774
+ # Corresponds to the JSON property `city`
775
+ # @return [String]
776
+ attr_accessor :city
777
+
778
+ # Optional. The continent code in UN M49 format where the event occurred.
779
+ # Corresponds to the JSON property `continentCode`
780
+ # @return [String]
781
+ attr_accessor :continent_code
782
+
783
+ # Optional. The 2-letter CLDR region code of the user's address.
784
+ # Corresponds to the JSON property `regionCode`
785
+ # @return [String]
786
+ attr_accessor :region_code
787
+
788
+ # Optional. Required for Store Sales. The identifier to represent a physical
789
+ # store where the event happened.
790
+ # Corresponds to the JSON property `storeId`
791
+ # @return [String]
792
+ attr_accessor :store_id
793
+
794
+ # Optional. The subcontinent code in UN M49 format where the event occurred.
795
+ # Corresponds to the JSON property `subcontinentCode`
796
+ # @return [String]
797
+ attr_accessor :subcontinent_code
798
+
799
+ # Optional. The ISO 3166-2 subdivision code where the event occurred.
800
+ # Corresponds to the JSON property `subdivisionCode`
801
+ # @return [String]
802
+ attr_accessor :subdivision_code
803
+
804
+ def initialize(**args)
805
+ update!(**args)
806
+ end
807
+
808
+ # Update properties of this object
809
+ def update!(**args)
810
+ @city = args[:city] if args.key?(:city)
811
+ @continent_code = args[:continent_code] if args.key?(:continent_code)
812
+ @region_code = args[:region_code] if args.key?(:region_code)
813
+ @store_id = args[:store_id] if args.key?(:store_id)
814
+ @subcontinent_code = args[:subcontinent_code] if args.key?(:subcontinent_code)
815
+ @subdivision_code = args[:subdivision_code] if args.key?(:subdivision_code)
816
+ end
817
+ end
818
+
673
819
  # Event parameter for GA4 events.
674
820
  class EventParameter
675
821
  include Google::Apis::Core::Hashable
@@ -1219,11 +1365,45 @@ module Google
1219
1365
  # @return [Array<Google::Apis::DatamanagerV1::ItemParameter>]
1220
1366
  attr_accessor :additional_item_parameters
1221
1367
 
1368
+ # Optional. The conversion value associated with this item within the event, for
1369
+ # cases where the conversion value is different for each item.
1370
+ # Corresponds to the JSON property `conversionValue`
1371
+ # @return [Float]
1372
+ attr_accessor :conversion_value
1373
+
1374
+ # Optional. Additional key/value pair information to send to the conversion
1375
+ # containers (conversion action or Floodlight activity), when tracking per-item
1376
+ # conversions.
1377
+ # Corresponds to the JSON property `customVariables`
1378
+ # @return [Array<Google::Apis::DatamanagerV1::ItemCustomVariable>]
1379
+ attr_accessor :custom_variables
1380
+
1222
1381
  # Optional. A unique identifier to reference the item.
1223
1382
  # Corresponds to the JSON property `itemId`
1224
1383
  # @return [String]
1225
1384
  attr_accessor :item_id
1226
1385
 
1386
+ # Optional. The feed label of the Merchant Center feed. If countries are still
1387
+ # being used, the 2-letter country code in ISO-3166-1 alpha-2 can be used
1388
+ # instead. For Store Sales events this will override the value set at the cart
1389
+ # level. This field is ignored for other events.
1390
+ # Corresponds to the JSON property `merchantFeedLabel`
1391
+ # @return [String]
1392
+ attr_accessor :merchant_feed_label
1393
+
1394
+ # Optional. The language code in ISO 639-1 associated with the Merchant Center
1395
+ # feed where your items are uploaded.
1396
+ # Corresponds to the JSON property `merchantFeedLanguageCode`
1397
+ # @return [String]
1398
+ attr_accessor :merchant_feed_language_code
1399
+
1400
+ # Optional. The Merchant Center ID associated with the item. For Store Sales
1401
+ # events this will override the value set at the cart level. This field is
1402
+ # ignored for other events.
1403
+ # Corresponds to the JSON property `merchantId`
1404
+ # @return [String]
1405
+ attr_accessor :merchant_id
1406
+
1227
1407
  # Optional. The product ID within the Merchant Center account.
1228
1408
  # Corresponds to the JSON property `merchantProductId`
1229
1409
  # @return [String]
@@ -1247,13 +1427,52 @@ module Google
1247
1427
  # Update properties of this object
1248
1428
  def update!(**args)
1249
1429
  @additional_item_parameters = args[:additional_item_parameters] if args.key?(:additional_item_parameters)
1430
+ @conversion_value = args[:conversion_value] if args.key?(:conversion_value)
1431
+ @custom_variables = args[:custom_variables] if args.key?(:custom_variables)
1250
1432
  @item_id = args[:item_id] if args.key?(:item_id)
1433
+ @merchant_feed_label = args[:merchant_feed_label] if args.key?(:merchant_feed_label)
1434
+ @merchant_feed_language_code = args[:merchant_feed_language_code] if args.key?(:merchant_feed_language_code)
1435
+ @merchant_id = args[:merchant_id] if args.key?(:merchant_id)
1251
1436
  @merchant_product_id = args[:merchant_product_id] if args.key?(:merchant_product_id)
1252
1437
  @quantity = args[:quantity] if args.key?(:quantity)
1253
1438
  @unit_price = args[:unit_price] if args.key?(:unit_price)
1254
1439
  end
1255
1440
  end
1256
1441
 
1442
+ # Item-level custom variable for ads conversions.
1443
+ class ItemCustomVariable
1444
+ include Google::Apis::Core::Hashable
1445
+
1446
+ # Optional. Reference string used to determine which of the Event.
1447
+ # destination_references the custom variable should be sent to. If empty, the
1448
+ # Event.destination_references will be used.
1449
+ # Corresponds to the JSON property `destinationReferences`
1450
+ # @return [Array<String>]
1451
+ attr_accessor :destination_references
1452
+
1453
+ # Optional. The value to store for the custom variable.
1454
+ # Corresponds to the JSON property `value`
1455
+ # @return [String]
1456
+ attr_accessor :value
1457
+
1458
+ # Optional. The name of the custom variable to set. If the variable is not found
1459
+ # for the given destination, it will be ignored.
1460
+ # Corresponds to the JSON property `variable`
1461
+ # @return [String]
1462
+ attr_accessor :variable
1463
+
1464
+ def initialize(**args)
1465
+ update!(**args)
1466
+ end
1467
+
1468
+ # Update properties of this object
1469
+ def update!(**args)
1470
+ @destination_references = args[:destination_references] if args.key?(:destination_references)
1471
+ @value = args[:value] if args.key?(:value)
1472
+ @variable = args[:variable] if args.key?(:variable)
1473
+ end
1474
+ end
1475
+
1257
1476
  # A bucket of any [event parameters related to an item](https://developers.
1258
1477
  # google.com/analytics/devguides/collection/protocol/ga4/reference/events) to be
1259
1478
  # included within the event that were not already specified using other
@@ -2148,12 +2367,22 @@ module Google
2148
2367
  # @return [Fixnum]
2149
2368
  attr_accessor :display_network_members_count
2150
2369
 
2370
+ # Output only. Estimated number of members in this user list on Gmail.
2371
+ # Corresponds to the JSON property `gmailMembersCount`
2372
+ # @return [Fixnum]
2373
+ attr_accessor :gmail_members_count
2374
+
2151
2375
  # Output only. Estimated number of members in this user list in the google.com
2152
2376
  # domain. These are the members available for targeting in Search campaigns.
2153
2377
  # Corresponds to the JSON property `searchNetworkMembersCount`
2154
2378
  # @return [Fixnum]
2155
2379
  attr_accessor :search_network_members_count
2156
2380
 
2381
+ # Output only. Estimated number of members in this user list on YouTube.
2382
+ # Corresponds to the JSON property `youtubeMembersCount`
2383
+ # @return [Fixnum]
2384
+ attr_accessor :youtube_members_count
2385
+
2157
2386
  def initialize(**args)
2158
2387
  update!(**args)
2159
2388
  end
@@ -2161,7 +2390,9 @@ module Google
2161
2390
  # Update properties of this object
2162
2391
  def update!(**args)
2163
2392
  @display_network_members_count = args[:display_network_members_count] if args.key?(:display_network_members_count)
2393
+ @gmail_members_count = args[:gmail_members_count] if args.key?(:gmail_members_count)
2164
2394
  @search_network_members_count = args[:search_network_members_count] if args.key?(:search_network_members_count)
2395
+ @youtube_members_count = args[:youtube_members_count] if args.key?(:youtube_members_count)
2165
2396
  end
2166
2397
  end
2167
2398
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatamanagerV1
18
18
  # Version of the google-apis-datamanager_v1 gem
19
- GEM_VERSION = "0.8.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260420"
25
+ REVISION = "20260507"
26
26
  end
27
27
  end
28
28
  end
@@ -118,6 +118,12 @@ module Google
118
118
  include Google::Apis::Core::JsonObjectSupport
119
119
  end
120
120
 
121
+ class EventLocation
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
121
127
  class EventParameter
122
128
  class Representation < Google::Apis::Core::JsonRepresentation; end
123
129
 
@@ -214,6 +220,12 @@ module Google
214
220
  include Google::Apis::Core::JsonObjectSupport
215
221
  end
216
222
 
223
+ class ItemCustomVariable
224
+ class Representation < Google::Apis::Core::JsonRepresentation; end
225
+
226
+ include Google::Apis::Core::JsonObjectSupport
227
+ end
228
+
217
229
  class ItemParameter
218
230
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
231
 
@@ -509,6 +521,7 @@ module Google
509
521
  property :gclid, as: 'gclid'
510
522
  property :landing_page_device_info, as: 'landingPageDeviceInfo', class: Google::Apis::DatamanagerV1::DeviceInfo, decorator: Google::Apis::DatamanagerV1::DeviceInfo::Representation
511
523
 
524
+ property :mobile_device_id, as: 'mobileDeviceId'
512
525
  property :session_attributes, as: 'sessionAttributes'
513
526
  property :wbraid, as: 'wbraid'
514
527
  end
@@ -565,6 +578,7 @@ module Google
565
578
  class CartData
566
579
  # @private
567
580
  class Representation < Google::Apis::Core::JsonRepresentation
581
+ collection :coupon_codes, as: 'couponCodes'
568
582
  collection :items, as: 'items', class: Google::Apis::DatamanagerV1::Item, decorator: Google::Apis::DatamanagerV1::Item::Representation
569
583
 
570
584
  property :merchant_feed_label, as: 'merchantFeedLabel'
@@ -616,7 +630,17 @@ module Google
616
630
  class DeviceInfo
617
631
  # @private
618
632
  class Representation < Google::Apis::Core::JsonRepresentation
633
+ property :brand, as: 'brand'
634
+ property :browser, as: 'browser'
635
+ property :browser_version, as: 'browserVersion'
636
+ property :category, as: 'category'
619
637
  property :ip_address, as: 'ipAddress'
638
+ property :language_code, as: 'languageCode'
639
+ property :model, as: 'model'
640
+ property :operating_system, as: 'operatingSystem'
641
+ property :operating_system_version, as: 'operatingSystemVersion'
642
+ property :screen_height, as: 'screenHeight'
643
+ property :screen_width, as: 'screenWidth'
620
644
  property :user_agent, as: 'userAgent'
621
645
  end
622
646
  end
@@ -660,6 +684,7 @@ module Google
660
684
 
661
685
  collection :additional_event_parameters, as: 'additionalEventParameters', class: Google::Apis::DatamanagerV1::EventParameter, decorator: Google::Apis::DatamanagerV1::EventParameter::Representation
662
686
 
687
+ property :app_instance_id, as: 'appInstanceId'
663
688
  property :cart_data, as: 'cartData', class: Google::Apis::DatamanagerV1::CartData, decorator: Google::Apis::DatamanagerV1::CartData::Representation
664
689
 
665
690
  property :client_id, as: 'clientId'
@@ -672,12 +697,16 @@ module Google
672
697
  collection :destination_references, as: 'destinationReferences'
673
698
  property :event_device_info, as: 'eventDeviceInfo', class: Google::Apis::DatamanagerV1::DeviceInfo, decorator: Google::Apis::DatamanagerV1::DeviceInfo::Representation
674
699
 
700
+ property :event_location, as: 'eventLocation', class: Google::Apis::DatamanagerV1::EventLocation, decorator: Google::Apis::DatamanagerV1::EventLocation::Representation
701
+
675
702
  property :event_name, as: 'eventName'
676
703
  property :event_source, as: 'eventSource'
677
704
  property :event_timestamp, as: 'eventTimestamp'
678
705
  collection :experimental_fields, as: 'experimentalFields', class: Google::Apis::DatamanagerV1::ExperimentalField, decorator: Google::Apis::DatamanagerV1::ExperimentalField::Representation
679
706
 
680
707
  property :last_updated_timestamp, as: 'lastUpdatedTimestamp'
708
+ property :third_party_user_data, as: 'thirdPartyUserData', class: Google::Apis::DatamanagerV1::UserData, decorator: Google::Apis::DatamanagerV1::UserData::Representation
709
+
681
710
  property :transaction_id, as: 'transactionId'
682
711
  property :user_data, as: 'userData', class: Google::Apis::DatamanagerV1::UserData, decorator: Google::Apis::DatamanagerV1::UserData::Representation
683
712
 
@@ -687,6 +716,18 @@ module Google
687
716
  end
688
717
  end
689
718
 
719
+ class EventLocation
720
+ # @private
721
+ class Representation < Google::Apis::Core::JsonRepresentation
722
+ property :city, as: 'city'
723
+ property :continent_code, as: 'continentCode'
724
+ property :region_code, as: 'regionCode'
725
+ property :store_id, as: 'storeId'
726
+ property :subcontinent_code, as: 'subcontinentCode'
727
+ property :subdivision_code, as: 'subdivisionCode'
728
+ end
729
+ end
730
+
690
731
  class EventParameter
691
732
  # @private
692
733
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -849,13 +890,28 @@ module Google
849
890
  class Representation < Google::Apis::Core::JsonRepresentation
850
891
  collection :additional_item_parameters, as: 'additionalItemParameters', class: Google::Apis::DatamanagerV1::ItemParameter, decorator: Google::Apis::DatamanagerV1::ItemParameter::Representation
851
892
 
893
+ property :conversion_value, as: 'conversionValue'
894
+ collection :custom_variables, as: 'customVariables', class: Google::Apis::DatamanagerV1::ItemCustomVariable, decorator: Google::Apis::DatamanagerV1::ItemCustomVariable::Representation
895
+
852
896
  property :item_id, as: 'itemId'
897
+ property :merchant_feed_label, as: 'merchantFeedLabel'
898
+ property :merchant_feed_language_code, as: 'merchantFeedLanguageCode'
899
+ property :merchant_id, as: 'merchantId'
853
900
  property :merchant_product_id, as: 'merchantProductId'
854
901
  property :quantity, :numeric_string => true, as: 'quantity'
855
902
  property :unit_price, as: 'unitPrice'
856
903
  end
857
904
  end
858
905
 
906
+ class ItemCustomVariable
907
+ # @private
908
+ class Representation < Google::Apis::Core::JsonRepresentation
909
+ collection :destination_references, as: 'destinationReferences'
910
+ property :value, as: 'value'
911
+ property :variable, as: 'variable'
912
+ end
913
+ end
914
+
859
915
  class ItemParameter
860
916
  # @private
861
917
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1138,7 +1194,9 @@ module Google
1138
1194
  # @private
1139
1195
  class Representation < Google::Apis::Core::JsonRepresentation
1140
1196
  property :display_network_members_count, :numeric_string => true, as: 'displayNetworkMembersCount'
1197
+ property :gmail_members_count, :numeric_string => true, as: 'gmailMembersCount'
1141
1198
  property :search_network_members_count, :numeric_string => true, as: 'searchNetworkMembersCount'
1199
+ property :youtube_members_count, :numeric_string => true, as: 'youtubeMembersCount'
1142
1200
  end
1143
1201
  end
1144
1202
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datamanager_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamanager_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-datamanager_v1/v0.8.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datamanager_v1/v0.9.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamanager_v1
62
62
  rdoc_options: []
63
63
  require_paths: