google-apis-displayvideo_v1 0.2.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd280aeeb5cc366617cbb76da7f5e9037b9d19a7d2c04deb52e38a3c4552f2cb
4
- data.tar.gz: '068ab2f6394f8f1ff97f9f87305b0bcc439f1123f69fd410632e13e8f7058fb6'
3
+ metadata.gz: e335b301f1809322b86ffed176908f40fe4cc12436ca39ef8fb3a80699c8c0ef
4
+ data.tar.gz: 8d39a46a9351ac765cbcd5ecef453a3d6961f55a15b1ba03bd1bd805b9b68d8b
5
5
  SHA512:
6
- metadata.gz: 635db292bde70a97f1159a9387fb0b73090132c5a82c8d146caff27db91080ca418b0eb4a6845b8d18b57b2f5f4a58db1fc0f7fad0a1d900c22a67d8b2140614
7
- data.tar.gz: d38195f7ed7bd1a58d0e85866f197d77ff479590c373d670b74554de71886294a4ddfeef274b732fbe4a5cd058e3f26f47b17d4f7d2a6f7c5621b85fd9c4897a
6
+ metadata.gz: 055aa71a8edb0f6bfcf5755c813e6c0a925d5eb47f10eaf4be8701e1b3e2d15d8d48f50c61cf43c2c6c13be355f95b5bd64dacedb975e199f8954925968aad42
7
+ data.tar.gz: 21985c67d404254517bffa273dbb04520f85086ced373ceea3caf715d56e64b7952be2c29a483ea1cc23d2b5ba0b85bba54440d73200871d1564248004856dbd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Release history for google-apis-displayvideo_v1
2
2
 
3
+ ### v0.7.0 (2021-03-23)
4
+
5
+ * Regenerated from discovery document revision 20210318
6
+
7
+ ### v0.6.0 (2021-03-16)
8
+
9
+ * Regenerated from discovery document revision 20210312
10
+ * Regenerated using generator version 0.2.0
11
+
12
+ ### v0.5.0 (2021-03-05)
13
+
14
+ * Regenerated from discovery document revision 20210304
15
+ * Unspecified changes
16
+
17
+ ### v0.4.0 (2021-02-26)
18
+
19
+ * Regenerated from discovery document revision 20210225
20
+
21
+ ### v0.3.0 (2021-02-19)
22
+
23
+ * Regenerated from discovery document revision 20210218
24
+
3
25
  ### v0.2.0 (2021-02-04)
4
26
 
5
27
  * Regenerated from discovery document revision 20210202
@@ -36,7 +36,7 @@ module Google
36
36
  # Create, see, and edit Display & Video 360 Campaign entities and see billing invoices
37
37
  AUTH_DISPLAY_VIDEO_MEDIAPLANNING = 'https://www.googleapis.com/auth/display-video-mediaplanning'
38
38
 
39
- # New Service: https://www.googleapis.com/auth/display-video-user-management
39
+ # Private Service: https://www.googleapis.com/auth/display-video-user-management
40
40
  AUTH_DISPLAY_VIDEO_USER_MANAGEMENT = 'https://www.googleapis.com/auth/display-video-user-management'
41
41
 
42
42
  # View and manage your reports in DoubleClick Bid Manager
@@ -456,6 +456,13 @@ module Google
456
456
  # @return [String]
457
457
  attr_accessor :app_id
458
458
 
459
+ # Indicates the platform of the targeted app. If this field is not specified,
460
+ # the app platform will be assumed to be mobile (i.e., Android or iOS), and we
461
+ # will derive the appropriate mobile platform from the app ID.
462
+ # Corresponds to the JSON property `appPlatform`
463
+ # @return [String]
464
+ attr_accessor :app_platform
465
+
459
466
  # Output only. The display name of the app.
460
467
  # Corresponds to the JSON property `displayName`
461
468
  # @return [String]
@@ -474,6 +481,7 @@ module Google
474
481
  # Update properties of this object
475
482
  def update!(**args)
476
483
  @app_id = args[:app_id] if args.key?(:app_id)
484
+ @app_platform = args[:app_platform] if args.key?(:app_platform)
477
485
  @display_name = args[:display_name] if args.key?(:display_name)
478
486
  @negative = args[:negative] if args.key?(:negative)
479
487
  end
@@ -685,7 +693,7 @@ module Google
685
693
  attr_accessor :app_details
686
694
 
