<?php

namespace App\Integration\Providers\Alliance3\DTO;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for ImportPolicyWOValidateResponse DTO
 * @subpackage Structs
 */
class ImportPolicyWOValidateResponse extends ImportPolicyResponse
{
    /**
     * The calcID
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var string
     */
    public $calcID;
    /**
     * Constructor method for ImportPolicyWOValidateResponse
     * @uses ImportPolicyWOValidateResponse::setCalcID()
     * @param string $calcID
     */
    public function __construct($calcID = null)
    {
        $this
            ->setCalcID($calcID);
    }
    /**
     * Get calcID value
     * @return string|null
     */
    public function getCalcID()
    {
        return $this->calcID;
    }
    /**
     * Set calcID value
     * @param string $calcID
     * @return \App\Integration\Providers\Alliance3\DTO\ImportPolicyWOValidateResponse
     */
    public function setCalcID($calcID = null)
    {
        $this->calcID = $calcID;
        return $this;
    }
}
