Commit 819f569b authored by Tomek Jankowski's avatar Tomek Jankowski

update to support recurring transacitons

parent c5bbed9b
......@@ -35,6 +35,32 @@ class Operation extends FragmentAbstract
return $this;
}
/**
* Set the subscriptionnumber.
*/
public function setSubscriptionNumber($number)
{
$this->options["subscriptionnumber"] = $number;
return $this;
}
/**
* Set the subscriptiontype.
*/
public function setSubscriptionType($type)
{
$this->options["subscriptiontype"] = $type;
return $this;
}
/**
* Set the credentialsonfile 1 - store, 2 - use stored, not set - do not store
*/
public function setCredentialsOnFile($number)
{
$this->options["credentialsonfile"] = $number;
return $this;
}
/**
* Set the site reference that is being used in this operation.
......
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