Your IP : 216.73.216.182


Current Path : /var/www/html/libraries/omnipay/vendor/omnipay/securepay/src/Message/
Upload File :
Current File : /var/www/html/libraries/omnipay/vendor/omnipay/securepay/src/Message/SecureXMLPurchaseRequest.php

<?php

namespace Omnipay\SecurePay\Message;

/**
 * SecurePay SecureXML Purchase Request.
 */
class SecureXMLPurchaseRequest extends SecureXMLAbstractRequest
{
    protected $txnType = 0; // Standard Payment, as per Appendix A of documentation.
    protected $requiredFields = array('amount', 'card', 'transactionId');

    public function getData()
    {
        return $this->getBasePaymentXMLWithCard();
    }
}