PayPal\Api\Presentation::getNoteToSellerLabel PHP Method

getNoteToSellerLabel() public method

A label to use as the title for the note to seller field. Used only when allow_note is 1.
public getNoteToSellerLabel ( ) : string
return string
    public function getNoteToSellerLabel()
    {
        return $this->note_to_seller_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");
 }