PayPal\Api\Error::getFmfDetails PHP Method

getFmfDetails() public method

Fraud filter details. Only supported when the payment_method is set to credit_card
Deprecation: Not publicly available
public getFmfDetails ( ) : FmfDetails
return FmfDetails
    public function getFmfDetails()
    {
        return $this->fmf_details;
    }

Usage Example

Example #1
0
 /**
  * @depends testSerializationDeserialization
  * @param Error $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getName(), "TestSample");
     $this->assertEquals($obj->getPurchaseUnitReferenceId(), "TestSample");
     $this->assertEquals($obj->getMessage(), "TestSample");
     $this->assertEquals($obj->getCode(), "TestSample");
     $this->assertEquals($obj->getDetails(), ErrorDetailsTest::getObject());
     $this->assertEquals($obj->getProcessorResponse(), ProcessorResponseTest::getObject());
     $this->assertEquals($obj->getFmfDetails(), FmfDetailsTest::getObject());
     $this->assertEquals($obj->getInformationLink(), "TestSample");
     $this->assertEquals($obj->getDebugId(), "TestSample");
     $this->assertEquals($obj->getLinks(), LinksTest::getObject());
 }