We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 812385c commit 16c7d9eCopy full SHA for 16c7d9e
src/Message/SecureXMLResponse.php
@@ -71,4 +71,15 @@ public function getTransactionReference()
71
? (string) $this->data->Payment->TxnList->Txn->txnID
72
: null;
73
}
74
+
75
+ /**
76
+ * @return string|null Settlement date when the funds will be settled into the
77
+ * merchants account.
78
+ */
79
+ public function getSettlementDate()
80
+ {
81
+ return $this->hasTransaction()
82
+ ? (string) $this->data->Payment->TxnList->Txn->settlementDate
83
+ : null;
84
+ }
85
0 commit comments