687
695
  # Output only. The unique ID of the assigned targeting option. The ID is only
688
- # unique within a given line item and targeting type. It may be reused in other
696
+ # unique within a given resource and targeting type. It may be reused in other
689
697
  # contexts.
690
698
  # Corresponds to the JSON property `assignedTargetingOptionId`
691
699
  # @return [String]
@@ -1301,8 +1309,7 @@ module Google
1301
1309
  attr_accessor :display_name
1302
1310
 
1303
1311
  # Indicates if this option is being negatively targeted. All assigned browser
1304
- # targeting options on the same line item must have the same value for this
1305
- # field.
1312
+ # targeting options on the same resource must have the same value for this field.
1306
1313
  # Corresponds to the JSON property `negative`
1307
1314
  # @return [Boolean]
1308
1315
  attr_accessor :negative
@@ -1782,6 +1789,64 @@ module Google
1782
1789
  end
1783
1790
  end
1784
1791
 
1792
+ # Response message for BulkListCampaignAssignedTargetingOptions.
1793
+ class BulkListCampaignAssignedTargetingOptionsResponse
1794
+ include Google::Apis::Core::Hashable
1795
+
1796
+ # The list of assigned targeting options. This list will be absent if empty.
1797
+ # Corresponds to the JSON property `assignedTargetingOptions`
1798
+ # @return [Array<Google::Apis::DisplayvideoV1::AssignedTargetingOption>]
1799
+ attr_accessor :assigned_targeting_options
1800
+
1801
+ # A token identifying the next page of results. This value should be specified
1802
+ # as the pageToken in a subsequent
1803
+ # BulkListCampaignAssignedTargetingOptionsRequest to fetch the next page of
1804
+ # results. This token will be absent if there are no more
1805
+ # assigned_targeting_options to return.
1806
+ # Corresponds to the JSON property `nextPageToken`
1807
+ # @return [String]
1808
+ attr_accessor :next_page_token
1809
+
1810
+ def initialize(**args)
1811
+ update!(**args)
1812
+ end
1813
+
1814
+ # Update properties of this object
1815
+ def update!(**args)
1816
+ @assigned_targeting_options = args[:assigned_targeting_options] if args.key?(:assigned_targeting_options)
1817
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1818
+ end
1819
+ end
1820
+
1821
+ # Response message for BulkListInsertionOrderAssignedTargetingOptions.
1822
+ class BulkListInsertionOrderAssignedTargetingOptionsResponse
1823
+ include Google::Apis::Core::Hashable
1824
+
1825
+ # The list of assigned targeting options. This list will be absent if empty.
1826
+ # Corresponds to the JSON property `assignedTargetingOptions`
1827
+ # @return [Array<Google::Apis::DisplayvideoV1::AssignedTargetingOption>]
1828
+ attr_accessor :assigned_targeting_options
1829
+
1830
+ # A token identifying the next page of results. This value should be specified
1831
+ # as the pageToken in a subsequent
1832
+ # BulkListInsertionOrderAssignedTargetingOptionsRequest to fetch the next page
1833
+ # of results. This token will be absent if there are no more
1834
+ # assigned_targeting_options to return.
1835
+ # Corresponds to the JSON property `nextPageToken`
1836
+ # @return [String]
1837
+ attr_accessor :next_page_token
1838
+
1839
+ def initialize(**args)
1840
+ update!(**args)
1841
+ end
1842
+
1843
+ # Update properties of this object
1844
+ def update!(**args)
1845
+ @assigned_targeting_options = args[:assigned_targeting_options] if args.key?(:assigned_targeting_options)
1846
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1847
+ end
1848
+ end
1849
+
1785
1850
  #
1786
1851
  class BulkListLineItemAssignedTargetingOptionsResponse
1787
1852
  include Google::Apis::Core::Hashable
@@ -1949,7 +2014,7 @@ module Google
1949
2014
  attr_accessor :display_name
1950
2015
 
1951
2016
  # Indicates if this option is being negatively targeted. All assigned carrier
1952
- # and ISP targeting options on the same line item must have the same value for
2017
+ # and ISP targeting options on the same resource must have the same value for
1953
2018
  # this field.
1954
2019
  # Corresponds to the JSON property `negative`
1955
2020
  # @return [Boolean]
@@ -2302,6 +2367,17 @@ module Google
2302
2367
  class ContentInstreamPositionAssignedTargetingOptionDetails
