google-apis-dfareporting_v4 0.15.0 → 0.17.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: 2ad70854360602232e8da2dd92e18bf09343b5bd0372e52d30746042621d6259
4
- data.tar.gz: c59e2019e608c8746cbeddedba1ca1502e33dbcb1bcaea7f379eed8439546b1e
3
+ metadata.gz: 67c508fbd0cae3cedd8515c0d79f447a4aced22839408bdd3819e0014926f650
4
+ data.tar.gz: 876bd12eddcbcdf6b52233f82808717a84c6be7f5722c126ae0f8239f9640a9f
5
5
  SHA512:
6
- metadata.gz: 58009a11dc6ca59a330594e7b7bcd377f8b9ff8f699c3d5fa9c5cbd619949e6d5b7585eb1a4b4770495e1c1e6d1ffcdb6e03190d1d3ccae495141035bb436fc2
7
- data.tar.gz: e1ecce06a0026eaa65c33fd934b23e9aaa4e4c771c2500a309a6547df76ccf9cac7c2fc29f280445a83415264fac4a8a163fc349c99b4fa0e1f2f70f80921104
6
+ metadata.gz: cc02bf49310f6620e2b9173563ff6c117d7bbe39ee4a938195658b012e05c5e5853aeb4aef3830f6ab8536faaf358726ec2a576b4048f9aefeefd261e9ce1abe
7
+ data.tar.gz: e7108872380ce709f1439694a0e2011a665e9bd5b27b05002269c09773abfc3ac3954a6ac9204bc09c96af4e90234e2584a913042082b829f23180fe63a24d56
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-dfareporting_v4
2
2
 
3
+ ### v0.17.0 (2024-08-25)
4
+
5
+ * Regenerated from discovery document revision 20240821
6
+ * Regenerated using generator version 0.15.1
7
+
8
+ ### v0.16.0 (2024-06-16)
9
+
10
+ * Regenerated from discovery document revision 20240613
11
+
3
12
  ### v0.15.0 (2024-05-19)
4
13
 
5
14
  * Regenerated using generator version 0.15.0
@@ -389,7 +389,7 @@ module Google
389
389
  # @return [String]
390
390
  attr_accessor :comments
391
391
 
392
- # Email of the user profile. The email addresss must be linked to a Google
392
+ # Email of the user profile. The email address must be linked to a Google
393
393
  # Account. This field is required on insertion and is read-only after insertion.
394
394
  # Corresponds to the JSON property `email`
395
395
  # @return [String]
@@ -2085,6 +2085,81 @@ module Google
2085
2085
  end
2086
2086
  end
2087
2087
 
2088
+ # Contains additional information about cart data.
2089
+ class CartData
2090
+ include Google::Apis::Core::Hashable
2091
+
2092
+ # Data of the items purchased.
2093
+ # Corresponds to the JSON property `items`
2094
+ # @return [Array<Google::Apis::DfareportingV4::CartDataItem>]
2095
+ attr_accessor :items
2096
+
2097
+ # The feed labels associated with the feed where your items are uploaded. For
2098
+ # more information, please refer to ​​ https://support.google.com/merchants/
2099
+ # answer/12453549. This is a required field.
2100
+ # Corresponds to the JSON property `merchantFeedLabel`
2101
+ # @return [String]
2102
+ attr_accessor :merchant_feed_label
2103
+
2104
+ # The language associated with the feed where your items are uploaded. Use ISO
2105
+ # 639-1 language codes. This field is needed only when item IDs are not unique
2106
+ # across multiple Merchant Center feeds.
2107
+ # Corresponds to the JSON property `merchantFeedLanguage`
2108
+ # @return [String]
2109
+ attr_accessor :merchant_feed_language
2110
+
2111
+ # The Merchant Center ID where the items are uploaded.
2112
+ # Corresponds to the JSON property `merchantId`
2113
+ # @return [Fixnum]
2114
+ attr_accessor :merchant_id
2115
+
2116
+ def initialize(**args)
2117
+ update!(**args)
2118
+ end
2119
+
2120
+ # Update properties of this object
2121
+ def update!(**args)
2122
+ @items = args[:items] if args.key?(:items)
2123
+ @merchant_feed_label = args[:merchant_feed_label] if args.key?(:merchant_feed_label)
2124
+ @merchant_feed_language = args[:merchant_feed_language] if args.key?(:merchant_feed_language)
2125
+ @merchant_id = args[:merchant_id] if args.key?(:merchant_id)
2126
+ end
2127
+ end
2128
+
2129
+ # Contains data of the items purchased.
2130
+ class CartDataItem
2131
+ include Google::Apis::Core::Hashable
2132
+
2133
+ # The shopping id of the item. Must be equal to the Merchant Center product
2134
+ # identifier. This is a required field.
2135
+ # Corresponds to the JSON property `itemId`
2136
+ # @return [String]
2137
+ attr_accessor :item_id
2138
+
2139
+ # Number of items sold. This is a required field.
2140
+ # Corresponds to the JSON property `quantity`
2141
+ # @return [Fixnum]
2142
+ attr_accessor :quantity
2143
+
2144
+ # Unit price excluding tax, shipping, and any transaction level discounts.
2145
+ # Interpreted in CM360 Floodlight config parent advertiser's currency code. This
2146
+ # is a required field.
2147
+ # Corresponds to the JSON property `unitPrice`
2148
+ # @return [Float]
2149
+ attr_accessor :unit_price
2150
+
2151
+ def initialize(**args)
2152
+ update!(**args)
2153
+ end
2154
+
2155
+ # Update properties of this object
2156
+ def update!(**args)
2157
+ @item_id = args[:item_id] if args.key?(:item_id)
2158
+ @quantity = args[:quantity] if args.key?(:quantity)
2159
+ @unit_price = args[:unit_price] if args.key?(:unit_price)
2160
+ end
2161
+ end
2162
+
2088
2163
  # Describes a change that a user has made to a resource.
2089
2164
  class ChangeLog
2090
2165
  include Google::Apis::Core::Hashable
@@ -2218,74 +2293,6 @@ module Google
2218
2293
  end
2219
2294
  end
2220
2295
 
2221
- # Represents a DfaReporting channel grouping.
2222
- class ChannelGrouping
2223
- include Google::Apis::Core::Hashable
2224
-
2225
- # ChannelGrouping fallback name.
2226
- # Corresponds to the JSON property `fallbackName`
2227
- # @return [String]
2228
- attr_accessor :fallback_name
2229
-
2230
- # The kind of resource this is, in this case dfareporting#channelGrouping.
2231
- # Corresponds to the JSON property `kind`
2232
- # @return [String]
2233
- attr_accessor :kind
2234
-
2235
- # ChannelGrouping name.
2236
- # Corresponds to the JSON property `name`
2237
- # @return [String]
2238
- attr_accessor :name
2239
-
2240
- # The rules contained within this channel grouping.
2241
- # Corresponds to the JSON property `rules`
2242
- # @return [Array<Google::Apis::DfareportingV4::ChannelGroupingRule>]
2243
- attr_accessor :rules
2244
-
2245
- def initialize(**args)
2246
- update!(**args)
2247
- end
2248
-
2249
- # Update properties of this object
2250
- def update!(**args)
2251
- @fallback_name = args[:fallback_name] if args.key?(:fallback_name)
2252
- @kind = args[:kind] if args.key?(:kind)
2253
- @name = args[:name] if args.key?(:name)
2254
- @rules = args[:rules] if args.key?(:rules)
2255
- end
2256
- end
2257
-
2258
- # Represents a DfaReporting channel grouping rule.
2259
- class ChannelGroupingRule
2260
- include Google::Apis::Core::Hashable
2261
-
2262
- # The disjunctive match statements contained within this rule.
2263
- # Corresponds to the JSON property `disjunctiveMatchStatements`
2264
- # @return [Array<Google::Apis::DfareportingV4::DisjunctiveMatchStatement>]
2265
- attr_accessor :disjunctive_match_statements
2266
-
2267
- # The kind of resource this is, in this case dfareporting#channelGroupingRule.
2268
- # Corresponds to the JSON property `kind`
2269
- # @return [String]
2270
- attr_accessor :kind
2271
-
2272
- # Rule name.
2273
- # Corresponds to the JSON property `name`
2274
- # @return [String]
2275
- attr_accessor :name
2276
-
2277
- def initialize(**args)
2278
- update!(**args)
2279
- end
2280
-
2281
- # Update properties of this object
2282
- def update!(**args)
2283
- @disjunctive_match_statements = args[:disjunctive_match_statements] if args.key?(:disjunctive_match_statements)
2284
- @kind = args[:kind] if args.key?(:kind)
2285
- @name = args[:name] if args.key?(:name)
2286
- end
2287
- end
2288
-
2289
2296
  # City List Response
