google-apis-analyticsadmin_v1beta 0.10.0 → 0.11.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: 07053ab71d2ac5147ff3df68d8f7fe811f053278eec72a6206e735ae96540366
|
4
|
+
data.tar.gz: b3dd4d4d339ae3bbb6aaf2c0f288a1af3739045c9bdc0d8e44e534aad00aac79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0828028cad446a29e66a9885d4e27e3b5f5a7fc624a6f883108074fcd5bd571262f2fe2f42d997056f7c947bb74ba0ec4d82e6e21af40cd2f1ba59eeda3989b
|
7
|
+
data.tar.gz: 82ba9d06e2ebc915f28c9614179559fbde95f4679befa5ff0d1e0e10e8467b77f367b38222834b82cb8df08d6297ec69ab09169ec951e57f4c5e90fa41467496
|
data/CHANGELOG.md
CHANGED
@@ -908,6 +908,12 @@ module Google
|
|
908
908
|
attr_accessor :custom
|
909
909
|
alias_method :custom?, :custom
|
910
910
|
|
911
|
+
# Defines a default value/currency for a conversion event. Both value and
|
912
|
+
# currency must be provided.
|
913
|
+
# Corresponds to the JSON property `defaultConversionValue`
|
914
|
+
# @return [Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue]
|
915
|
+
attr_accessor :default_conversion_value
|
916
|
+
|
911
917
|
# Output only. If set, this event can currently be deleted with
|
912
918
|
# DeleteConversionEvent.
|
913
919
|
# Corresponds to the JSON property `deletable`
|
@@ -936,12 +942,42 @@ module Google
|
|
936
942
|
@counting_method = args[:counting_method] if args.key?(:counting_method)
|
937
943
|
@create_time = args[:create_time] if args.key?(:create_time)
|
938
944
|
@custom = args[:custom] if args.key?(:custom)
|
945
|
+
@default_conversion_value = args[:default_conversion_value] if args.key?(:default_conversion_value)
|
939
946
|
@deletable = args[:deletable] if args.key?(:deletable)
|
940
947
|
@event_name = args[:event_name] if args.key?(:event_name)
|
941
948
|
@name = args[:name] if args.key?(:name)
|
942
949
|
end
|
943
950
|
end
|
944
951
|
|
952
|
+
# Defines a default value/currency for a conversion event. Both value and
|
953
|
+
# currency must be provided.
|
954
|
+
class GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue
|
955
|
+
include Google::Apis::Core::Hashable
|
956
|
+
|
957
|
+
# When a conversion event for this event_name has no set currency, this currency
|
958
|
+
# will be applied as the default. Must be in ISO 4217 currency code format. See
|
959
|
+
# https://en.wikipedia.org/wiki/ISO_4217 for more.
|
960
|
+
# Corresponds to the JSON property `currencyCode`
|
961
|
+
# @return [String]
|
962
|
+
attr_accessor :currency_code
|
963
|
+
|
964
|
+
# This value will be used to populate the value for all conversions of the
|
965
|
+
# specified event_name where the event "value" parameter is unset.
|
966
|
+
# Corresponds to the JSON property `value`
|
967
|
+
# @return [Float]
|
968
|
+
attr_accessor :value
|
969
|
+
|
970
|
+
def initialize(**args)
|
971
|
+
update!(**args)
|
972
|
+
end
|
973
|
+
|
974
|
+
# Update properties of this object
|
975
|
+
def update!(**args)
|
976
|
+
@currency_code = args[:currency_code] if args.key?(:currency_code)
|
977
|
+
@value = args[:value] if args.key?(:value)
|
978
|
+
end
|
979
|
+
end
|
980
|
+
|
945
981
|
# A definition for a CustomDimension.
|
946
982
|
class GoogleAnalyticsAdminV1betaCustomDimension
|
947
983
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AnalyticsadminV1beta
|
18
18
|
# Version of the google-apis-analyticsadmin_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.11.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231027"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -202,6 +202,12 @@ module Google
|
|
202
202
|
include Google::Apis::Core::JsonObjectSupport
|
203
203
|
end
|
204
204
|
|
205
|
+
class GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
|
+
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
209
|
+
end
|
210
|
+
|
205
211
|
class GoogleAnalyticsAdminV1betaCustomDimension
|
206
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
213
|
|
@@ -672,12 +678,22 @@ module Google
|
|
672
678
|
property :counting_method, as: 'countingMethod'
|
673
679
|
property :create_time, as: 'createTime'
|
674
680
|
property :custom, as: 'custom'
|
681
|
+
property :default_conversion_value, as: 'defaultConversionValue', class: Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue, decorator: Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue::Representation
|
682
|
+
|
675
683
|
property :deletable, as: 'deletable'
|
676
684
|
property :event_name, as: 'eventName'
|
677
685
|
property :name, as: 'name'
|
678
686
|
end
|
679
687
|
end
|
680
688
|
|
689
|
+
class GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue
|
690
|
+
# @private
|
691
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
692
|
+
property :currency_code, as: 'currencyCode'
|
693
|
+
property :value, as: 'value'
|
694
|
+
end
|
695
|
+
end
|
696
|
+
|
681
697
|
class GoogleAnalyticsAdminV1betaCustomDimension
|
682
698
|
# @private
|
683
699
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-analyticsadmin_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.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: 2023-
|
11
|
+
date: 2023-11-05 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-analyticsadmin_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1beta/v0.11.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsadmin_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|