Example #1
0
 public function __construct()
 {
     parent::__construct();
     $this->setMethod("POST");
     /** Set defaults for currently ignored fields */
     $this->curency = NULL;
     $this->order = NULL;
     $this->customer = NULL;
     $this->originalTxnNumber = NULL;
     $this->fraudScreeningRequest = NULL;
 }
 public function __construct($resultKey = NULL)
 {
     parent::__construct();
     $this->setMethod("GET");
     $this->setResultKey($resultKey);
 }
Example #3
0
 public function __construct()
 {
     parent::__construct();
     $this->setMethod("POST");
 }
Example #4
0
 public function __construct($dvtoken = NULL)
 {
     parent::__construct();
     $this->setMethod("DELETE");
     $this->dvtoken = $dvtoken;
 }
 public function __construct($txnNumber = NULL)
 {
     parent::__construct();
     $this->setMethod("POST");
     $this->txnNumber = $txnNumber;
 }