google-apis-dfareporting_v4 0.16.0 → 0.18.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9372b86dae2ee430ea008bc538909ab444e75065e519dd3a65d57e2e5ea2f7d0
|
4
|
+
data.tar.gz: efd6a759ad7a46c767dec6504580b8130b2ac33eec8f74d48f55e85e4d34440d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 236ccb665784b3d4194646a24bea0f4a2f38c422e90cccf1a33388813116e6bfe136c6e7eeb91302f9c7514ffe1334d00ed0a48986d9645dc51953c400f44b3f
|
7
|
+
data.tar.gz: 3849942b638e3ff61235d2d8f5af90b912a7d8a56edd81bc3bc38fc362ccd08c814511c042236826afc18fe1e3e95573ccc440fc201498ea285f61557df9f17a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-dfareporting_v4
|
2
2
|
|
3
|
+
### v0.18.0 (2024-09-29)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240926
|
6
|
+
|
7
|
+
### v0.17.0 (2024-08-25)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240821
|
10
|
+
* Regenerated using generator version 0.15.1
|
11
|
+
|
3
12
|
### v0.16.0 (2024-06-16)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240613
|
@@ -2085,6 +2085,82 @@ module Google
|
|
2085
2085
|
end
|
2086
2086
|
end
|
2087
2087
|
|
2088
|
+
# Contains additional information about cart data. This field may only be used
|
2089
|
+
# when calling batchinsert; it is not supported by batchupdate.
|
2090
|
+
class CartData
|
2091
|
+
include Google::Apis::Core::Hashable
|
2092
|
+
|
2093
|
+
# Data of the items purchased.
|
2094
|
+
# Corresponds to the JSON property `items`
|
2095
|
+
# @return [Array<Google::Apis::DfareportingV4::CartDataItem>]
|
2096
|
+
attr_accessor :items
|
2097
|
+
|
2098
|
+
# The feed labels associated with the feed where your items are uploaded. For
|
2099
|
+
# more information, please refer to https://support.google.com/merchants/
|
2100
|
+
# answer/12453549. This is a required field.
|
2101
|
+
# Corresponds to the JSON property `merchantFeedLabel`
|
2102
|
+
# @return [String]
|
2103
|
+
attr_accessor :merchant_feed_label
|
2104
|
+
|
2105
|
+
# The language associated with the feed where your items are uploaded. Use ISO
|
2106
|
+
# 639-1 language codes. This field is needed only when item IDs are not unique
|
2107
|
+
# across multiple Merchant Center feeds.
|
2108
|
+
# Corresponds to the JSON property `merchantFeedLanguage`
|
2109
|
+
# @return [String]
|
2110
|
+
attr_accessor :merchant_feed_language
|
2111
|
+
|
2112
|
+
# The Merchant Center ID where the items are uploaded. This is a required field.
|
2113
|
+
# Corresponds to the JSON property `merchantId`
|
2114
|
+
# @return [Fixnum]
|
2115
|
+
attr_accessor :merchant_id
|
2116
|
+
|
2117
|
+
def initialize(**args)
|
2118
|
+
update!(**args)
|
2119
|
+
end
|
2120
|
+
|
2121
|
+
# Update properties of this object
|
2122
|
+
def update!(**args)
|
2123
|
+
@items = args[:items] if args.key?(:items)
|
2124
|
+
@merchant_feed_label = args[:merchant_feed_label] if args.key?(:merchant_feed_label)
|
2125
|
+
@merchant_feed_language = args[:merchant_feed_language] if args.key?(:merchant_feed_language)
|
2126
|
+
@merchant_id = args[:merchant_id] if args.key?(:merchant_id)
|
2127
|
+
end
|
2128
|
+
end
|
2129
|
+
|
2130
|
+
# Contains data of the items purchased.
|
2131
|
+
class CartDataItem
|
2132
|
+
include Google::Apis::Core::Hashable
|
2133
|
+
|
2134
|
+
# The shopping id of the item. Must be equal to the Merchant Center product
|
2135
|
+
# identifier. This is a required field.
|
2136
|
+
# Corresponds to the JSON property `itemId`
|
2137
|
+
# @return [String]
|
2138
|
+
attr_accessor :item_id
|
2139
|
+
|
2140
|
+
# Number of items sold. This is a required field.
|
2141
|
+
# Corresponds to the JSON property `quantity`
|
2142
|
+
# @return [Fixnum]
|
2143
|
+
attr_accessor :quantity
|
2144
|
+
|
2145
|
+
# Unit price excluding tax, shipping, and any transaction level discounts.
|
2146
|
+
# Interpreted in CM360 Floodlight config parent advertiser's currency code. This
|
2147
|
+
# is a required field.
|
2148
|
+
# Corresponds to the JSON property `unitPrice`
|
2149
|
+
# @return [Float]
|
2150
|
+
attr_accessor :unit_price
|
2151
|
+
|
2152
|
+
def initialize(**args)
|
2153
|
+
update!(**args)
|
2154
|
+
end
|
2155
|
+
|
2156
|
+
# Update properties of this object
|
2157
|
+
def update!(**args)
|
2158
|
+
@item_id = args[:item_id] if args.key?(:item_id)
|
2159
|
+
@quantity = args[:quantity] if args.key?(:quantity)
|
2160
|
+
@unit_price = args[:unit_price] if args.key?(:unit_price)
|
2161
|
+
end
|
2162
|
+
end
|
2163
|
+
|
2088
2164
|
# Describes a change that a user has made to a resource.
|
2089
2165
|
class ChangeLog
|
2090
2166
|
include Google::Apis::Core::Hashable
|
@@ -2486,7 +2562,7 @@ module Google
|
|
2486
2562
|
end
|
2487
2563
|
end
|
2488
2564
|
|
2489
|
-
# Represents a response to the queryCompatibleFields method.
|
2565
|
+
# Represents a response to the queryCompatibleFields method. Next ID: 10
|
2490
2566
|
class CompatibleFields
|
2491
2567
|
include Google::Apis::Core::Hashable
|
2492
2568
|
|
@@ -2496,6 +2572,12 @@ module Google
|
|
2496
2572
|
# @return [Google::Apis::DfareportingV4::CrossDimensionReachReportCompatibleFields]
|
2497
2573
|
attr_accessor :cross_dimension_reach_report_compatible_fields
|
2498
2574
|
|
2575
|
+
# Represents fields that are compatible to be selected for a report of type "
|
2576
|
+
# CROSS_MEDIA_REACH".
|
2577
|
+
# Corresponds to the JSON property `crossMediaReachReportCompatibleFields`
|
2578
|
+
# @return [Google::Apis::DfareportingV4::CrossMediaReachReportCompatibleFields]
|
2579
|
+
attr_accessor :cross_media_reach_report_compatible_fields
|
2580
|
+
|
2499
2581
|
# Represents fields that are compatible to be selected for a report of type "
|
2500
2582
|
# FlOODLIGHT".
|
2501
2583
|
# Corresponds to the JSON property `floodlightReportCompatibleFields`
|
@@ -2532,6 +2614,7 @@ module Google
|
|
2532
2614
|
# Update properties of this object
|
2533
2615
|
def update!(**args)
|
2534
2616
|
@cross_dimension_reach_report_compatible_fields = args[:cross_dimension_reach_report_compatible_fields] if args.key?(:cross_dimension_reach_report_compatible_fields)
|
2617
|
+
@cross_media_reach_report_compatible_fields = args[:cross_media_reach_report_compatible_fields] if args.key?(:cross_media_reach_report_compatible_fields)
|
2535
2618
|
@floodlight_report_compatible_fields = args[:floodlight_report_compatible_fields] if args.key?(:floodlight_report_compatible_fields)
|
2536
2619
|
@kind = args[:kind] if args.key?(:kind)
|
2537
2620
|
@path_to_conversion_report_compatible_fields = args[:path_to_conversion_report_compatible_fields] if args.key?(:path_to_conversion_report_compatible_fields)
|
@@ -2681,6 +2764,12 @@ module Google
|
|
2681
2764
|
# @return [String]
|
2682
2765
|
attr_accessor :ad_user_data_consent
|
2683
2766
|
|
2767
|
+
# Contains additional information about cart data. This field may only be used
|
2768
|
+
# when calling batchinsert; it is not supported by batchupdate.
|
2769
|
+
# Corresponds to the JSON property `cartData`
|
2770
|
+
# @return [Google::Apis::DfareportingV4::CartData]
|
2771
|
+
attr_accessor :cart_data
|
2772
|
+
|
2684
2773
|
# Whether this particular request may come from a user under the age of 13,
|
2685
2774
|
# under COPPA compliance.
|
2686
2775
|
# Corresponds to the JSON property `childDirectedTreatment`
|
@@ -2688,8 +2777,7 @@ module Google
|
|
2688
2777
|
attr_accessor :child_directed_treatment
|
2689
2778
|
alias_method :child_directed_treatment?, :child_directed_treatment
|
2690
2779
|
|
2691
|
-
# Custom floodlight variables.
|
2692
|
-
# batchinsert; it is not supported by batchupdate.
|
2780
|
+
# Custom floodlight variables.
|
2693
2781
|
# Corresponds to the JSON property `customVariables`
|
2694
2782
|
# @return [Array<Google::Apis::DfareportingV4::CustomFloodlightVariable>]
|
2695
2783
|
attr_accessor :custom_variables
|
@@ -2828,6 +2916,7 @@ module Google
|
|
2828
2916
|
# Update properties of this object
|
2829
2917
|
def update!(**args)
|
2830
2918
|
@ad_user_data_consent = args[:ad_user_data_consent] if args.key?(:ad_user_data_consent)
|
2919
|
+
@cart_data = args[:cart_data] if args.key?(:cart_data)
|
2831
2920
|
@child_directed_treatment = args[:child_directed_treatment] if args.key?(:child_directed_treatment)
|
2832
2921
|
@custom_variables = args[:custom_variables] if args.key?(:custom_variables)
|
2833
2922
|
@dclid = args[:dclid] if args.key?(:dclid)
|
@@ -4922,6 +5011,48 @@ module Google
|
|
4922
5011
|
end
|
4923
5012
|
end
|
4924
5013
|
|
5014
|
+
# Represents fields that are compatible to be selected for a report of type "
|
5015
|
+
# CROSS_MEDIA_REACH".
|
5016
|
+
class CrossMediaReachReportCompatibleFields
|
5017
|
+
include Google::Apis::Core::Hashable
|
5018
|
+
|
5019
|
+
# Dimensions which are compatible to be selected in the "dimensionFilters"
|
5020
|
+
# section of the report.
|
5021
|
+
# Corresponds to the JSON property `dimensionFilters`
|
5022
|
+
# @return [Array<Google::Apis::DfareportingV4::Dimension>]
|
5023
|
+
attr_accessor :dimension_filters
|
5024
|
+
|
5025
|
+
# Dimensions which are compatible to be selected in the "dimensions" section of
|
5026
|
+
# the report.
|
5027
|
+
# Corresponds to the JSON property `dimensions`
|
5028
|
+
# @return [Array<Google::Apis::DfareportingV4::Dimension>]
|
5029
|
+
attr_accessor :dimensions
|
5030
|
+
|
5031
|
+
# The kind of resource this is, in this case dfareporting#
|
5032
|
+
# crossMediaReachReportCompatibleFields.
|
5033
|
+
# Corresponds to the JSON property `kind`
|
5034
|
+
# @return [String]
|
5035
|
+
attr_accessor :kind
|
5036
|
+
|
5037
|
+
# Metrics which are compatible to be selected in the "metricNames" section of
|
5038
|
+
# the report.
|
5039
|
+
# Corresponds to the JSON property `metrics`
|
5040
|
+
# @return [Array<Google::Apis::DfareportingV4::Metric>]
|
5041
|
+
attr_accessor :metrics
|
5042
|
+
|
5043
|
+
def initialize(**args)
|
5044
|
+
update!(**args)
|
5045
|
+
end
|
5046
|
+
|
5047
|
+
# Update properties of this object
|
5048
|
+
def update!(**args)
|
5049
|
+
@dimension_filters = args[:dimension_filters] if args.key?(:dimension_filters)
|
5050
|
+
@dimensions = args[:dimensions] if args.key?(:dimensions)
|
5051
|
+
@kind = args[:kind] if args.key?(:kind)
|
5052
|
+
@metrics = args[:metrics] if args.key?(:metrics)
|
5053
|
+
end
|
5054
|
+
end
|
5055
|
+
|
4925
5056
|
# A custom floodlight variable. This field may only be used when calling
|
4926
5057
|
# batchinsert; it is not supported by batchupdate.
|
4927
5058
|
class CustomFloodlightVariable
|
@@ -4934,7 +5065,7 @@ module Google
|
|
4934
5065
|
attr_accessor :kind
|
4935
5066
|
|
4936
5067
|
# The type of custom floodlight variable to supply a value for. These map to the
|
4937
|
-
# "u[1-
|
5068
|
+
# "u[1-100]=" in the tags.
|
4938
5069
|
# Corresponds to the JSON property `type`
|
4939
5070
|
# @return [String]
|
4940
5071
|
attr_accessor :type
|
@@ -5532,6 +5663,19 @@ module Google
|
|
5532
5663
|
# @return [String]
|
5533
5664
|
attr_accessor :name
|
5534
5665
|
|
5666
|
+
# Output only. Default publisher specification ID of video placements under this
|
5667
|
+
# directory site. Possible values are: * `1`, Hulu * `2`, NBC * `3`, CBS * `4`,
|
5668
|
+
# CBS Desktop * `5`, Discovery * `6`, VEVO HD * `7`, VEVO Vertical * `8`, Fox * `
|
5669
|
+
# 9`, CW Network * `10`, Disney * `11`, IGN * `12`, NFL.com * `13`, Turner
|
5670
|
+
# Broadcasting * `14`, Tubi on Fox * `15`, Hearst Corporation * `16`, Twitch
|
5671
|
+
# Desktop * `17`, ABC * `18`, Univision * `19`, MLB.com * `20`, MLB.com Mobile *
|
5672
|
+
# `21`, MLB.com OTT * `22`, Polsat * `23`, TVN * `24`, Mediaset * `25`, Antena 3
|
5673
|
+
# * `26`, Mediamond * `27`, Sky Italia * `28`, Tubi on CBS * `29`, Spotify * `30`
|
5674
|
+
# , Paramount * `31`, Max
|
5675
|
+
# Corresponds to the JSON property `publisherSpecificationId`
|
5676
|
+
# @return [Fixnum]
|
5677
|
+
attr_accessor :publisher_specification_id
|
5678
|
+
|
5535
5679
|
# Directory Site Settings
|
5536
5680
|
# Corresponds to the JSON property `settings`
|
5537
5681
|
# @return [Google::Apis::DfareportingV4::DirectorySiteSettings]
|
@@ -5554,6 +5698,7 @@ module Google
|
|
5554
5698
|
@interstitial_tag_formats = args[:interstitial_tag_formats] if args.key?(:interstitial_tag_formats)
|
5555
5699
|
@kind = args[:kind] if args.key?(:kind)
|
5556
5700
|
@name = args[:name] if args.key?(:name)
|
5701
|
+
@publisher_specification_id = args[:publisher_specification_id] if args.key?(:publisher_specification_id)
|
5557
5702
|
@settings = args[:settings] if args.key?(:settings)
|
5558
5703
|
@url = args[:url] if args.key?(:url)
|
5559
5704
|
end
|
@@ -8650,6 +8795,18 @@ module Google
|
|
8650
8795
|
attr_accessor :ad_blocking_opt_out
|
8651
8796
|
alias_method :ad_blocking_opt_out?, :ad_blocking_opt_out
|
8652
8797
|
|
8798
|
+
# Optional. Ad serving platform ID to identify the ad serving platform used by
|
8799
|
+
# the placement. Measurement partners can use this field to add ad-server
|
8800
|
+
# specific macros. Possible values are: * `1`, Adelphic * `2`, Adform * `3`,
|
8801
|
+
# Adobe * `4`, Amobee * `5`, Basis (Centro) * `6`, Beeswax * `7`, Amazon * `8`,
|
8802
|
+
# DV360 (DBM) * `9`, Innovid * `10`, MediaMath * `11`, Roku OneView DSP * `12`,
|
8803
|
+
# TabMo Hawk * `13`, The Trade Desk * `14`, Xandr Invest DSP * `15`, Yahoo DSP *
|
8804
|
+
# `16`, Zeta Global * `17`, Scaleout * `18`, Bidtellect * `19`, Unicorn * `20`,
|
8805
|
+
# Teads * `21`, Quantcast * `22`, Cognitiv
|
8806
|
+
# Corresponds to the JSON property `adServingPlatformId`
|
8807
|
+
# @return [Fixnum]
|
8808
|
+
attr_accessor :ad_serving_platform_id
|
8809
|
+
|
8653
8810
|
# Additional sizes associated with this placement. When inserting or updating a
|
8654
8811
|
# placement, only the size ID field is used.
|
8655
8812
|
# Corresponds to the JSON property `additionalSizes`
|
@@ -8825,6 +8982,14 @@ module Google
|
|
8825
8982
|
# @return [Google::Apis::DfareportingV4::DimensionValue]
|
8826
8983
|
attr_accessor :site_id_dimension_value
|
8827
8984
|
|
8985
|
+
# Optional. Whether the ads in the placement are served by another platform and
|
8986
|
+
# CM is only used for tracking or they are served by CM. A false value indicates
|
8987
|
+
# the ad is served by CM.
|
8988
|
+
# Corresponds to the JSON property `siteServed`
|
8989
|
+
# @return [Boolean]
|
8990
|
+
attr_accessor :site_served
|
8991
|
+
alias_method :site_served?, :site_served
|
8992
|
+
|
8828
8993
|
# Represents the dimensions of ads, placements, creatives, or creative assets.
|
8829
8994
|
# Corresponds to the JSON property `size`
|
8830
8995
|
# @return [Google::Apis::DfareportingV4::Size]
|
@@ -8906,6 +9071,7 @@ module Google
|
|
8906
9071
|
@account_id = args[:account_id] if args.key?(:account_id)
|
8907
9072
|
@active_status = args[:active_status] if args.key?(:active_status)
|
8908
9073
|
@ad_blocking_opt_out = args[:ad_blocking_opt_out] if args.key?(:ad_blocking_opt_out)
|
9074
|
+
@ad_serving_platform_id = args[:ad_serving_platform_id] if args.key?(:ad_serving_platform_id)
|
8909
9075
|
@additional_sizes = args[:additional_sizes] if args.key?(:additional_sizes)
|
8910
9076
|
@advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
|
8911
9077
|
@advertiser_id_dimension_value = args[:advertiser_id_dimension_value] if args.key?(:advertiser_id_dimension_value)
|
@@ -8937,6 +9103,7 @@ module Google
|
|
8937
9103
|
@publisher_update_info = args[:publisher_update_info] if args.key?(:publisher_update_info)
|
8938
9104
|
@site_id = args[:site_id] if args.key?(:site_id)
|
8939
9105
|
@site_id_dimension_value = args[:site_id_dimension_value] if args.key?(:site_id_dimension_value)
|
9106
|
+
@site_served = args[:site_served] if args.key?(:site_served)
|
8940
9107
|
@size = args[:size] if args.key?(:size)
|
8941
9108
|
@ssl_required = args[:ssl_required] if args.key?(:ssl_required)
|
8942
9109
|
@status = args[:status] if args.key?(:status)
|
@@ -10316,6 +10483,11 @@ module Google
|
|
10316
10483
|
# @return [Google::Apis::DfareportingV4::Report::CrossDimensionReachCriteria]
|
10317
10484
|
attr_accessor :cross_dimension_reach_criteria
|
10318
10485
|
|
10486
|
+
# Optional. The report criteria for a report of type "CROSS_MEDIA_REACH".
|
10487
|
+
# Corresponds to the JSON property `crossMediaReachCriteria`
|
10488
|
+
# @return [Google::Apis::DfareportingV4::Report::CrossMediaReachCriteria]
|
10489
|
+
attr_accessor :cross_media_reach_criteria
|
10490
|
+
|
10319
10491
|
# The report's email delivery settings.
|
10320
10492
|
# Corresponds to the JSON property `delivery`
|
10321
10493
|
# @return [Google::Apis::DfareportingV4::Report::Delivery]
|
@@ -10405,6 +10577,7 @@ module Google
|
|
10405
10577
|
@account_id = args[:account_id] if args.key?(:account_id)
|
10406
10578
|
@criteria = args[:criteria] if args.key?(:criteria)
|
10407
10579
|
@cross_dimension_reach_criteria = args[:cross_dimension_reach_criteria] if args.key?(:cross_dimension_reach_criteria)
|
10580
|
+
@cross_media_reach_criteria = args[:cross_media_reach_criteria] if args.key?(:cross_media_reach_criteria)
|
10408
10581
|
@delivery = args[:delivery] if args.key?(:delivery)
|
10409
10582
|
@etag = args[:etag] if args.key?(:etag)
|
10410
10583
|
@file_name = args[:file_name] if args.key?(:file_name)
|
@@ -10529,6 +10702,45 @@ module Google
|
|
10529
10702
|
end
|
10530
10703
|
end
|
10531
10704
|
|
10705
|
+
# Optional. The report criteria for a report of type "CROSS_MEDIA_REACH".
|
10706
|
+
class CrossMediaReachCriteria
|
10707
|
+
include Google::Apis::Core::Hashable
|
10708
|
+
|
10709
|
+
# Represents a date range.
|
10710
|
+
# Corresponds to the JSON property `dateRange`
|
10711
|
+
# @return [Google::Apis::DfareportingV4::DateRange]
|
10712
|
+
attr_accessor :date_range
|
10713
|
+
|
10714
|
+
# Required. The list of filters on which dimensions are filtered. Filters for
|
10715
|
+
# different dimensions are ANDed, filters for the same dimension are grouped
|
10716
|
+
# together and ORed.
|
10717
|
+
# Corresponds to the JSON property `dimensionFilters`
|
10718
|
+
# @return [Array<Google::Apis::DfareportingV4::DimensionValue>]
|
10719
|
+
attr_accessor :dimension_filters
|
10720
|
+
|
10721
|
+
# Required. The list of dimensions the report should include.
|
10722
|
+
# Corresponds to the JSON property `dimensions`
|
10723
|
+
# @return [Array<Google::Apis::DfareportingV4::SortedDimension>]
|
10724
|
+
attr_accessor :dimensions
|
10725
|
+
|
10726
|
+
# Required. The list of names of metrics the report should include.
|
10727
|
+
# Corresponds to the JSON property `metricNames`
|
10728
|
+
# @return [Array<String>]
|
10729
|
+
attr_accessor :metric_names
|
10730
|
+
|
10731
|
+
def initialize(**args)
|
10732
|
+
update!(**args)
|
10733
|
+
end
|
10734
|
+
|
10735
|
+
# Update properties of this object
|
10736
|
+
def update!(**args)
|
10737
|
+
@date_range = args[:date_range] if args.key?(:date_range)
|
10738
|
+
@dimension_filters = args[:dimension_filters] if args.key?(:dimension_filters)
|
10739
|
+
@dimensions = args[:dimensions] if args.key?(:dimensions)
|
10740
|
+
@metric_names = args[:metric_names] if args.key?(:metric_names)
|
10741
|
+
end
|
10742
|
+
end
|
10743
|
+
|
10532
10744
|
# The report's email delivery settings.
|
10533
10745
|
class Delivery
|
10534
10746
|
include Google::Apis::Core::Hashable
|
@@ -11166,6 +11378,19 @@ module Google
|
|
11166
11378
|
# @return [Fixnum]
|
11167
11379
|
attr_accessor :account_id
|
11168
11380
|
|
11381
|
+
# Optional. Ad serving platform ID to identify the ad serving platform used by
|
11382
|
+
# the site. Measurement partners can use this field to add ad-server specific
|
11383
|
+
# macros. If set, this value acts as the default during placement creation.
|
11384
|
+
# Possible values are: * `1`, Adelphic * `2`, Adform * `3`, Adobe * `4`, Amobee *
|
11385
|
+
# `5`, Basis (Centro) * `6`, Beeswax * `7`, Amazon * `8`, DV360 (DBM) * `9`,
|
11386
|
+
# Innovid * `10`, MediaMath * `11`, Roku OneView DSP * `12`, TabMo Hawk * `13`,
|
11387
|
+
# The Trade Desk * `14`, Xandr Invest DSP * `15`, Yahoo DSP * `16`, Zeta Global *
|
11388
|
+
# `17`, Scaleout * `18`, Bidtellect * `19`, Unicorn * `20`, Teads * `21`,
|
11389
|
+
# Quantcast * `22`, Cognitiv
|
11390
|
+
# Corresponds to the JSON property `adServingPlatformId`
|
11391
|
+
# @return [Fixnum]
|
11392
|
+
attr_accessor :ad_serving_platform_id
|
11393
|
+
|
11169
11394
|
# Whether this site is approved.
|
11170
11395
|
# Corresponds to the JSON property `approved`
|
11171
11396
|
# @return [Boolean]
|
@@ -11239,6 +11464,7 @@ module Google
|
|
11239
11464
|
# Update properties of this object
|
11240
11465
|
def update!(**args)
|
11241
11466
|
@account_id = args[:account_id] if args.key?(:account_id)
|
11467
|
+
@ad_serving_platform_id = args[:ad_serving_platform_id] if args.key?(:ad_serving_platform_id)
|
11242
11468
|
@approved = args[:approved] if args.key?(:approved)
|
11243
11469
|
@directory_site_id = args[:directory_site_id] if args.key?(:directory_site_id)
|
11244
11470
|
@directory_site_id_dimension_value = args[:directory_site_id_dimension_value] if args.key?(:directory_site_id_dimension_value)
|
@@ -11524,6 +11750,14 @@ module Google
|
|
11524
11750
|
# Publisher specification ID used to identify site-associated publisher
|
11525
11751
|
# requirements and automatically populate transcode settings. If publisher
|
11526
11752
|
# specification ID is specified, it will take precedence over transcode settings.
|
11753
|
+
# Possible values are: * `1`, Hulu * `2`, NBC * `3`, CBS * `4`, CBS Desktop * `
|
11754
|
+
# 5`, Discovery * `6`, VEVO HD * `7`, VEVO Vertical * `8`, Fox * `9`, CW Network
|
11755
|
+
# * `10`, Disney * `11`, IGN * `12`, NFL.com * `13`, Turner Broadcasting * `14`,
|
11756
|
+
# Tubi on Fox * `15`, Hearst Corporation * `16`, Twitch Desktop * `17`, ABC * `
|
11757
|
+
# 18`, Univision * `19`, MLB.com * `20`, MLB.com Mobile * `21`, MLB.com OTT * `
|
11758
|
+
# 22`, Polsat * `23`, TVN * `24`, Mediaset * `25`, Antena 3 * `26`, Mediamond * `
|
11759
|
+
# 27`, Sky Italia * `28`, Tubi on CBS * `29`, Spotify * `30`, Paramount * `31`,
|
11760
|
+
# Max
|
11527
11761
|
# Corresponds to the JSON property `publisherSpecificationId`
|
11528
11762
|
# @return [Fixnum]
|
11529
11763
|
attr_accessor :publisher_specification_id
|
@@ -12354,6 +12588,167 @@ module Google
|
|
12354
12588
|
end
|
12355
12589
|
end
|
12356
12590
|
|
12591
|
+
# TvCampaignDetail contains data from a TV campaign for specific start dates and
|
12592
|
+
# date windows.
|
12593
|
+
class TvCampaignDetail
|
12594
|
+
include Google::Apis::Core::Hashable
|
12595
|
+
|
12596
|
+
# ID of this TV campaign.
|
12597
|
+
# Corresponds to the JSON property `id`
|
12598
|
+
# @return [String]
|
12599
|
+
attr_accessor :id
|
12600
|
+
|
12601
|
+
# Identifies what kind of resource this is. Value: the fixed string "
|
12602
|
+
# dfareporting#tvCampaignSummary".
|
12603
|
+
# Corresponds to the JSON property `kind`
|
12604
|
+
# @return [String]
|
12605
|
+
attr_accessor :kind
|
12606
|
+
|
12607
|
+
# The timepoints of the TV campaign.
|
12608
|
+
# Corresponds to the JSON property `timepoints`
|
12609
|
+
# @return [Array<Google::Apis::DfareportingV4::TvCampaignTimepoint>]
|
12610
|
+
attr_accessor :timepoints
|
12611
|
+
|
12612
|
+
def initialize(**args)
|
12613
|
+
update!(**args)
|
12614
|
+
end
|
12615
|
+
|
12616
|
+
# Update properties of this object
|
12617
|
+
def update!(**args)
|
12618
|
+
@id = args[:id] if args.key?(:id)
|
12619
|
+
@kind = args[:kind] if args.key?(:kind)
|
12620
|
+
@timepoints = args[:timepoints] if args.key?(:timepoints)
|
12621
|
+
end
|
12622
|
+
end
|
12623
|
+
|
12624
|
+
# Response message for TvCampaignSummariesService.List.
|
12625
|
+
class TvCampaignSummariesListResponse
|
12626
|
+
include Google::Apis::Core::Hashable
|
12627
|
+
|
12628
|
+
# Identifies what kind of resource this is. Value: the fixed string "
|
12629
|
+
# dfareporting#tvCampaignSummariesListResponse".
|
12630
|
+
# Corresponds to the JSON property `kind`
|
12631
|
+
# @return [String]
|
12632
|
+
attr_accessor :kind
|
12633
|
+
|
12634
|
+
# List of TV campaign summaries.
|
12635
|
+
# Corresponds to the JSON property `tvCampaignSummaries`
|
12636
|
+
# @return [Array<Google::Apis::DfareportingV4::TvCampaignSummary>]
|
12637
|
+
attr_accessor :tv_campaign_summaries
|
12638
|
+
|
12639
|
+
def initialize(**args)
|
12640
|
+
update!(**args)
|
12641
|
+
end
|
12642
|
+
|
12643
|
+
# Update properties of this object
|
12644
|
+
def update!(**args)
|
12645
|
+
@kind = args[:kind] if args.key?(:kind)
|
12646
|
+
@tv_campaign_summaries = args[:tv_campaign_summaries] if args.key?(:tv_campaign_summaries)
|
12647
|
+
end
|
12648
|
+
end
|
12649
|
+
|
12650
|
+
# TvCampaignSummary contains aggregate data from a TV campaign.
|
12651
|
+
class TvCampaignSummary
|
12652
|
+
include Google::Apis::Core::Hashable
|
12653
|
+
|
12654
|
+
# The end date of the TV campaign, inclusive. A string of the format: "yyyy-MM-
|
12655
|
+
# dd".
|
12656
|
+
# Corresponds to the JSON property `endDate`
|
12657
|
+
# @return [String]
|
12658
|
+
attr_accessor :end_date
|
12659
|
+
|
12660
|
+
# GRP of this TV campaign.
|
12661
|
+
# Corresponds to the JSON property `grp`
|
12662
|
+
# @return [Fixnum]
|
12663
|
+
attr_accessor :grp
|
12664
|
+
|
12665
|
+
# ID of this TV campaign.
|
12666
|
+
# Corresponds to the JSON property `id`
|
12667
|
+
# @return [String]
|
12668
|
+
attr_accessor :id
|
12669
|
+
|
12670
|
+
# Impressions across the entire TV campaign.
|
12671
|
+
# Corresponds to the JSON property `impressions`
|
12672
|
+
# @return [Fixnum]
|
12673
|
+
attr_accessor :impressions
|
12674
|
+
|
12675
|
+
# Identifies what kind of resource this is. Value: the fixed string "
|
12676
|
+
# dfareporting#tvCampaignSummary".
|
12677
|
+
# Corresponds to the JSON property `kind`
|
12678
|
+
# @return [String]
|
12679
|
+
attr_accessor :kind
|
12680
|
+
|
12681
|
+
# Identifier. Name of this TV campaign.
|
12682
|
+
# Corresponds to the JSON property `name`
|
12683
|
+
# @return [String]
|
12684
|
+
attr_accessor :name
|
12685
|
+
|
12686
|
+
# Spend across the entire TV campaign.
|
12687
|
+
# Corresponds to the JSON property `spend`
|
12688
|
+
# @return [Float]
|
12689
|
+
attr_accessor :spend
|
12690
|
+
|
12691
|
+
# The start date of the TV campaign, inclusive. A string of the format: "yyyy-MM-
|
12692
|
+
# dd".
|
12693
|
+
# Corresponds to the JSON property `startDate`
|
12694
|
+
# @return [String]
|
12695
|
+
attr_accessor :start_date
|
12696
|
+
|
12697
|
+
# "CampaignComponentType" of this TV campaign.
|
12698
|
+
# Corresponds to the JSON property `type`
|
12699
|
+
# @return [String]
|
12700
|
+
attr_accessor :type
|
12701
|
+
|
12702
|
+
def initialize(**args)
|
12703
|
+
update!(**args)
|
12704
|
+
end
|
12705
|
+
|
12706
|
+
# Update properties of this object
|
12707
|
+
def update!(**args)
|
12708
|
+
@end_date = args[:end_date] if args.key?(:end_date)
|
12709
|
+
@grp = args[:grp] if args.key?(:grp)
|
12710
|
+
@id = args[:id] if args.key?(:id)
|
12711
|
+
@impressions = args[:impressions] if args.key?(:impressions)
|
12712
|
+
@kind = args[:kind] if args.key?(:kind)
|
12713
|
+
@name = args[:name] if args.key?(:name)
|
12714
|
+
@spend = args[:spend] if args.key?(:spend)
|
12715
|
+
@start_date = args[:start_date] if args.key?(:start_date)
|
12716
|
+
@type = args[:type] if args.key?(:type)
|
12717
|
+
end
|
12718
|
+
end
|
12719
|
+
|
12720
|
+
# A single data point for TvCampaignDetail, which holds information about the TV
|
12721
|
+
# campaign for a specific start date and date window.
|
12722
|
+
class TvCampaignTimepoint
|
12723
|
+
include Google::Apis::Core::Hashable
|
12724
|
+
|
12725
|
+
# The date window of the timepoint.
|
12726
|
+
# Corresponds to the JSON property `dateWindow`
|
12727
|
+
# @return [String]
|
12728
|
+
attr_accessor :date_window
|
12729
|
+
|
12730
|
+
# The spend within the time range of the timepoint.
|
12731
|
+
# Corresponds to the JSON property `spend`
|
12732
|
+
# @return [Float]
|
12733
|
+
attr_accessor :spend
|
12734
|
+
|
12735
|
+
# The start date of the timepoint. A string in the format of "yyyy-MM-dd".
|
12736
|
+
# Corresponds to the JSON property `startDate`
|
12737
|
+
# @return [String]
|
12738
|
+
attr_accessor :start_date
|
12739
|
+
|
12740
|
+
def initialize(**args)
|
12741
|
+
update!(**args)
|
12742
|
+
end
|
12743
|
+
|
12744
|
+
# Update properties of this object
|
12745
|
+
def update!(**args)
|
12746
|
+
@date_window = args[:date_window] if args.key?(:date_window)
|
12747
|
+
@spend = args[:spend] if args.key?(:spend)
|
12748
|
+
@start_date = args[:start_date] if args.key?(:start_date)
|
12749
|
+
end
|
12750
|
+
end
|
12751
|
+
|
12357
12752
|
# A Universal Ad ID as per the VAST 4.0 spec. Applicable to the following
|
12358
12753
|
# creative types: INSTREAM_AUDIO, INSTREAM_VIDEO and VPAID.
|
12359
12754
|
class UniversalAdId
|
@@ -12908,7 +13303,14 @@ module Google
|
|
12908
13303
|
# @return [String]
|
12909
13304
|
attr_accessor :orientation
|
12910
13305
|
|
12911
|
-
# Publisher specification ID of a video placement.
|
13306
|
+
# Publisher specification ID of a video placement. Possible values are: * `1`,
|
13307
|
+
# Hulu * `2`, NBC * `3`, CBS * `4`, CBS Desktop * `5`, Discovery * `6`, VEVO HD *
|
13308
|
+
# `7`, VEVO Vertical * `8`, Fox * `9`, CW Network * `10`, Disney * `11`, IGN * `
|
13309
|
+
# 12`, NFL.com * `13`, Turner Broadcasting * `14`, Tubi on Fox * `15`, Hearst
|
13310
|
+
# Corporation * `16`, Twitch Desktop * `17`, ABC * `18`, Univision * `19`, MLB.
|
13311
|
+
# com * `20`, MLB.com Mobile * `21`, MLB.com OTT * `22`, Polsat * `23`, TVN * `
|
13312
|
+
# 24`, Mediaset * `25`, Antena 3 * `26`, Mediamond * `27`, Sky Italia * `28`,
|
13313
|
+
# Tubi on CBS * `29`, Spotify * `30`, Paramount * `31`, Max
|
12912
13314
|
# Corresponds to the JSON property `publisherSpecificationId`
|
12913
13315
|
# @return [Fixnum]
|
12914
13316
|
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.
|
19
|
+
GEM_VERSION = "0.18.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240926"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -238,6 +238,18 @@ module Google
|
|
238
238
|
include Google::Apis::Core::JsonObjectSupport
|
239
239
|
end
|
240
240
|
|
241
|
+
class CartData
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
247
|
+
class CartDataItem
|
248
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
|
+
|
250
|
+
include Google::Apis::Core::JsonObjectSupport
|
251
|
+
end
|
252
|
+
|
241
253
|
class ChangeLog
|
242
254
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
255
|
|
@@ -496,6 +508,12 @@ module Google
|
|
496
508
|
include Google::Apis::Core::JsonObjectSupport
|
497
509
|
end
|
498
510
|
|
511
|
+
class CrossMediaReachReportCompatibleFields
|
512
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
513
|
+
|
514
|
+
include Google::Apis::Core::JsonObjectSupport
|
515
|
+
end
|
516
|
+
|
499
517
|
class CustomFloodlightVariable
|
500
518
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
501
519
|
|
@@ -1153,6 +1171,12 @@ module Google
|
|
1153
1171
|
include Google::Apis::Core::JsonObjectSupport
|
1154
1172
|
end
|
1155
1173
|
|
1174
|
+
class CrossMediaReachCriteria
|
1175
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1176
|
+
|
1177
|
+
include Google::Apis::Core::JsonObjectSupport
|
1178
|
+
end
|
1179
|
+
|
1156
1180
|
class Delivery
|
1157
1181
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1158
1182
|
|
@@ -1384,6 +1408,30 @@ module Google
|
|
1384
1408
|
include Google::Apis::Core::JsonObjectSupport
|
1385
1409
|
end
|
1386
1410
|
|
1411
|
+
class TvCampaignDetail
|
1412
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1413
|
+
|
1414
|
+
include Google::Apis::Core::JsonObjectSupport
|
1415
|
+
end
|
1416
|
+
|
1417
|
+
class TvCampaignSummariesListResponse
|
1418
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1419
|
+
|
1420
|
+
include Google::Apis::Core::JsonObjectSupport
|
1421
|
+
end
|
1422
|
+
|
1423
|
+
class TvCampaignSummary
|
1424
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1425
|
+
|
1426
|
+
include Google::Apis::Core::JsonObjectSupport
|
1427
|
+
end
|
1428
|
+
|
1429
|
+
class TvCampaignTimepoint
|
1430
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1431
|
+
|
1432
|
+
include Google::Apis::Core::JsonObjectSupport
|
1433
|
+
end
|
1434
|
+
|
1387
1435
|
class UniversalAdId
|
1388
1436
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1389
1437
|
|
@@ -1989,6 +2037,26 @@ module Google
|
|
1989
2037
|
end
|
1990
2038
|
end
|
1991
2039
|
|
2040
|
+
class CartData
|
2041
|
+
# @private
|
2042
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2043
|
+
collection :items, as: 'items', class: Google::Apis::DfareportingV4::CartDataItem, decorator: Google::Apis::DfareportingV4::CartDataItem::Representation
|
2044
|
+
|
2045
|
+
property :merchant_feed_label, as: 'merchantFeedLabel'
|
2046
|
+
property :merchant_feed_language, as: 'merchantFeedLanguage'
|
2047
|
+
property :merchant_id, :numeric_string => true, as: 'merchantId'
|
2048
|
+
end
|
2049
|
+
end
|
2050
|
+
|
2051
|
+
class CartDataItem
|
2052
|
+
# @private
|
2053
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2054
|
+
property :item_id, as: 'itemId'
|
2055
|
+
property :quantity, as: 'quantity'
|
2056
|
+
property :unit_price, as: 'unitPrice'
|
2057
|
+
end
|
2058
|
+
end
|
2059
|
+
|
1992
2060
|
class ChangeLog
|
1993
2061
|
# @private
|
1994
2062
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2097,6 +2165,8 @@ module Google
|
|
2097
2165
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2098
2166
|
property :cross_dimension_reach_report_compatible_fields, as: 'crossDimensionReachReportCompatibleFields', class: Google::Apis::DfareportingV4::CrossDimensionReachReportCompatibleFields, decorator: Google::Apis::DfareportingV4::CrossDimensionReachReportCompatibleFields::Representation
|
2099
2167
|
|
2168
|
+
property :cross_media_reach_report_compatible_fields, as: 'crossMediaReachReportCompatibleFields', class: Google::Apis::DfareportingV4::CrossMediaReachReportCompatibleFields, decorator: Google::Apis::DfareportingV4::CrossMediaReachReportCompatibleFields::Representation
|
2169
|
+
|
2100
2170
|
property :floodlight_report_compatible_fields, as: 'floodlightReportCompatibleFields', class: Google::Apis::DfareportingV4::FloodlightReportCompatibleFields, decorator: Google::Apis::DfareportingV4::FloodlightReportCompatibleFields::Representation
|
2101
2171
|
|
2102
2172
|
property :kind, as: 'kind'
|
@@ -2151,6 +2221,8 @@ module Google
|
|
2151
2221
|
# @private
|
2152
2222
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2153
2223
|
property :ad_user_data_consent, as: 'adUserDataConsent'
|
2224
|
+
property :cart_data, as: 'cartData', class: Google::Apis::DfareportingV4::CartData, decorator: Google::Apis::DfareportingV4::CartData::Representation
|
2225
|
+
|
2154
2226
|
property :child_directed_treatment, as: 'childDirectedTreatment'
|
2155
2227
|
collection :custom_variables, as: 'customVariables', class: Google::Apis::DfareportingV4::CustomFloodlightVariable, decorator: Google::Apis::DfareportingV4::CustomFloodlightVariable::Representation
|
2156
2228
|
|
@@ -2638,6 +2710,19 @@ module Google
|
|
2638
2710
|
end
|
2639
2711
|
end
|
2640
2712
|
|
2713
|
+
class CrossMediaReachReportCompatibleFields
|
2714
|
+
# @private
|
2715
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2716
|
+
collection :dimension_filters, as: 'dimensionFilters', class: Google::Apis::DfareportingV4::Dimension, decorator: Google::Apis::DfareportingV4::Dimension::Representation
|
2717
|
+
|
2718
|
+
collection :dimensions, as: 'dimensions', class: Google::Apis::DfareportingV4::Dimension, decorator: Google::Apis::DfareportingV4::Dimension::Representation
|
2719
|
+
|
2720
|
+
property :kind, as: 'kind'
|
2721
|
+
collection :metrics, as: 'metrics', class: Google::Apis::DfareportingV4::Metric, decorator: Google::Apis::DfareportingV4::Metric::Representation
|
2722
|
+
|
2723
|
+
end
|
2724
|
+
end
|
2725
|
+
|
2641
2726
|
class CustomFloodlightVariable
|
2642
2727
|
# @private
|
2643
2728
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2803,6 +2888,7 @@ module Google
|
|
2803
2888
|
collection :interstitial_tag_formats, as: 'interstitialTagFormats'
|
2804
2889
|
property :kind, as: 'kind'
|
2805
2890
|
property :name, as: 'name'
|
2891
|
+
property :publisher_specification_id, :numeric_string => true, as: 'publisherSpecificationId'
|
2806
2892
|
property :settings, as: 'settings', class: Google::Apis::DfareportingV4::DirectorySiteSettings, decorator: Google::Apis::DfareportingV4::DirectorySiteSettings::Representation
|
2807
2893
|
|
2808
2894
|
property :url, as: 'url'
|
@@ -3594,6 +3680,7 @@ module Google
|
|
3594
3680
|
property :account_id, :numeric_string => true, as: 'accountId'
|
3595
3681
|
property :active_status, as: 'activeStatus'
|
3596
3682
|
property :ad_blocking_opt_out, as: 'adBlockingOptOut'
|
3683
|
+
property :ad_serving_platform_id, :numeric_string => true, as: 'adServingPlatformId'
|
3597
3684
|
collection :additional_sizes, as: 'additionalSizes', class: Google::Apis::DfareportingV4::Size, decorator: Google::Apis::DfareportingV4::Size::Representation
|
3598
3685
|
|
3599
3686
|
property :advertiser_id, :numeric_string => true, as: 'advertiserId'
|
@@ -3639,6 +3726,7 @@ module Google
|
|
3639
3726
|
property :site_id, :numeric_string => true, as: 'siteId'
|
3640
3727
|
property :site_id_dimension_value, as: 'siteIdDimensionValue', class: Google::Apis::DfareportingV4::DimensionValue, decorator: Google::Apis::DfareportingV4::DimensionValue::Representation
|
3641
3728
|
|
3729
|
+
property :site_served, as: 'siteServed'
|
3642
3730
|
property :size, as: 'size', class: Google::Apis::DfareportingV4::Size, decorator: Google::Apis::DfareportingV4::Size::Representation
|
3643
3731
|
|
3644
3732
|
property :ssl_required, as: 'sslRequired'
|
@@ -4019,6 +4107,8 @@ module Google
|
|
4019
4107
|
|
4020
4108
|
property :cross_dimension_reach_criteria, as: 'crossDimensionReachCriteria', class: Google::Apis::DfareportingV4::Report::CrossDimensionReachCriteria, decorator: Google::Apis::DfareportingV4::Report::CrossDimensionReachCriteria::Representation
|
4021
4109
|
|
4110
|
+
property :cross_media_reach_criteria, as: 'crossMediaReachCriteria', class: Google::Apis::DfareportingV4::Report::CrossMediaReachCriteria, decorator: Google::Apis::DfareportingV4::Report::CrossMediaReachCriteria::Representation
|
4111
|
+
|
4022
4112
|
property :delivery, as: 'delivery', class: Google::Apis::DfareportingV4::Report::Delivery, decorator: Google::Apis::DfareportingV4::Report::Delivery::Representation
|
4023
4113
|
|
4024
4114
|
property :etag, as: 'etag'
|
@@ -4074,6 +4164,19 @@ module Google
|
|
4074
4164
|
end
|
4075
4165
|
end
|
4076
4166
|
|
4167
|
+
class CrossMediaReachCriteria
|
4168
|
+
# @private
|
4169
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4170
|
+
property :date_range, as: 'dateRange', class: Google::Apis::DfareportingV4::DateRange, decorator: Google::Apis::DfareportingV4::DateRange::Representation
|
4171
|
+
|
4172
|
+
collection :dimension_filters, as: 'dimensionFilters', class: Google::Apis::DfareportingV4::DimensionValue, decorator: Google::Apis::DfareportingV4::DimensionValue::Representation
|
4173
|
+
|
4174
|
+
collection :dimensions, as: 'dimensions', class: Google::Apis::DfareportingV4::SortedDimension, decorator: Google::Apis::DfareportingV4::SortedDimension::Representation
|
4175
|
+
|
4176
|
+
collection :metric_names, as: 'metricNames'
|
4177
|
+
end
|
4178
|
+
end
|
4179
|
+
|
4077
4180
|
class Delivery
|
4078
4181
|
# @private
|
4079
4182
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4246,6 +4349,7 @@ module Google
|
|
4246
4349
|
# @private
|
4247
4350
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4248
4351
|
property :account_id, :numeric_string => true, as: 'accountId'
|
4352
|
+
property :ad_serving_platform_id, :numeric_string => true, as: 'adServingPlatformId'
|
4249
4353
|
property :approved, as: 'approved'
|
4250
4354
|
property :directory_site_id, :numeric_string => true, as: 'directorySiteId'
|
4251
4355
|
property :directory_site_id_dimension_value, as: 'directorySiteIdDimensionValue', class: Google::Apis::DfareportingV4::DimensionValue, decorator: Google::Apis::DfareportingV4::DimensionValue::Representation
|
@@ -4558,6 +4662,49 @@ module Google
|
|
4558
4662
|
end
|
4559
4663
|
end
|
4560
4664
|
|
4665
|
+
class TvCampaignDetail
|
4666
|
+
# @private
|
4667
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4668
|
+
property :id, as: 'id'
|
4669
|
+
property :kind, as: 'kind'
|
4670
|
+
collection :timepoints, as: 'timepoints', class: Google::Apis::DfareportingV4::TvCampaignTimepoint, decorator: Google::Apis::DfareportingV4::TvCampaignTimepoint::Representation
|
4671
|
+
|
4672
|
+
end
|
4673
|
+
end
|
4674
|
+
|
4675
|
+
class TvCampaignSummariesListResponse
|
4676
|
+
# @private
|
4677
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4678
|
+
property :kind, as: 'kind'
|
4679
|
+
collection :tv_campaign_summaries, as: 'tvCampaignSummaries', class: Google::Apis::DfareportingV4::TvCampaignSummary, decorator: Google::Apis::DfareportingV4::TvCampaignSummary::Representation
|
4680
|
+
|
4681
|
+
end
|
4682
|
+
end
|
4683
|
+
|
4684
|
+
class TvCampaignSummary
|
4685
|
+
# @private
|
4686
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4687
|
+
property :end_date, as: 'endDate'
|
4688
|
+
property :grp, :numeric_string => true, as: 'grp'
|
4689
|
+
property :id, as: 'id'
|
4690
|
+
property :impressions, :numeric_string => true, as: 'impressions'
|
4691
|
+
property :kind, as: 'kind'
|
4692
|
+
property :name, as: 'name'
|
4693
|
+
property :spend, as: 'spend'
|
4694
|
+
property :start_date, as: 'startDate'
|
4695
|
+
property :type, as: 'type'
|
4696
|
+
end
|
4697
|
+
end
|
4698
|
+
|
4699
|
+
class TvCampaignTimepoint
|
4700
|
+
# @private
|
4701
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4702
|
+
property :date_window, as: 'dateWindow'
|
4703
|
+
property :spend, as: 'spend'
|
4704
|
+
property :start_date, as: 'startDate'
|
4705
|
+
end
|
4706
|
+
end
|
4707
|
+
|
4561
4708
|
class UniversalAdId
|
4562
4709
|
# @private
|
4563
4710
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7771,6 +7771,79 @@ module Google
|
|
7771
7771
|
execute_or_queue_command(command, &block)
|
7772
7772
|
end
|
7773
7773
|
|
7774
|
+
# Gets one TvCampaignDetail by ID.
|
7775
|
+
# @param [Fixnum] profile_id
|
7776
|
+
# Required. User profile ID associated with this request.
|
7777
|
+
# @param [String] id
|
7778
|
+
# Required. TV Campaign ID.
|
7779
|
+
# @param [Fixnum] account_id
|
7780
|
+
# Required. Account ID associated with this request.
|
7781
|
+
# @param [String] fields
|
7782
|
+
# Selector specifying which fields to include in a partial response.
|
7783
|
+
# @param [String] quota_user
|
7784
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
7785
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
7786
|
+
# @param [Google::Apis::RequestOptions] options
|
7787
|
+
# Request-specific options
|
7788
|
+
#
|
7789
|
+
# @yield [result, err] Result & error if block supplied
|
7790
|
+
# @yieldparam result [Google::Apis::DfareportingV4::TvCampaignDetail] parsed result object
|
7791
|
+
# @yieldparam err [StandardError] error object if request failed
|
7792
|
+
#
|
7793
|
+
# @return [Google::Apis::DfareportingV4::TvCampaignDetail]
|
7794
|
+
#
|
7795
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
7796
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
7797
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
7798
|
+
def get_tv_campaign_detail(profile_id, id, account_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
7799
|
+
command = make_simple_command(:get, 'userprofiles/{+profileId}/tvCampaignDetails/{+id}', options)
|
7800
|
+
command.response_representation = Google::Apis::DfareportingV4::TvCampaignDetail::Representation
|
7801
|
+
command.response_class = Google::Apis::DfareportingV4::TvCampaignDetail
|
7802
|
+
command.params['profileId'] = profile_id unless profile_id.nil?
|
7803
|
+
command.params['id'] = id unless id.nil?
|
7804
|
+
command.query['accountId'] = account_id unless account_id.nil?
|
7805
|
+
command.query['fields'] = fields unless fields.nil?
|
7806
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
7807
|
+
execute_or_queue_command(command, &block)
|
7808
|
+
end
|
7809
|
+
|
7810
|
+
# Retrieves a list of TV campaign summaries.
|
7811
|
+
# @param [Fixnum] profile_id
|
7812
|
+
# Required. User profile ID associated with this request.
|
7813
|
+
# @param [Fixnum] account_id
|
7814
|
+
# Required. Account ID associated with this request.
|
7815
|
+
# @param [String] name
|
7816
|
+
# Required. Search string to filter the list of TV campaign summaries. Matches
|
7817
|
+
# any substring. Required field.
|
7818
|
+
# @param [String] fields
|
7819
|
+
# Selector specifying which fields to include in a partial response.
|
7820
|
+
# @param [String] quota_user
|
7821
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
7822
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
7823
|
+
# @param [Google::Apis::RequestOptions] options
|
7824
|
+
# Request-specific options
|
7825
|
+
#
|
7826
|
+
# @yield [result, err] Result & error if block supplied
|
7827
|
+
# @yieldparam result [Google::Apis::DfareportingV4::TvCampaignSummariesListResponse] parsed result object
|
7828
|
+
# @yieldparam err [StandardError] error object if request failed
|
7829
|
+
#
|
7830
|
+
# @return [Google::Apis::DfareportingV4::TvCampaignSummariesListResponse]
|
7831
|
+
#
|
7832
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
7833
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
7834
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
7835
|
+
def list_tv_campaign_summaries(profile_id, account_id: nil, name: nil, fields: nil, quota_user: nil, options: nil, &block)
|
7836
|
+
command = make_simple_command(:get, 'userprofiles/{+profileId}/tvCampaignSummaries', options)
|
7837
|
+
command.response_representation = Google::Apis::DfareportingV4::TvCampaignSummariesListResponse::Representation
|
7838
|
+
command.response_class = Google::Apis::DfareportingV4::TvCampaignSummariesListResponse
|
7839
|
+
command.params['profileId'] = profile_id unless profile_id.nil?
|
7840
|
+
command.query['accountId'] = account_id unless account_id.nil?
|
7841
|
+
command.query['name'] = name unless name.nil?
|
7842
|
+
command.query['fields'] = fields unless fields.nil?
|
7843
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
7844
|
+
execute_or_queue_command(command, &block)
|
7845
|
+
end
|
7846
|
+
|
7774
7847
|
# Gets one user profile by ID.
|
7775
7848
|
# @param [Fixnum] profile_id
|
7776
7849
|
# The user profile 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.
|
4
|
+
version: 0.18.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-
|
11
|
+
date: 2024-09-29 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v4/v0.18.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: []
|