<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

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