2290
2297
  class CitiesListResponse
2291
2298
  include Google::Apis::Core::Hashable
@@ -2575,18 +2582,6 @@ module Google
2575
2582
  # @return [String]
2576
2583
  attr_accessor :kind
2577
2584
 
2578
- # Represents fields that are compatible to be selected for a report of type "
2579
- # PATH".
2580
- # Corresponds to the JSON property `pathAttributionReportCompatibleFields`
2581
- # @return [Google::Apis::DfareportingV4::PathReportCompatibleFields]
2582
- attr_accessor :path_attribution_report_compatible_fields
2583
-
2584
- # Represents fields that are compatible to be selected for a report of type "
2585
- # PATH".
2586
- # Corresponds to the JSON property `pathReportCompatibleFields`
2587
- # @return [Google::Apis::DfareportingV4::PathReportCompatibleFields]
2588
- attr_accessor :path_report_compatible_fields
2589
-
2590
2585
  # Represents fields that are compatible to be selected for a report of type "
2591
2586
  # PATH_TO_CONVERSION".
2592
2587
  # Corresponds to the JSON property `pathToConversionReportCompatibleFields`
@@ -2614,8 +2609,6 @@ module Google
2614
2609
  @cross_dimension_reach_report_compatible_fields = args[:cross_dimension_reach_report_compatible_fields] if args.key?(:cross_dimension_reach_report_compatible_fields)
2615
2610
  @floodlight_report_compatible_fields = args[:floodlight_report_compatible_fields] if args.key?(:floodlight_report_compatible_fields)
2616
2611
  @kind = args[:kind] if args.key?(:kind)
2617
- @path_attribution_report_compatible_fields = args[:path_attribution_report_compatible_fields] if args.key?(:path_attribution_report_compatible_fields)
2618
- @path_report_compatible_fields = args[:path_report_compatible_fields] if args.key?(:path_report_compatible_fields)
2619
2612
  @path_to_conversion_report_compatible_fields = args[:path_to_conversion_report_compatible_fields] if args.key?(:path_to_conversion_report_compatible_fields)
2620
2613
  @reach_report_compatible_fields = args[:reach_report_compatible_fields] if args.key?(:reach_report_compatible_fields)
2621
2614
  @report_compatible_fields = args[:report_compatible_fields] if args.key?(:report_compatible_fields)
@@ -2763,6 +2756,11 @@ module Google
2763
2756
  # @return [String]
2764
2757
  attr_accessor :ad_user_data_consent
2765
2758
 
2759
+ # Contains additional information about cart data.
2760
+ # Corresponds to the JSON property `cartData`
2761
+ # @return [Google::Apis::DfareportingV4::CartData]
2762
+ attr_accessor :cart_data
2763
+
2766
2764
  # Whether this particular request may come from a user under the age of 13,
2767
2765
  # under COPPA compliance.
2768
2766
  # Corresponds to the JSON property `childDirectedTreatment`
@@ -2910,6 +2908,7 @@ module Google
2910
2908
  # Update properties of this object
2911
2909
  def update!(**args)
2912
2910
  @ad_user_data_consent = args[:ad_user_data_consent] if args.key?(:ad_user_data_consent)
2911
+ @cart_data = args[:cart_data] if args.key?(:cart_data)
2913
2912
  @child_directed_treatment = args[:child_directed_treatment] if args.key?(:child_directed_treatment)
2914
2913
  @custom_variables = args[:custom_variables] if args.key?(:custom_variables)
2915
2914
  @dclid = args[:dclid] if args.key?(:dclid)
@@ -5614,6 +5613,19 @@ module Google
5614
5613
  # @return [String]
5615
5614
  attr_accessor :name
5616
5615
 
5616
+ # Output only. Default publisher specification ID of video placements under this
5617
+ # directory site. Possible values are: * `1`, Hulu * `2`, NBC * `3`, CBS * `4`,
5618
+ # CBS Desktop * `5`, Discovery * `6`, VEVO HD * `7`, VEVO Vertical * `8`, Fox * `
5619
+ # 9`, CW Network * `10`, Disney * `11`, IGN * `12`, NFL.com * `13`, Turner
5620
+ # Broadcasting * `14`, Tubi on Fox * `15`, Hearst Corporation * `16`, Twitch
5621
+ # Desktop * `17`, ABC * `18`, Univision * `19`, MLB.com * `20`, MLB.com Mobile *
5622
+ # `21`, MLB.com OTT * `22`, Polsat * `23`, TVN * `24`, Mediaset * `25`, Antena 3
5623
+ # * `26`, Mediamond * `27`, Sky Italia * `28`, Tubi on CBS * `29`, Spotify * `30`
5624
+ # , Paramount * `31`, Max
5625
+ # Corresponds to the JSON property `publisherSpecificationId`
5626
+ # @return [Fixnum]
5627
+ attr_accessor :publisher_specification_id
5628
+
5617
5629
  # Directory Site Settings
5618
5630
  # Corresponds to the JSON property `settings`
5619
5631
  # @return [Google::Apis::DfareportingV4::DirectorySiteSettings]
@@ -5636,6 +5648,7 @@ module Google
5636
5648
  @interstitial_tag_formats = args[:interstitial_tag_formats] if args.key?(:interstitial_tag_formats)
5637
5649
  @kind = args[:kind] if args.key?(:kind)
5638
5650
  @name = args[:name] if args.key?(:name)
5651
+ @publisher_specification_id = args[:publisher_specification_id] if args.key?(:publisher_specification_id)
5639
5652
  @settings = args[:settings] if args.key?(:settings)
5640
5653
  @url = args[:url] if args.key?(:url)
5641
5654
  end
@@ -5713,33 +5726,6 @@ module Google
5713
5726
  end
5714
5727
  end
5715
5728
 
5716
- # Represents a Disjunctive Match Statement resource, which is a conjunction (and)
5717
- # of disjunctive (or) boolean statements.
5718
- class DisjunctiveMatchStatement
5719
- include Google::Apis::Core::Hashable
5720
-
5721
- # The event filters contained within this disjunctive match statement.
5722
- # Corresponds to the JSON property `eventFilters`
5723
- # @return [Array<Google::Apis::DfareportingV4::EventFilter>]
5724
- attr_accessor :event_filters
5725
-
5726
- # The kind of resource this is, in this case dfareporting#
5727
- # disjunctiveMatchStatement.
5728
- # Corresponds to the JSON property `kind`
5729
- # @return [String]
5730
- attr_accessor :kind
5731
-
5732
- def initialize(**args)
5733
- update!(**args)
5734
- end
5735
-
5736
- # Update properties of this object
5737
- def update!(**args)
5738
- @event_filters = args[:event_filters] if args.key?(:event_filters)
5739
- @kind = args[:kind] if args.key?(:kind)
5740
- end
5741
- end
5742
-
5743
5729
  # Contains properties of a dynamic targeting key. Dynamic targeting keys are
5744
5730
  # unique, user-friendly labels, created at the advertiser level in DCM, that can
5745
5731
  # be assigned to ads, creatives, and placements and used for targeting with
@@ -5852,37 +5838,6 @@ module Google
5852
5838
  end
5853
5839
  end
5854
5840
 
