<?php

namespace Mnm;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for GetInboxInvoiceListResponse StructType
 * @subpackage Structs
 */
class GetInboxInvoiceListResponse extends AbstractStructBase
{
    /**
     * The GetInboxInvoiceListResult
     * Meta information extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var \Mnm\InboxInvoiceListResponse
     */
    public $GetInboxInvoiceListResult;
    /**
     * Constructor method for GetInboxInvoiceListResponse
     * @uses GetInboxInvoiceListResponse::setGetInboxInvoiceListResult()
     * @param \Mnm\InboxInvoiceListResponse $getInboxInvoiceListResult
     */
    public function __construct(\Mnm\InboxInvoiceListResponse $getInboxInvoiceListResult = null)
    {
        $this
            ->setGetInboxInvoiceListResult($getInboxInvoiceListResult);
    }
    /**
     * Get GetInboxInvoiceListResult value
     * @return \Mnm\InboxInvoiceListResponse|null
     */
    public function getGetInboxInvoiceListResult()
    {
        return $this->GetInboxInvoiceListResult;
    }
    /**
     * Set GetInboxInvoiceListResult value
     * @param \Mnm\InboxInvoiceListResponse $getInboxInvoiceListResult
     * @return \Mnm\GetInboxInvoiceListResponse
     */
    public function setGetInboxInvoiceListResult(\Mnm\InboxInvoiceListResponse $getInboxInvoiceListResult = null)
    {
        $this->GetInboxInvoiceListResult = $getInboxInvoiceListResult;
        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\GetInboxInvoiceListResponse
     */
    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__;
    }
}
