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