<?php

namespace App\Integration\Providers\Alliance3\DTO;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for JustificationNotIdentBenefInfo DTO
 * @subpackage Structs
 */
class JustificationNotIdentBenefInfo extends AbstractStructBase
{
    /**
     * The justificationInfo
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var \App\Integration\Providers\Alliance3\DTO\DirectoryElemStrInfo
     */
    public $justificationInfo;
    /**
     * The other
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var string
     */
    public $other;
    /**
     * Constructor method for JustificationNotIdentBenefInfo
     * @uses JustificationNotIdentBenefInfo::setJustificationInfo()
     * @uses JustificationNotIdentBenefInfo::setOther()
     * @param \App\Integration\Providers\Alliance3\DTO\DirectoryElemStrInfo $justificationInfo
     * @param string $other
     */
    public function __construct(\App\Integration\Providers\Alliance3\DTO\DirectoryElemStrInfo $justificationInfo = null, $other = null)
    {
        $this
            ->setJustificationInfo($justificationInfo)
            ->setOther($other);
    }
    /**
     * Get justificationInfo value
     * @return \App\Integration\Providers\Alliance3\DTO\DirectoryElemStrInfo|null
     */
    public function getJustificationInfo()
    {
        return $this->justificationInfo;
    }
    /**
     * Set justificationInfo value
     * @param \App\Integration\Providers\Alliance3\DTO\DirectoryElemStrInfo $justificationInfo
     * @return \App\Integration\Providers\Alliance3\DTO\JustificationNotIdentBenefInfo
     */
    public function setJustificationInfo(\App\Integration\Providers\Alliance3\DTO\DirectoryElemStrInfo $justificationInfo = null)
    {
        $this->justificationInfo = $justificationInfo;
        return $this;
    }
    /**
     * Get other value
     * @return string|null
     */
    public function getOther()
    {
        return $this->other;
    }
    /**
     * Set other value
     * @param string $other
     * @return \App\Integration\Providers\Alliance3\DTO\JustificationNotIdentBenefInfo
     */
    public function setOther($other = null)
    {
        $this->other = $other;
        return $this;
    }
}
