<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 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
            -&gt;setCostRequestType($costRequestType);
    }
    /**
     * Get CostRequestType value
     * @return CostRequest|null
     */
    public function getCostRequestType()
    {
        return $this-&gt;CostRequestType;
    }
    /**
     * Set CostRequestType value
     * @param CostRequest $costRequestType
     * @return GetCost
     */
    public function setCostRequestType(CostRequest $costRequestType = null)
    {
        $this-&gt;CostRequestType = $costRequestType;
        return $this;
    }
}
</pre></body></html>