Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/www/plugins/vmcalculation/avalara/classes/ |
Upload File : |
<?php
if (!defined('_JEXEC'))
die('Direct Access to ' . basename(__FILE__) . ' is not allowed.');
/**
* InitiateExemptCertRequest.class.php
*/
/**
* Data to pass to {@link AvaCertServiceSoap#InitiateExemptCert}.
*
* @see InitiateExemptCertResult
*
* @author Avalara
* @copyright � 2004 - 2011 Avalara, Inc. All rights reserved.
* @package AvaCert
*/
class InitiateExemptCertRequest {
private $Customer; // Customer
private $LocationCode; // string
private $CustomMessage; // string
private $CommunicationMode; // CommunicationMode
private $Type; // RequestType
public function __construct()
{
$this->CommunicationMode = CommunicationMode::$Email;
$this->Type=RequestType::$STANDARD;
}
public function setCustomer($value){$this->Customer=$value;} // Customer
public function getCustomer(){return $this->Customer;} // Customer
public function setLocationCode($value){$this->LocationCode=$value;} // string
public function getLocationCode(){return $this->LocationCode;} // string
public function setCustomMessage($value){$this->CustomMessage=$value;} // string
public function getCustomMessage(){return $this->CustomMessage;} // string
public function setCommunicationMode($value){$this->CommunicationMode=$value;} // CommunicationMode
public function getCommunicationMode(){return $this->CommunicationMode;} // CommunicationMode
public function setType($value){$this->Type=$value;} // RequestType
public function getType(){return $this->Type;} // RequestType
}
?>