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
ファイル: 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");
 }