PayPal\Api\FundingDetail::getPaymentHoldDate PHP 메소드

getPaymentHoldDate() 공개 메소드

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

Usage 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");
 }