PayPal\PayPalAPI\RefundTransactionReq::toXMLString PHP Method

toXMLString() public method

public toXMLString ( )
    public function toXMLString()
    {
        $str = '';
        $str .= '<ns:RefundTransactionReq>';
        if ($this->RefundTransactionRequest != null) {
            $str .= '<ns:RefundTransactionRequest>';
            $str .= $this->RefundTransactionRequest->toXMLString();
            $str .= '</ns:RefundTransactionRequest>';
        }
        $str .= '</ns:RefundTransactionReq>';
        return $str;
    }
RefundTransactionReq