PayPal\PayPalAPI\BillAgreementUpdateReq::toXMLString PHP 메소드

toXMLString() 공개 메소드

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