PayPal\Api\AlternatePayment::getAlternatePaymentAccountId PHP Method

getAlternatePaymentAccountId() public method

The unique identifier of the alternate payment account.
    public function getAlternatePaymentAccountId()
    {
        return $this->alternate_payment_account_id;
    }

Usage Example

Exemplo n.º 1
0
 /**
  * @depends testSerializationDeserialization
  * @param AlternatePayment $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getAlternatePaymentAccountId(), "TestSample");
     $this->assertEquals($obj->getExternalCustomerId(), "TestSample");
     $this->assertEquals($obj->getAlternatePaymentProviderId(), "TestSample");
 }