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());
 }