PayPal\Api\FundingDetail::getProcessingType PHP Méthode

getProcessingType() public méthode

Processing type of the payment card
public getProcessingType ( ) : string
Résultat string
    public function getProcessingType()
    {
        return $this->processing_type;
    }

Usage Example

 /**
  * @depends testSerializationDeserialization
  * @param FundingDetail $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getClearingTime(), "TestSample");
     $this->assertEquals($obj->getPaymentHoldDate(), "TestSample");
     $this->assertEquals($obj->getPaymentDebitDate(), "TestSample");
     $this->assertEquals($obj->getProcessingType(), "TestSample");
 }