2303
2368
  include Google::Apis::Core::Hashable
2304
2369
 
2370
+ # Output only. The ad type to target. Only applicable to insertion order
2371
+ # targeting and new line items supporting the specified ad type will inherit
2372
+ # this targeting option by default. Possible values are: * `AD_TYPE_VIDEO`, the
2373
+ # setting will be inherited by new line item when line_item_type is `
2374
+ # LINE_ITEM_TYPE_VIDEO_DEFAULT`. * `AD_TYPE_AUDIO`, the setting will be
2375
+ # inherited by new line item when line_item_type is `
2376
+ # LINE_ITEM_TYPE_AUDIO_DEFAULT`.
2377
+ # Corresponds to the JSON property `adType`
2378
+ # @return [String]
2379
+ attr_accessor :ad_type
2380
+
2305
2381
  # Output only. The content instream position for video or audio ads.
2306
2382
  # Corresponds to the JSON property `contentInstreamPosition`
2307
2383
  # @return [String]
@@ -2319,6 +2395,7 @@ module Google
2319
2395
 
2320
2396
  # Update properties of this object
2321
2397
  def update!(**args)
2398
+ @ad_type = args[:ad_type] if args.key?(:ad_type)
2322
2399
  @content_instream_position = args[:content_instream_position] if args.key?(:content_instream_position)
2323
2400
  @targeting_option_id = args[:targeting_option_id] if args.key?(:targeting_option_id)
2324
2401
  end
@@ -2352,6 +2429,17 @@ module Google
2352
2429
  class ContentOutstreamPositionAssignedTargetingOptionDetails
2353
2430
  include Google::Apis::Core::Hashable
2354
2431
 
2432
+ # Output only. The ad type to target. Only applicable to insertion order
2433
+ # targeting and new line items supporting the specified ad type will inherit
2434
+ # this targeting option by default. Possible values are: * `AD_TYPE_DISPLAY`,
2435
+ # the setting will be inherited by new line item when line_item_type is `
2436
+ # LINE_ITEM_TYPE_DISPLAY_DEFAULT`. * `AD_TYPE_VIDEO`, the setting will be
2437
+ # inherited by new line item when line_item_type is `
2438
+ # LINE_ITEM_TYPE_VIDEO_DEFAULT`.
2439
+ # Corresponds to the JSON property `adType`
2440
+ # @return [String]
2441
+ attr_accessor :ad_type
2442
+
2355
2443
  # Output only. The content outstream position.
2356
2444
  # Corresponds to the JSON property `contentOutstreamPosition`
2357
2445
  # @return [String]
@@ -2369,6 +2457,7 @@ module Google
2369
2457
 
2370
2458
  # Update properties of this object
2371
2459
  def update!(**args)
2460
+ @ad_type = args[:ad_type] if args.key?(:ad_type)
2372
2461
  @content_outstream_position = args[:content_outstream_position] if args.key?(:content_outstream_position)
2373
2462
  @targeting_option_id = args[:targeting_option_id] if args.key?(:targeting_option_id)
2374
2463
  end
@@ -2758,6 +2847,16 @@ module Google
2758
2847
  # @return [String]
2759
2848
  attr_accessor :media_duration
2760
2849
 
2850
+ # Output only. Indicates the third-party audio creative supports MP3. Output
2851
+ # only and only valid for third-party audio creatives. Third-party audio
2852
+ # creatives are creatives with following hosting_source: * `
2853
+ # HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `
2854
+ # CREATIVE_TYPE_AUDIO`
2855
+ # Corresponds to the JSON property `mp3Audio`
2856
+ # @return [Boolean]
2857
+ attr_accessor :mp3_audio
2858
+ alias_method :mp3_audio?, :mp3_audio
2859
+
2761
2860
  # Output only. The resource name of the creative.
2762
2861
  # Corresponds to the JSON property `name`
2763
2862
  # @return [String]
@@ -2774,6 +2873,16 @@ module Google
2774
2873
  # @return [Google::Apis::DisplayvideoV1::ObaIcon]
2775
2874
  attr_accessor :oba_icon
2776
2875
 
