* $mybusinessverificationsService = new Google\Service\MyBusinessVerifications(...); * $locations = $mybusinessverificationsService->locations; * */ class Locations extends \Google\Service\Resource { /** * Reports all eligible verification options for a location in a specific * language. (locations.fetchVerificationOptions) * * @param string $location Required. The location to verify. * @param FetchVerificationOptionsRequest $postBody * @param array $optParams Optional parameters. * @return FetchVerificationOptionsResponse */ public function fetchVerificationOptions($location, FetchVerificationOptionsRequest $postBody, $optParams = []) { $params = ['location' => $location, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('fetchVerificationOptions', [$params], FetchVerificationOptionsResponse::class); } /** * Gets the VoiceOfMerchant state. (locations.getVoiceOfMerchantState) * * @param string $name Required. Resource name of the location. * @param array $optParams Optional parameters. * @return VoiceOfMerchantState */ public function getVoiceOfMerchantState($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('getVoiceOfMerchantState', [$params], VoiceOfMerchantState::class); } /** * Starts the verification process for a location. (locations.verify) * * @param string $name Required. Resource name of the location to verify. * @param VerifyLocationRequest $postBody * @param array $optParams Optional parameters. * @return VerifyLocationResponse */ public function verify($name, VerifyLocationRequest $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('verify', [$params], VerifyLocationResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Locations::class, 'Google_Service_MyBusinessVerifications_Resource_Locations');