コード例 #1
0
ファイル: Returned.php プロジェクト: vmdoh/php-taxcloud
 public function __construct($apiLoginID, $apiKey, $orderID, $cartItems, $returnedDate)
 {
     $this->setOrderID($orderID);
     $this->setCartItems($cartItems);
     $this->setReturnedDate($returnedDate);
     parent::__construct($apiLoginID, $apiKey);
 }
コード例 #2
0
ファイル: Authorized.php プロジェクト: vmdoh/php-taxcloud
 public function __construct($apiLoginId, $apiKey, $customerId, $cartId, $cartItems, $orderId, $dateAuthorized)
 {
     $this->customerID = $customerId;
     $this->cartID = $cartId;
     $this->orderID = $orderId;
     $this->dateAuthorized = $dateAuthorized;
     parent::__construct($apiLoginId, $apiKey);
 }
コード例 #3
0
ファイル: Lookup.php プロジェクト: vmdoh/php-taxcloud
 public function __construct($apiLoginID, $apiKey, $customerID, $cartID, $cartItems, Address $origin, Address $destination, $deliveredBySeller = FALSE)
 {
     $this->setCustomerID($customerID);
     $this->setCartID($cartID);
     $this->setCartItems($cartItems);
     $this->setOrigin($origin);
     $this->setDestination($destination);
     $this->setDeliveredBySeller($deliveredBySeller);
     parent::__construct($apiLoginID, $apiKey);
 }
コード例 #4
0
 public function __construct($apiLoginID, $apiKey, $customerID, $cartID, $cartItems, $origin, $destination, $deliveredBySeller, $exemptCert, $useDate)
 {
     $this->setCustomerID($customerID);
     $this->setCartItems($cartItems);
     $this->setOrigin($origin);
     $this->setDestination($destination);
     $this->setDeliveredBySeller($deliveredBySeller);
     $this->setExemptCert($exemptCert);
     $this->setUseDate($useDate);
     parent::__construct($apiLoginID, $apiKey);
 }
コード例 #5
0
 public function __construct($apiLoginID, $apiKey, $customerID, ExemptionCertificate $exemptCert)
 {
     $this->setCustomerID($customerID);
     $this->setExemptCert($exemptCert);
     parent::__construct($apiLoginID, $apiKey);
 }
コード例 #6
0
ファイル: Captured.php プロジェクト: vmdoh/php-taxcloud
 public function __construct($apiLoginID, $apiKey, $orderID)
 {
     $this->orderID = $orderID;
     parent::__construct($apiLoginID, $apiKey);
 }
コード例 #7
0
ファイル: GetTICGroups.php プロジェクト: vmdoh/php-taxcloud
 public function __construct($apiLoginID, $apiKey)
 {
     parent::__construct($apiLoginID, $apiKey);
 }
コード例 #8
0
ファイル: GetTICsByGroup.php プロジェクト: vmdoh/php-taxcloud
 public function __construct($apiLoginID, $apiKey, $ticGroup)
 {
     $this->ticGroup = $ticGroup;
     parent::__construct($apiLoginID, $apiKey);
 }
コード例 #9
0
 public function __construct($apiLoginID, $apiKey, $customerID)
 {
     $this->setCustomerID($customerID);
     parent::__construct($apiLoginID, $apiKey);
 }
コード例 #10
0
 public function __construct($apiLoginID, $apiKey, $certificateID)
 {
     $this->setCertificateID($certificateID);
     parent::__construct($apiLoginID, $apiKey);
 }