Commit a20191d4 authored by Tomek Jankowski's avatar Tomek Jankowski

Added filter for TRANSACTIONQUERY request

parent 180d27f4
<?php
/**
* PHP based wrapper for SecureTrading's new STPP protocol.
*
* This is the object that represents a filter.
*
*
* @version: 2.0.0
* @author: Tomek J
*/
namespace OUTRAGElib\Payment\STPP\Fragment;
class Filter extends FragmentAbstract
{
public function setOrderreference($val)
{
$this->options["orderreference"] = $val;
return $this;
}
public function setParenttransactionreference($val)
{
$this->options["parenttransactionreference"] = $val;
return $this;
}
public function setRequesttypedescription($val)
{
$this->options["requesttypedescription"] = $val;
return $this;
}
public function setTransactionreference($val)
{
$this->options["transactionreference"] = $val;
return $this;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment