Exemplo n.º 1
0
 /**
  * @param string $paymentId
  * @param anonymous63 $userId1
  * @param anonymous64 $userId2
  * @param string $paymentAccount
  * @param anonymous65 $paymentTx1
  * @param anonymous66 $paymentTx2
  * @param AmountType $maxBruttoAmount
  * @param AmountType $minBruttoAmount
  * @access public
  */
 public function __construct($paymentId, $userId1, $userId2, $paymentAccount, $paymentTx1, $paymentTx2, $maxBruttoAmount, $minBruttoAmount)
 {
     parent::__construct($paymentId);
     $this->userId1 = $userId1;
     $this->userId2 = $userId2;
     $this->paymentAccount = $paymentAccount;
     $this->paymentTx1 = $paymentTx1;
     $this->paymentTx2 = $paymentTx2;
     $this->maxBruttoAmount = $maxBruttoAmount;
     $this->minBruttoAmount = $minBruttoAmount;
 }
Exemplo n.º 2
0
 /**
  * @param string $paymentId
  * @param string $blz
  * @access public
  */
 public function __construct($paymentId, $blz)
 {
     parent::__construct($paymentId);
     $this->blz = $blz;
 }
Exemplo n.º 3
0
 /**
  * @param string $paymentId
  * @param string $payPalBillingAgreementId
  * @access public
  */
 public function __construct($paymentId, $payPalBillingAgreementId)
 {
     parent::__construct($paymentId);
     $this->payPalBillingAgreementId = $payPalBillingAgreementId;
 }
Exemplo n.º 4
0
 /**
  * @param string $paymentId
  * @access public
  */
 public function __construct($paymentId)
 {
     parent::__construct($paymentId);
 }