PayPal\Api\PaymentOptions::getSkipFmf PHP Method

getSkipFmf() public method

Indicator if fraud management filters (fmf) should be skipped for this transaction. Only supported when the payment_method is set to credit_card
Deprecation: Not publicly available
public getSkipFmf ( ) : boolean
return boolean
    public function getSkipFmf()
    {
        return $this->skip_fmf;
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * @depends testSerializationDeserialization
  * @param PaymentOptions $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getAllowedPaymentMethod(), "TestSample");
     $this->assertEquals($obj->getRecurringFlag(), true);
     $this->assertEquals($obj->getSkipFmf(), true);
 }