| Server IP : 87.98.231.4 / Your IP : 216.73.217.178 [ Web Server : Apache System : Linux webm007.cluster103.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 : grupmartgn ( 667608) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/grupmartgn/elanartcrafts/plugins/vmcalculation/avalara/classes/ |
Upload File : |
<?php
/**
* ApplyPaymentRequest.class.php
*/
/**
* ApplyPaymentRequest.class.php
*
* @author Avalara
* @copyright � 2004 - 2011 Avalara, Inc. All rights reserved.
* @package Tax
*/
class ApplyPaymentRequest
{
private $CompanyCode; //string
private $DocType; //DocumentType
private $DocId; //string
private $DocCode; //string
private $PaymentDate; //date
public function __construct()
{
$this->DocType=DocumentType::$SalesOrder;
}
/**
* Sets the companyCode value for this ApplyPaymentRequest.
*
* @param string $value
*/
public function setCompanyCode($value){ $this->CompanyCode=$value;} //string
/**
* Sets the docCode value for this ApplyPaymentRequest.
*
* @param DocumentType $value
*/
public function setDocType($value){ $this->DocType=$value;} //DocumentType
/**
* Sets the docType value for this ApplyPaymentRequest.
*
* @param string $value
*/
public function setDocId($value){ $this->DocId=$value;} //string
/**
* Sets the docType value for this ApplyPaymentRequest.
*
* @param string $value
*/
public function setDocCode($value){ $this->DocCode=$value;} //string
/**
* PaymentDate should be in the format yyyy-mm-dd
*
* @param date $value
*/
public function setPaymentDate($value){ $this->PaymentDate=$value;} //date
/**
* Gets the companyCode value for this ApplyPaymentRequest.
*
* @return string
*/
public function getCompanyCode(){ return $this->CompanyCode;} //string
/**
* Gets the docType value for this ApplyPaymentRequest.
*
* @return DocumentType
*/
public function getDocType(){ return $this->DocType;} //DocumentType
/**
* Gets the docId value for this ApplyPaymentRequest.
*
* @return unknown
*/
public function getDocId(){ return $this->DocId;} //string
/**
* Gets the docCode value for this ApplyPaymentRequest.
*
* @return unknown
*/
public function getDocCode(){ return $this->DocCode;} //string
/**
* PaymentDate should be in the format yyyy-mm-dd
*
* @param date $value
*/
public function getPaymentDate(){ return $this->PaymentDate;} //date
}
?>