5855
- # Represents a DfaReporting event filter.
5856
- class EventFilter
5857
- include Google::Apis::Core::Hashable
5858
-
5859
- # Represents a PathReportDimensionValue resource.
5860
- # Corresponds to the JSON property `dimensionFilter`
5861
- # @return [Google::Apis::DfareportingV4::PathReportDimensionValue]
5862
- attr_accessor :dimension_filter
5863
-
5864
- # The kind of resource this is, in this case dfareporting#eventFilter.
5865
- # Corresponds to the JSON property `kind`
5866
- # @return [String]
5867
- attr_accessor :kind
5868
-
5869
- # Defines the filtering on a single uvar.
5870
- # Corresponds to the JSON property `uvarFilter`
5871
- # @return [Google::Apis::DfareportingV4::UvarFilter]
5872
- attr_accessor :uvar_filter
5873
-
5874
- def initialize(**args)
5875
- update!(**args)
5876
- end
5877
-
5878
- # Update properties of this object
5879
- def update!(**args)
5880
- @dimension_filter = args[:dimension_filter] if args.key?(:dimension_filter)
5881
- @kind = args[:kind] if args.key?(:kind)
5882
- @uvar_filter = args[:uvar_filter] if args.key?(:uvar_filter)
5883
- end
5884
- end
5885
-
5886
5841
  # Contains properties of an event tag.
5887
5842
  class EventTag
5888
5843
  include Google::Apis::Core::Hashable
@@ -6260,15 +6215,15 @@ module Google
6260
6215
  class FloodlightActivitiesGenerateTagResponse
6261
6216
  include Google::Apis::Core::Hashable
6262
6217
 
6263
- # Generated tag for this Floodlight activity. For global site tags, this is the
6264
- # event snippet.
6218
+ # Generated tag for this Floodlight activity. For Google tags, this is the event
6219
+ # snippet.
6265
6220
  # Corresponds to the JSON property `floodlightActivityTag`
6266
6221
  # @return [String]
6267
6222
  attr_accessor :floodlight_activity_tag
6268
6223
 
6269
- # The global snippet section of a global site tag. The global site tag sets new
6270
- # cookies on your domain, which will store a unique identifier for a user or the
6271
- # ad click that brought the user to your site. Learn more.
6224
+ # The global snippet section of a Google tag. The Google tag sets new cookies on
6225
+ # your domain, which will store a unique identifier for a user or the ad click
6226
+ # that brought the user to your site. Learn more.
6272
6227
  # Corresponds to the JSON property `globalSiteTagGlobalSnippet`
6273
6228
  # @return [String]
6274
6229
  attr_accessor :global_site_tag_global_snippet
@@ -8719,138 +8674,6 @@ module Google
8719
8674
  end
8720
8675
  end
8721
8676
 
8722
- # Represents a DfaReporting path filter.
8723
- class PathFilter
8724
- include Google::Apis::Core::Hashable
8725
-
8726
- # Event filters in path report.
8727
- # Corresponds to the JSON property `eventFilters`
8728
- # @return [Array<Google::Apis::DfareportingV4::EventFilter>]
8729
- attr_accessor :event_filters
8730
-
8731
- # The kind of resource this is, in this case dfareporting#pathFilter.
8732
- # Corresponds to the JSON property `kind`
8733
- # @return [String]
8734
- attr_accessor :kind
8735
-
8736
- # Determines how the 'value' field is matched when filtering. If not specified,
8737
- # defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a
8738
- # placeholder for variable length character sequences, and it can be escaped
8739
- # with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow
8740
- # a matchType other than EXACT.
8741
- # Corresponds to the JSON property `pathMatchPosition`
8742
- # @return [String]
8743
- attr_accessor :path_match_position
8744
-
8745
- def initialize(**args)
8746
- update!(**args)
8747
- end
8748
-
8749
- # Update properties of this object
8750
- def update!(**args)
8751
- @event_filters = args[:event_filters] if args.key?(:event_filters)
8752
- @kind = args[:kind] if args.key?(:kind)
8753
- @path_match_position = args[:path_match_position] if args.key?(:path_match_position)
8754
- end
8755
- end
8756
-
8757
- # Represents fields that are compatible to be selected for a report of type "
8758
- # PATH".
8759
- class PathReportCompatibleFields
8760
- include Google::Apis::Core::Hashable
8761
-
8762
- # Dimensions which are compatible to be selected in the "channelGroupings"
8763
- # section of the report.
8764
- # Corresponds to the JSON property `channelGroupings`
8765
- # @return [Array<Google::Apis::DfareportingV4::Dimension>]
8766
- attr_accessor :channel_groupings
8767
-
8768
- # Dimensions which are compatible to be selected in the "dimensions" section of
8769
- # the report.
8770
- # Corresponds to the JSON property `dimensions`
8771
- # @return [Array<Google::Apis::DfareportingV4::Dimension>]
8772
- attr_accessor :dimensions
8773
-
8774
- # The kind of resource this is, in this case dfareporting#
8775
- # pathReportCompatibleFields.
8776
- # Corresponds to the JSON property `kind`
8777
- # @return [String]
8778
- attr_accessor :kind
8779
-
8780
- # Metrics which are compatible to be selected in the "metricNames" section of
8781
- # the report.
8782
- # Corresponds to the JSON property `metrics`
8783
- # @return [Array<Google::Apis::DfareportingV4::Metric>]
8784
- attr_accessor :metrics
8785
-
8786
- # Dimensions which are compatible to be selected in the "pathFilters" section of
8787
- # the report.
8788
- # Corresponds to the JSON property `pathFilters`
8789
- # @return [Array<Google::Apis::DfareportingV4::Dimension>]
8790
- attr_accessor :path_filters
8791
-
8792
- def initialize(**args)
8793
- update!(**args)
8794
- end
8795
-
8796
- # Update properties of this object
8797
- def update!(**args)
8798
- @channel_groupings = args[:channel_groupings] if args.key?(:channel_groupings)
8799
- @dimensions = args[:dimensions] if args.key?(:dimensions)
8800
- @kind = args[:kind] if args.key?(:kind)
8801
- @metrics = args[:metrics] if args.key?(:metrics)
8802
- @path_filters = args[:path_filters] if args.key?(:path_filters)
8803
- end
8804
- end
8805
-
8806
- # Represents a PathReportDimensionValue resource.
8807
- class PathReportDimensionValue
8808
- include Google::Apis::Core::Hashable
8809
-
8810
- # The name of the dimension.
8811
- # Corresponds to the JSON property `dimensionName`
8812
- # @return [String]
8813
- attr_accessor :dimension_name
8814
-
8815
- # The possible ID's associated with the value if available.
8816
- # Corresponds to the JSON property `ids`
8817
- # @return [Array<String>]
8818
- attr_accessor :ids
8819
-
8820
- # The kind of resource this is, in this case dfareporting#
8821
- # pathReportDimensionValue.
8822
- # Corresponds to the JSON property `kind`
8823
- # @return [String]
8824
- attr_accessor :kind
8825
-
8826
- # Determines how the 'value' field is matched when filtering. If not specified,
8827
- # defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a
8828
- # placeholder for variable length character sequences, and it can be escaped
8829
- # with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow
8830
- # a matchType other than EXACT.
8831
- # Corresponds to the JSON property `matchType`
8832
- # @return [String]
8833
- attr_accessor :match_type
8834
-
8835
- # The possible values of the dimension.
8836
- # Corresponds to the JSON property `values`
8837
- # @return [Array<String>]
8838
- attr_accessor :values
8839
-
8840
- def initialize(**args)
8841
- update!(**args)
8842
- end
8843
-
8844
- # Update properties of this object
8845
- def update!(**args)
8846
- @dimension_name = args[:dimension_name] if args.key?(:dimension_name)
8847
- @ids = args[:ids] if args.key?(:ids)
8848
- @kind = args[:kind] if args.key?(:kind)
8849
- @match_type = args[:match_type] if args.key?(:match_type)
8850
- @values = args[:values] if args.key?(:values)
8851
- end
8852
- end
8853
-
8854
8677
  # Represents fields that are compatible to be selected for a report of type "
8855
8678
  # PATH_TO_CONVERSION".
8856
8679
  class PathToConversionReportCompatibleFields
@@ -8922,6 +8745,18 @@ module Google
8922
8745
  attr_accessor :ad_blocking_opt_out
8923
8746
  alias_method :ad_blocking_opt_out?, :ad_blocking_opt_out
8924
8747
 
