123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- <?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_Partners_CompanyRelation extends Google_Collection
- {
- protected $collection_key = 'specializationStatus';
- public $address;
- public $badgeTier;
- public $companyAdmin;
- public $companyId;
- public $creationTime;
- public $internalCompanyId;
- public $isPending;
- public $logoUrl;
- public $managerAccount;
- public $name;
- public $phoneNumber;
- protected $primaryAddressType = 'Google_Service_Partners_Location';
- protected $primaryAddressDataType = '';
- public $primaryCountryCode;
- public $primaryLanguageCode;
- public $resolvedTimestamp;
- public $segment;
- protected $specializationStatusType = 'Google_Service_Partners_SpecializationStatus';
- protected $specializationStatusDataType = 'array';
- public $state;
- public $website;
-
- public function setAddress($address)
- {
- $this->address = $address;
- }
- public function getAddress()
- {
- return $this->address;
- }
- public function setBadgeTier($badgeTier)
- {
- $this->badgeTier = $badgeTier;
- }
- public function getBadgeTier()
- {
- return $this->badgeTier;
- }
- public function setCompanyAdmin($companyAdmin)
- {
- $this->companyAdmin = $companyAdmin;
- }
- public function getCompanyAdmin()
- {
- return $this->companyAdmin;
- }
- public function setCompanyId($companyId)
- {
- $this->companyId = $companyId;
- }
- public function getCompanyId()
- {
- return $this->companyId;
- }
- public function setCreationTime($creationTime)
- {
- $this->creationTime = $creationTime;
- }
- public function getCreationTime()
- {
- return $this->creationTime;
- }
- public function setInternalCompanyId($internalCompanyId)
- {
- $this->internalCompanyId = $internalCompanyId;
- }
- public function getInternalCompanyId()
- {
- return $this->internalCompanyId;
- }
- public function setIsPending($isPending)
- {
- $this->isPending = $isPending;
- }
- public function getIsPending()
- {
- return $this->isPending;
- }
- public function setLogoUrl($logoUrl)
- {
- $this->logoUrl = $logoUrl;
- }
- public function getLogoUrl()
- {
- return $this->logoUrl;
- }
- public function setManagerAccount($managerAccount)
- {
- $this->managerAccount = $managerAccount;
- }
- public function getManagerAccount()
- {
- return $this->managerAccount;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPhoneNumber($phoneNumber)
- {
- $this->phoneNumber = $phoneNumber;
- }
- public function getPhoneNumber()
- {
- return $this->phoneNumber;
- }
- /**
- * @param Google_Service_Partners_Location
- */
- public function setPrimaryAddress(Google_Service_Partners_Location $primaryAddress)
- {
- $this->primaryAddress = $primaryAddress;
- }
- /**
- * @return Google_Service_Partners_Location
- */
- public function getPrimaryAddress()
- {
- return $this->primaryAddress;
- }
- public function setPrimaryCountryCode($primaryCountryCode)
- {
- $this->primaryCountryCode = $primaryCountryCode;
- }
- public function getPrimaryCountryCode()
- {
- return $this->primaryCountryCode;
- }
- public function setPrimaryLanguageCode($primaryLanguageCode)
- {
- $this->primaryLanguageCode = $primaryLanguageCode;
- }
- public function getPrimaryLanguageCode()
- {
- return $this->primaryLanguageCode;
- }
- public function setResolvedTimestamp($resolvedTimestamp)
- {
- $this->resolvedTimestamp = $resolvedTimestamp;
- }
- public function getResolvedTimestamp()
- {
- return $this->resolvedTimestamp;
- }
- public function setSegment($segment)
- {
- $this->segment = $segment;
- }
- public function getSegment()
- {
- return $this->segment;
- }
- /**
- * @param Google_Service_Partners_SpecializationStatus
- */
- public function setSpecializationStatus($specializationStatus)
- {
- $this->specializationStatus = $specializationStatus;
- }
- /**
- * @return Google_Service_Partners_SpecializationStatus
- */
- public function getSpecializationStatus()
- {
- return $this->specializationStatus;
- }
- public function setState($state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
- public function setWebsite($website)
- {
- $this->website = $website;
- }
- public function getWebsite()
- {
- return $this->website;
- }
- }
|