2876
+ # Output only. Indicates the third-party audio creative supports OGG. Output
2877
+ # only and only valid for third-party audio creatives. Third-party audio
2878
+ # creatives are creatives with following hosting_source: * `
2879
+ # HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `
2880
+ # CREATIVE_TYPE_AUDIO`
2881
+ # Corresponds to the JSON property `oggAudio`
2882
+ # @return [Boolean]
2883
+ attr_accessor :ogg_audio
2884
+ alias_method :ogg_audio?, :ogg_audio
2885
+
2777
2886
  # The length an audio or a video has been played.
2778
2887
  # Corresponds to the JSON property `progressOffset`
2779
2888
  # @return [Google::Apis::DisplayvideoV1::AudioVideoOffset]
@@ -2944,9 +3053,11 @@ module Google
2944
3053
  @js_tracker_url = args[:js_tracker_url] if args.key?(:js_tracker_url)
2945
3054
  @line_item_ids = args[:line_item_ids] if args.key?(:line_item_ids)
2946
3055
  @media_duration = args[:media_duration] if args.key?(:media_duration)
3056
+ @mp3_audio = args[:mp3_audio] if args.key?(:mp3_audio)
2947
3057
  @name = args[:name] if args.key?(:name)
2948
3058
  @notes = args[:notes] if args.key?(:notes)
2949
3059
  @oba_icon = args[:oba_icon] if args.key?(:oba_icon)
3060
+ @ogg_audio = args[:ogg_audio] if args.key?(:ogg_audio)
2950
3061
  @progress_offset = args[:progress_offset] if args.key?(:progress_offset)
2951
3062
  @require_html5 = args[:require_html5] if args.key?(:require_html5)
2952
3063
  @require_mraid = args[:require_mraid] if args.key?(:require_mraid)
@@ -4180,18 +4291,18 @@ module Google
4180
4291
  include Google::Apis::Core::Hashable
4181
4292
 
4182
4293
  # The maximum number of times a user may be shown with the same ad during this
4183
- # period. Must be greater than 0. Applicable when unlimited is `false`.
4294
+ # period. Must be greater than 0. Required when unlimited is `false`.
4184
4295
  # Corresponds to the JSON property `maxImpressions`
4185
4296
  # @return [Fixnum]
4186
4297
  attr_accessor :max_impressions
4187
4298
 
4188
- # The time unit in which the frequency cap will be applied. Applicable when
4299
+ # The time unit in which the frequency cap will be applied. Required when
4189
4300
  # unlimited is `false`.
4190
4301
  # Corresponds to the JSON property `timeUnit`
4191
4302
  # @return [String]
4192
4303
  attr_accessor :time_unit
4193
4304
 
4194
- # The number of time_unit the frequency cap will last. Applicable when unlimited
4305
+ # The number of time_unit the frequency cap will last. Required when unlimited
4195
4306
  # is `false`. The following restrictions apply based on the value of time_unit: *
4196
4307
  # `TIME_UNIT_LIFETIME` - this field is output only and will default to 1 * `
4197
4308
  # TIME_UNIT_MONTHS` - must be between 1 and 2 * `TIME_UNIT_WEEKS` - must be
@@ -4270,6 +4381,44 @@ module Google
4270
4381
  end
4271
4382
  end
4272
4383
 
4384
+ # Request message for LineItemService.GenerateDefaultLineItem.
4385
+ class GenerateDefaultLineItemRequest
4386
+ include Google::Apis::Core::Hashable
4387
+
4388
+ # Required. The display name of the line item. Must be UTF-8 encoded with a
4389
+ # maximum size of 240 bytes.
4390
+ # Corresponds to the JSON property `displayName`
4391
+ # @return [String]
4392
+ attr_accessor :display_name
4393
+
4394
+ # Required. The unique ID of the insertion order that the line item belongs to.
4395
+ # Corresponds to the JSON property `insertionOrderId`
4396
+ # @return [Fixnum]
4397
+ attr_accessor :insertion_order_id
4398
+
4399
+ # Required. The type of the line item.
4400
+ # Corresponds to the JSON property `lineItemType`
4401
+ # @return [String]
4402
+ attr_accessor :line_item_type
4403
+
4404
+ # A mobile app promoted by a mobile app install line item.
4405
+ # Corresponds to the JSON property `mobileApp`
4406
+ # @return [Google::Apis::DisplayvideoV1::MobileApp]
4407
+ attr_accessor :mobile_app
4408
+
4409
+ def initialize(**args)
4410
+ update!(**args)
4411
+ end
4412
+
4413
+ # Update properties of this object
4414
+ def update!(**args)
4415
+ @display_name = args[:display_name] if args.key?(:display_name)
4416
+ @insertion_order_id = args[:insertion_order_id] if args.key?(:insertion_order_id)
4417
+ @line_item_type = args[:line_item_type] if args.key?(:line_item_type)
4418
+ @mobile_app = args[:mobile_app] if args.key?(:mobile_app)
4419
+ end
4420
+ end
4421
+
4273
4422
  # Details for assigned geographic region targeting option. This will be
