xxxxxxxxxx
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
->setTrackRequestType($trackRequestType);
}
/**
* Get TrackRequestType value
* @return TrackRequest|null
*/
public function getTrackRequestType()
{
return $this->TrackRequestType;
}
/**
* Set TrackRequestType value
* @param TrackRequest $trackRequestType
* @return Track
*/
public function setTrackRequestType(TrackRequest $trackRequestType = null)
{
$this->TrackRequestType = $trackRequestType;
return $this;
}
}
Don't be shy, don't hesitate to contact us for any subject, we'll be glad to help.
This platform is provided to give developpers and non developpers a way to easily consume SOAP Web Services or share their own SOAP Web Services with extra features powered by the platform.
© 2025 Providr.IO