8748
+ # Optional. Ad serving platform ID to identify the ad serving platform used by
8749
+ # the placement. Measurement partners can use this field to add ad-server
8750
+ # specific macros. Possible values are: * `1`, Adelphic * `2`, Adform * `3`,
8751
+ # Adobe * `4`, Amobee * `5`, Basis (Centro) * `6`, Beeswax * `7`, Amazon * `8`,
8752
+ # DV360 (DBM) * `9`, Innovid * `10`, MediaMath * `11`, Roku OneView DSP * `12`,
8753
+ # TabMo Hawk * `13`, The Trade Desk * `14`, Xandr Invest DSP * `15`, Yahoo DSP *
8754
+ # `16`, Zeta Global * `17`, Scaleout * `18`, Bidtellect * `19`, Unicorn * `20`,
8755
+ # Teads * `21`, Quantcast * `22`, Cognitiv
8756
+ # Corresponds to the JSON property `adServingPlatformId`
8757
+ # @return [Fixnum]
8758
+ attr_accessor :ad_serving_platform_id
8759
+
8925
8760
  # Additional sizes associated with this placement. When inserting or updating a
8926
8761
  # placement, only the size ID field is used.
8927
8762
  # Corresponds to the JSON property `additionalSizes`
@@ -9097,6 +8932,14 @@ module Google
9097
8932
  # @return [Google::Apis::DfareportingV4::DimensionValue]
9098
8933
  attr_accessor :site_id_dimension_value
9099
8934
 
8935
+ # Optional. Whether the ads in the placement are served by another platform and
8936
+ # CM is only used for tracking or they are served by CM. A false value indicates
8937
+ # the ad is served by CM.
8938
+ # Corresponds to the JSON property `siteServed`
8939
+ # @return [Boolean]
8940
+ attr_accessor :site_served
8941
+ alias_method :site_served?, :site_served
8942
+
9100
8943
  # Represents the dimensions of ads, placements, creatives, or creative assets.
9101
8944
  # Corresponds to the JSON property `size`
9102
8945
  # @return [Google::Apis::DfareportingV4::Size]
@@ -9178,6 +9021,7 @@ module Google
9178
9021
  @account_id = args[:account_id] if args.key?(:account_id)
9179
9022
  @active_status = args[:active_status] if args.key?(:active_status)
9180
9023
  @ad_blocking_opt_out = args[:ad_blocking_opt_out] if args.key?(:ad_blocking_opt_out)
9024
+ @ad_serving_platform_id = args[:ad_serving_platform_id] if args.key?(:ad_serving_platform_id)
9181
9025
  @additional_sizes = args[:additional_sizes] if args.key?(:additional_sizes)
9182
9026
  @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
9183
9027
  @advertiser_id_dimension_value = args[:advertiser_id_dimension_value] if args.key?(:advertiser_id_dimension_value)
@@ -9209,6 +9053,7 @@ module Google
9209
9053
  @publisher_update_info = args[:publisher_update_info] if args.key?(:publisher_update_info)
9210
9054
  @site_id = args[:site_id] if args.key?(:site_id)
9211
9055
  @site_id_dimension_value = args[:site_id_dimension_value] if args.key?(:site_id_dimension_value)
9056
+ @site_served = args[:site_served] if args.key?(:site_served)
9212
9057
  @size = args[:size] if args.key?(:size)
9213
9058
  @ssl_required = args[:ssl_required] if args.key?(:ssl_required)
9214
9059
  @status = args[:status] if args.key?(:status)
@@ -10642,16 +10487,6 @@ module Google
10642
10487
  # @return [Fixnum]
10643
10488
  attr_accessor :owner_profile_id
10644
10489
 
10645
- # The report criteria for a report of type "PATH_ATTRIBUTION".
10646
- # Corresponds to the JSON property `pathAttributionCriteria`
10647
- # @return [Google::Apis::DfareportingV4::Report::PathAttributionCriteria]
10648
- attr_accessor :path_attribution_criteria
10649
-
10650
- # The report criteria for a report of type "PATH".
10651
- # Corresponds to the JSON property `pathCriteria`
10652
- # @return [Google::Apis::DfareportingV4::Report::PathCriteria]
10653
- attr_accessor :path_criteria
10654
-
10655
10490
  # The report criteria for a report of type "PATH_TO_CONVERSION".
10656
10491
  # Corresponds to the JSON property `pathToConversionCriteria`
10657
10492
  # @return [Google::Apis::DfareportingV4::Report::PathToConversionCriteria]
@@ -10697,8 +10532,6 @@ module Google
10697
10532
  @last_modified_time = args[:last_modified_time] if args.key?(:last_modified_time)
10698
10533
  @name = args[:name] if args.key?(:name)
10699
10534
  @owner_profile_id = args[:owner_profile_id] if args.key?(:owner_profile_id)
10700
- @path_attribution_criteria = args[:path_attribution_criteria] if args.key?(:path_attribution_criteria)
10701
- @path_criteria = args[:path_criteria] if args.key?(:path_criteria)
10702
10535
  @path_to_conversion_criteria = args[:path_to_conversion_criteria] if args.key?(:path_to_conversion_criteria)
10703
10536
  @reach_criteria = args[:reach_criteria] if args.key?(:reach_criteria)
10704
10537
  @schedule = args[:schedule] if args.key?(:schedule)
@@ -10946,116 +10779,6 @@ module Google
10946
10779
  end
10947
10780
  end
10948
10781
 
10949
- # The report criteria for a report of type "PATH_ATTRIBUTION".
10950
- class PathAttributionCriteria
10951
- include Google::Apis::Core::Hashable
10952
-
10953
- # The list of 'dfa:activity' values to filter on.
10954
- # Corresponds to the JSON property `activityFilters`
10955
- # @return [Array<Google::Apis::DfareportingV4::DimensionValue>]
10956
- attr_accessor :activity_filters
10957
-
10958
- # Represents a DfaReporting channel grouping.
10959
- # Corresponds to the JSON property `customChannelGrouping`
10960
- # @return [Google::Apis::DfareportingV4::ChannelGrouping]
10961
- attr_accessor :custom_channel_grouping
10962
-
10963
- # Represents a date range.
10964
- # Corresponds to the JSON property `dateRange`
10965
- # @return [Google::Apis::DfareportingV4::DateRange]
10966
- attr_accessor :date_range
10967
-
10968
- # The list of dimensions the report should include.
10969
- # Corresponds to the JSON property `dimensions`
10970
- # @return [Array<Google::Apis::DfareportingV4::SortedDimension>]
10971
- attr_accessor :dimensions
10972
-
10973
- # Represents a DimensionValue resource.
10974
- # Corresponds to the JSON property `floodlightConfigId`
10975
- # @return [Google::Apis::DfareportingV4::DimensionValue]
10976
- attr_accessor :floodlight_config_id
10977
-
10978
- # The list of names of metrics the report should include.
10979
- # Corresponds to the JSON property `metricNames`
10980
- # @return [Array<String>]
10981
- attr_accessor :metric_names
10982
-
10983
- # Path Filters.
10984
- # Corresponds to the JSON property `pathFilters`
10985
- # @return [Array<Google::Apis::DfareportingV4::PathFilter>]
10986
- attr_accessor :path_filters
10987
-
10988
- def initialize(**args)
10989
- update!(**args)
10990
- end
10991
-
10992
- # Update properties of this object
10993
- def update!(**args)
10994
- @activity_filters = args[:activity_filters] if args.key?(:activity_filters)
10995
- @custom_channel_grouping = args[:custom_channel_grouping] if args.key?(:custom_channel_grouping)
10996
- @date_range = args[:date_range] if args.key?(:date_range)
10997
- @dimensions = args[:dimensions] if args.key?(:dimensions)
10998
- @floodlight_config_id = args[:floodlight_config_id] if args.key?(:floodlight_config_id)
10999
- @metric_names = args[:metric_names] if args.key?(:metric_names)
11000
- @path_filters = args[:path_filters] if args.key?(:path_filters)
11001
- end
11002
- end
11003
-
11004
- # The report criteria for a report of type "PATH".
11005
- class PathCriteria
11006
- include Google::Apis::Core::Hashable
11007
-
11008
- # The list of 'dfa:activity' values to filter on.
11009
- # Corresponds to the JSON property `activityFilters`
11010
- # @return [Array<Google::Apis::DfareportingV4::DimensionValue>]
11011
- attr_accessor :activity_filters
11012
-
11013
- # Represents a DfaReporting channel grouping.
11014
- # Corresponds to the JSON property `customChannelGrouping`
11015
- # @return [Google::Apis::DfareportingV4::ChannelGrouping]
11016
- attr_accessor :custom_channel_grouping
11017
-
11018
- # Represents a date range.
11019
- # Corresponds to the JSON property `dateRange`
11020
- # @return [Google::Apis::DfareportingV4::DateRange]
11021
- attr_accessor :date_range
11022
-
11023
- # The list of dimensions the report should include.
11024
- # Corresponds to the JSON property `dimensions`
11025
- # @return [Array<Google::Apis::DfareportingV4::SortedDimension>]
11026
- attr_accessor :dimensions
11027
-
11028
- # Represents a DimensionValue resource.
11029
- # Corresponds to the JSON property `floodlightConfigId`
11030
- # @return [Google::Apis::DfareportingV4::DimensionValue]
11031
- attr_accessor :floodlight_config_id
11032
-
11033
- # The list of names of metrics the report should include.
11034
- # Corresponds to the JSON property `metricNames`
11035
- # @return [Array<String>]
11036
- attr_accessor :metric_names
11037
-
11038
- # Path Filters.
11039
- # Corresponds to the JSON property `pathFilters`
11040
- # @return [Array<Google::Apis::DfareportingV4::PathFilter>]
11041
- attr_accessor :path_filters
11042
-
11043
- def initialize(**args)
11044
- update!(**args)
11045
- end
11046
-
11047
- # Update properties of this object
11048
- def update!(**args)
11049
- @activity_filters = args[:activity_filters] if args.key?(:activity_filters)
11050
- @custom_channel_grouping = args[:custom_channel_grouping] if args.key?(:custom_channel_grouping)
11051
- @date_range = args[:date_range] if args.key?(:date_range)
11052
- @dimensions = args[:dimensions] if args.key?(:dimensions)
11053
- @floodlight_config_id = args[:floodlight_config_id] if args.key?(:floodlight_config_id)
11054
- @metric_names = args[:metric_names] if args.key?(:metric_names)
11055
- @path_filters = args[:path_filters] if args.key?(:path_filters)
11056
- end
11057
- end
11058
-
11059
10782
  # The report criteria for a report of type "PATH_TO_CONVERSION".
