PayPal\Api\Payee::getMerchantId PHP Method

getMerchantId() public method

Encrypted PayPal account identifier for the Payee.
public getMerchantId ( ) : string
return string
    public function getMerchantId()
    {
        return $this->merchant_id;
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * @depends testSerializationDeserialization
  * @param Payee $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getEmail(), "TestSample");
     $this->assertEquals($obj->getMerchantId(), "TestSample");
     $this->assertEquals($obj->getFirstName(), "TestSample");
     $this->assertEquals($obj->getLastName(), "TestSample");
     $this->assertEquals($obj->getAccountNumber(), "TestSample");
     $this->assertEquals($obj->getPhone(), PhoneTest::getObject());
 }
All Usage Examples Of PayPal\Api\Payee::getMerchantId