google-apis-dfareporting_v4 0.20.0 → 0.21.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: 89e8a23fa9ef1b87273780b8f3494316a2d849cecd9d064f2856328793d56bcd
|
4
|
+
data.tar.gz: 2968199fb42953f5e1382ecd804d4b8e70206a77db049a6de5ee31f268d3588b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9e20f20abb046bcaaf3f4207770b87bc6dc3d37f8e9ecbc15e5bd0a27a3090b3b8425d823c812f8fa9fbbddc2df43e0c4f07cfabf38c842a136c2048ca2b2e1
|
7
|
+
data.tar.gz: 7b815d3143a25dc1e1f71496f0808d6db7eb1eeeb51d714fed770ea6910f47dd0f7387fc1b4ef6a01ee217fff3b9de7d5395c7afb2a36a357056c51107ff3f64
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-dfareporting_v4
|
2
2
|
|
3
|
+
### v0.21.0 (2025-06-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250602
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
3
8
|
### v0.20.0 (2025-05-04)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.17.0
|
@@ -2085,8 +2085,10 @@ module Google
|
|
2085
2085
|
end
|
2086
2086
|
end
|
2087
2087
|
|
2088
|
-
#
|
2089
|
-
# when calling batchinsert; it is
|
2088
|
+
# *Beta:* This feature is currently in beta. Contains additional information
|
2089
|
+
# about cart data. This field may only be used when calling batchinsert; it is
|
2090
|
+
# not supported by batchupdate. Cart data reporting is only supported in SA360. [
|
2091
|
+
# Learn more](https://support.google.com/sa360/topic/13425788)
|
2090
2092
|
class CartData
|
2091
2093
|
include Google::Apis::Core::Hashable
|
2092
2094
|
|
@@ -2766,8 +2768,10 @@ module Google
|
|
2766
2768
|
# @return [String]
|
2767
2769
|
attr_accessor :ad_user_data_consent
|
2768
2770
|
|
2769
|
-
#
|
2770
|
-
# when calling batchinsert; it is
|
2771
|
+
# *Beta:* This feature is currently in beta. Contains additional information
|
2772
|
+
# about cart data. This field may only be used when calling batchinsert; it is
|
2773
|
+
# not supported by batchupdate. Cart data reporting is only supported in SA360. [
|
2774
|
+
# Learn more](https://support.google.com/sa360/topic/13425788)
|
2771
2775
|
# Corresponds to the JSON property `cartData`
|
2772
2776
|
# @return [Google::Apis::DfareportingV4::CartData]
|
2773
2777
|
attr_accessor :cart_data
|
@@ -2887,6 +2891,13 @@ module Google
|
|
2887
2891
|
# @return [Fixnum]
|
2888
2892
|
attr_accessor :quantity
|
2889
2893
|
|
2894
|
+
# Session attributes for the conversion, encoded as based64 bytes. This field
|
2895
|
+
# may only be used when calling batchinsert; it is not supported by batchupdate.
|
2896
|
+
# Corresponds to the JSON property `sessionAttributesEncoded`
|
2897
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
2898
|
+
# @return [String]
|
2899
|
+
attr_accessor :session_attributes_encoded
|
2900
|
+
|
2890
2901
|
# The timestamp of conversion, in Unix epoch micros. This is a required field.
|
2891
2902
|
# Corresponds to the JSON property `timestampMicros`
|
2892
2903
|
# @return [Fixnum]
|
@@ -2936,6 +2947,7 @@ module Google
|
|
2936
2947
|
@non_personalized_ad = args[:non_personalized_ad] if args.key?(:non_personalized_ad)
|
2937
2948
|
@ordinal = args[:ordinal] if args.key?(:ordinal)
|
2938
2949
|
@quantity = args[:quantity] if args.key?(:quantity)
|
2950
|
+
@session_attributes_encoded = args[:session_attributes_encoded] if args.key?(:session_attributes_encoded)
|
2939
2951
|
@timestamp_micros = args[:timestamp_micros] if args.key?(:timestamp_micros)
|
2940
2952
|
@treatment_for_underage = args[:treatment_for_underage] if args.key?(:treatment_for_underage)
|
2941
2953
|
@user_identifiers = args[:user_identifiers] if args.key?(:user_identifiers)
|
@@ -5056,8 +5068,9 @@ module Google
|
|
5056
5068
|
end
|
5057
5069
|
end
|
5058
5070
|
|
5059
|
-
# A custom floodlight variable.
|
5060
|
-
#
|
5071
|
+
# A custom floodlight variable. Can be used in both batchinsert and batchupdate.
|
5072
|
+
# Adding this in batchupdate will update or append the variable to the existing
|
5073
|
+
# list.
|
5061
5074
|
class CustomFloodlightVariable
|
5062
5075
|
include Google::Apis::Core::Hashable
|
5063
5076
|
|
@@ -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.21.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250602"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2240,6 +2240,7 @@ module Google
|
|
2240
2240
|
property :non_personalized_ad, as: 'nonPersonalizedAd'
|
2241
2241
|
property :ordinal, as: 'ordinal'
|
2242
2242
|
property :quantity, :numeric_string => true, as: 'quantity'
|
2243
|
+
property :session_attributes_encoded, :base64 => true, as: 'sessionAttributesEncoded'
|
2243
2244
|
property :timestamp_micros, :numeric_string => true, as: 'timestampMicros'
|
2244
2245
|
property :treatment_for_underage, as: 'treatmentForUnderage'
|
2245
2246
|
collection :user_identifiers, as: 'userIdentifiers', class: Google::Apis::DfareportingV4::UserIdentifier, decorator: Google::Apis::DfareportingV4::UserIdentifier::Representation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.21.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_v4/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v4/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v4/v0.21.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dfareporting_v4
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Campaign Manager 360 API V4
|
79
79
|
test_files: []
|