<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

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