4274
4423
  # populated in the details field of an AssignedTargetingOption when
4275
4424
  # targeting_type is `TARGETING_TYPE_GEO_REGION`.
@@ -5220,8 +5369,7 @@ module Google
5220
5369
  attr_accessor :display_name
5221
5370
 
5222
5371
  # Indicates if this option is being negatively targeted. All assigned language
5223
- # targeting options on the same line item must have the same value for this
5224
- # field.
5372
+ # targeting options on the same resource must have the same value for this field.
5225
5373
  # Corresponds to the JSON property `negative`
5226
5374
  # @return [Boolean]
5227
5375
  attr_accessor :negative
@@ -5622,6 +5770,34 @@ module Google
5622
5770
  end
5623
5771
  end
5624
5772
 
5773
+ # Response message for ListCampaignAssignedTargetingOptions.
5774
+ class ListCampaignAssignedTargetingOptionsResponse
5775
+ include Google::Apis::Core::Hashable
5776
+
5777
+ # The list of assigned targeting options. This list will be absent if empty.
5778
+ # Corresponds to the JSON property `assignedTargetingOptions`
5779
+ # @return [Array<Google::Apis::DisplayvideoV1::AssignedTargetingOption>]
5780
+ attr_accessor :assigned_targeting_options
5781
+
5782
+ # A token identifying the next page of results. This value should be specified
5783
+ # as the pageToken in a subsequent ListCampaignAssignedTargetingOptionsRequest
5784
+ # to fetch the next page of results. This token will be absent if there are no
5785
+ # more assigned_targeting_options to return.
5786
+ # Corresponds to the JSON property `nextPageToken`
5787
+ # @return [String]
5788
+ attr_accessor :next_page_token
5789
+
5790
+ def initialize(**args)
5791
+ update!(**args)
5792
+ end
5793
+
5794
+ # Update properties of this object
5795
+ def update!(**args)
5796
+ @assigned_targeting_options = args[:assigned_targeting_options] if args.key?(:assigned_targeting_options)
5797
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
5798
+ end
5799
+ end
5800
+
5625
5801
  #
5626
5802
  class ListCampaignsResponse
5627
5803
  include Google::Apis::Core::Hashable
@@ -5841,6 +6017,35 @@ module Google
5841
6017
  end
5842
6018
  end
5843
6019
 
6020
+ # Response message for ListInsertionOrderAssignedTargetingOptions.
6021
+ class ListInsertionOrderAssignedTargetingOptionsResponse
6022
+ include Google::Apis::Core::Hashable
6023
+
6024
+ # The list of assigned targeting options. This list will be absent if empty.
6025
+ # Corresponds to the JSON property `assignedTargetingOptions`
6026
+ # @return [Array<Google::Apis::DisplayvideoV1::AssignedTargetingOption>]
6027
+ attr_accessor :assigned_targeting_options
6028
+
6029
+ # A token identifying the next page of results. This value should be specified
6030
+ # as the pageToken in a subsequent
6031
+ # ListInsertionOrderAssignedTargetingOptionsRequest to fetch the next page of
6032
+ # results. This token will be absent if there are no more
6033
+ # assigned_targeting_options to return.
6034
+ # Corresponds to the JSON property `nextPageToken`
6035
+ # @return [String]
6036
+ attr_accessor :next_page_token
6037
+
6038
+ def initialize(**args)
6039
+ update!(**args)
6040
+ end
6041
+
6042
+ # Update properties of this object
6043
+ def update!(**args)
6044
+ @assigned_targeting_options = args[:assigned_targeting_options] if args.key?(:assigned_targeting_options)
6045
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
6046
+ end
6047
+ end
6048
+
5844
6049
  #
5845
6050
  class ListInsertionOrdersResponse
5846
6051
  include Google::Apis::Core::Hashable
@@ -6660,6 +6865,17 @@ module Google
6660
6865
  class OnScreenPositionAssignedTargetingOptionDetails
6661
6866
  include Google::Apis::Core::Hashable
