PayPal\Api\FundingDetail::getClearingTime PHP Method

getClearingTime() public method

Expected clearing time
public getClearingTime ( ) : string
return string
    public function getClearingTime()
    {
        return $this->clearing_time;
    }

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