PayPal\Api\ExternalFunding::getFundingAccountId PHP 메소드

getFundingAccountId() 공개 메소드

Encrypted PayPal Account identifier for the funding account
public getFundingAccountId ( ) : string
리턴 string
    public function getFundingAccountId()
    {
        return $this->funding_account_id;
    }

Usage Example

예제 #1
0
 /**
  * @depends testSerializationDeserialization
  * @param ExternalFunding $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getReferenceId(), "TestSample");
     $this->assertEquals($obj->getCode(), "TestSample");
     $this->assertEquals($obj->getFundingAccountId(), "TestSample");
     $this->assertEquals($obj->getDisplayText(), "TestSample");
     $this->assertEquals($obj->getAmount(), AmountTest::getObject());
 }