getRecurringFlag() public method

Indicator if this payment request is a recurring payment. Only supported when the payment_method is set to credit_card
Deprecation: Not publicly available
public getRecurringFlag ( ) : boolean
return boolean
 /**
  * @depends testSerializationDeserialization
  * @param PaymentOptions $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getAllowedPaymentMethod(), "TestSample");
     $this->assertEquals($obj->getRecurringFlag(), true);
     $this->assertEquals($obj->getSkipFmf(), true);
 }