<?php

namespace CfcalSasieSDK\Entity;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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