* Discovers relationships between online assets such as websites or mobile * apps.

* *

* For more information about this service, see the API * Documentation *

* * @author Google, Inc. */ class Digitalassetlinks extends \Google\Service { public $assetlinks; public $statements; /** * Constructs the internal representation of the Digitalassetlinks 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://digitalassetlinks.googleapis.com/'; $this->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v1'; $this->serviceName = 'digitalassetlinks'; $this->assetlinks = new Digitalassetlinks\Resource\Assetlinks( $this, $this->serviceName, 'assetlinks', [ 'methods' => [ 'bulkCheck' => [ 'path' => 'v1/assetlinks:bulkCheck', 'httpMethod' => 'POST', 'parameters' => [], ],'check' => [ 'path' => 'v1/assetlinks:check', 'httpMethod' => 'GET', 'parameters' => [ 'relation' => [ 'location' => 'query', 'type' => 'string', ], 'source.androidApp.certificate.sha256Fingerprint' => [ 'location' => 'query', 'type' => 'string', ], 'source.androidApp.packageName' => [ 'location' => 'query', 'type' => 'string', ], 'source.web.site' => [ 'location' => 'query', 'type' => 'string', ], 'target.androidApp.certificate.sha256Fingerprint' => [ 'location' => 'query', 'type' => 'string', ], 'target.androidApp.packageName' => [ 'location' => 'query', 'type' => 'string', ], 'target.web.site' => [ 'location' => 'query', 'type' => 'string', ], ], ], ] ] ); $this->statements = new Digitalassetlinks\Resource\Statements( $this, $this->serviceName, 'statements', [ 'methods' => [ 'list' => [ 'path' => 'v1/statements:list', 'httpMethod' => 'GET', 'parameters' => [ 'relation' => [ 'location' => 'query', 'type' => 'string', ], 'source.androidApp.certificate.sha256Fingerprint' => [ 'location' => 'query', 'type' => 'string', ], 'source.androidApp.packageName' => [ 'location' => 'query', 'type' => 'string', ], 'source.web.site' => [ 'location' => 'query', 'type' => 'string', ], ], ], ] ] ); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Digitalassetlinks::class, 'Google_Service_Digitalassetlinks');