Esempio n. 1
0
 public function __construct($apiLoginID, $apiKey, $orderID, $cartItems, $returnedDate)
 {
     $this->setOrderID($orderID);
     $this->setCartItems($cartItems);
     $this->setReturnedDate($returnedDate);
     parent::__construct($apiLoginID, $apiKey);
 }
Esempio n. 2
0
 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);
 }
Esempio n. 3
0
 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);
 }
Esempio n. 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);
 }
 public function __construct($apiLoginID, $apiKey, $customerID, ExemptionCertificate $exemptCert)
 {
     $this->setCustomerID($customerID);
     $this->setExemptCert($exemptCert);
     parent::__construct($apiLoginID, $apiKey);
 }
Esempio n. 6
0
 public function __construct($apiLoginID, $apiKey, $orderID)
 {
     $this->orderID = $orderID;
     parent::__construct($apiLoginID, $apiKey);
 }
Esempio n. 7
0
 public function __construct($apiLoginID, $apiKey)
 {
     parent::__construct($apiLoginID, $apiKey);
 }
Esempio n. 8
0
 public function __construct($apiLoginID, $apiKey, $ticGroup)
 {
     $this->ticGroup = $ticGroup;
     parent::__construct($apiLoginID, $apiKey);
 }
 public function __construct($apiLoginID, $apiKey, $customerID)
 {
     $this->setCustomerID($customerID);
     parent::__construct($apiLoginID, $apiKey);
 }
 public function __construct($apiLoginID, $apiKey, $certificateID)
 {
     $this->setCertificateID($certificateID);
     parent::__construct($apiLoginID, $apiKey);
 }