* Play Integrity

* *

* 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 $v1; /** * 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->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v1'; $this->serviceName = 'playintegrity'; $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');