6662
6867
 
6868
+ # Output only. The ad type to target. Only applicable to insertion order
6869
+ # targeting and new line items supporting the specified ad type will inherit
6870
+ # this targeting option by default. Possible values are: * `AD_TYPE_DISPLAY`,
6871
+ # the setting will be inherited by new line item when line_item_type is `
6872
+ # LINE_ITEM_TYPE_DISPLAY_DEFAULT`. * `AD_TYPE_VIDEO`, the setting will be
6873
+ # inherited by new line item when line_item_type is `
6874
+ # LINE_ITEM_TYPE_VIDEO_DEFAULT`.
6875
+ # Corresponds to the JSON property `adType`
6876
+ # @return [String]
6877
+ attr_accessor :ad_type
6878
+
6663
6879
  # Output only. The on screen position.
6664
6880
  # Corresponds to the JSON property `onScreenPosition`
6665
6881
  # @return [String]
@@ -6677,6 +6893,7 @@ module Google
6677
6893
 
6678
6894
  # Update properties of this object
6679
6895
  def update!(**args)
6896
+ @ad_type = args[:ad_type] if args.key?(:ad_type)
6680
6897
  @on_screen_position = args[:on_screen_position] if args.key?(:on_screen_position)
6681
6898
  @targeting_option_id = args[:targeting_option_id] if args.key?(:targeting_option_id)
6682
6899
  end
@@ -7184,16 +7401,19 @@ module Google
7184
7401
  # The goal amount, in micros of the advertiser's currency. Applicable when
7185
7402
  # performance_goal_type is one of: * `PERFORMANCE_GOAL_TYPE_CPM` * `
7186
7403
  # PERFORMANCE_GOAL_TYPE_CPC` * `PERFORMANCE_GOAL_TYPE_CPA` * `
7187
- # PERFORMANCE_GOAL_TYPE_CPIAVC` For example 1500000 represents 1.5 standard
7188
- # units of the currency.
7404
+ # PERFORMANCE_GOAL_TYPE_CPIAVC` * `PERFORMANCE_GOAL_TYPE_VCPM` For example
7405
+ # 1500000 represents 1.5 standard units of the currency.
7189
7406
  # Corresponds to the JSON property `performanceGoalAmountMicros`
7190
7407
  # @return [Fixnum]
7191
7408
  attr_accessor :performance_goal_amount_micros
7192
7409
 
7193
7410
  # The decimal representation of the goal percentage in micros. Applicable when
7194
7411
  # performance_goal_type is one of: * `PERFORMANCE_GOAL_TYPE_CTR` * `
7195
- # PERFORMANCE_GOAL_TYPE_VIEWABILITY` For example, 70000 represents 7% (decimal 0.
7196
- # 07).
7412
+ # PERFORMANCE_GOAL_TYPE_VIEWABILITY` * `PERFORMANCE_GOAL_TYPE_CLICK_CVR` * `
7413
+ # PERFORMANCE_GOAL_TYPE_IMPRESSION_CVR` * `PERFORMANCE_GOAL_TYPE_VTR` * `
7414
+ # PERFORMANCE_GOAL_TYPE_AUDIO_COMPLETION_RATE` * `
7415
+ # PERFORMANCE_GOAL_TYPE_VIDEO_COMPLETION_RATE` For example, 70000 represents 7% (
7416
+ # decimal 0.07).
7197
7417
  # Corresponds to the JSON property `performanceGoalPercentageMicros`
7198
7418
  # @return [Fixnum]
7199
7419
  attr_accessor :performance_goal_percentage_micros
@@ -7304,9 +7524,9 @@ module Google
7304
7524
 
7305
7525
  # Required. Radius range for proximity location list. This represents the size
7306
7526
  # of the area around a chosen location that will be targeted. `All` proximity
7307
- # location targeting under a single line item must have the same radius range
7527
+ # location targeting under a single resource must have the same radius range
7308
7528
  # value. Set this value to match any existing targeting. If updated, this field
7309
- # will change the radius range for all proximity targeting under the line item.
7529
+ # will change the radius range for all proximity targeting under the resource.
7310
7530
  # Corresponds to the JSON property `proximityRadiusRange`
7311
7531
  # @return [String]
7312
7532
  attr_accessor :proximity_radius_range
@@ -7416,6 +7636,96 @@ module Google
7416
7636
  end
7417
7637
  end
7418
7638
 
