<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?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
            -&gt;setPrintLabelsResponseType($printLabelsResponseType);
    }
    /**
     * Get PrintLabelsResponseType value
     * @return PrintLabelsResponseType|null
     */
    public function getPrintLabelsResponseType()
    {
        return $this-&gt;PrintLabelsResponseType;
    }
    /**
     * Set PrintLabelsResponseType value
     * @param PrintLabelsResponseType $printLabelsResponseType
     * @return PrintLabelsResponse
     */
    public function setPrintLabelsResponseType(PrintLabelsResponseType $printLabelsResponseType = null)
    {
        $this-&gt;PrintLabelsResponseType = $printLabelsResponseType;
        return $this;
    }
}
</pre></body></html>