<?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
            ->setCostResponseType($costResponseType);
    }
    /**
     * Get CostResponseType value
     * @return CostResponseType|null
     */
    public function getCostResponseType()
    {
        return $this->CostResponseType;
    }
    /**
     * Set CostResponseType value
     * @param CostResponseType $costResponseType
     * @return GetCostResponse
     */
    public function setCostResponseType(CostResponseType $costResponseType = null)
    {
        $this->CostResponseType = $costResponseType;
        return $this;
    }
}
