PayPal\Api\FundingDetail::getPaymentHoldDate PHP Method

getPaymentHoldDate() public method

Deprecation: [DEPRECATED] Hold-off duration of the payment. payment_debit_date should be used instead.
public getPaymentHoldDate ( ) : string
return string
    public function getPaymentHoldDate()
    {
        return $this->payment_hold_date;
    }

Usage Example

コード例 #1
0
ファイル: FundingDetailTest.php プロジェクト: bontiv/intrateb
 /**
  * @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");
 }