PayPal\Api\FmfDetails::getName PHP Метод

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

Name of the filter
public getName ( ) : string
Результат string
    public function getName()
    {
        return $this->name;
    }

Usage 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");
 }