PayPal\Api\FlowConfig::getBankTxnPendingUrl PHP Method

getBankTxnPendingUrl() public method

The merchant site URL to display after a bank transfer payment. Valid for only the Giropay or bank transfer payment method in Germany.
public getBankTxnPendingUrl ( ) : string
return string
    public function getBankTxnPendingUrl()
    {
        return $this->bank_txn_pending_url;
    }

Usage Example

コード例 #1
0
 /**
  * @depends testSerializationDeserialization
  * @param FlowConfig $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getLandingPageType(), "TestSample");
     $this->assertEquals($obj->getBankTxnPendingUrl(), "http://www.google.com");
     $this->assertEquals($obj->getUserAction(), "TestSample");
     $this->assertEquals($obj->getReturnUriHttpMethod(), "TestSample");
 }