diff --git a/docs/dyn/playintegrity_v1.v1.html b/docs/dyn/playintegrity_v1.v1.html index 25603437897..27cf8195a8b 100644 --- a/docs/dyn/playintegrity_v1.v1.html +++ b/docs/dyn/playintegrity_v1.v1.html @@ -110,6 +110,9 @@

Method Details

{ # Response containing the decoded integrity payload. "tokenPayloadExternal": { # Contains basic app information and integrity signals like device attestation and licensing details. # Plain token payload generated from the decoded integrity token. "accountDetails": { # Contains the account information such as the licensing status for the user in the scope. # Required. Details about the Play Store account. + "accountActivity": { # Contains a signal helping apps differentiating between likely genuine users and likely non-genuine traffic (such as accounts being used for fraud, accounts used by automated traffic, or accounts used in device farms) based on the presence and volume of Play store activity. # Details about the account activity for the user in the scope. + "activityLevel": "A String", # Required. Indicates the activity level of the account. + }, "accountRiskVerdict": { # Contains information about account risk that indicates if the current user session seems low risk, unknown, or risky before you allow important actions to proceed. # Details about the account risk for the user in the scope. This feature is available only to selected developers. "risk": "A String", # Required. Indicates the account risk level of the current user session. "riskLevel": "A String", # Required. Indicates the account risk level of the current user session. diff --git a/googleapiclient/discovery_cache/documents/playintegrity.v1.json b/googleapiclient/discovery_cache/documents/playintegrity.v1.json index 2cccfe6bf39..3901a04659e 100644 --- a/googleapiclient/discovery_cache/documents/playintegrity.v1.json +++ b/googleapiclient/discovery_cache/documents/playintegrity.v1.json @@ -138,13 +138,44 @@ } } }, - "revision": "20220925", + "revision": "20221001", "rootUrl": "https://playintegrity.googleapis.com/", "schemas": { + "AccountActivity": { + "description": "Contains a signal helping apps differentiating between likely genuine users and likely non-genuine traffic (such as accounts being used for fraud, accounts used by automated traffic, or accounts used in device farms) based on the presence and volume of Play store activity.", + "id": "AccountActivity", + "properties": { + "activityLevel": { + "description": "Required. Indicates the activity level of the account.", + "enum": [ + "ACTIVITY_LEVEL_UNSPECIFIED", + "UNEVALUATED", + "UNUSUAL", + "UNKNOWN", + "TYPICAL_BASIC", + "TYPICAL_STRONG" + ], + "enumDescriptions": [ + "Activity level has not been set.", + "Account activity level is not evaluated because one of the prerequisite conditions is not met (e.g., device is not trusted, the user does not have Play app license)", + "Google Play store activity is unusual for at least one of the user accounts on the device. Google Play recommends checking that this is a real user.", + "Google Play does not have sufficient activity for the user account on the device. The account may be new, or it may lack activity on Google Play.", + "Google Play store activity is typical for the user account or accounts on the device.", + "Google Play store activity is typical for the user account or accounts on the device, with harder to replicate signals." + ], + "type": "string" + } + }, + "type": "object" + }, "AccountDetails": { "description": "Contains the account information such as the licensing status for the user in the scope.", "id": "AccountDetails", "properties": { + "accountActivity": { + "$ref": "AccountActivity", + "description": "Details about the account activity for the user in the scope." + }, "accountRiskVerdict": { "$ref": "AccountRiskVerdict", "description": "Details about the account risk for the user in the scope. This feature is available only to selected developers."