<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for issueRegisterNotification StructType
 * Meta informations extracted from the WSDL
 * - type: s0:issueRegisterNotification
 * @subpackage Structs
 */
class IssueRegisterNotification extends AbstractStructBase
{
    /**
     * The paramIssueRegisterNotification
     * @var ParamIssueRegisterNotification
     */
    public $paramIssueRegisterNotification;
    /**
     * Constructor method for issueRegisterNotification
     * @uses IssueRegisterNotification::setParamIssueRegisterNotification()
     * @param ParamIssueRegisterNotification $paramIssueRegisterNotification
     */
    public function __construct(ParamIssueRegisterNotification $paramIssueRegisterNotification = null)
    {
        $this
            ->setParamIssueRegisterNotification($paramIssueRegisterNotification);
    }
    /**
     * Get paramIssueRegisterNotification value
     * @return ParamIssueRegisterNotification|null
     */
    public function getParamIssueRegisterNotification()
    {
        return $this->paramIssueRegisterNotification;
    }
    /**
     * Set paramIssueRegisterNotification value
     * @param ParamIssueRegisterNotification $paramIssueRegisterNotification
     * @return IssueRegisterNotification
     */
    public function setParamIssueRegisterNotification(ParamIssueRegisterNotification $paramIssueRegisterNotification = null)
    {
        $this->paramIssueRegisterNotification = $paramIssueRegisterNotification;
        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 IssueRegisterNotification
     */
    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__;
    }
}
