Source for file DisputeList.php
Documentation is available at DisputeList.php
* Model for a list of eBay disputes
* @author Stephan Schmidt <schst@php.net>
private $disputes = array ();
* create a new list of disputes
* @param array return value from GetUserDisputes
* @param Services_Ebay_Session
if (isset ($props['DisputeArray'])) {
$disputes = $props['DisputeArray'];
unset ($props['DisputeArray']);
if (isset ($disputes['Dispute'][0 ])) {
$this->disputes = $disputes['Dispute'];
$this->disputes = array ($disputes['Dispute']);
* iterate through the disputes
$it = new ArrayObject ($this->disputes);
Documentation generated on Mon, 11 Mar 2019 15:49:46 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|