1<?php 2/* 3 * Copyright 2014 Google Inc. 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not 6 * use this file except in compliance with the License. You may obtain a copy of 7 * the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 14 * License for the specific language governing permissions and limitations under 15 * the License. 16 */ 17 18namespace Google\Service\CloudTalentSolution; 19 20class Company extends \Google\Collection 21{ 22 protected $collection_key = 'keywordSearchableJobCustomAttributes'; 23 /** 24 * @var string 25 */ 26 public $careerSiteUri; 27 protected $derivedInfoType = CompanyDerivedInfo::class; 28 protected $derivedInfoDataType = ''; 29 /** 30 * @var string 31 */ 32 public $displayName; 33 /** 34 * @var string 35 */ 36 public $eeoText; 37 /** 38 * @var string 39 */ 40 public $externalId; 41 /** 42 * @var string 43 */ 44 public $headquartersAddress; 45 /** 46 * @var bool 47 */ 48 public $hiringAgency; 49 /** 50 * @var string 51 */ 52 public $imageUri; 53 /** 54 * @var string[] 55 */ 56 public $keywordSearchableJobCustomAttributes; 57 /** 58 * @var string 59 */ 60 public $name; 61 /** 62 * @var string 63 */ 64 public $size; 65 /** 66 * @var bool 67 */ 68 public $suspended; 69 /** 70 * @var string 71 */ 72 public $websiteUri; 73 74 /** 75 * @param string 76 */ 77 public function setCareerSiteUri($careerSiteUri) 78 { 79 $this->careerSiteUri = $careerSiteUri; 80 } 81 /** 82 * @return string 83 */ 84 public function getCareerSiteUri() 85 { 86 return $this->careerSiteUri; 87 } 88 /** 89 * @param CompanyDerivedInfo 90 */ 91 public function setDerivedInfo(CompanyDerivedInfo $derivedInfo) 92 { 93 $this->derivedInfo = $derivedInfo; 94 } 95 /** 96 * @return CompanyDerivedInfo 97 */ 98 public function getDerivedInfo() 99 { 100 return $this->derivedInfo; 101 } 102 /** 103 * @param string 104 */ 105 public function setDisplayName($displayName) 106 { 107 $this->displayName = $displayName; 108 } 109 /** 110 * @return string 111 */ 112 public function getDisplayName() 113 { 114 return $this->displayName; 115 } 116 /** 117 * @param string 118 */ 119 public function setEeoText($eeoText) 120 { 121 $this->eeoText = $eeoText; 122 } 123 /** 124 * @return string 125 */ 126 public function getEeoText() 127 { 128 return $this->eeoText; 129 } 130 /** 131 * @param string 132 */ 133 public function setExternalId($externalId) 134 { 135 $this->externalId = $externalId; 136 } 137 /** 138 * @return string 139 */ 140 public function getExternalId() 141 { 142 return $this->externalId; 143 } 144 /** 145 * @param string 146 */ 147 public function setHeadquartersAddress($headquartersAddress) 148 { 149 $this->headquartersAddress = $headquartersAddress; 150 } 151 /** 152 * @return string 153 */ 154 public function getHeadquartersAddress() 155 { 156 return $this->headquartersAddress; 157 } 158 /** 159 * @param bool 160 */ 161 public function setHiringAgency($hiringAgency) 162 { 163 $this->hiringAgency = $hiringAgency; 164 } 165 /** 166 * @return bool 167 */ 168 public function getHiringAgency() 169 { 170 return $this->hiringAgency; 171 } 172 /** 173 * @param string 174 */ 175 public function setImageUri($imageUri) 176 { 177 $this->imageUri = $imageUri; 178 } 179 /** 180 * @return string 181 */ 182 public function getImageUri() 183 { 184 return $this->imageUri; 185 } 186 /** 187 * @param string[] 188 */ 189 public function setKeywordSearchableJobCustomAttributes($keywordSearchableJobCustomAttributes) 190 { 191 $this->keywordSearchableJobCustomAttributes = $keywordSearchableJobCustomAttributes; 192 } 193 /** 194 * @return string[] 195 */ 196 public function getKeywordSearchableJobCustomAttributes() 197 { 198 return $this->keywordSearchableJobCustomAttributes; 199 } 200 /** 201 * @param string 202 */ 203 public function setName($name) 204 { 205 $this->name = $name; 206 } 207 /** 208 * @return string 209 */ 210 public function getName() 211 { 212 return $this->name; 213 } 214 /** 215 * @param string 216 */ 217 public function setSize($size) 218 { 219 $this->size = $size; 220 } 221 /** 222 * @return string 223 */ 224 public function getSize() 225 { 226 return $this->size; 227 } 228 /** 229 * @param bool 230 */ 231 public function setSuspended($suspended) 232 { 233 $this->suspended = $suspended; 234 } 235 /** 236 * @return bool 237 */ 238 public function getSuspended() 239 { 240 return $this->suspended; 241 } 242 /** 243 * @param string 244 */ 245 public function setWebsiteUri($websiteUri) 246 { 247 $this->websiteUri = $websiteUri; 248 } 249 /** 250 * @return string 251 */ 252 public function getWebsiteUri() 253 { 254 return $this->websiteUri; 255 } 256} 257 258// Adding a class alias for backwards compatibility with the previous class name. 259class_alias(Company::class, 'Google_Service_CloudTalentSolution_Company'); 260