PayPal\Api\FmfDetails::getDescription PHP Method

getDescription() public method

Description of the filter.
public getDescription ( ) : string
return string
    public function getDescription()
    {
        return $this->description;
    }

Usage Example

Example #1
0
 /**
  * @depends testSerializationDeserialization
  * @param FmfDetails $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getFilterType(), "TestSample");
     $this->assertEquals($obj->getFilterId(), "TestSample");
     $this->assertEquals($obj->getName(), "TestSample");
     $this->assertEquals($obj->getDescription(), "TestSample");
 }