<?php

/**
 * example that adds a response to a dispute
 *
 * $Id$
 *
 * @package     Services_Ebay
 * @subpackage  Examples
 * @author      Stephan Schmidt
 */
error_reporting(E_ALL);
require_once '../vendor/autoload.php';
require_once 'config.php';
$session = \Services\Ebay::getSession($devId, $appId, $certId);
$session->setToken($token);
$ebay = new \Services\Ebay($session);
$result = $dispute = $ebay->AddDisputeResponse('997', 'SellerComment', 'This is only a test.');
if ($result === true) {
    echo 'Added response';
} else {
    echo 'An error occured';
}