<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for GetProvince StructType
 * @subpackage Structs
 */
class GetProvince extends AbstractStructBase
{
    /**
     * The CodiceIstatRegione
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * - nillable: true
     * @var string
     */
    public $CodiceIstatRegione;
    /**
     * Constructor method for GetProvince
     * @uses GetProvince::setCodiceIstatRegione()
     * @param string $codiceIstatRegione
     */
    public function __construct($codiceIstatRegione = null)
    {
        $this
            ->setCodiceIstatRegione($codiceIstatRegione);
    }
    /**
     * Get CodiceIstatRegione value
     * An additional test has been added (isset) before returning the property value as
     * this property may have been unset before, due to the fact that this property is
     * removable from the request (nillable=true+minOccurs=0)
     * @return string|null
     */
    public function getCodiceIstatRegione()
    {
        return isset($this->CodiceIstatRegione) ? $this->CodiceIstatRegione : null;
    }
    /**
     * Set CodiceIstatRegione value
     * This property is removable from request (nillable=true+minOccurs=0), therefore
     * if the value assigned to this property is null, it is removed from this object
     * @param string $codiceIstatRegione
     * @return GetProvince
     */
    public function setCodiceIstatRegione($codiceIstatRegione = null)
    {
        // validation for constraint: string
        if (!is_null($codiceIstatRegione) && !is_string($codiceIstatRegione)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($codiceIstatRegione, true), gettype($codiceIstatRegione)), __LINE__);
        }
        if (is_null($codiceIstatRegione) || (is_array($codiceIstatRegione) && empty($codiceIstatRegione))) {
            unset($this->CodiceIstatRegione);
        } else {
            $this->CodiceIstatRegione = $codiceIstatRegione;
        }
        return $this;
    }
}
