PayPal\Api\FundingDetail::getPaymentDebitDate PHP Method

getPaymentDebitDate() public method

Date when funds will be debited from the payer's account
public getPaymentDebitDate ( ) : string
return string
    public function getPaymentDebitDate()
    {
        return $this->payment_debit_date;
    }

Usage Example

Example #1
0
 /**
  * @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");
 }