PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
omnipay
/
common
/
src
/
Common
/
Message
<?php namespace Omnipay\Common\Message; /** * Incoming notification */ interface NotificationInterface extends MessageInterface { const STATUS_COMPLETED = 'completed'; const STATUS_PENDING = 'pending'; const STATUS_FAILED = 'failed'; /** * Gateway Reference * * @return string A reference provided by the gateway to represent this transaction */ public function getTransactionReference(); /** * Was the transaction successful? * * @return string Transaction status, one of {@link NotificationInterface::STATUS_COMPLETED}, * {@link NotificationInterface::STATUS_PENDING}, or {@link NotificationInterface::STATUS_FAILED}. */ public function getTransactionStatus(); /** * Response Message * * @return string A response message from the payment gateway */ public function getMessage(); }
[+]
..
[-] FetchIssuersResponseInterface.php
[edit]
[-] NotificationInterface.php
[edit]
[-] ResponseInterface.php
[edit]
[-] RequestInterface.php
[edit]
[-] AbstractRequest.php
[edit]
[-] FetchPaymentMethodsResponseInterface.php
[edit]
[-] MessageInterface.php
[edit]
[-] AbstractResponse.php
[edit]
[-] RedirectResponseInterface.php
[edit]