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

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

Optional note associated with the refund.
public getNote ( ) : string
Результат string
    public function getNote()
    {
        return $this->note;
    }

Usage Example

Пример #1
0
 /**
  * @depends testSerializationDeserialization
  * @param RefundDetail $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getType(), "TestSample");
     $this->assertEquals($obj->getDate(), "TestSample");
     $this->assertEquals($obj->getNote(), "TestSample");
     $this->assertEquals($obj->getAmount(), CurrencyTest::getObject());
 }
All Usage Examples Of PayPal\Api\RefundDetail::getNote