Mollie_API_Object_Payment::getPaymentUrl PHP Method

getPaymentUrl() public method

Get the payment URL where the customer can complete the payment.
public getPaymentUrl ( ) : string | null
return string | null
    public function getPaymentUrl()
    {
        if (empty($this->links->paymentUrl)) {
            return NULL;
        }
        return $this->links->paymentUrl;
    }