7639
+ # Request message for NegativeKeywordService.ReplaceNegativeKeywords.
7640
+ class ReplaceNegativeKeywordsRequest
7641
+ include Google::Apis::Core::Hashable
7642
+
7643
+ # The negative keywords that will replace the existing keywords in the negative
7644
+ # keyword list, specified as a list of NegativeKeywords.
7645
+ # Corresponds to the JSON property `newNegativeKeywords`
7646
+ # @return [Array<Google::Apis::DisplayvideoV1::NegativeKeyword>]
7647
+ attr_accessor :new_negative_keywords
7648
+
7649
+ def initialize(**args)
7650
+ update!(**args)
7651
+ end
7652
+
7653
+ # Update properties of this object
7654
+ def update!(**args)
7655
+ @new_negative_keywords = args[:new_negative_keywords] if args.key?(:new_negative_keywords)
7656
+ end
7657
+ end
7658
+
7659
+ # Response message for NegativeKeywordService.ReplaceNegativeKeywords.
7660
+ class ReplaceNegativeKeywordsResponse
7661
+ include Google::Apis::Core::Hashable
7662
+
7663
+ # The full list of negative keywords now present in the negative keyword list.
7664
+ # Corresponds to the JSON property `negativeKeywords`
7665
+ # @return [Array<Google::Apis::DisplayvideoV1::NegativeKeyword>]
7666
+ attr_accessor :negative_keywords
7667
+
7668
+ def initialize(**args)
7669
+ update!(**args)
7670
+ end
7671
+
7672
+ # Update properties of this object
7673
+ def update!(**args)
7674
+ @negative_keywords = args[:negative_keywords] if args.key?(:negative_keywords)
7675
+ end
7676
+ end
7677
+
7678
+ # Request message for SiteService.ReplaceSites.
7679
+ class ReplaceSitesRequest
7680
+ include Google::Apis::Core::Hashable
7681
+
7682
+ # The ID of the advertiser that owns the parent channel.
7683
+ # Corresponds to the JSON property `advertiserId`
7684
+ # @return [Fixnum]
7685
+ attr_accessor :advertiser_id
7686
+
7687
+ # The sites that will replace the existing sites assigned to the channel,
7688
+ # specified as a list of Sites.
7689
+ # Corresponds to the JSON property `newSites`
7690
+ # @return [Array<Google::Apis::DisplayvideoV1::Site>]
7691
+ attr_accessor :new_sites
7692
+
7693
+ # The ID of the partner that owns the parent channel.
7694
+ # Corresponds to the JSON property `partnerId`
7695
+ # @return [Fixnum]
7696
+ attr_accessor :partner_id
7697
+
7698
+ def initialize(**args)
7699
+ update!(**args)
7700
+ end
7701
+
7702
+ # Update properties of this object
7703
+ def update!(**args)
7704
+ @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
7705
+ @new_sites = args[:new_sites] if args.key?(:new_sites)
7706
+ @partner_id = args[:partner_id] if args.key?(:partner_id)
7707
+ end
7708
+ end
7709
+
7710
+ # Response message for SiteService.ReplaceSites.
7711
+ class ReplaceSitesResponse
7712
+ include Google::Apis::Core::Hashable
7713
+
7714
+ # The list of sites in the channel after replacing.
7715
+ # Corresponds to the JSON property `sites`
7716
+ # @return [Array<Google::Apis::DisplayvideoV1::Site>]
7717
+ attr_accessor :sites
7718
+
7719
+ def initialize(**args)
7720
+ update!(**args)
7721
+ end
7722
+
7723
+ # Update properties of this object
7724
+ def update!(**args)
7725
+ @sites = args[:sites] if args.key?(:sites)
7726
+ end
7727
+ end
7728
+
7419
7729
  # Review statuses for the creative.
7420
7730
  class ReviewStatusInfo
7421
7731
  include Google::Apis::Core::Hashable
@@ -7669,7 +7979,7 @@ module Google
7669
7979
  # @return [String]
7670
7980
  attr_accessor :name
7671
7981
 
7672
- # Required. The URL or app ID of the site. Must be UTF-8 encoded with a maximum
7982
+ # Required. The app ID or URL of the site. Must be UTF-8 encoded with a maximum
7673
7983
  # length of 240 bytes.
7674
7984
  # Corresponds to the JSON property `urlOrAppId`
7675
7985
  # @return [String]