11060
10783
  class PathToConversionCriteria
11061
10784
  include Google::Apis::Core::Hashable
@@ -11560,6 +11283,19 @@ module Google
11560
11283
  # @return [Fixnum]
11561
11284
  attr_accessor :account_id
11562
11285
 
11286
+ # Optional. Ad serving platform ID to identify the ad serving platform used by
11287
+ # the site. Measurement partners can use this field to add ad-server specific
11288
+ # macros. If set, this value acts as the default during placement creation.
11289
+ # Possible values are: * `1`, Adelphic * `2`, Adform * `3`, Adobe * `4`, Amobee *
11290
+ # `5`, Basis (Centro) * `6`, Beeswax * `7`, Amazon * `8`, DV360 (DBM) * `9`,
11291
+ # Innovid * `10`, MediaMath * `11`, Roku OneView DSP * `12`, TabMo Hawk * `13`,
11292
+ # The Trade Desk * `14`, Xandr Invest DSP * `15`, Yahoo DSP * `16`, Zeta Global *
11293
+ # `17`, Scaleout * `18`, Bidtellect * `19`, Unicorn * `20`, Teads * `21`,
11294
+ # Quantcast * `22`, Cognitiv
11295
+ # Corresponds to the JSON property `adServingPlatformId`
11296
+ # @return [Fixnum]
11297
+ attr_accessor :ad_serving_platform_id
11298
+
11563
11299
  # Whether this site is approved.
11564
11300
  # Corresponds to the JSON property `approved`
11565
11301
  # @return [Boolean]
@@ -11633,6 +11369,7 @@ module Google
11633
11369
  # Update properties of this object
11634
11370
  def update!(**args)
11635
11371
  @account_id = args[:account_id] if args.key?(:account_id)
11372
+ @ad_serving_platform_id = args[:ad_serving_platform_id] if args.key?(:ad_serving_platform_id)
11636
11373
  @approved = args[:approved] if args.key?(:approved)
11637
11374
  @directory_site_id = args[:directory_site_id] if args.key?(:directory_site_id)
11638
11375
  @directory_site_id_dimension_value = args[:directory_site_id_dimension_value] if args.key?(:directory_site_id_dimension_value)
@@ -11918,6 +11655,14 @@ module Google
11918
11655
  # Publisher specification ID used to identify site-associated publisher
11919
11656
  # requirements and automatically populate transcode settings. If publisher
11920
11657
  # specification ID is specified, it will take precedence over transcode settings.
11658
+ # Possible values are: * `1`, Hulu * `2`, NBC * `3`, CBS * `4`, CBS Desktop * `
11659
+ # 5`, Discovery * `6`, VEVO HD * `7`, VEVO Vertical * `8`, Fox * `9`, CW Network
11660
+ # * `10`, Disney * `11`, IGN * `12`, NFL.com * `13`, Turner Broadcasting * `14`,
11661
+ # Tubi on Fox * `15`, Hearst Corporation * `16`, Twitch Desktop * `17`, ABC * `
11662
+ # 18`, Univision * `19`, MLB.com * `20`, MLB.com Mobile * `21`, MLB.com OTT * `
11663
+ # 22`, Polsat * `23`, TVN * `24`, Mediaset * `25`, Antena 3 * `26`, Mediamond * `
11664
+ # 27`, Sky Italia * `28`, Tubi on CBS * `29`, Spotify * `30`, Paramount * `31`,
11665
+ # Max
11921
11666
  # Corresponds to the JSON property `publisherSpecificationId`
11922
11667
  # @return [Fixnum]
11923
11668
  attr_accessor :publisher_specification_id
@@ -13168,50 +12913,6 @@ module Google
13168
12913
  end
13169
12914
  end
13170
12915
 
13171
- # Defines the filtering on a single uvar.
13172
- class UvarFilter
13173
- include Google::Apis::Core::Hashable
13174
-
13175
- # Return rows which don't match this filter.
13176
- # Corresponds to the JSON property `complement`
13177
- # @return [Boolean]
13178
- attr_accessor :complement
13179
- alias_method :complement?, :complement
13180
-
13181
- # Custom variable index the filter is applied to.
13182
- # Corresponds to the JSON property `index`
13183
- # @return [Fixnum]
13184
- attr_accessor :index
13185
-
13186
- # The kind of resource this is, in this case dfareporting#uvarFilter.
13187
- # Corresponds to the JSON property `kind`
13188
- # @return [String]
13189
- attr_accessor :kind
13190
-
13191
- # Indicates how the filter should be matched to the values.
13192
- # Corresponds to the JSON property `match`
13193
- # @return [String]
13194
- attr_accessor :match
13195
-
13196
- # Values to filter on.
13197
- # Corresponds to the JSON property `values`
13198
- # @return [Array<String>]
13199
- attr_accessor :values
13200
-
13201
- def initialize(**args)
13202
- update!(**args)
13203
- end
13204
-
13205
- # Update properties of this object
13206
- def update!(**args)
13207
- @complement = args[:complement] if args.key?(:complement)
13208
- @index = args[:index] if args.key?(:index)
13209
- @kind = args[:kind] if args.key?(:kind)
13210
- @match = args[:match] if args.key?(:match)
13211
- @values = args[:values] if args.key?(:values)
13212
- end
13213
- end
13214
-
13215
12916
  # Contains information about supported video formats.
13216
12917
  class VideoFormat
13217
12918
  include Google::Apis::Core::Hashable
@@ -13346,7 +13047,14 @@ module Google
13346
13047
  # @return [String]
13347
13048
  attr_accessor :orientation
13348
13049
 
13349
- # Publisher specification ID of a video placement.
13050
+ # Publisher specification ID of a video placement. Possible values are: * `1`,
13051
+ # Hulu * `2`, NBC * `3`, CBS * `4`, CBS Desktop * `5`, Discovery * `6`, VEVO HD *
13052
+ # `7`, VEVO Vertical * `8`, Fox * `9`, CW Network * `10`, Disney * `11`, IGN * `
13053
+ # 12`, NFL.com * `13`, Turner Broadcasting * `14`, Tubi on Fox * `15`, Hearst
13054
+ # Corporation * `16`, Twitch Desktop * `17`, ABC * `18`, Univision * `19`, MLB.
13055
+ # com * `20`, MLB.com Mobile * `21`, MLB.com OTT * `22`, Polsat * `23`, TVN * `
13056
+ # 24`, Mediaset * `25`, Antena 3 * `26`, Mediamond * `27`, Sky Italia * `28`,
13057
+ # Tubi on CBS * `29`, Spotify * `30`, Paramount * `31`, Max
13350
13058
  # Corresponds to the JSON property `publisherSpecificationId`
