getAccountNumber() public method

Account Number representing the potential payer
Deprecation: Not publicly available
public getAccountNumber ( ) : string
return string
 /**
  * @depends testSerializationDeserialization
  * @param PotentialPayerInfo $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getEmail(), "TestSample");
     $this->assertEquals($obj->getExternalRememberMeId(), "TestSample");
     $this->assertEquals($obj->getAccountNumber(), "TestSample");
     $this->assertEquals($obj->getBillingAddress(), AddressTest::getObject());
 }