PayPal\Api\CurrencyConversion::getWebUrl PHP Метод

getWebUrl() публичный Метод

Base URL to web applications endpoint
Устаревший: Not publicly available
public getWebUrl ( ) : string
Результат string
    public function getWebUrl()
    {
        return $this->web_url;
    }

Usage Example

 public function testUrlValidationForWebUrlDeprecated()
 {
     $obj = new CurrencyConversion();
     $obj->setWebUrl(null);
     $this->assertNull($obj->getWebUrl());
 }