<?php

namespace App\Integration\Providers\Alliance3\DTO;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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