PayPal\Api\AlternatePayment::getExternalCustomerId PHP 메소드

getExternalCustomerId() 공개 메소드

The unique identifier of the payer
public getExternalCustomerId ( ) : string
리턴 string
    public function getExternalCustomerId()
    {
        return $this->external_customer_id;
    }

Usage Example

예제 #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");
 }