Mollie_API_Object_Payment::getPaymentUrl PHP 메소드

getPaymentUrl() 공개 메소드

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