<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for manifestResponse Structure
 * Meta information extracted from the WSDL
 * - type: tns:manifestResponse
 * @subpackage Structs
 */
class ManifestResponse extends AbstractStructBase
{
    /**
     * The ManifestResponseType
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var ManifestResponseType
     */
    public $ManifestResponseType;
    /**
     * Constructor method for manifestResponse
     * @uses ManifestResponse::setManifestResponseType()
     * @param ManifestResponseType $manifestResponseType
     */
    public function __construct(ManifestResponseType $manifestResponseType = null)
    {
        $this
            ->setManifestResponseType($manifestResponseType);
    }
    /**
     * Get ManifestResponseType value
     * @return ManifestResponseType|null
     */
    public function getManifestResponseType()
    {
        return $this->ManifestResponseType;
    }
    /**
     * Set ManifestResponseType value
     * @param ManifestResponseType $manifestResponseType
     * @return ManifestResponse
     */
    public function setManifestResponseType(ManifestResponseType $manifestResponseType = null)
    {
        $this->ManifestResponseType = $manifestResponseType;
        return $this;
    }
}
