google-apis-dfareporting_v5 0.1.0 → 0.2.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: '01862a0fd7d82dc690689d7d43ee21bd73c153a4e15c098379b7f1e2369a64b7'
|
4
|
+
data.tar.gz: ebf1ba282e1bbfe494dced74a76b8b7027e5dee4e488ecf0a4338caab358c9dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3a08cd5b015f8147732c09345b423e4bb73316b4f63c63e5bc02ca72f4d798f5ce308603a49c8124eadcbd394305039dc3b8a5f065954b60fe58e17c4fe7f81
|
7
|
+
data.tar.gz: 2b44abda52193f17d93d1999f34c2e17843191ef941a2c331b008940be6bcc4ec32bb1188d5717a663be1d98a34dc71af249a6fa3c11015c13f3ea2e308dbc5b
|
data/CHANGELOG.md
CHANGED
@@ -9239,6 +9239,12 @@ module Google
|
|
9239
9239
|
# @return [Google::Apis::DfareportingV5::DimensionValue]
|
9240
9240
|
attr_accessor :advertiser_id_dimension_value
|
9241
9241
|
|
9242
|
+
# Optional. Whether the placement is enabled for YouTube integration.
|
9243
|
+
# Corresponds to the JSON property `allowOnYoutube`
|
9244
|
+
# @return [Boolean]
|
9245
|
+
attr_accessor :allow_on_youtube
|
9246
|
+
alias_method :allow_on_youtube?, :allow_on_youtube
|
9247
|
+
|
9242
9248
|
# Campaign ID of this placement. This field is a required field on insertion.
|
9243
9249
|
# Corresponds to the JSON property `campaignId`
|
9244
9250
|
# @return [Fixnum]
|
@@ -9478,6 +9484,11 @@ module Google
|
|
9478
9484
|
attr_accessor :wrapping_opt_out
|
9479
9485
|
alias_method :wrapping_opt_out?, :wrapping_opt_out
|
9480
9486
|
|
9487
|
+
# Contains the YouTube settings.
|
9488
|
+
# Corresponds to the JSON property `youtubeSettings`
|
9489
|
+
# @return [Google::Apis::DfareportingV5::YoutubeSettings]
|
9490
|
+
attr_accessor :youtube_settings
|
9491
|
+
|
9481
9492
|
def initialize(**args)
|
9482
9493
|
update!(**args)
|
9483
9494
|
end
|
@@ -9491,6 +9502,7 @@ module Google
|
|
9491
9502
|
@additional_sizes = args[:additional_sizes] if args.key?(:additional_sizes)
|
9492
9503
|
@advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
|
9493
9504
|
@advertiser_id_dimension_value = args[:advertiser_id_dimension_value] if args.key?(:advertiser_id_dimension_value)
|
9505
|
+
@allow_on_youtube = args[:allow_on_youtube] if args.key?(:allow_on_youtube)
|
9494
9506
|
@campaign_id = args[:campaign_id] if args.key?(:campaign_id)
|
9495
9507
|
@campaign_id_dimension_value = args[:campaign_id_dimension_value] if args.key?(:campaign_id_dimension_value)
|
9496
9508
|
@comment = args[:comment] if args.key?(:comment)
|
@@ -9530,6 +9542,7 @@ module Google
|
|
9530
9542
|
@video_settings = args[:video_settings] if args.key?(:video_settings)
|
9531
9543
|
@vpaid_adapter_choice = args[:vpaid_adapter_choice] if args.key?(:vpaid_adapter_choice)
|
9532
9544
|
@wrapping_opt_out = args[:wrapping_opt_out] if args.key?(:wrapping_opt_out)
|
9545
|
+
@youtube_settings = args[:youtube_settings] if args.key?(:youtube_settings)
|
9533
9546
|
end
|
9534
9547
|
end
|
9535
9548
|
|
@@ -13538,6 +13551,57 @@ module Google
|
|
13538
13551
|
@transcode_settings = args[:transcode_settings] if args.key?(:transcode_settings)
|
13539
13552
|
end
|
13540
13553
|
end
|
13554
|
+
|
13555
|
+
# Contains the YouTube settings.
|
13556
|
+
class YoutubeSettings
|
13557
|
+
include Google::Apis::Core::Hashable
|
13558
|
+
|
13559
|
+
# Optional. The IDs of the creatives to use for the business logo. Currently
|
13560
|
+
# only one creative is supported.
|
13561
|
+
# Corresponds to the JSON property `businessLogoCreativeIds`
|
13562
|
+
# @return [Array<Fixnum>]
|
13563
|
+
attr_accessor :business_logo_creative_ids
|
13564
|
+
|
13565
|
+
# Optional. The business name.
|
13566
|
+
# Corresponds to the JSON property `businessName`
|
13567
|
+
# @return [String]
|
13568
|
+
attr_accessor :business_name
|
13569
|
+
|
13570
|
+
# Optional. The call to actions. Currently only one call to action is supported.
|
13571
|
+
# Corresponds to the JSON property `callToActions`
|
13572
|
+
# @return [Array<String>]
|
13573
|
+
attr_accessor :call_to_actions
|
13574
|
+
|
13575
|
+
# Optional. The descriptions. Currently only one description is supported.
|
13576
|
+
# Corresponds to the JSON property `descriptions`
|
13577
|
+
# @return [Array<String>]
|
13578
|
+
attr_accessor :descriptions
|
13579
|
+
|
13580
|
+
# Optional. The headlines associated with the call to actions. Currently only
|
13581
|
+
# one headline is supported.
|
13582
|
+
# Corresponds to the JSON property `headlines`
|
13583
|
+
# @return [Array<String>]
|
13584
|
+
attr_accessor :headlines
|
13585
|
+
|
13586
|
+
# Optional. The long headlines. Currently only one long headline is supported.
|
13587
|
+
# Corresponds to the JSON property `longHeadlines`
|
13588
|
+
# @return [Array<String>]
|
13589
|
+
attr_accessor :long_headlines
|
13590
|
+
|
13591
|
+
def initialize(**args)
|
13592
|
+
update!(**args)
|
13593
|
+
end
|
13594
|
+
|
13595
|
+
# Update properties of this object
|
13596
|
+
def update!(**args)
|
13597
|
+
@business_logo_creative_ids = args[:business_logo_creative_ids] if args.key?(:business_logo_creative_ids)
|
13598
|
+
@business_name = args[:business_name] if args.key?(:business_name)
|
13599
|
+
@call_to_actions = args[:call_to_actions] if args.key?(:call_to_actions)
|
13600
|
+
@descriptions = args[:descriptions] if args.key?(:descriptions)
|
13601
|
+
@headlines = args[:headlines] if args.key?(:headlines)
|
13602
|
+
@long_headlines = args[:long_headlines] if args.key?(:long_headlines)
|
13603
|
+
end
|
13604
|
+
end
|
13541
13605
|
end
|
13542
13606
|
end
|
13543
13607
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DfareportingV5
|
18
18
|
# Version of the google-apis-dfareporting_v5 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.2.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250902"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1582,6 +1582,12 @@ module Google
|
|
1582
1582
|
include Google::Apis::Core::JsonObjectSupport
|
1583
1583
|
end
|
1584
1584
|
|
1585
|
+
class YoutubeSettings
|
1586
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1587
|
+
|
1588
|
+
include Google::Apis::Core::JsonObjectSupport
|
1589
|
+
end
|
1590
|
+
|
1585
1591
|
class Account
|
1586
1592
|
# @private
|
1587
1593
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3867,6 +3873,7 @@ module Google
|
|
3867
3873
|
property :advertiser_id, :numeric_string => true, as: 'advertiserId'
|
3868
3874
|
property :advertiser_id_dimension_value, as: 'advertiserIdDimensionValue', class: Google::Apis::DfareportingV5::DimensionValue, decorator: Google::Apis::DfareportingV5::DimensionValue::Representation
|
3869
3875
|
|
3876
|
+
property :allow_on_youtube, as: 'allowOnYoutube'
|
3870
3877
|
property :campaign_id, :numeric_string => true, as: 'campaignId'
|
3871
3878
|
property :campaign_id_dimension_value, as: 'campaignIdDimensionValue', class: Google::Apis::DfareportingV5::DimensionValue, decorator: Google::Apis::DfareportingV5::DimensionValue::Representation
|
3872
3879
|
|
@@ -3921,6 +3928,8 @@ module Google
|
|
3921
3928
|
|
3922
3929
|
property :vpaid_adapter_choice, as: 'vpaidAdapterChoice'
|
3923
3930
|
property :wrapping_opt_out, as: 'wrappingOptOut'
|
3931
|
+
property :youtube_settings, as: 'youtubeSettings', class: Google::Apis::DfareportingV5::YoutubeSettings, decorator: Google::Apis::DfareportingV5::YoutubeSettings::Representation
|
3932
|
+
|
3924
3933
|
end
|
3925
3934
|
end
|
3926
3935
|
|
@@ -4999,6 +5008,18 @@ module Google
|
|
4999
5008
|
|
5000
5009
|
end
|
5001
5010
|
end
|
5011
|
+
|
5012
|
+
class YoutubeSettings
|
5013
|
+
# @private
|
5014
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5015
|
+
collection :business_logo_creative_ids, as: 'businessLogoCreativeIds'
|
5016
|
+
property :business_name, as: 'businessName'
|
5017
|
+
collection :call_to_actions, as: 'callToActions'
|
5018
|
+
collection :descriptions, as: 'descriptions'
|
5019
|
+
collection :headlines, as: 'headlines'
|
5020
|
+
collection :long_headlines, as: 'longHeadlines'
|
5021
|
+
end
|
5022
|
+
end
|
5002
5023
|
end
|
5003
5024
|
end
|
5004
5025
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dfareporting_v5
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dfareporting_v5/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v5/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v5/v0.2.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dfareporting_v5
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|