<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 trackResponse Structure
 * Meta information extracted from the WSDL
 * - type: tns:trackResponse
 * @subpackage Structs
 */
class TrackResponse extends AbstractStructBase
{
    /**
     * The TrackResponseType
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var TrackResponseType
     */
    public $TrackResponseType;
    /**
     * Constructor method for trackResponse
     * @uses TrackResponse::setTrackResponseType()
     * @param TrackResponseType $trackResponseType
     */
    public function __construct(TrackResponseType $trackResponseType = null)
    {
        $this
            -&gt;setTrackResponseType($trackResponseType);
    }
    /**
     * Get TrackResponseType value
     * @return TrackResponseType|null
     */
    public function getTrackResponseType()
    {
        return $this-&gt;TrackResponseType;
    }
    /**
     * Set TrackResponseType value
     * @param TrackResponseType $trackResponseType
     * @return TrackResponse
     */
    public function setTrackResponseType(TrackResponseType $trackResponseType = null)
    {
        $this-&gt;TrackResponseType = $trackResponseType;
        return $this;
    }
}
</pre></body></html>