<?php

namespace Mnm;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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