PayPal\Api\Presentation::getBrandName PHP Method

getBrandName() public method

A label that overrides the business name in the PayPal account on the PayPal pages. Character length and limitations: 127 single-byte alphanumeric characters.
public getBrandName ( ) : string
return string
    public function getBrandName()
    {
        return $this->brand_name;
    }

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");
 }
All Usage Examples Of PayPal\Api\Presentation::getBrandName