<?php

namespace Mnm;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for SystemUserDefinition StructType
 * @subpackage Structs
 */
class SystemUserDefinition extends EntityBaseInt
{
    /**
     * The CreateDateUtc
     * Meta information extracted from the WSDL
     * - use: required
     * @var string
     */
    public $CreateDateUtc;
    /**
     * The Identifier
     * @var string
     */
    public $Identifier;
    /**
     * The Title
     * @var string
     */
    public $Title;
    /**
     * The Type
     * @var string
     */
    public $Type;
    /**
     * The SystemCreateDate
     * @var string
     */
    public $SystemCreateDate;
    /**
     * Constructor method for SystemUserDefinition
     * @uses SystemUserDefinition::setCreateDateUtc()
     * @uses SystemUserDefinition::setIdentifier()
     * @uses SystemUserDefinition::setTitle()
     * @uses SystemUserDefinition::setType()
     * @uses SystemUserDefinition::setSystemCreateDate()
     * @param string $createDateUtc
     * @param string $identifier
     * @param string $title
     * @param string $type
     * @param string $systemCreateDate
     */
    public function __construct($createDateUtc = null, $identifier = null, $title = null, $type = null, $systemCreateDate = null)
    {
        $this
            ->setCreateDateUtc($createDateUtc)
            ->setIdentifier($identifier)
            ->setTitle($title)
            ->setType($type)
            ->setSystemCreateDate($systemCreateDate);
    }
    /**
     * Get CreateDateUtc value
     * @return string
     */
    public function getCreateDateUtc()
    {
        return $this->CreateDateUtc;
    }
    /**
     * Set CreateDateUtc value
     * @param string $createDateUtc
     * @return \Mnm\SystemUserDefinition
     */
    public function setCreateDateUtc($createDateUtc = null)
    {
        $this->CreateDateUtc = $createDateUtc;
        return $this;
    }
    /**
     * Get Identifier value
     * @return string|null
     */
    public function getIdentifier()
    {
        return $this->Identifier;
    }
    /**
     * Set Identifier value
     * @param string $identifier
     * @return \Mnm\SystemUserDefinition
     */
    public function setIdentifier($identifier = null)
    {
        $this->Identifier = $identifier;
        return $this;
    }
    /**
     * Get Title value
     * @return string|null
     */
    public function getTitle()
    {
        return $this->Title;
    }
    /**
     * Set Title value
     * @param string $title
     * @return \Mnm\SystemUserDefinition
     */
    public function setTitle($title = null)
    {
        $this->Title = $title;
        return $this;
    }
    /**
     * Get Type value
     * @return string|null
     */
    public function getType()
    {
        return $this->Type;
    }
    /**
     * Set Type value
     * @param string $type
     * @return \Mnm\SystemUserDefinition
     */
    public function setType($type = null)
    {
        $this->Type = $type;
        return $this;
    }
    /**
     * Get SystemCreateDate value
     * @return string|null
     */
    public function getSystemCreateDate()
    {
        return $this->SystemCreateDate;
    }
    /**
     * Set SystemCreateDate value
     * @param string $systemCreateDate
     * @return \Mnm\SystemUserDefinition
     */
    public function setSystemCreateDate($systemCreateDate = null)
    {
        $this->SystemCreateDate = $systemCreateDate;
        return $this;
    }
    /**
     * Method called when an object has been exported with var_export() functions
     * It allows to return an object instantiated with the values
     * @see AbstractStructBase::__set_state()
     * @uses AbstractStructBase::__set_state()
     * @param array $array the exported values
     * @return \Mnm\SystemUserDefinition
     */
    public static function __set_state(array $array)
    {
        return parent::__set_state($array);
    }
    /**
     * Method returning the class name
     * @return string __CLASS__
     */
    public function __toString()
    {
        return __CLASS__;
    }
}
