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\MyBusinessVerifications; 19 20class VoiceOfMerchantState extends \Google\Model 21{ 22 protected $complyWithGuidelinesType = ComplyWithGuidelines::class; 23 protected $complyWithGuidelinesDataType = ''; 24 /** 25 * @var bool 26 */ 27 public $hasBusinessAuthority; 28 /** 29 * @var bool 30 */ 31 public $hasVoiceOfMerchant; 32 protected $resolveOwnershipConflictType = ResolveOwnershipConflict::class; 33 protected $resolveOwnershipConflictDataType = ''; 34 protected $verifyType = Verify::class; 35 protected $verifyDataType = ''; 36 protected $waitForVoiceOfMerchantType = WaitForVoiceOfMerchant::class; 37 protected $waitForVoiceOfMerchantDataType = ''; 38 39 /** 40 * @param ComplyWithGuidelines 41 */ 42 public function setComplyWithGuidelines(ComplyWithGuidelines $complyWithGuidelines) 43 { 44 $this->complyWithGuidelines = $complyWithGuidelines; 45 } 46 /** 47 * @return ComplyWithGuidelines 48 */ 49 public function getComplyWithGuidelines() 50 { 51 return $this->complyWithGuidelines; 52 } 53 /** 54 * @param bool 55 */ 56 public function setHasBusinessAuthority($hasBusinessAuthority) 57 { 58 $this->hasBusinessAuthority = $hasBusinessAuthority; 59 } 60 /** 61 * @return bool 62 */ 63 public function getHasBusinessAuthority() 64 { 65 return $this->hasBusinessAuthority; 66 } 67 /** 68 * @param bool 69 */ 70 public function setHasVoiceOfMerchant($hasVoiceOfMerchant) 71 { 72 $this->hasVoiceOfMerchant = $hasVoiceOfMerchant; 73 } 74 /** 75 * @return bool 76 */ 77 public function getHasVoiceOfMerchant() 78 { 79 return $this->hasVoiceOfMerchant; 80 } 81 /** 82 * @param ResolveOwnershipConflict 83 */ 84 public function setResolveOwnershipConflict(ResolveOwnershipConflict $resolveOwnershipConflict) 85 { 86 $this->resolveOwnershipConflict = $resolveOwnershipConflict; 87 } 88 /** 89 * @return ResolveOwnershipConflict 90 */ 91 public function getResolveOwnershipConflict() 92 { 93 return $this->resolveOwnershipConflict; 94 } 95 /** 96 * @param Verify 97 */ 98 public function setVerify(Verify $verify) 99 { 100 $this->verify = $verify; 101 } 102 /** 103 * @return Verify 104 */ 105 public function getVerify() 106 { 107 return $this->verify; 108 } 109 /** 110 * @param WaitForVoiceOfMerchant 111 */ 112 public function setWaitForVoiceOfMerchant(WaitForVoiceOfMerchant $waitForVoiceOfMerchant) 113 { 114 $this->waitForVoiceOfMerchant = $waitForVoiceOfMerchant; 115 } 116 /** 117 * @return WaitForVoiceOfMerchant 118 */ 119 public function getWaitForVoiceOfMerchant() 120 { 121 return $this->waitForVoiceOfMerchant; 122 } 123} 124 125// Adding a class alias for backwards compatibility with the previous class name. 126class_alias(VoiceOfMerchantState::class, 'Google_Service_MyBusinessVerifications_VoiceOfMerchantState'); 127