<?php

namespace CfcalSasieSDK\Entity;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for SectionNotaire Entity
 * Meta information extracted from the WSDL
 * - nillable: true
 * - type: tns:SectionNotaire
 * @subpackage Structs
 */
class SectionNotaire extends ObjetPublicSaisieEnLigneBase
{
    /**
     * The CodeNotaire
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * - nillable: true
     * @var string
     */
    public $CodeNotaire;
    /**
     * Constructor method for SectionNotaire
     * @uses SectionNotaire::setCodeNotaire()
     * @param string $codeNotaire
     */
    public function __construct($codeNotaire = null)
    {
        $this
            ->setCodeNotaire($codeNotaire);
    }
    /**
     * Get CodeNotaire 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 getCodeNotaire()
    {
        return isset($this->CodeNotaire) ? $this->CodeNotaire : null;
    }
    /**
     * Set CodeNotaire 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 $codeNotaire
     * @return \CfcalSasieSDK\Entity\SectionNotaire
     */
    public function setCodeNotaire($codeNotaire = null)
    {
        // validation for constraint: string
        if (!is_null($codeNotaire) && !is_string($codeNotaire)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($codeNotaire, true), gettype($codeNotaire)), __LINE__);
        }
        if (is_null($codeNotaire) || (is_array($codeNotaire) && empty($codeNotaire))) {
            unset($this->CodeNotaire);
        } else {
            $this->CodeNotaire = $codeNotaire;
        }
        return $this;
    }
}
