google-apis-analyticsdata_v1beta 0.6.0 → 0.7.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: 6f9a972740adc04558a5739925ca3c88cc1f7824edde5558c34823fe75b4a0d9
|
|
4
|
+
data.tar.gz: 4e53e512c5def50a28f72a9bb92e7b8d350c48c686755ca9e3d49e185fc8f032
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e6984029daad6322db685fc72e43308217463770eb97a7aced1d7493161bfb727e90aefd30bd387aae2b716389eaf5f0b27d67125ccc3a1e6b82f40cee15445b
|
|
7
|
+
data.tar.gz: b90a73951a1dd023e9752fba246dcd9879a19a740dfbf46b4584fa5ef3c344de5f450ae958f2bd3a7a579d34f7e21d8beca1dfac4c549439139371bd708f63fd
|
data/CHANGELOG.md
CHANGED
|
@@ -1416,6 +1416,18 @@ module Google
|
|
|
1416
1416
|
class ResponseMetaData
|
|
1417
1417
|
include Google::Apis::Core::Hashable
|
|
1418
1418
|
|
|
1419
|
+
# The currency code used in this report. Intended to be used in formatting
|
|
1420
|
+
# currency metrics like `purchaseRevenue` for visualization. If currency_code
|
|
1421
|
+
# was specified in the request, this response parameter will echo the request
|
|
1422
|
+
# parameter; otherwise, this response parameter is the property's current
|
|
1423
|
+
# currency_code. Currency codes are string encodings of currency types from the
|
|
1424
|
+
# ISO 4217 standard (https://en.wikipedia.org/wiki/ISO_4217); for example "USD",
|
|
1425
|
+
# "EUR", "JPY". To learn more, see https://support.google.com/analytics/answer/
|
|
1426
|
+
# 9796179.
|
|
1427
|
+
# Corresponds to the JSON property `currencyCode`
|
|
1428
|
+
# @return [String]
|
|
1429
|
+
attr_accessor :currency_code
|
|
1430
|
+
|
|
1419
1431
|
# If true, indicates some buckets of dimension combinations are rolled into "(
|
|
1420
1432
|
# other)" row. This can happen for high cardinality reports.
|
|
1421
1433
|
# Corresponds to the JSON property `dataLossFromOtherRow`
|
|
@@ -1423,13 +1435,23 @@ module Google
|
|
|
1423
1435
|
attr_accessor :data_loss_from_other_row
|
|
1424
1436
|
alias_method :data_loss_from_other_row?, :data_loss_from_other_row
|
|
1425
1437
|
|
|
1438
|
+
# The property's current timezone. Intended to be used to interpret time-based
|
|
1439
|
+
# dimensions like `hour` and `minute`. Formatted as strings from the IANA Time
|
|
1440
|
+
# Zone database (https://www.iana.org/time-zones); for example "America/New_York"
|
|
1441
|
+
# or "Asia/Tokyo".
|
|
1442
|
+
# Corresponds to the JSON property `timeZone`
|
|
1443
|
+
# @return [String]
|
|
1444
|
+
attr_accessor :time_zone
|
|
1445
|
+
|
|
1426
1446
|
def initialize(**args)
|
|
1427
1447
|
update!(**args)
|
|
1428
1448
|
end
|
|
1429
1449
|
|
|
1430
1450
|
# Update properties of this object
|
|
1431
1451
|
def update!(**args)
|
|
1452
|
+
@currency_code = args[:currency_code] if args.key?(:currency_code)
|
|
1432
1453
|
@data_loss_from_other_row = args[:data_loss_from_other_row] if args.key?(:data_loss_from_other_row)
|
|
1454
|
+
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
|
1433
1455
|
end
|
|
1434
1456
|
end
|
|
1435
1457
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AnalyticsdataV1beta
|
|
18
18
|
# Version of the google-apis-analyticsdata_v1beta gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.7.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210827"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -751,7 +751,9 @@ module Google
|
|
|
751
751
|
class ResponseMetaData
|
|
752
752
|
# @private
|
|
753
753
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
754
|
+
property :currency_code, as: 'currencyCode'
|
|
754
755
|
property :data_loss_from_other_row, as: 'dataLossFromOtherRow'
|
|
756
|
+
property :time_zone, as: 'timeZone'
|
|
755
757
|
end
|
|
756
758
|
end
|
|
757
759
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-analyticsdata_v1beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.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: 2021-
|
|
11
|
+
date: 2021-09-06 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/master/generated/google-apis-analyticsdata_v1beta/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsdata_v1beta/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsdata_v1beta/v0.7.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-analyticsdata_v1beta
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|