13351
13059
  # @return [Fixnum]
13352
13060
  attr_accessor :publisher_specification_id
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DfareportingV4
18
18
  # Version of the google-apis-dfareporting_v4 gem
19
- GEM_VERSION = "0.15.0"
19
+ GEM_VERSION = "0.17.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240201"
25
+ REVISION = "20240821"
26
26
  end
27
27
  end
28
28
  end
@@ -238,25 +238,25 @@ module Google
238
238
  include Google::Apis::Core::JsonObjectSupport
239
239
  end
240
240
 
241
- class ChangeLog
241
+ class CartData
242
242
  class Representation < Google::Apis::Core::JsonRepresentation; end
243
243
 
244
244
  include Google::Apis::Core::JsonObjectSupport
245
245
  end
246
246
 
247
- class ChangeLogsListResponse
247
+ class CartDataItem
248
248
  class Representation < Google::Apis::Core::JsonRepresentation; end
249
249
 
250
250
  include Google::Apis::Core::JsonObjectSupport
251
251
  end
252
252
 
253
- class ChannelGrouping
253
+ class ChangeLog
254
254
  class Representation < Google::Apis::Core::JsonRepresentation; end
255
255
 
256
256
  include Google::Apis::Core::JsonObjectSupport
257
257
  end
258
258
 
259
- class ChannelGroupingRule
259
+ class ChangeLogsListResponse
260
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
261
 
262
262
  include Google::Apis::Core::JsonObjectSupport
@@ -616,12 +616,6 @@ module Google
616
616
  include Google::Apis::Core::JsonObjectSupport
617
617
  end
618
618
 
619
- class DisjunctiveMatchStatement
620
- class Representation < Google::Apis::Core::JsonRepresentation; end
621
-
622
- include Google::Apis::Core::JsonObjectSupport
623
- end
624
-
625
619
  class DynamicTargetingKey
626
620
  class Representation < Google::Apis::Core::JsonRepresentation; end
627
621
 
@@ -640,12 +634,6 @@ module Google
640
634
  include Google::Apis::Core::JsonObjectSupport
641
635
  end
642
636
 
643
- class EventFilter
644
- class Representation < Google::Apis::Core::JsonRepresentation; end
645
-
646
- include Google::Apis::Core::JsonObjectSupport
647
- end
648
-
649
637
  class EventTag
650
638
  class Representation < Google::Apis::Core::JsonRepresentation; end
651
639
 
@@ -988,24 +976,6 @@ module Google
988
976
  include Google::Apis::Core::JsonObjectSupport
989
977
  end
990
978
 
991
- class PathFilter
992
- class Representation < Google::Apis::Core::JsonRepresentation; end
993
-
994
- include Google::Apis::Core::JsonObjectSupport
995
- end
996
-
997
- class PathReportCompatibleFields
998
- class Representation < Google::Apis::Core::JsonRepresentation; end
999
-
1000
- include Google::Apis::Core::JsonObjectSupport
1001
- end
1002
-
1003
- class PathReportDimensionValue
1004
- class Representation < Google::Apis::Core::JsonRepresentation; end
1005
-
1006
- include Google::Apis::Core::JsonObjectSupport
1007
- end
1008
-
1009
979
  class PathToConversionReportCompatibleFields
1010
980
  class Representation < Google::Apis::Core::JsonRepresentation; end
1011
981
 
@@ -1213,18 +1183,6 @@ module Google
1213
1183
  include Google::Apis::Core::JsonObjectSupport
1214
1184
  end
1215
1185
 
1216
- class PathAttributionCriteria
1217
- class Representation < Google::Apis::Core::JsonRepresentation; end
1218
-
1219
- include Google::Apis::Core::JsonObjectSupport
1220
- end
1221
-
1222
- class PathCriteria
1223
- class Representation < Google::Apis::Core::JsonRepresentation; end
1224
-
1225
- include Google::Apis::Core::JsonObjectSupport
1226
- end
1227
-
1228
1186
  class PathToConversionCriteria
1229
1187
  class Representation < Google::Apis::Core::JsonRepresentation; end
1230
1188
 
@@ -1504,12 +1462,6 @@ module Google
1504
1462
  include Google::Apis::Core::JsonObjectSupport
1505
1463
  end
1506
1464
 
1507
- class UvarFilter
1508
- class Representation < Google::Apis::Core::JsonRepresentation; end
1509
-
1510
- include Google::Apis::Core::JsonObjectSupport
1511
- end
1512
-
1513
1465
  class VideoFormat
1514
1466
  class Representation < Google::Apis::Core::JsonRepresentation; end
1515
1467
 
@@ -2049,6 +2001,26 @@ module Google
2049
2001
  end
2050
2002
  end
2051
2003
 
2004
+ class CartData
2005
+ # @private
2006
+ class Representation < Google::Apis::Core::JsonRepresentation
2007
+ collection :items, as: 'items', class: Google::Apis::DfareportingV4::CartDataItem, decorator: Google::Apis::DfareportingV4::CartDataItem::Representation
2008
+
2009
+ property :merchant_feed_label, as: 'merchantFeedLabel'
2010
+ property :merchant_feed_language, as: 'merchantFeedLanguage'
2011
+ property :merchant_id, :numeric_string => true, as: 'merchantId'
2012
+ end
2013
+ end
2014
+
2015
+ class CartDataItem
2016
+ # @private
2017
+ class Representation < Google::Apis::Core::JsonRepresentation
2018
+ property :item_id, as: 'itemId'
2019
+ property :quantity, as: 'quantity'
2020
+ property :unit_price, as: 'unitPrice'
2021
+ end
2022
+ end
2023
+
2052
2024
  class ChangeLog
2053
2025
  # @private
2054
2026
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2080,27 +2052,6 @@ module Google
2080
2052
  end
2081
2053
  end
2082
2054
 
2083
- class ChannelGrouping
2084
- # @private
2085
- class Representation < Google::Apis::Core::JsonRepresentation
2086
- property :fallback_name, as: 'fallbackName'
2087
- property :kind, as: 'kind'
2088
- property :name, as: 'name'
2089
- collection :rules, as: 'rules', class: Google::Apis::DfareportingV4::ChannelGroupingRule, decorator: Google::Apis::DfareportingV4::ChannelGroupingRule::Representation
2090
-
2091
- end
2092
- end
2093
-
2094
- class ChannelGroupingRule
2095
- # @private
2096
- class Representation < Google::Apis::Core::JsonRepresentation
2097
- collection :disjunctive_match_statements, as: 'disjunctiveMatchStatements', class: Google::Apis::DfareportingV4::DisjunctiveMatchStatement, decorator: Google::Apis::DfareportingV4::DisjunctiveMatchStatement::Representation
2098
-
2099
- property :kind, as: 'kind'
2100
- property :name, as: 'name'
2101
- end
2102
- end
2103
-
2104
2055
  class CitiesListResponse
2105
2056
  # @private
2106
2057
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2181,10 +2132,6 @@ module Google
2181
2132
  property :floodlight_report_compatible_fields, as: 'floodlightReportCompatibleFields', class: Google::Apis::DfareportingV4::FloodlightReportCompatibleFields, decorator: Google::Apis::DfareportingV4::FloodlightReportCompatibleFields::Representation
2182
2133
 
2183
2134
  property :kind, as: 'kind'
2184
- property :path_attribution_report_compatible_fields, as: 'pathAttributionReportCompatibleFields', class: Google::Apis::DfareportingV4::PathReportCompatibleFields, decorator: Google::Apis::DfareportingV4::PathReportCompatibleFields::Representation
2185
-
2186
- property :path_report_compatible_fields, as: 'pathReportCompatibleFields', class: Google::Apis::DfareportingV4::PathReportCompatibleFields, decorator: Google::Apis::DfareportingV4::PathReportCompatibleFields::Representation
2187
-
2188
2135
  property :path_to_conversion_report_compatible_fields, as: 'pathToConversionReportCompatibleFields', class: Google::Apis::DfareportingV4::PathToConversionReportCompatibleFields, decorator: Google::Apis::DfareportingV4::PathToConversionReportCompatibleFields::Representation
