* The My Business Lodging API enables managing lodging business information on * Google.

* *

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

* * @author Google, Inc. */ class MyBusinessLodging extends \Google\Service { public $locations; public $locations_lodging; /** * Constructs the internal representation of the MyBusinessLodging 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://mybusinesslodging.googleapis.com/'; $this->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v1'; $this->serviceName = 'mybusinesslodging'; $this->locations = new MyBusinessLodging\Resource\Locations( $this, $this->serviceName, 'locations', [ 'methods' => [ 'getLodging' => [ 'path' => 'v1/{+name}', 'httpMethod' => 'GET', 'parameters' => [ 'name' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], 'readMask' => [ 'location' => 'query', 'type' => 'string', ], ], ],'updateLodging' => [ 'path' => 'v1/{+name}', 'httpMethod' => 'PATCH', 'parameters' => [ 'name' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], 'updateMask' => [ 'location' => 'query', 'type' => 'string', ], ], ], ] ] ); $this->locations_lodging = new MyBusinessLodging\Resource\LocationsLodging( $this, $this->serviceName, 'lodging', [ 'methods' => [ 'getGoogleUpdated' => [ 'path' => 'v1/{+name}:getGoogleUpdated', 'httpMethod' => 'GET', 'parameters' => [ 'name' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], 'readMask' => [ 'location' => 'query', 'type' => 'string', ], ], ], ] ] ); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MyBusinessLodging::class, 'Google_Service_MyBusinessLodging');