Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php
// autogenerated file 22.07.2011 09:27
// $Id: NotificationStatisticsType.php 4066 2011-11-03 08:13:59Z tiefland $
// $Log: $
//
//
require_once 'EbatNs_ComplexType.php';

/**
 * Summary information about notifications delivered, failed, errors, queued fora 
 * given application ID and time period. 
 *
 * @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/NotificationStatisticsType.html
 *
 */
class NotificationStatisticsType extends EbatNs_ComplexType
{
        /**
         * @var int
         */
        protected $DeliveredCount;
        /**
         * @var int
         */
        protected $QueuedNewCount;
        /**
         * @var int
         */
        protected $QueuedPendingCount;
        /**
         * @var int
         */
        protected $ExpiredCount;
        /**
         * @var int
         */
        protected $ErrorCount;

        /**
         * @return int
         */
        function getDeliveredCount()
        {
                return $this->DeliveredCount;
        }
        /**
         * @return void
         * @param int $value 
         */
        function setDeliveredCount($value)
        {
                $this->DeliveredCount = $value;
        }
        /**
         * @return int
         */
        function getQueuedNewCount()
        {
                return $this->QueuedNewCount;
        }
        /**
         * @return void
         * @param int $value 
         */
        function setQueuedNewCount($value)
        {
                $this->QueuedNewCount = $value;
        }
        /**
         * @return int
         */
        function getQueuedPendingCount()
        {
                return $this->QueuedPendingCount;
        }
        /**
         * @return void
         * @param int $value 
         */
        function setQueuedPendingCount($value)
        {
                $this->QueuedPendingCount = $value;
        }
        /**
         * @return int
         */
        function getExpiredCount()
        {
                return $this->ExpiredCount;
        }
        /**
         * @return void
         * @param int $value 
         */
        function setExpiredCount($value)
        {
                $this->ExpiredCount = $value;
        }
        /**
         * @return int
         */
        function getErrorCount()
        {
                return $this->ErrorCount;
        }
        /**
         * @return void
         * @param int $value 
         */
        function setErrorCount($value)
        {
                $this->ErrorCount = $value;
        }
        /**
         * @return 
         */
        function __construct()
        {
                parent::__construct('NotificationStatisticsType', 'urn:ebay:apis:eBLBaseComponents');
                if (!isset(self::$_elements[__CLASS__]))
                                self::$_elements[__CLASS__] = array_merge(self::$_elements[get_parent_class()],
                                array(
                                        'DeliveredCount' =>
                                        array(
                                                'required' => false,
                                                'type' => 'int',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'QueuedNewCount' =>
                                        array(
                                                'required' => false,
                                                'type' => 'int',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'QueuedPendingCount' =>
                                        array(
                                                'required' => false,
                                                'type' => 'int',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'ExpiredCount' =>
                                        array(
                                                'required' => false,
                                                'type' => 'int',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'ErrorCount' =>
                                        array(
                                                'required' => false,
                                                'type' => 'int',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        )
                                ));
        }
}
?>