<?php
/*
 * Copyright 2014 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

namespace Google\Service\DiscoveryEngine;

class GoogleCloudDiscoveryengineV1alphaSearchRequestNaturalLanguageQueryUnderstandingSpec extends \Google\Collection
{
  protected $collection_key = 'geoSearchQueryDetectionFieldNames';
  /**
   * @var string[]
   */
  public $allowedFieldNames;
  /**
   * @var string
   */
  public $extractedFilterBehavior;
  /**
   * @var string
   */
  public $filterExtractionCondition;
  /**
   * @var string[]
   */
  public $geoSearchQueryDetectionFieldNames;

  /**
   * @param string[]
   */
  public function setAllowedFieldNames($allowedFieldNames)
  {
    $this->allowedFieldNames = $allowedFieldNames;
  }
  /**
   * @return string[]
   */
  public function getAllowedFieldNames()
  {
    return $this->allowedFieldNames;
  }
  /**
   * @param string
   */
  public function setExtractedFilterBehavior($extractedFilterBehavior)
  {
    $this->extractedFilterBehavior = $extractedFilterBehavior;
  }
  /**
   * @return string
   */
  public function getExtractedFilterBehavior()
  {
    return $this->extractedFilterBehavior;
  }
  /**
   * @param string
   */
  public function setFilterExtractionCondition($filterExtractionCondition)
  {
    $this->filterExtractionCondition = $filterExtractionCondition;
  }
  /**
   * @return string
   */
  public function getFilterExtractionCondition()
  {
    return $this->filterExtractionCondition;
  }
  /**
   * @param string[]
   */
  public function setGeoSearchQueryDetectionFieldNames($geoSearchQueryDetectionFieldNames)
  {
    $this->geoSearchQueryDetectionFieldNames = $geoSearchQueryDetectionFieldNames;
  }
  /**
   * @return string[]
   */
  public function getGeoSearchQueryDetectionFieldNames()
  {
    return $this->geoSearchQueryDetectionFieldNames;
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDiscoveryengineV1alphaSearchRequestNaturalLanguageQueryUnderstandingSpec::class, 'Google_Service_DiscoveryEngine_GoogleCloudDiscoveryengineV1alphaSearchRequestNaturalLanguageQueryUnderstandingSpec');
