PayPal\Api\Patch::getValue PHP Метод

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

New value to apply based on the operation.
public getValue ( ) : mixed
Результат mixed
    public function getValue()
    {
        return $this->value;
    }

Usage Example

Пример #1
0
 /**
  * @depends testSerializationDeserialization
  * @param Patch $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getOp(), "TestSample");
     $this->assertEquals($obj->getPath(), "TestSample");
     $this->assertEquals($obj->getValue(), "TestSampleObject");
     $this->assertEquals($obj->getFrom(), "TestSample");
 }