PayPal\Api\Presentation::getReturnUrlLabel PHP Method

getReturnUrlLabel() public method

A label to use as hypertext for the return to merchant link.
public getReturnUrlLabel ( ) : string
return string
    public function getReturnUrlLabel()
    {
        return $this->return_url_label;
    }

Usage Example

 /**
  * @depends testSerializationDeserialization
  * @param Presentation $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getBrandName(), "TestSample");
     $this->assertEquals($obj->getLogoImage(), "TestSample");
     $this->assertEquals($obj->getLocaleCode(), "TestSample");
     $this->assertEquals($obj->getReturnUrlLabel(), "TestSample");
     $this->assertEquals($obj->getNoteToSellerLabel(), "TestSample");
 }