2189
2136
 
2190
2137
  property :reach_report_compatible_fields, as: 'reachReportCompatibleFields', class: Google::Apis::DfareportingV4::ReachReportCompatibleFields, decorator: Google::Apis::DfareportingV4::ReachReportCompatibleFields::Representation
@@ -2236,6 +2183,8 @@ module Google
2236
2183
  # @private
2237
2184
  class Representation < Google::Apis::Core::JsonRepresentation
2238
2185
  property :ad_user_data_consent, as: 'adUserDataConsent'
2186
+ property :cart_data, as: 'cartData', class: Google::Apis::DfareportingV4::CartData, decorator: Google::Apis::DfareportingV4::CartData::Representation
2187
+
2239
2188
  property :child_directed_treatment, as: 'childDirectedTreatment'
2240
2189
  collection :custom_variables, as: 'customVariables', class: Google::Apis::DfareportingV4::CustomFloodlightVariable, decorator: Google::Apis::DfareportingV4::CustomFloodlightVariable::Representation
2241
2190
 
@@ -2888,6 +2837,7 @@ module Google
2888
2837
  collection :interstitial_tag_formats, as: 'interstitialTagFormats'
2889
2838
  property :kind, as: 'kind'
2890
2839
  property :name, as: 'name'
2840
+ property :publisher_specification_id, :numeric_string => true, as: 'publisherSpecificationId'
2891
2841
  property :settings, as: 'settings', class: Google::Apis::DfareportingV4::DirectorySiteSettings, decorator: Google::Apis::DfareportingV4::DirectorySiteSettings::Representation
2892
2842
 
2893
2843
  property :url, as: 'url'
@@ -2915,15 +2865,6 @@ module Google
2915
2865
  end
2916
2866
  end
2917
2867
 
2918
- class DisjunctiveMatchStatement
2919
- # @private
2920
- class Representation < Google::Apis::Core::JsonRepresentation
2921
- collection :event_filters, as: 'eventFilters', class: Google::Apis::DfareportingV4::EventFilter, decorator: Google::Apis::DfareportingV4::EventFilter::Representation
2922
-
2923
- property :kind, as: 'kind'
2924
- end
2925
- end
2926
-
2927
2868
  class DynamicTargetingKey
2928
2869
  # @private
2929
2870
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2953,17 +2894,6 @@ module Google
2953
2894
  end
2954
2895
  end
2955
2896
 
2956
- class EventFilter
2957
- # @private
2958
- class Representation < Google::Apis::Core::JsonRepresentation
2959
- property :dimension_filter, as: 'dimensionFilter', class: Google::Apis::DfareportingV4::PathReportDimensionValue, decorator: Google::Apis::DfareportingV4::PathReportDimensionValue::Representation
2960
-
2961
- property :kind, as: 'kind'
2962
- property :uvar_filter, as: 'uvarFilter', class: Google::Apis::DfareportingV4::UvarFilter, decorator: Google::Apis::DfareportingV4::UvarFilter::Representation
2963
-
2964
- end
2965
- end
2966
-
2967
2897
  class EventTag
2968
2898
  # @private
2969
2899
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3678,42 +3608,6 @@ module Google
3678
3608
  end
3679
3609
  end
3680
3610
 
3681
- class PathFilter
3682
- # @private
3683
- class Representation < Google::Apis::Core::JsonRepresentation
3684
- collection :event_filters, as: 'eventFilters', class: Google::Apis::DfareportingV4::EventFilter, decorator: Google::Apis::DfareportingV4::EventFilter::Representation
3685
-
3686
- property :kind, as: 'kind'
3687
- property :path_match_position, as: 'pathMatchPosition'
3688
- end
3689
- end
3690
-
3691
- class PathReportCompatibleFields
3692
- # @private
3693
- class Representation < Google::Apis::Core::JsonRepresentation
3694
- collection :channel_groupings, as: 'channelGroupings', class: Google::Apis::DfareportingV4::Dimension, decorator: Google::Apis::DfareportingV4::Dimension::Representation
3695
-
3696
- collection :dimensions, as: 'dimensions', class: Google::Apis::DfareportingV4::Dimension, decorator: Google::Apis::DfareportingV4::Dimension::Representation
3697
-
3698
- property :kind, as: 'kind'
3699
- collection :metrics, as: 'metrics', class: Google::Apis::DfareportingV4::Metric, decorator: Google::Apis::DfareportingV4::Metric::Representation
3700
-
3701
- collection :path_filters, as: 'pathFilters', class: Google::Apis::DfareportingV4::Dimension, decorator: Google::Apis::DfareportingV4::Dimension::Representation
3702
-
3703
- end
3704
- end
3705
-
3706
- class PathReportDimensionValue
3707
- # @private
3708
- class Representation < Google::Apis::Core::JsonRepresentation
3709
- property :dimension_name, as: 'dimensionName'
3710
- collection :ids, as: 'ids'
3711
- property :kind, as: 'kind'
3712
- property :match_type, as: 'matchType'
3713
- collection :values, as: 'values'
3714
- end
3715
- end
3716
-
3717
3611
  class PathToConversionReportCompatibleFields
3718
3612
  # @private
3719
3613
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3735,6 +3629,7 @@ module Google
3735
3629
  property :account_id, :numeric_string => true, as: 'accountId'
3736
3630
  property :active_status, as: 'activeStatus'
3737
3631
  property :ad_blocking_opt_out, as: 'adBlockingOptOut'
3632
+ property :ad_serving_platform_id, :numeric_string => true, as: 'adServingPlatformId'
3738
3633
  collection :additional_sizes, as: 'additionalSizes', class: Google::Apis::DfareportingV4::Size, decorator: Google::Apis::DfareportingV4::Size::Representation
3739
3634
 
3740
3635
  property :advertiser_id, :numeric_string => true, as: 'advertiserId'
@@ -3780,6 +3675,7 @@ module Google
3780
3675
  property :site_id, :numeric_string => true, as: 'siteId'
3781
3676
  property :site_id_dimension_value, as: 'siteIdDimensionValue', class: Google::Apis::DfareportingV4::DimensionValue, decorator: Google::Apis::DfareportingV4::DimensionValue::Representation
3782
3677
 
3678
+ property :site_served, as: 'siteServed'
3783
3679
  property :size, as: 'size', class: Google::Apis::DfareportingV4::Size, decorator: Google::Apis::DfareportingV4::Size::Representation
3784
3680
 
3785
3681
  property :ssl_required, as: 'sslRequired'
@@ -4172,10 +4068,6 @@ module Google
4172
4068
  property :last_modified_time, :numeric_string => true, as: 'lastModifiedTime'
4173
4069
  property :name, as: 'name'
4174
4070
  property :owner_profile_id, :numeric_string => true, as: 'ownerProfileId'
4175
- property :path_attribution_criteria, as: 'pathAttributionCriteria', class: Google::Apis::DfareportingV4::Report::PathAttributionCriteria, decorator: Google::Apis::DfareportingV4::Report::PathAttributionCriteria::Representation
4176
-
4177
- property :path_criteria, as: 'pathCriteria', class: Google::Apis::DfareportingV4::Report::PathCriteria, decorator: Google::Apis::DfareportingV4::Report::PathCriteria::Representation
4178
-
4179
4071
  property :path_to_conversion_criteria, as: 'pathToConversionCriteria', class: Google::Apis::DfareportingV4::Report::PathToConversionCriteria, decorator: Google::Apis::DfareportingV4::Report::PathToConversionCriteria::Representation
4180
4072
 
4181
4073
  property :reach_criteria, as: 'reachCriteria', class: Google::Apis::DfareportingV4::Report::ReachCriteria, decorator: Google::Apis::DfareportingV4::Report::ReachCriteria::Representation
@@ -4258,44 +4150,6 @@ module Google
4258
4150
  end
4259
4151
  end
4260
4152
 
