Skip to content

Commit

Permalink
feat: Generate Google.Apis.PlayIntegrity.v1 version 1.68.0.3618
Browse files Browse the repository at this point in the history
  • Loading branch information
amanda-tarafa authored and jskeet committed Dec 2, 2024
1 parent 2515d6b commit c0c13ef
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
23 changes: 22 additions & 1 deletion DiscoveryJson/playintegrity.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
}
}
},
"revision": "20241119",
"revision": "20241127",
"rootUrl": "https://playintegrity.googleapis.com/",
"schemas": {
"AccountActivity": {
Expand Down Expand Up @@ -411,6 +411,27 @@
},
"type": "array"
},
"legacyDeviceRecognitionVerdict": {
"description": "Contains legacy details about the integrity of the device the app is running on. Only for devices with Android version T or higher and only for apps opted in to the new verdicts. Only available during the transition period to the new verdicts system and will be removed afterwards.",
"items": {
"enum": [
"UNKNOWN",
"MEETS_BASIC_INTEGRITY",
"MEETS_DEVICE_INTEGRITY",
"MEETS_STRONG_INTEGRITY",
"MEETS_VIRTUAL_INTEGRITY"
],
"enumDescriptions": [
"Play does not have sufficient information to evaluate device integrity",
"App is running on a device that passes basic system integrity checks, but may not meet Android platform compatibility requirements and may not be approved to run Google Play services.",
"App is running on GMS Android device with Google Play services.",
"App is running on GMS Android device with Google Play services and has a strong guarantee of system integrity such as a hardware-backed keystore.",
"App is running on an Android emulator with Google Play services which meets core Android compatibility requirements."
],
"type": "string"
},
"type": "array"
},
"recentDeviceActivity": {
"$ref": "RecentDeviceActivity",
"description": "Details about the device activity of the device the app is running on."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -544,6 +544,14 @@ public class DeviceIntegrity : Google.Apis.Requests.IDirectResponseSchema
[Newtonsoft.Json.JsonPropertyAttribute("deviceRecognitionVerdict")]
public virtual System.Collections.Generic.IList<string> DeviceRecognitionVerdict { get; set; }

/// <summary>
/// Contains legacy details about the integrity of the device the app is running on. Only for devices with
/// Android version T or higher and only for apps opted in to the new verdicts. Only available during the
/// transition period to the new verdicts system and will be removed afterwards.
/// </summary>
[Newtonsoft.Json.JsonPropertyAttribute("legacyDeviceRecognitionVerdict")]
public virtual System.Collections.Generic.IList<string> LegacyDeviceRecognitionVerdict { get; set; }

/// <summary>Details about the device activity of the device the app is running on.</summary>
[Newtonsoft.Json.JsonPropertyAttribute("recentDeviceActivity")]
public virtual RecentDeviceActivity RecentDeviceActivity { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- nupkg information -->
<PropertyGroup>
<Title>Google.Apis.PlayIntegrity.v1 Client Library</Title>
<Version>1.68.0.3610</Version>
<Version>1.68.0.3618</Version>
<Authors>Google LLC</Authors>
<Copyright>Copyright 2024 Google LLC</Copyright>
<PackageTags>Google</PackageTags>
Expand Down

0 comments on commit c0c13ef

Please sign in to comment.