123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- <?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.
- */
-
- class Google_Service_JobService_JobFilters extends Google_Collection
- {
- protected $collection_key = 'locationFilters';
- public $categories;
- protected $commuteFilterType = 'Google_Service_JobService_CommutePreference';
- protected $commuteFilterDataType = '';
- public $companyNames;
- public $companyTitles;
- protected $compensationFilterType = 'Google_Service_JobService_CompensationFilter';
- protected $compensationFilterDataType = '';
- public $customAttributeFilter;
- protected $customFieldFiltersType = 'Google_Service_JobService_CustomFieldFilter';
- protected $customFieldFiltersDataType = 'map';
- public $disableSpellCheck;
- public $employmentTypes;
- protected $extendedCompensationFilterType = 'Google_Service_JobService_ExtendedCompensationFilter';
- protected $extendedCompensationFilterDataType = '';
- public $languageCodes;
- protected $locationFiltersType = 'Google_Service_JobService_LocationFilter';
- protected $locationFiltersDataType = 'array';
- public $publishDateRange;
- public $query;
- public $tenantJobOnly;
-
- public function setCategories($categories)
- {
- $this->categories = $categories;
- }
- public function getCategories()
- {
- return $this->categories;
- }
- /**
- * @param Google_Service_JobService_CommutePreference
- */
- public function setCommuteFilter(Google_Service_JobService_CommutePreference $commuteFilter)
- {
- $this->commuteFilter = $commuteFilter;
- }
- /**
- * @return Google_Service_JobService_CommutePreference
- */
- public function getCommuteFilter()
- {
- return $this->commuteFilter;
- }
- public function setCompanyNames($companyNames)
- {
- $this->companyNames = $companyNames;
- }
- public function getCompanyNames()
- {
- return $this->companyNames;
- }
- public function setCompanyTitles($companyTitles)
- {
- $this->companyTitles = $companyTitles;
- }
- public function getCompanyTitles()
- {
- return $this->companyTitles;
- }
- /**
- * @param Google_Service_JobService_CompensationFilter
- */
- public function setCompensationFilter(Google_Service_JobService_CompensationFilter $compensationFilter)
- {
- $this->compensationFilter = $compensationFilter;
- }
- /**
- * @return Google_Service_JobService_CompensationFilter
- */
- public function getCompensationFilter()
- {
- return $this->compensationFilter;
- }
- public function setCustomAttributeFilter($customAttributeFilter)
- {
- $this->customAttributeFilter = $customAttributeFilter;
- }
- public function getCustomAttributeFilter()
- {
- return $this->customAttributeFilter;
- }
- /**
- * @param Google_Service_JobService_CustomFieldFilter
- */
- public function setCustomFieldFilters($customFieldFilters)
- {
- $this->customFieldFilters = $customFieldFilters;
- }
- /**
- * @return Google_Service_JobService_CustomFieldFilter
- */
- public function getCustomFieldFilters()
- {
- return $this->customFieldFilters;
- }
- public function setDisableSpellCheck($disableSpellCheck)
- {
- $this->disableSpellCheck = $disableSpellCheck;
- }
- public function getDisableSpellCheck()
- {
- return $this->disableSpellCheck;
- }
- public function setEmploymentTypes($employmentTypes)
- {
- $this->employmentTypes = $employmentTypes;
- }
- public function getEmploymentTypes()
- {
- return $this->employmentTypes;
- }
- /**
- * @param Google_Service_JobService_ExtendedCompensationFilter
- */
- public function setExtendedCompensationFilter(Google_Service_JobService_ExtendedCompensationFilter $extendedCompensationFilter)
- {
- $this->extendedCompensationFilter = $extendedCompensationFilter;
- }
- /**
- * @return Google_Service_JobService_ExtendedCompensationFilter
- */
- public function getExtendedCompensationFilter()
- {
- return $this->extendedCompensationFilter;
- }
- public function setLanguageCodes($languageCodes)
- {
- $this->languageCodes = $languageCodes;
- }
- public function getLanguageCodes()
- {
- return $this->languageCodes;
- }
- /**
- * @param Google_Service_JobService_LocationFilter
- */
- public function setLocationFilters($locationFilters)
- {
- $this->locationFilters = $locationFilters;
- }
- /**
- * @return Google_Service_JobService_LocationFilter
- */
- public function getLocationFilters()
- {
- return $this->locationFilters;
- }
- public function setPublishDateRange($publishDateRange)
- {
- $this->publishDateRange = $publishDateRange;
- }
- public function getPublishDateRange()
- {
- return $this->publishDateRange;
- }
- public function setQuery($query)
- {
- $this->query = $query;
- }
- public function getQuery()
- {
- return $this->query;
- }
- public function setTenantJobOnly($tenantJobOnly)
- {
- $this->tenantJobOnly = $tenantJobOnly;
- }
- public function getTenantJobOnly()
- {
- return $this->tenantJobOnly;
- }
- }
|