/**
  * this method checks, whether all mandatory properties are set.
  * @return true if all fields are valid, otherwise returns false
  */
 function checkMandatory()
 {
     if (IdealRequest::checkMandatory()) {
         return true;
     } else {
         return false;
     }
 }
Beispiel #2
0
 /**
  * @returns a readable representation of the Class
  */
 function toString()
 {
     return IdealRequest::toString() . " AcquirerTrxRequest: issuerID = " . $this->issuerID . " merchantReturnURL = " . $this->merchantReturnURL . " purchaseID = " . $this->purchaseID . " amount = " . $this->amount . " currency = " . $this->currency . " expirationPeriod = " . $this->expirationPeriod . " language = " . $this->language . " entranceCode = " . $this->entranceCode . " description = " . $this->description;
 }
 /**
  * @returns a readable representation of the Class
  */
 function toString()
 {
     return IdealRequest::toString() . " AcquirerStatusRequest: transactionID = " . $this->transactionID;
 }