xxxxxxxxxx
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for rates Structure
* Meta information extracted from the WSDL
* - type: tns:rates
* @subpackage Structs
*/
class Rates extends AbstractStructBase
{
/**
* The RateRequestType
* Meta information extracted from the WSDL
* - minOccurs: 0
* @var RateRequest
*/
public $RateRequestType;
/**
* Constructor method for rates
* @uses Rates::setRateRequestType()
* @param RateRequest $rateRequestType
*/
public function __construct(RateRequest $rateRequestType = null)
{
$this
->setRateRequestType($rateRequestType);
}
/**
* Get RateRequestType value
* @return RateRequest|null
*/
public function getRateRequestType()
{
return $this->RateRequestType;
}
/**
* Set RateRequestType value
* @param RateRequest $rateRequestType
* @return Rates
*/
public function setRateRequestType(RateRequest $rateRequestType = null)
{
$this->RateRequestType = $rateRequestType;
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