PayPal\Api\Notification::getNote PHP Метод

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

Note to the payer.
public getNote ( ) : string
Результат string
    public function getNote()
    {
        return $this->note;
    }

Usage Example

Пример #1
0
 /**
  * @depends testSerializationDeserialization
  * @param Notification $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getSubject(), "TestSample");
     $this->assertEquals($obj->getNote(), "TestSample");
     $this->assertEquals($obj->getSendToMerchant(), true);
 }