<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 getCostResponse Structure
 * Meta information extracted from the WSDL
 * - type: tns:getCostResponse
 * @subpackage Structs
 */
class GetCostResponse extends AbstractStructBase
{
    /**
     * The CostResponseType
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var CostResponseType
     */
    public $CostResponseType;
    /**
     * Constructor method for getCostResponse
     * @uses GetCostResponse::setCostResponseType()
     * @param CostResponseType $costResponseType
     */
    public function __construct(CostResponseType $costResponseType = null)
    {
        $this
            -&gt;setCostResponseType($costResponseType);
    }
    /**
     * Get CostResponseType value
     * @return CostResponseType|null
     */
    public function getCostResponseType()
    {
        return $this-&gt;CostResponseType;
    }
    /**
     * Set CostResponseType value
     * @param CostResponseType $costResponseType
     * @return GetCostResponse
     */
    public function setCostResponseType(CostResponseType $costResponseType = null)
    {
        $this-&gt;CostResponseType = $costResponseType;
        return $this;
    }
}
</pre></body></html>