Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/amzn/amazon-pay-sdk-php/AmazonPay/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/amzn/amazon-pay-sdk-php/AmazonPay/ResponseInterface.php

<?php
namespace AmazonPay;

/* Interface for ResponseParser.php */

interface ResponseInterface
{   
    /* Returns the XML portion of the response */
    
    public function toXml();
    
    /* toJson  - converts XML into Json
     * @param $response [XML]
     */
    
    public function toJson();
    
    /* toArray  - converts XML into associative array
     * @param $this->_response [XML]
     */
    
    public function toArray();
    
    /* Get the status of the BillingAgreement */
    
    public function getBillingAgreementDetailsStatus($response);

    /* Get the status of the OrderReference */
    
    public function getOrderReferenceDetailsStatus($response);
}