Api\StructType\ApiАдресРФ::setУлица PHP Method

setУлица() public method

Set Улица value
public setУлица ( string $Улица = null ) : ApiАдресРФ
$Улица string
return ApiАдресРФ
    public function setУлица($Улица = null)
    {
        // validation for constraint: string
        if (!is_null($Улица) && !is_string($Улица)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($Улица)), __LINE__);
        }
        $this->Улица = $Улица;
        return $this;
    }