4261
- class PathAttributionCriteria
4262
- # @private
4263
- class Representation < Google::Apis::Core::JsonRepresentation
4264
- collection :activity_filters, as: 'activityFilters', class: Google::Apis::DfareportingV4::DimensionValue, decorator: Google::Apis::DfareportingV4::DimensionValue::Representation
4265
-
4266
- property :custom_channel_grouping, as: 'customChannelGrouping', class: Google::Apis::DfareportingV4::ChannelGrouping, decorator: Google::Apis::DfareportingV4::ChannelGrouping::Representation
4267
-
4268
- property :date_range, as: 'dateRange', class: Google::Apis::DfareportingV4::DateRange, decorator: Google::Apis::DfareportingV4::DateRange::Representation
4269
-
4270
- collection :dimensions, as: 'dimensions', class: Google::Apis::DfareportingV4::SortedDimension, decorator: Google::Apis::DfareportingV4::SortedDimension::Representation
4271
-
4272
- property :floodlight_config_id, as: 'floodlightConfigId', class: Google::Apis::DfareportingV4::DimensionValue, decorator: Google::Apis::DfareportingV4::DimensionValue::Representation
4273
-
4274
- collection :metric_names, as: 'metricNames'
4275
- collection :path_filters, as: 'pathFilters', class: Google::Apis::DfareportingV4::PathFilter, decorator: Google::Apis::DfareportingV4::PathFilter::Representation
4276
-
4277
- end
4278
- end
4279
-
4280
- class PathCriteria
4281
- # @private
4282
- class Representation < Google::Apis::Core::JsonRepresentation
4283
- collection :activity_filters, as: 'activityFilters', class: Google::Apis::DfareportingV4::DimensionValue, decorator: Google::Apis::DfareportingV4::DimensionValue::Representation
4284
-
4285
- property :custom_channel_grouping, as: 'customChannelGrouping', class: Google::Apis::DfareportingV4::ChannelGrouping, decorator: Google::Apis::DfareportingV4::ChannelGrouping::Representation
4286
-
4287
- property :date_range, as: 'dateRange', class: Google::Apis::DfareportingV4::DateRange, decorator: Google::Apis::DfareportingV4::DateRange::Representation
4288
-
4289
- collection :dimensions, as: 'dimensions', class: Google::Apis::DfareportingV4::SortedDimension, decorator: Google::Apis::DfareportingV4::SortedDimension::Representation
4290
-
4291
- property :floodlight_config_id, as: 'floodlightConfigId', class: Google::Apis::DfareportingV4::DimensionValue, decorator: Google::Apis::DfareportingV4::DimensionValue::Representation
4292
-
4293
- collection :metric_names, as: 'metricNames'
4294
- collection :path_filters, as: 'pathFilters', class: Google::Apis::DfareportingV4::PathFilter, decorator: Google::Apis::DfareportingV4::PathFilter::Representation
4295
-
4296
- end
4297
- end
4298
-
4299
4153
  class PathToConversionCriteria
4300
4154
  # @private
4301
4155
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4429,6 +4283,7 @@ module Google
4429
4283
  # @private
4430
4284
  class Representation < Google::Apis::Core::JsonRepresentation
4431
4285
  property :account_id, :numeric_string => true, as: 'accountId'
4286
+ property :ad_serving_platform_id, :numeric_string => true, as: 'adServingPlatformId'
4432
4287
  property :approved, as: 'approved'
4433
4288
  property :directory_site_id, :numeric_string => true, as: 'directorySiteId'
4434
4289
  property :directory_site_id_dimension_value, as: 'directorySiteIdDimensionValue', class: Google::Apis::DfareportingV4::DimensionValue, decorator: Google::Apis::DfareportingV4::DimensionValue::Representation
@@ -4855,17 +4710,6 @@ module Google
4855
4710
  end
4856
4711
  end
4857
4712
 
4858
- class UvarFilter
4859
- # @private
4860
- class Representation < Google::Apis::Core::JsonRepresentation
4861
- property :complement, as: 'complement'
4862
- property :index, :numeric_string => true, as: 'index'
4863
- property :kind, as: 'kind'
4864
- property :match, as: 'match'
4865
- collection :values, as: 'values'
4866
- end
4867
- end
4868
-
4869
4713
  class VideoFormat
4870
4714
  # @private
4871
4715
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -341,7 +341,7 @@ module Google
341
341
  execute_or_queue_command(command, &block)
342
342
  end
343
343
 
344
- # Updates an existing user role. This method supports patch semantics.
344
+ # Updates an existing account user profile. This method supports patch semantics.
345
345
  # @param [Fixnum] profile_id
346
346
  # User profile ID associated with this request.
347
347
  # @param [Fixnum] id
@@ -746,7 +746,7 @@ module Google
746
746
  execute_or_queue_command(command, &block)
747
747
  end
748
748
 
749
- # Updates an existing event tag. This method supports patch semantics.
749
+ # Updates an existing ad. This method supports patch semantics.
750
750
  # @param [Fixnum] profile_id
751
751
  # User profile ID associated with this request.
752
752
  # @param [Fixnum] id
@@ -1213,7 +1213,7 @@ module Google
1213
1213
  execute_or_queue_command(command, &block)
1214
1214
  end
1215
1215
 
1216
- # Updates an existing advertiser. This method supports patch semantics.
1216
+ # Updates an existing landing page. This method supports patch semantics.
1217
1217
  # @param [Fixnum] profile_id
1218
1218
  # User profile ID associated with this request.
1219
1219
  # @param [Fixnum] id
@@ -1982,7 +1982,7 @@ module Google
1982
1982
  execute_or_queue_command(command, &block)
1983
1983
  end
1984
1984
 
1985
- # Updates an existing creative. This method supports patch semantics.
1985
+ # Updates an existing campaign. This method supports patch semantics.
1986
1986
  # @param [Fixnum] profile_id
1987
1987
  # User profile ID associated with this request.
1988
1988
  # @param [Fixnum] id
@@ -4372,7 +4372,7 @@ module Google
4372
4372
  execute_or_queue_command(command, &block)
4373
4373
  end
4374
4374
 
4375
- # Updates an existing event tag. This method supports patch semantics.
4375
+ # Updates an existing floodlight activity. This method supports patch semantics.
4376
4376
  # @param [Fixnum] profile_id
4377
4377
  # User profile ID associated with this request.
4378
4378
  # @param [Fixnum] id
@@ -4578,7 +4578,8 @@ module Google
4578
4578
  execute_or_queue_command(command, &block)
4579
4579
  end
4580
4580
 
4581
- # Updates an existing event tag. This method supports patch semantics.
4581
+ # Updates an existing floodlight activity group. This method supports patch
4582
+ # semantics.
4582
4583
  # @param [Fixnum] profile_id
4583
4584
  # User profile ID associated with this request.
4584
4585
  # @param [Fixnum] id
@@ -4714,7 +4715,8 @@ module Google
4714
4715
  execute_or_queue_command(command, &block)
4715
4716
  end
4716
4717
 
4717
- # Updates an existing event tag. This method supports patch semantics.
4718
+ # Updates an existing floodlight configuration. This method supports patch
4719
+ # semantics.
4718
4720
  # @param [Fixnum] profile_id
4719
4721
  # User profile ID associated with this request.
4720
4722
  # @param [Fixnum] id
@@ -6329,7 +6331,8 @@ module Google
6329
6331
  execute_or_queue_command(command, &block)
6330
6332
  end
6331
6333
 
6332
- # Updates an existing RemarketingListShare. This method supports patch semantics.
6334
+ # Updates an existing remarketing list share. This method supports patch
6335
+ # semantics.
6333
6336
  # @param [Fixnum] profile_id
6334
6337
  # User profile ID associated with this request.
6335
6338
  # @param [Fixnum] id
@@ -6525,7 +6528,7 @@ module Google
6525
6528
  execute_or_queue_command(command, &block)
6526
6529
  end
6527
6530
 
6528
- # Updates an existing RemarketingList. This method supports patch semantics.
6531
+ # Updates an existing remarketing list. This method supports patch semantics.
6529
6532
  # @param [Fixnum] profile_id
6530
6533
  # User profile ID associated with this request.
6531
6534
  # @param [Fixnum] id
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dfareporting_v4
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-26 00:00:00.000000000 Z
11
+ date: 2024-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dfareporting_v4/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v4/v0.15.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v4/v0.17.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dfareporting_v4
63
63
  post_install_message:
64
64
  rdoc_options: []