google-apis-playintegrity_v1 0.9.0 → 0.10.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: adaeff45c9ead1f6d9665921c675d691c0e5a0c2a681f4f98e6c628bbf95497b
|
4
|
+
data.tar.gz: 03ae6096d8c38fc5268edfaef2bdd65ec38309c9c628deffab28419bc6084e86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99d1f56e3d71cb52dabe830f1eb8771d5ac309541e5c11390bd098ef6882c9b7337c69b4608113efc0e220e4907e751ccb754e4899e3ea365852a009afbab13b
|
7
|
+
data.tar.gz: 77cde942214ab8ac499e0e999a371fec22b7f00de6ad879207dcc91034a6d510f9f4a603518f92e31d1883e3f94bf792614fcd97e44b1dd6345ec65de656cf18
|
data/CHANGELOG.md
CHANGED
@@ -22,11 +22,41 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module PlayintegrityV1
|
24
24
|
|
25
|
+
# Contains a signal helping apps differentiating between likely genuine users
|
26
|
+
# and likely non-genuine traffic (such as accounts being used for fraud,
|
27
|
+
# accounts used by automated traffic, or accounts used in device farms) based on
|
28
|
+
# the presence and volume of Play store activity.
|
29
|
+
class AccountActivity
|
30
|
+
include Google::Apis::Core::Hashable
|
31
|
+
|
32
|
+
# Required. Indicates the activity level of the account.
|
33
|
+
# Corresponds to the JSON property `activityLevel`
|
34
|
+
# @return [String]
|
35
|
+
attr_accessor :activity_level
|
36
|
+
|
37
|
+
def initialize(**args)
|
38
|
+
update!(**args)
|
39
|
+
end
|
40
|
+
|
41
|
+
# Update properties of this object
|
42
|
+
def update!(**args)
|
43
|
+
@activity_level = args[:activity_level] if args.key?(:activity_level)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
25
47
|
# Contains the account information such as the licensing status for the user in
|
26
48
|
# the scope.
|
27
49
|
class AccountDetails
|
28
50
|
include Google::Apis::Core::Hashable
|
29
51
|
|
52
|
+
# Contains a signal helping apps differentiating between likely genuine users
|
53
|
+
# and likely non-genuine traffic (such as accounts being used for fraud,
|
54
|
+
# accounts used by automated traffic, or accounts used in device farms) based on
|
55
|
+
# the presence and volume of Play store activity.
|
56
|
+
# Corresponds to the JSON property `accountActivity`
|
57
|
+
# @return [Google::Apis::PlayintegrityV1::AccountActivity]
|
58
|
+
attr_accessor :account_activity
|
59
|
+
|
30
60
|
# Contains information about account risk that indicates if the current user
|
31
61
|
# session seems low risk, unknown, or risky before you allow important actions
|
32
62
|
# to proceed.
|
@@ -46,6 +76,7 @@ module Google
|
|
46
76
|
|
47
77
|
# Update properties of this object
|
48
78
|
def update!(**args)
|
79
|
+
@account_activity = args[:account_activity] if args.key?(:account_activity)
|
49
80
|
@account_risk_verdict = args[:account_risk_verdict] if args.key?(:account_risk_verdict)
|
50
81
|
@app_licensing_verdict = args[:app_licensing_verdict] if args.key?(:app_licensing_verdict)
|
51
82
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module PlayintegrityV1
|
18
18
|
# Version of the google-apis-playintegrity_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.10.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220928"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,6 +22,12 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module PlayintegrityV1
|
24
24
|
|
25
|
+
class AccountActivity
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
25
31
|
class AccountDetails
|
26
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
33
|
|
@@ -76,9 +82,18 @@ module Google
|
|
76
82
|
include Google::Apis::Core::JsonObjectSupport
|
77
83
|
end
|
78
84
|
|
85
|
+
class AccountActivity
|
86
|
+
# @private
|
87
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
88
|
+
property :activity_level, as: 'activityLevel'
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
79
92
|
class AccountDetails
|
80
93
|
# @private
|
81
94
|
class Representation < Google::Apis::Core::JsonRepresentation
|
95
|
+
property :account_activity, as: 'accountActivity', class: Google::Apis::PlayintegrityV1::AccountActivity, decorator: Google::Apis::PlayintegrityV1::AccountActivity::Representation
|
96
|
+
|
82
97
|
property :account_risk_verdict, as: 'accountRiskVerdict', class: Google::Apis::PlayintegrityV1::AccountRiskVerdict, decorator: Google::Apis::PlayintegrityV1::AccountRiskVerdict::Representation
|
83
98
|
|
84
99
|
property :app_licensing_verdict, as: 'appLicensingVerdict'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-playintegrity_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.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-10-17 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-playintegrity_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-playintegrity_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-playintegrity_v1/v0.10.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playintegrity_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|