* The Play Integrity API helps you check that you're interacting with your * genuine app on a genuine Android device powered by Google Play services. The * Play Integrity API has replaced SafetyNet Attestation and Android Device * Verification.
* ** For more information about this service, see the API * Documentation *
* * @author Google, Inc. */ class PlayIntegrity extends \Google\Service { /** Private Service: https://www.googleapis.com/auth/playintegrity. */ const PLAYINTEGRITY = "https://www.googleapis.com/auth/playintegrity"; public $deviceRecall; public $v1; public $rootUrlTemplate; /** * Constructs the internal representation of the PlayIntegrity service. * * @param Client|array $clientOrConfig The client used to deliver requests, or a * config array to pass to a new Client instance. * @param string $rootUrl The root URL used for requests to the service. */ public function __construct($clientOrConfig = [], $rootUrl = null) { parent::__construct($clientOrConfig); $this->rootUrl = $rootUrl ?: 'https://playintegrity.googleapis.com/'; $this->rootUrlTemplate = $rootUrl ?: 'https://playintegrity.UNIVERSE_DOMAIN/'; $this->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v1'; $this->serviceName = 'playintegrity'; $this->deviceRecall = new PlayIntegrity\Resource\DeviceRecall( $this, $this->serviceName, 'deviceRecall', [ 'methods' => [ 'write' => [ 'path' => 'v1/{+packageName}/deviceRecall:write', 'httpMethod' => 'POST', 'parameters' => [ 'packageName' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], ], ], ] ] ); $this->v1 = new PlayIntegrity\Resource\V1( $this, $this->serviceName, 'v1', [ 'methods' => [ 'decodeIntegrityToken' => [ 'path' => 'v1/{+packageName}:decodeIntegrityToken', 'httpMethod' => 'POST', 'parameters' => [ 'packageName' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], ], ], ] ] ); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PlayIntegrity::class, 'Google_Service_PlayIntegrity');