google-apis-authorizedbuyersmarketplace_v1 0.4.0 → 0.5.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b88ba153f36304c4d04afcd7251badc68dbd93f04c0e4baf874b2b50bda00bbe
|
4
|
+
data.tar.gz: 4932e02ce63fa4219c5bf1f8ec015d52f2006355748d3f7dfd15e33f7cc3b77e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ceab3b97fd8351f15afe3ca0833aacb001b20d4c915b522bba405aaff432c7b266ded46eb52e095d8eff3c278651201c68c23908085e67e8830ce4a642c30b8a
|
7
|
+
data.tar.gz: b58dd969efdff638cdb33dc2ee12ea31d1cc37a02a472c0d8178563206ae2b3009ace2ed9f98e05ee948f0eccb3d811a12a398912fb2ba89e90fd5c4514751c5
|
data/CHANGELOG.md
CHANGED
@@ -379,6 +379,12 @@ module Google
|
|
379
379
|
class CreativeRequirements
|
380
380
|
include Google::Apis::Core::Hashable
|
381
381
|
|
382
|
+
# Output only. The format of the creative, only applicable for programmatic
|
383
|
+
# guaranteed and preferred deals.
|
384
|
+
# Corresponds to the JSON property `creativeFormat`
|
385
|
+
# @return [String]
|
386
|
+
attr_accessor :creative_format
|
387
|
+
|
382
388
|
# Output only. Specifies the creative pre-approval policy.
|
383
389
|
# Corresponds to the JSON property `creativePreApprovalPolicy`
|
384
390
|
# @return [String]
|
@@ -389,6 +395,12 @@ module Google
|
|
389
395
|
# @return [String]
|
390
396
|
attr_accessor :creative_safe_frame_compatibility
|
391
397
|
|
398
|
+
# Output only. The max duration of the video creative in milliseconds. only
|
399
|
+
# applicable for deals with video creatives.
|
400
|
+
# Corresponds to the JSON property `maxAdDurationMs`
|
401
|
+
# @return [Fixnum]
|
402
|
+
attr_accessor :max_ad_duration_ms
|
403
|
+
|
392
404
|
# Output only. Specifies the creative source for programmatic deals. PUBLISHER
|
393
405
|
# means creative is provided by seller and ADVERTISER means creative is provided
|
394
406
|
# by the buyer.
|
@@ -396,15 +408,24 @@ module Google
|
|
396
408
|
# @return [String]
|
397
409
|
attr_accessor :programmatic_creative_source
|
398
410
|
|
411
|
+
# Output only. Skippable video ads allow viewers to skip ads after 5 seconds.
|
412
|
+
# Only applicable for deals with video creatives.
|
413
|
+
# Corresponds to the JSON property `skippableAdType`
|
414
|
+
# @return [String]
|
415
|
+
attr_accessor :skippable_ad_type
|
416
|
+
|
399
417
|
def initialize(**args)
|
400
418
|
update!(**args)
|
401
419
|
end
|
402
420
|
|
403
421
|
# Update properties of this object
|
404
422
|
def update!(**args)
|
423
|
+
@creative_format = args[:creative_format] if args.key?(:creative_format)
|
405
424
|
@creative_pre_approval_policy = args[:creative_pre_approval_policy] if args.key?(:creative_pre_approval_policy)
|
406
425
|
@creative_safe_frame_compatibility = args[:creative_safe_frame_compatibility] if args.key?(:creative_safe_frame_compatibility)
|
426
|
+
@max_ad_duration_ms = args[:max_ad_duration_ms] if args.key?(:max_ad_duration_ms)
|
407
427
|
@programmatic_creative_source = args[:programmatic_creative_source] if args.key?(:programmatic_creative_source)
|
428
|
+
@skippable_ad_type = args[:skippable_ad_type] if args.key?(:skippable_ad_type)
|
408
429
|
end
|
409
430
|
end
|
410
431
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AuthorizedbuyersmarketplaceV1
|
18
18
|
# Version of the google-apis-authorizedbuyersmarketplace_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.5.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220212"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -510,9 +510,12 @@ module Google
|
|
510
510
|
class CreativeRequirements
|
511
511
|
# @private
|
512
512
|
class Representation < Google::Apis::Core::JsonRepresentation
|
513
|
+
property :creative_format, as: 'creativeFormat'
|
513
514
|
property :creative_pre_approval_policy, as: 'creativePreApprovalPolicy'
|
514
515
|
property :creative_safe_frame_compatibility, as: 'creativeSafeFrameCompatibility'
|
516
|
+
property :max_ad_duration_ms, :numeric_string => true, as: 'maxAdDurationMs'
|
515
517
|
property :programmatic_creative_source, as: 'programmaticCreativeSource'
|
518
|
+
property :skippable_ad_type, as: 'skippableAdType'
|
516
519
|
end
|
517
520
|
end
|
518
521
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-authorizedbuyersmarketplace_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.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: 2022-
|
11
|
+
date: 2022-02-21 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-authorizedbuyersmarketplace_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-authorizedbuyersmarketplace_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-authorizedbuyersmarketplace_v1/v0.5.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-authorizedbuyersmarketplace_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Authorized Buyers Marketplace API V1
|