<?php

namespace Mnm;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for Last10DaysReport StructType
 * @subpackage Structs
 */
class Last10DaysReport extends AbstractStructBase
{
    /**
     * The InboxWaitingForApprovalCount
     * Meta information extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 1
     * @var int
     */
    public $InboxWaitingForApprovalCount;
    /**
     * The OutboxWaitingForApprovalCount
     * Meta information extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 1
     * @var int
     */
    public $OutboxWaitingForApprovalCount;
    /**
     * The OutboxErrorCount
     * Meta information extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 1
     * @var int
     */
    public $OutboxErrorCount;
    /**
     * Constructor method for Last10DaysReport
     * @uses Last10DaysReport::setInboxWaitingForApprovalCount()
     * @uses Last10DaysReport::setOutboxWaitingForApprovalCount()
     * @uses Last10DaysReport::setOutboxErrorCount()
     * @param int $inboxWaitingForApprovalCount
     * @param int $outboxWaitingForApprovalCount
     * @param int $outboxErrorCount
     */
    public function __construct($inboxWaitingForApprovalCount = null, $outboxWaitingForApprovalCount = null, $outboxErrorCount = null)
    {
        $this
            ->setInboxWaitingForApprovalCount($inboxWaitingForApprovalCount)
            ->setOutboxWaitingForApprovalCount($outboxWaitingForApprovalCount)
            ->setOutboxErrorCount($outboxErrorCount);
    }
    /**
     * Get InboxWaitingForApprovalCount value
     * @return int
     */
    public function getInboxWaitingForApprovalCount()
    {
        return $this->InboxWaitingForApprovalCount;
    }
    /**
     * Set InboxWaitingForApprovalCount value
     * @param int $inboxWaitingForApprovalCount
     * @return \Mnm\Last10DaysReport
     */
    public function setInboxWaitingForApprovalCount($inboxWaitingForApprovalCount = null)
    {
        $this->InboxWaitingForApprovalCount = $inboxWaitingForApprovalCount;
        return $this;
    }
    /**
     * Get OutboxWaitingForApprovalCount value
     * @return int
     */
    public function getOutboxWaitingForApprovalCount()
    {
        return $this->OutboxWaitingForApprovalCount;
    }
    /**
     * Set OutboxWaitingForApprovalCount value
     * @param int $outboxWaitingForApprovalCount
     * @return \Mnm\Last10DaysReport
     */
    public function setOutboxWaitingForApprovalCount($outboxWaitingForApprovalCount = null)
    {
        $this->OutboxWaitingForApprovalCount = $outboxWaitingForApprovalCount;
        return $this;
    }
    /**
     * Get OutboxErrorCount value
     * @return int
     */
    public function getOutboxErrorCount()
    {
        return $this->OutboxErrorCount;
    }
    /**
     * Set OutboxErrorCount value
     * @param int $outboxErrorCount
     * @return \Mnm\Last10DaysReport
     */
    public function setOutboxErrorCount($outboxErrorCount = null)
    {
        $this->OutboxErrorCount = $outboxErrorCount;
        return $this;
    }
    /**
     * Method called when an object has been exported with var_export() functions
     * It allows to return an object instantiated with the values
     * @see AbstractStructBase::__set_state()
     * @uses AbstractStructBase::__set_state()
     * @param array $array the exported values
     * @return \Mnm\Last10DaysReport
     */
    public static function __set_state(array $array)
    {
        return parent::__set_state($array);
    }
    /**
     * Method returning the class name
     * @return string __CLASS__
     */
    public function __toString()
    {
        return __CLASS__;
    }
}
