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