<?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
            ->setTrackResponseType($trackResponseType);
    }
    /**
     * Get TrackResponseType value
     * @return TrackResponseType|null
     */
    public function getTrackResponseType()
    {
        return $this->TrackResponseType;
    }
    /**
     * Set TrackResponseType value
     * @param TrackResponseType $trackResponseType
     * @return TrackResponse
     */
    public function setTrackResponseType(TrackResponseType $trackResponseType = null)
    {
        $this->TrackResponseType = $trackResponseType;
        return $this;
    }
}
