コード例 #1
0
 /**
  * Constructs and initialize an directory response message
  */
 public function __construct($merchant, $customer, $transaction)
 {
     parent::__construct(self::NAME);
     $this->merchant = $merchant;
     $this->customer = $customer;
     $this->transaction = $transaction;
 }
コード例 #2
0
 /**
  * Constructs and initialize an directory response message
  */
 public function __construct($merchant, $customer, $transaction, $gateway_info = null)
 {
     parent::__construct(self::NAME);
     $this->merchant = $merchant;
     $this->customer = $customer;
     $this->transaction = $transaction;
     $this->gateway_info = $gateway_info;
 }
コード例 #3
0
 /**
  * Constructs and initialize an directory response message
  */
 public function __construct($merchant)
 {
     parent::__construct(self::NAME);
     $this->merchant = $merchant;
 }
コード例 #4
0
 /**
  * Constructs and initialize an directory response message
  */
 public function __construct($merchant, $customer)
 {
     parent::__construct(self::NAME);
     $this->merchant = $merchant;
     $this->customer = $customer;
 }
コード例 #5
0
 /**
  * Constructs and initialize an status message
  */
 public function __construct($merchant, $transaction_id)
 {
     parent::__construct(self::NAME);
     $this->merchant = $merchant;
     $this->transaction_id = $transaction_id;
 }